Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Jul 2017 02:20:27 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r445292 - head/devel/go-tools
Message-ID:  <201707080220.v682KR6p035870@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Sat Jul  8 02:20:26 2017
New Revision: 445292
URL: https://svnweb.freebsd.org/changeset/ports/445292

Log:
  devel/go-tools: avoid installing go libs or depending on packaged go libs
  
  PR:		218469
  Approved by:	cs (maintainer timeout, 3 months)

Modified:
  head/devel/go-tools/Makefile
  head/devel/go-tools/distinfo   (contents, props changed)
  head/devel/go-tools/pkg-plist   (contents, props changed)

Modified: head/devel/go-tools/Makefile
==============================================================================
--- head/devel/go-tools/Makefile	Sat Jul  8 01:02:12 2017	(r445291)
+++ head/devel/go-tools/Makefile	Sat Jul  8 02:20:26 2017	(r445292)
@@ -3,6 +3,7 @@
 
 PORTNAME=	tools
 PORTVERSION=	20170328
+PORTREVISION=	1
 CATEGORIES=	devel
 PKGNAMEPREFIX=	go-
 
@@ -11,69 +12,27 @@ COMMENT=	Go Tools
 
 LICENSE=	BSD3CLAUSE
 
-BUILD_DEPENDS=	${LOCALBASE}/${GO_LIBDIR}/golang.org/x/crypto/bcrypt.a:security/go.crypto \
-		${LOCALBASE}/${GO_LIBDIR}/golang.org/x/net/dict.a:net/go.net
+BUILD_DEPENDS=	go:lang/go
 
 USE_GITHUB=	yes
-GH_ACCOUNT=	golang
-GH_TAGNAME=	d63e2b22b05a9682de336cd4802bba367ed429e7
-USES=		go
-GO_PKGNAME=	golang.org/x/tools
-GO_TARGET=	${GO_PKGNAME}/benchmark/parse \
-		${GO_PKGNAME}/blog \
-		${GO_PKGNAME}/blog/atom \
-		${GO_PKGNAME}/cmd/benchcmp \
-		${GO_PKGNAME}/cmd/bundle \
-		${GO_PKGNAME}/cmd/callgraph \
-		${GO_PKGNAME}/cmd/cover \
-		${GO_PKGNAME}/cmd/digraph \
-		${GO_PKGNAME}/cmd/eg \
-		${GO_PKGNAME}/cmd/fiximports \
-		${GO_PKGNAME}/cmd/godex \
-		${GO_PKGNAME}/cmd/godoc \
-		${GO_PKGNAME}/cmd/goimports \
-		${GO_PKGNAME}/cmd/gomvpkg \
-		${GO_PKGNAME}/cmd/gorename \
-		${GO_PKGNAME}/cmd/gotype \
-		${GO_PKGNAME}/cmd/guru \
-		${GO_PKGNAME}/cmd/guru/serial \
-		${GO_PKGNAME}/cmd/html2article \
-		${GO_PKGNAME}/cmd/present \
-		${GO_PKGNAME}/cmd/ssadump \
-		${GO_PKGNAME}/cmd/stress \
-		${GO_PKGNAME}/cmd/stringer \
-		${GO_PKGNAME}/container/intsets \
-		${GO_PKGNAME}/cover \
-		${GO_PKGNAME}/go/ast/astutil \
-		${GO_PKGNAME}/go/buildutil \
-		${GO_PKGNAME}/go/callgraph \
-		${GO_PKGNAME}/go/callgraph/cha \
-		${GO_PKGNAME}/go/callgraph/rta \
-		${GO_PKGNAME}/go/callgraph/static \
-		${GO_PKGNAME}/go/gcimporter15 \
-		${GO_PKGNAME}/go/loader \
-		${GO_PKGNAME}/go/pointer \
-		${GO_PKGNAME}/go/ssa \
-		${GO_PKGNAME}/go/ssa/interp \
-		${GO_PKGNAME}/go/ssa/ssautil \
-		${GO_PKGNAME}/go/types/typeutil \
-		${GO_PKGNAME}/go/vcs \
-		${GO_PKGNAME}/godoc \
-		${GO_PKGNAME}/godoc/analysis \
-		${GO_PKGNAME}/godoc/redirect \
-		${GO_PKGNAME}/godoc/util \
-		${GO_PKGNAME}/godoc/vfs \
-		${GO_PKGNAME}/godoc/vfs/gatefs \
-		${GO_PKGNAME}/godoc/vfs/httpfs \
-		${GO_PKGNAME}/godoc/vfs/mapfs \
-		${GO_PKGNAME}/godoc/vfs/zipfs \
-		${GO_PKGNAME}/imports \
-		${GO_PKGNAME}/playground \
-		${GO_PKGNAME}/playground/socket \
-		${GO_PKGNAME}/present \
-		${GO_PKGNAME}/refactor/eg \
-		${GO_PKGNAME}/refactor/importgraph \
-		${GO_PKGNAME}/refactor/rename \
-		${GO_PKGNAME}/refactor/satisfy \
+GH_TUPLE=	golang:tools:d63e2b2:DEFAULT/src/golang.org/x/tools \
+		golang:crypto:3cb0727:crypto/src/golang.org/x/crypto \
+		golang:net:b6d7b13:net/src/golang.org/x/net
+
+TARGETS=	benchcmp bundle callgraph cover digraph eg fiximports godex \
+		godoc goimports gomvpkg gorename gotype guru html2article \
+		present ssadump stress stringer
+
+do-build:
+.for TARGET in ${TARGETS}
+	cd ${WRKSRC}/cmd/${TARGET} ; \
+		${SETENV} ${MAKE_ENV} GOPATH=${WRKSRC} go build golang.org/x/tools/cmd/${TARGET}
+.endfor
+
+do-install:
+.for TARGET in ${TARGETS}
+	${STRIP_CMD} ${WRKSRC}/cmd/${TARGET}/${TARGET}
+	${INSTALL_PROGRAM} ${WRKSRC}/cmd/${TARGET}/${TARGET} ${STAGEDIR}${PREFIX}/bin/
+.endfor
 
 .include <bsd.port.mk>

