Exec implements the InterpretableV2 interface method.
(frame *ExecutionFrame)
| 156 | |
| 157 | // Exec implements the InterpretableV2 interface method. |
| 158 | func (oi *ObservableInterpretable) Exec(frame *ExecutionFrame) ref.Val { |
| 159 | return oi.ObserveExec(frame, func(any) {}) |
| 160 | } |
| 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 { |
nothing calls this directly
no test coverage detected