support std imports

pull/22/head
Daniel Martí 5 years ago
parent 1fe0351517
commit 766bb47b82

@ -182,7 +182,7 @@ func transformCompile(args []string) ([]string, error) {
Defs: make(map[*ast.Ident]types.Object),
Uses: make(map[*ast.Ident]types.Object),
}
if _, err := typesConfig.Check("current", fset, files, info); err != nil {
if _, err := typesConfig.Check("current.pkg/path", fset, files, info); err != nil {
return nil, fmt.Errorf("typecheck error: %v", err)
}
@ -294,6 +294,7 @@ func transformGoFile(file *ast.File, info *types.Info) *ast.File {
switch obj.(type) {
case *types.Var:
case *types.Const:
case *types.TypeName:
case *types.Func:
switch node.Name {
case "main", "init":
@ -302,7 +303,15 @@ func transformGoFile(file *ast.File, info *types.Info) *ast.File {
default:
return true // we only want to rename the above
}
path := obj.Pkg().Path()
pkg := obj.Pkg()
if pkg == nil {
return true // universe scope
}
path := pkg.Path()
if !strings.Contains(path, ".") {
return true // std isn't transformed
}
buildID := buildInfo.buildID
if id := buildInfo.imports[path].buildID; id != "" {
buildID = id

@ -32,8 +32,10 @@ exec readelf --section-headers main
! grep 'globalFunc' main
# Finally, check that the 'garble build' shortcut works.
# cp main main_old
garble build main.go
! grep 'globalVar' main
# cmp main main_old
-- main.go --
package main

@ -1,24 +1,43 @@
garble build
exec ./main
cmp stderr main.stderr
cmp stdout main.stdout
! grep 'ImportedVar' main
! grep 'ImportedConst' main
! grep 'ImportedFunc' main
! grep 'ImportedType' main
-- go.mod --
module foo.com/main
-- main.go --
package main
import "foo.com/main/imported"
import (
"fmt"
"foo.com/main/imported"
)
func main() {
println(imported.ImportedVar)
println(imported.ImportedConst)
fmt.Println(imported.ImportedVar)
fmt.Println(imported.ImportedConst)
imported.ImportedFunc('x')
fmt.Println(imported.ImportedType(3))
fmt.Println(nil)
}
-- main.stderr --
-- main.stdout --
imported var value
imported const value
3
<nil>
-- imported/imported.go --
package imported
var ImportedVar = "imported var value"
const ImportedConst = "imported const value"
func ImportedFunc(param rune) string {
return string(param)
}
type ImportedType int

Loading…
Cancel
Save