( instruction: o.ExternalReference, args: o.Expression[], sourceSpan: ParseSourceSpan | null, )
| 1000 | } |
| 1001 | |
| 1002 | function call<OpT extends ir.CreateOp | ir.UpdateOp>( |
| 1003 | instruction: o.ExternalReference, |
| 1004 | args: o.Expression[], |
| 1005 | sourceSpan: ParseSourceSpan | null, |
| 1006 | ): OpT { |
| 1007 | const expr = o.importExpr(instruction).callFn(args, sourceSpan); |
| 1008 | return ir.createStatementOp(new o.ExpressionStatement(expr, sourceSpan)) as OpT; |
| 1009 | } |
| 1010 | |
| 1011 | export function conditional( |
| 1012 | condition: o.Expression, |
no outgoing calls
no test coverage detected