Eval implements the Interpretable interface method.
(vars Activation)
| 93 | |
| 94 | // Eval implements the Interpretable interface method. |
| 95 | func (fn *evalAsyncFunc) Eval(vars Activation) ref.Val { |
| 96 | return fn.Exec(AsFrame(vars)) |
| 97 | } |
| 98 | |
| 99 | // Exec implements the InterpretableV2 interface method. |
| 100 | func (fn *evalAsyncFunc) Exec(frame *ExecutionFrame) ref.Val { |