Commit e6a8dace authored by David Symonds's avatar David Symonds

cmd/vet: refresh command for updating whitelist data.

This excludes internal and testdata packages, as well as func types.

No new whitelist entries were found.

Change-Id: Ie7d42ce0a235394e4bcabf09e155726a35cd2d3d
Reviewed-on: https://go-review.googlesource.com/21822Reviewed-by: default avatarRob Pike <r@golang.org>
parent ad7448fe
...@@ -11,7 +11,8 @@ package whitelist ...@@ -11,7 +11,8 @@ package whitelist
// library's exported slice types. // library's exported slice types.
var UnkeyedLiteral = map[string]bool{ var UnkeyedLiteral = map[string]bool{
/* /*
find $GOROOT/src -type f | grep -v _test.go | xargs grep '^type.*\[\]' | \ find $GOROOT/src -type f | grep -v _test.go | grep -v /internal/ | grep -v /testdata/ | \
xargs grep '^type.*\[\]' | grep -v ' func(' | \
grep -v ' map\[' | sed 's,/[^/]*go.type,,' | sed 's,.*src/,,' | \ grep -v ' map\[' | sed 's,/[^/]*go.type,,' | sed 's,.*src/,,' | \
sed 's, ,.,' | sed 's, .*,,' | grep -v '\.[a-z]' | \ sed 's, ,.,' | sed 's, .*,,' | grep -v '\.[a-z]' | \
sort | awk '{ print "\"" $0 "\": true," }' sort | awk '{ print "\"" $0 "\": true," }'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment