mirror of
https://github.com/securego/gosec.git
synced 2024-12-25 12:05:52 +00:00
commit
7f4bdd5957
2 changed files with 2 additions and 2 deletions
|
@ -68,7 +68,7 @@ type Analyzer struct {
|
|||
Stats Metrics `json:"metrics"`
|
||||
}
|
||||
|
||||
// NewAnalyzer buildas a new anaylzer.
|
||||
// NewAnalyzer builds a new anaylzer.
|
||||
func NewAnalyzer(conf map[string]interface{}, logger *log.Logger) Analyzer {
|
||||
if logger == nil {
|
||||
logger = log.New(os.Stdout, "[gas]", 0)
|
||||
|
|
|
@ -46,7 +46,7 @@ func MatchCall(n ast.Node, r *regexp.Regexp) *ast.CallExpr {
|
|||
return nil
|
||||
}
|
||||
|
||||
// MatcMatchCompLit hCall will match an ast.CompositeLit if its string value obays the given regex.
|
||||
// MatchCompLit will match an ast.CompositeLit if its string value obays the given regex.
|
||||
func MatchCompLit(n ast.Node, r *regexp.Regexp) *ast.CompositeLit {
|
||||
t := reflect.TypeOf(&ast.CompositeLit{})
|
||||
if name, ok := selectName(n, t); ok && r.MatchString(name) {
|
||||
|
|
Loading…
Reference in a new issue