Merge pull request #110 from GoASTScanner/bugfix

Improve specitivity of error message for GenDecl
This commit is contained in:
Grant Murphy 2017-01-11 10:25:58 -08:00 committed by GitHub
commit bc21a39c66

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
} }
} }
} }