evalStateFactory holds a reference to a factory function that produces an EvalState instance.
| 121 | |
| 122 | // evalStateFactory holds a reference to a factory function that produces an EvalState instance. |
| 123 | type evalStateFactory struct { |
| 124 | factory func() EvalState |
| 125 | } |
| 126 | |
| 127 | // InitState produces an EvalState instance and bundles it into the ExecutionFrame in a way which is |
| 128 | // not visible to expression evaluation. |
nothing calls this directly
no outgoing calls
no test coverage detected