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