(name string)
| 116 | // whether a variable name is local to this scope. |
| 117 | type localVariableHolder interface { |
| 118 | IsLocalVariable(name string) bool |
| 119 | } |
| 120 | |
| 121 | // evalStateFactory holds a reference to a factory function that produces an EvalState instance. |
no outgoing calls