(node: Ast.Node, scope: Scope, callStack: readonly CallInfo[])
| 467 | |
| 468 | @autobind |
| 469 | private _evalSync(node: Ast.Node, scope: Scope, callStack: readonly CallInfo[]): Value | Control { |
| 470 | return this.__evalSync(node, scope, callStack); |
| 471 | } |
| 472 | |
| 473 | @autobind |
| 474 | private async __eval(node: Ast.Node, scope: Scope, callStack: readonly CallInfo[]): Promise<Value | Control> { |
no test coverage detected