Improve specitivity of error message for GenDecl

This commit is contained in:
Grant Murphy 2017-01-11 10:12:11 -08:00
parent 1e736c8838
commit d1303fee0b

View file

@ -64,7 +64,7 @@ func (r *Credentials) matchGenDecl(decl *ast.GenDecl, ctx *gas.Context) (*gas.Is
index = len(valueSpec.Values) - 1 index = len(valueSpec.Values) - 1
} }
if rhs, ok := valueSpec.Values[index].(*ast.BasicLit); ok && rhs.Kind == token.STRING { if rhs, ok := valueSpec.Values[index].(*ast.BasicLit); ok && rhs.Kind == token.STRING {
return gas.NewIssue(ctx, decl, r.What, r.Severity, r.Confidence), nil return gas.NewIssue(ctx, valueSpec, r.What, r.Severity, r.Confidence), nil
} }
} }
} }