Eval implements the Interpretable interface method.
(ctx Activation)
| 969 | |
| 970 | // Eval implements the Interpretable interface method. |
| 971 | func (fold *evalFold) Eval(ctx Activation) ref.Val { |
| 972 | return fold.Exec(AsFrame(ctx)) |
| 973 | } |
| 974 | |
| 975 | // Optional Interpretable implementations that specialize, subsume, or extend the core evaluation |
| 976 | // plan via decorators. |