(typeExpr ast.BaseTerm)
| 48 | } |
| 49 | |
| 50 | func typeOp(typeExpr ast.BaseTerm) *ast.FunctionSym { |
| 51 | if expr, ok := typeExpr.(ast.ApplyFn); ok { |
| 52 | return &expr.Function |
| 53 | } |
| 54 | return nil |
| 55 | } |
| 56 | |
| 57 | func typeArgs(typeExpr ast.BaseTerm) []ast.BaseTerm { |
| 58 | if expr, ok := typeExpr.(ast.ApplyFn); ok { |
no outgoing calls
no test coverage detected