evalState permits the mutation of evaluation state for a given expression id.
| 36 | |
| 37 | // evalState permits the mutation of evaluation state for a given expression id. |
| 38 | type evalState struct { |
| 39 | values map[int64]ref.Val |
| 40 | } |
| 41 | |
| 42 | // NewEvalState returns an EvalState instanced used to observe the intermediate |
| 43 | // evaluations of an expression. |
nothing calls this directly
no outgoing calls
no test coverage detected