( instruction: o.ExternalReference, args: o.Expression[], sourceSpan: ParseSourceSpan | null, )
| 977 | } |
| 978 | |
| 979 | function call<OpT extends ir.CreateOp | ir.UpdateOp>( |
| 980 | instruction: o.ExternalReference, |
| 981 | args: o.Expression[], |
| 982 | sourceSpan: ParseSourceSpan | null, |
| 983 | ): OpT { |
| 984 | const expr = o.importExpr(instruction).callFn(args, sourceSpan); |
| 985 | return ir.createStatementOp(new o.ExpressionStatement(expr, sourceSpan)) as OpT; |
| 986 | } |
| 987 | |
| 988 | export function conditional( |
| 989 | condition: o.Expression, |
no outgoing calls
no test coverage detected
searching dependent graphs…