(call *ast.CallExpr)
| 549 | } |
| 550 | |
| 551 | func callReceiver(call *ast.CallExpr) ast.Expr { |
| 552 | selector, ok := unparen(call.Fun).(*ast.SelectorExpr) |
| 553 | if !ok { |
| 554 | return nil |
| 555 | } |
| 556 | return selector.X |
| 557 | } |
| 558 | |
| 559 | func suppressedLines(fset *token.FileSet, file *ast.File) map[int]bool { |
| 560 | lines := make(map[int]bool) |
no test coverage detected