]> Cypherpunks.ru repositories - gostls13.git/commit
go/types: move go/types/internal/gcimport => go/internal/gcimporter
authorRobert Griesemer <gri@golang.org>
Fri, 10 Apr 2015 23:45:10 +0000 (16:45 -0700)
committerRobert Griesemer <gri@golang.org>
Sat, 11 Apr 2015 05:11:18 +0000 (05:11 +0000)
commit92eb9aea474742fb0509ade5041a8be703484106
treee5586d96d33a61efeb9a884a17bf6ceb3d0d98bb
parent2539ccb8db1c0efffa45e7de7430b333ffce2cb4
go/types: move go/types/internal/gcimport => go/internal/gcimporter

This will make it possible to access the gcimporter (and gccgoimporter,
eventually) from the forthcoming gc/importer package, without exposing
compiler names in package names.

This change was created by manually adjusting the gcimporter paths in
go/types.bash and then running sh go/types.bash (i.e., by revendoring
gcimporter). The only manual changes are in go/types.bash.

Change-Id: Idc282439742288c09caa58b3a66d77aec0325faf
Reviewed-on: https://go-review.googlesource.com/8764
Reviewed-by: Rob Pike <r@golang.org>
Run-TryBot: Robert Griesemer <gri@golang.org>
16 files changed:
src/go/internal/gcimporter/exportdata.go [moved from src/go/types/internal/gcimporter/exportdata.go with 100% similarity]
src/go/internal/gcimporter/gcimporter.go [moved from src/go/types/internal/gcimporter/gcimporter.go with 99% similarity]
src/go/internal/gcimporter/gcimporter_test.go [moved from src/go/types/internal/gcimporter/gcimporter_test.go with 100% similarity]
src/go/internal/gcimporter/testdata/exports.go [moved from src/go/types/internal/gcimporter/testdata/exports.go with 100% similarity]
src/go/types.bash
src/go/types/api.go
src/go/types/api_test.go
src/go/types/builtins_test.go
src/go/types/check_test.go
src/go/types/eval_test.go
src/go/types/issues_test.go
src/go/types/resolver.go
src/go/types/resolver_test.go
src/go/types/self_test.go
src/go/types/stdlib_test.go
src/go/types/typestring_test.go