(call *ast.CallExpr)
| 173 | } |
| 174 | |
| 175 | func funcLitCall(call *ast.CallExpr) (*ast.FuncLit, bool) { |
| 176 | funcLit, ok := unparen(call.Fun).(*ast.FuncLit) |
| 177 | if !ok { |
| 178 | return nil, false |
| 179 | } |
| 180 | return funcLit, true |
| 181 | } |
| 182 | |
| 183 | func reportIfNotSuppressed(pass *analysis.Pass, suppressed map[int]bool, pos token.Pos, message string) { |
| 184 | if suppressedLine(pass.Fset, suppressed, pos) { |
no test coverage detected