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

RemovedDeclaredVariable() private method

Removes a declared variable from the scope.
private RemovedDeclaredVariable ( string name ) : void
name string The name of the variable.
return void
        internal void RemovedDeclaredVariable(string name)
        {
            this.variables.Remove(name);
        }