validatedDeclarations returns a reference to the validated variable and function declaration scope stack. must be copied before use.
()
| 317 | // validatedDeclarations returns a reference to the validated variable and function declaration scope stack. |
| 318 | // must be copied before use. |
| 319 | func (e *Env) validatedDeclarations() *Scopes { |
| 320 | return e.declarations |
| 321 | } |
| 322 | |
| 323 | // enterScope creates a new Env instance with a new innermost declaration scope. |
| 324 | func (e *Env) enterScope() *Env { |
no outgoing calls