(fset *token.FileSet, suppressed map[int]bool, pos token.Pos)
| 569 | } |
| 570 | |
| 571 | func suppressedLine(fset *token.FileSet, suppressed map[int]bool, pos token.Pos) bool { |
| 572 | return suppressed[fset.Position(pos).Line] |
| 573 | } |
| 574 | |
| 575 | func firstParamName(funcType *ast.FuncType) string { |
| 576 | if funcType == nil || funcType.Params == nil || len(funcType.Params.List) == 0 { |
no outgoing calls
no test coverage detected