* Check if a BasicExpression represents a null/undefined value
(exp: IR.BasicExpression<unknown>)
| 162 | * Check if a BasicExpression represents a null/undefined value |
| 163 | */ |
| 164 | function isNullValue(exp: IR.BasicExpression<unknown>): boolean { |
| 165 | return exp.type === `val` && (exp.value === null || exp.value === undefined) |
| 166 | } |
| 167 | |
| 168 | function compileFunction( |
| 169 | exp: IR.Func<unknown>, |