Jurassic.Compiler.Scope.Scope C# (CSharp) Method

Scope() protected method

Creates a new Scope instance.
protected Scope ( Scope parentScope ) : System
parentScope Scope A reference to the parent scope, or null if this is /// the global scope.
return System
        protected Scope(Scope parentScope)
            : this(parentScope, 0)
        {
        }

Same methods

Scope::Scope ( Scope parentScope, int declaredVariableCount ) : System