1
0
mirror of https://github.com/golang/go synced 2024-11-14 07:40:21 -07:00

go/types: move to exp/types per Go 1 plan

This package is only used by gotype at the moment.

R=rsc, r
CC=golang-dev
https://golang.org/cl/5266042
This commit is contained in:
Robert Griesemer 2011-10-13 15:41:48 -07:00
parent f58ed4e641
commit 29c2838cb4
13 changed files with 3 additions and 3 deletions

View File

@ -5,13 +5,13 @@
package main package main
import ( import (
"exp/types"
"flag" "flag"
"fmt" "fmt"
"go/ast" "go/ast"
"go/parser" "go/parser"
"go/scanner" "go/scanner"
"go/token" "go/token"
"go/types"
"io/ioutil" "io/ioutil"
"os" "os"
"path/filepath" "path/filepath"

View File

@ -85,6 +85,7 @@ DIRS=\
exp/sql\ exp/sql\
exp/sql/driver\ exp/sql/driver\
exp/template/html\ exp/template/html\
exp/types\
expvar\ expvar\
flag\ flag\
fmt\ fmt\
@ -95,7 +96,6 @@ DIRS=\
go/printer\ go/printer\
go/scanner\ go/scanner\
go/token\ go/token\
go/types\
gob\ gob\
hash\ hash\
hash/adler32\ hash/adler32\

View File

@ -4,7 +4,7 @@
include ../../../Make.inc include ../../../Make.inc
TARG=go/types TARG=exp/types
GOFILES=\ GOFILES=\
check.go\ check.go\
const.go\ const.go\