(v ast.Expr)
| 656 | } |
| 657 | |
| 658 | func struct_interface_predicate(v ast.Expr) bool { |
| 659 | switch v.(type) { |
| 660 | case *ast.StructType, *ast.InterfaceType: |
| 661 | return true |
| 662 | } |
| 663 | return false |
| 664 | } |
| 665 | |
| 666 | func chan_predicate(v ast.Expr) bool { |
| 667 | _, ok := v.(*ast.ChanType) |
no outgoing calls
no test coverage detected