|
|
|
@ -316,49 +316,47 @@ func keyStmt(key []byte) *ast.GenDecl {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func strConstBlacklist(node ast.Node, info *types.Info, blacklist map[types.Object]struct{}) {
|
|
|
|
|
strType := types.Typ[types.String]
|
|
|
|
|
untypedStr := types.Typ[types.UntypedString]
|
|
|
|
|
func constBlacklist(node ast.Node, info *types.Info, blacklist map[types.Object]struct{}) {
|
|
|
|
|
|
|
|
|
|
constCheck := func(node ast.Node) bool {
|
|
|
|
|
blacklistObjects := func(node ast.Node) bool {
|
|
|
|
|
ident, ok := node.(*ast.Ident)
|
|
|
|
|
if !ok {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
obj := info.ObjectOf(ident)
|
|
|
|
|
if obj.Type() == strType || obj.Type() == untypedStr {
|
|
|
|
|
blacklist[obj] = struct{}{}
|
|
|
|
|
}
|
|
|
|
|
blacklist[obj] = struct{}{}
|
|
|
|
|
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch x := node.(type) {
|
|
|
|
|
// in a slice or array composite literal all explicit keys must be constant representable
|
|
|
|
|
case *ast.CompositeLit:
|
|
|
|
|
if _, ok := x.Type.(*ast.ArrayType); !ok {
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
for _, elt := range x.Elts {
|
|
|
|
|
if kv, ok := elt.(*ast.KeyValueExpr); ok {
|
|
|
|
|
ast.Inspect(kv.Key, constCheck)
|
|
|
|
|
ast.Inspect(kv.Key, blacklistObjects)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// in an array type the length must be a constant representable
|
|
|
|
|
case *ast.ArrayType:
|
|
|
|
|
if x.Len != nil {
|
|
|
|
|
ast.Inspect(x.Len, constCheck)
|
|
|
|
|
ast.Inspect(x.Len, blacklistObjects)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// in a const declaration all values must be constant representable
|
|
|
|
|
case *ast.GenDecl:
|
|
|
|
|
if x.Tok != token.CONST {
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
for _, spec := range x.Specs {
|
|
|
|
|
spec, ok := spec.(*ast.ValueSpec)
|
|
|
|
|
if !ok {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
spec := spec.(*ast.ValueSpec)
|
|
|
|
|
|
|
|
|
|
for _, val := range spec.Values {
|
|
|
|
|
ast.Inspect(val, constCheck)
|
|
|
|
|
ast.Inspect(val, blacklistObjects)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|