Environment constructor
Environment({
- Environment? enclosing,
Creates an environment.
If enclosing
is null
, it will be a root environment, usually the
global scope of the program.
Implementation
Environment({this.enclosing});