1
0
mirror of https://github.com/golang/go synced 2024-11-23 05:10:09 -07:00

go/types: moved from exp/types

This is a just a file move with no other changes
besides the manual import path adjustments in these
two files:

src/pkg/exp/gotype/gotype.go
src/pkg/exp/gotype/gotype_test.go

Note: The go/types API continues to be subject to
possibly significant changes until Go 1.1. Do not
rely on it being stable at this point.

R=adonovan
CC=golang-dev
https://golang.org/cl/7013049
This commit is contained in:
Robert Griesemer 2012-12-28 11:41:44 -08:00
parent d0428379e7
commit 73aaa44c24
34 changed files with 2 additions and 2 deletions

View File

@ -6,13 +6,13 @@ package main
import ( import (
"errors" "errors"
"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

@ -117,7 +117,6 @@ var tests = []string{
"flag", "flag",
"fmt", "fmt",
"exp/types",
"exp/gotype", "exp/gotype",
"go/ast", "go/ast",
@ -128,6 +127,7 @@ var tests = []string{
"go/printer", "go/printer",
"go/scanner", "go/scanner",
// "go/token", // "go/token",
"go/types",
"hash/adler32", "hash/adler32",
"hash/crc32", "hash/crc32",