File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed
Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLL
1818golang.org/x/sync v0.0.0-20190423024810-112230192c58 /go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM =
1919golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a /go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY =
2020golang.org/x/text v0.3.0 /go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ =
21+ golang.org/x/tools v0.0.0-20191119223639-caaa49c6ded0 h1:03eeJVjGh9nx1W1C7u8xgJhySS9CnXyoYBZ/D8dGq/I =
2122golang.org/x/tools v0.0.0-20191119223639-caaa49c6ded0 /go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo =
2223golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 /go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0 =
2324gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo =
Original file line number Diff line number Diff line change @@ -2,18 +2,18 @@ package imports
22
33import (
44 "github.com/cosmos72/gomacro/base/paths"
5- i "github.com/cosmos72/gomacro/imports"
5+ "github.com/cosmos72/gomacro/imports"
66)
77
8- type PackageUnderlying = i .PackageUnderlying
8+ type PackageUnderlying = imports .PackageUnderlying
99
10- type Package = i .Package
10+ type Package = imports .Package
1111
12- type PackageMap = i .PackageMap
12+ type PackageMap = imports .PackageMap
1313
14- // i .Packages is a map, copying it only makes a reference
15- // => Packages and i .Packages are kept in sync automatically
16- var Packages = i .Packages
14+ // imports .Packages is a map, copying it only makes a reference
15+ // => Packages and imports .Packages are kept in sync automatically
16+ var Packages = imports .Packages
1717
1818// used to locate this package path via reflection
1919type findMe struct {}
You can’t perform that action at this time.
0 commit comments