Eval proxies to the ObserveEval method while invoking a no-op callback to report the observations.
(vars Activation)
| 161 | |
| 162 | // Eval proxies to the ObserveEval method while invoking a no-op callback to report the observations. |
| 163 | func (oi *ObservableInterpretable) Eval(vars Activation) ref.Val { |
| 164 | return oi.ObserveExec(AsFrame(vars), func(any) {}) |
| 165 | } |
| 166 | |
| 167 | // ObserveEval evaluates an interpretable and performs per-evaluation state-tracking. |
| 168 | // |