1
0
mirror of https://github.com/golang/go synced 2024-11-23 01:40:03 -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 (
"errors"
"exp/types"
"flag"
"fmt"
"go/ast"
"go/parser"
"go/scanner"
"go/token"
"go/types"
"io/ioutil"
"os"
"path/filepath"

View File

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