(v ast.Expr)
| 682 | } |
| 683 | |
| 684 | func func_predicate(v ast.Expr) bool { |
| 685 | _, ok := v.(*ast.FuncType) |
| 686 | return ok |
| 687 | } |
| 688 | |
| 689 | func range_predicate(v ast.Expr) bool { |
| 690 | switch t := v.(type) { |
nothing calls this directly
no outgoing calls
no test coverage detected