ResolveName implements the Activation interface by proxying to the internal activation.
(name string)
| 178 | |
| 179 | // ResolveName implements the Activation interface by proxying to the internal activation. |
| 180 | func (f *ExecutionFrame) ResolveName(name string) (any, bool) { |
| 181 | return f.Activation.ResolveName(name) |
| 182 | } |
| 183 | |
| 184 | // Parent implements the Activation interface by proxying to the internal activation. |
| 185 | func (f *ExecutionFrame) Parent() Activation { |
nothing calls this directly
no test coverage detected