Modified: head/devel/go-tools/distinfo
==============================================================================
--- head/devel/go-tools/distinfo	Sat Jul  8 01:02:12 2017	(r445291)
+++ head/devel/go-tools/distinfo	Sat Jul  8 02:20:26 2017	(r445292)
@@ -1,3 +1,7 @@
-TIMESTAMP = 1490818152
-SHA256 (golang-tools-20170328-d63e2b22b05a9682de336cd4802bba367ed429e7_GH0.tar.gz) = 92a3427edd63855831a39e5239fd7038f2075197e856ecb316308e8292a0dd68
-SIZE (golang-tools-20170328-d63e2b22b05a9682de336cd4802bba367ed429e7_GH0.tar.gz) = 2217622
+TIMESTAMP = 1491596291
+SHA256 (golang-tools-20170328-d63e2b2_GH0.tar.gz) = 35dd6e1044ea0d89e108badcb2f1551fc6e69a11695ee2e4e9c4eb0a3fe29ba6
+SIZE (golang-tools-20170328-d63e2b2_GH0.tar.gz) = 2217711
+SHA256 (golang-crypto-3cb0727_GH0.tar.gz) = eef75f6cbd2cb14d1c0a4561acde19d725808cc2338d440b54d91b9befc07d46
+SIZE (golang-crypto-3cb0727_GH0.tar.gz) = 1318217
+SHA256 (golang-net-b6d7b13_GH0.tar.gz) = fed6d62b1aee0d44726739836ef4164ca268ad1343b868e8d42dc5c7285a7898
+SIZE (golang-net-b6d7b13_GH0.tar.gz) = 740584

