(typeOp ast.FunctionSym, typeArgs ...ast.BaseTerm)
| 44 | } |
| 45 | |
| 46 | func newTypeExpr(typeOp ast.FunctionSym, typeArgs ...ast.BaseTerm) ast.ApplyFn { |
| 47 | return ast.ApplyFn{typeOp, typeArgs} |
| 48 | } |
| 49 | |
| 50 | func typeOp(typeExpr ast.BaseTerm) *ast.FunctionSym { |
| 51 | if expr, ok := typeExpr.(ast.ApplyFn); ok { |
no outgoing calls
no test coverage detected