Modified: head/devel/go-tools/pkg-plist
==============================================================================
--- head/devel/go-tools/pkg-plist	Sat Jul  8 01:02:12 2017	(r445291)
+++ head/devel/go-tools/pkg-plist	Sat Jul  8 02:20:26 2017	(r445292)
@@ -17,416 +17,3 @@ bin/present
 bin/ssadump
 bin/stress
 bin/stringer
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/benchmark/parse.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/blog.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/blog/atom.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/cmd/guru/serial.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/container/intsets.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/cover.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/go/ast/astutil.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/go/buildutil.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/go/callgraph.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/go/callgraph/cha.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/go/callgraph/rta.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/go/callgraph/static.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/go/gcimporter15.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/go/loader.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/go/pointer.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/go/ssa.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/go/ssa/interp.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/go/ssa/ssautil.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/go/types/typeutil.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/go/vcs.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/godoc.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/godoc/analysis.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/godoc/redirect.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/godoc/util.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/godoc/vfs.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/godoc/vfs/gatefs.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/godoc/vfs/httpfs.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/godoc/vfs/mapfs.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/godoc/vfs/zipfs.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/imports.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/playground.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/playground/socket.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/present.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/refactor/eg.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/refactor/importgraph.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/refactor/rename.a
-%%GO_LIBDIR%%/%%GO_PKGNAME%%/refactor/satisfy.a
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/benchmark/parse/parse.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/benchmark/parse/parse_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/blog/atom/atom.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/blog/blog.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/cmd/guru/serial/serial.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/container/intsets/popcnt_amd64.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/container/intsets/popcnt_amd64.s
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/container/intsets/popcnt_gccgo.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/container/intsets/popcnt_gccgo_c.c
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/container/intsets/popcnt_generic.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/container/intsets/sparse.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/container/intsets/sparse_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/container/intsets/util.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/container/intsets/util_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/cover/profile.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ast/astutil/enclosing.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ast/astutil/enclosing_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ast/astutil/imports.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ast/astutil/imports_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ast/astutil/util.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/buildutil/allpackages.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/buildutil/allpackages_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/buildutil/fakecontext.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/buildutil/overlay.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/buildutil/overlay_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/buildutil/tags.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/buildutil/tags_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/buildutil/util.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/buildutil/util_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/buildutil/util_windows_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/callgraph/callgraph.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/callgraph/cha/cha.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/callgraph/cha/cha_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/callgraph/cha/testdata/func.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/callgraph/cha/testdata/iface.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/callgraph/cha/testdata/recv.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/callgraph/rta/rta.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/callgraph/rta/rta_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/callgraph/rta/testdata/func.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/callgraph/rta/testdata/iface.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/callgraph/rta/testdata/rtype.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/callgraph/static/static.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/callgraph/static/static_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/callgraph/util.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/gcimporter15/bexport.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/gcimporter15/bexport19_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/gcimporter15/bexport_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/gcimporter15/bimport.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/gcimporter15/exportdata.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/gcimporter15/gcimporter.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/gcimporter15/gcimporter_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/gcimporter15/isAlias18.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/gcimporter15/isAlias19.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/gcimporter15/testdata/a.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/gcimporter15/testdata/b.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/gcimporter15/testdata/exports.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/gcimporter15/testdata/issue15920.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/gcimporter15/testdata/p.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/gcimporter15/testdata/versions/test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/gcimporter15/testdata/versions/test_go1.7_0.a
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/gcimporter15/testdata/versions/test_go1.7_1.a
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/loader/cgo.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/loader/cgo_pkgconfig.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/loader/doc.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/loader/example_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/loader/loader.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/loader/loader_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/loader/stdlib_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/loader/testdata/a.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/loader/testdata/b.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/loader/testdata/badpkgdecl.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/loader/util.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/TODO
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/analysis.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/api.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/callgraph.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/constraint.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/doc.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/example_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/gen.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/hvn.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/intrinsics.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/labels.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/opt.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/pointer_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/print.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/query.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/query_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/reflect.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/solve.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/stdlib_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/a_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/another.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/arrayreflect.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/arrays.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/channels.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/chanreflect.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/chanreflect1.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/context.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/conv.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/extended.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/finalizer.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/flow.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/fmtexcerpt.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/func.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/funcreflect.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/hello.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/interfaces.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/issue9002.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/mapreflect.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/maps.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/panic.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/recur.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/reflect.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/rtti.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/structreflect.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/structs.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/testdata/timer.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/pointer/util.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/blockopt.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/builder.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/builder_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/const.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/create.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/doc.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/dom.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/emit.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/example_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/func.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/external.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/external_darwin.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/external_unix.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/interp.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/interp_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/map.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/ops.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/reflect.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/testdata/a_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/testdata/b_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/testdata/boundmeth.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/testdata/c_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/testdata/callstack.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/testdata/complit.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/testdata/coverage.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/testdata/defer.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/testdata/fieldprom.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/testdata/ifaceconv.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/testdata/ifaceprom.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/testdata/initorder.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/testdata/methprom.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/testdata/mrvchain.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/testdata/range.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/testdata/recover.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/testdata/reflect.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/testdata/static.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/interp/value.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/lift.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/lvalue.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/methods.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/mode.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/print.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/sanity.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/source.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/source_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/ssa.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/ssautil/load.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/ssautil/load_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/ssautil/switch.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/ssautil/switch_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/ssautil/testdata/switches.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/ssautil/visit.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/stdlib_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/testdata/objlookup.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/testdata/valueforexpr.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/testmain.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/testmain_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/util.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/ssa/wrappers.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/types/typeutil/example_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/types/typeutil/imports.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/types/typeutil/imports_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/types/typeutil/map.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/types/typeutil/map_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/types/typeutil/methodsetcache.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/types/typeutil/ui.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/types/typeutil/ui_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/vcs/discovery.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/vcs/env.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/vcs/http.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/vcs/vcs.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/go/vcs/vcs_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/README.md
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/analysis/README
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/analysis/analysis.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/analysis/callgraph.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/analysis/implements.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/analysis/json.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/analysis/peers.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/analysis/typeinfo.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/appengine.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/cmdline.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/cmdline_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/corpus.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/dirtrees.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/dl/dl.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/dl/dl_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/dl/tmpl.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/format.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/godoc.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/godoc17_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/godoc_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/index.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/index_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/linkify.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/meta.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/page.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/parser.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/pres.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/proxy/proxy.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/redirect/hash.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/redirect/redirect.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/redirect/redirect_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/search.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/server.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/short/short.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/short/tmpl.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/snippet.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/spec.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/spot.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/analysis/call-eg.png
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/analysis/call3.png
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/analysis/callers1.png
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/analysis/callers2.png
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/analysis/chan1.png
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/analysis/chan2a.png
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/analysis/chan2b.png
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/analysis/error1.png
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/analysis/help.html
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/analysis/ident-def.png
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/analysis/ident-field.png
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/analysis/ident-func.png
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/analysis/ipcg-func.png
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/analysis/ipcg-pkg.png
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/analysis/typeinfo-pkg.png
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/analysis/typeinfo-src.png
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/callgraph.html
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/codewalk.html
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/codewalkdir.html
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/dirlist.html
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/doc.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/error.html
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/example.html
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/gen.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/godoc.html
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/godocs.js
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/images/minus.gif
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/images/plus.gif
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/images/treeview-black-line.gif
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/images/treeview-black.gif
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/images/treeview-default-line.gif
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/images/treeview-default.gif
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/images/treeview-gray-line.gif
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/images/treeview-gray.gif
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/implements.html
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/jquery.js
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/jquery.treeview.css
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/jquery.treeview.edit.js
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/jquery.treeview.js
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/makestatic.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/methodset.html
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/opensearch.xml
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/package.html
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/package.txt
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/play.js
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/playground.js
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/search.html
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/search.txt
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/searchcode.html
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/searchdoc.html
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/searchtxt.html
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/static.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/static/style.css
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/tab.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/template.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/util/throttle.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/util/util.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/vfs/emptyvfs.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/vfs/emptyvfs_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/vfs/gatefs/gatefs.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/vfs/httpfs/httpfs.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/vfs/mapfs/mapfs.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/vfs/mapfs/mapfs_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/vfs/namespace.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/vfs/os.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/vfs/vfs.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/vfs/zipfs/zipfs.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/godoc/vfs/zipfs/zipfs_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/imports/fastwalk.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/imports/fastwalk_dirent_fileno.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/imports/fastwalk_dirent_ino.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/imports/fastwalk_portable.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/imports/fastwalk_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/imports/fastwalk_unix.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/imports/fix.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/imports/fix_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/imports/imports.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/imports/mkindex.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/imports/mkstdlib.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/imports/sortimports.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/imports/zstdlib.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/playground/appengine.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/playground/appenginevm.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/playground/common.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/playground/local.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/playground/socket/socket.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/playground/socket/socket_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/present/args.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/present/background.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/present/caption.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/present/code.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/present/code_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/present/doc.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/present/html.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/present/iframe.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/present/image.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/present/link.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/present/link_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/present/parse.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/present/style.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/present/style_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/present/video.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/eg.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/eg_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/match.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/rewrite.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/A.template
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/A1.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/A1.golden
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/A2.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/A2.golden
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/B.template
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/B1.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/B1.golden
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/C.template
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/C1.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/C1.golden
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/D.template
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/D1.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/D1.golden
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/E.template
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/E1.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/E1.golden
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/F.template
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/F1.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/F1.golden
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/G.template
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/G1.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/G1.golden
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/H.template
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/H1.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/H1.golden
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/bad_type.template
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/expr_type_mismatch.template
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/no_after_return.template
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/no_before.template
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/eg/testdata/type_mismatch.template
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/importgraph/graph.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/importgraph/graph_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/rename/check.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/rename/mvpkg.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/rename/mvpkg_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/rename/rename.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/rename/rename_test.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/rename/spec.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/rename/util.go
-%%GO_SRCDIR%%/%%GO_PKGNAME%%/refactor/satisfy/find.go



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201707080220.v682KR6p035870>