Rhino.Ast.Scope.SetSymbolTable C# (CSharp) Method

SetSymbolTable() public method

Sets the symbol table for this scope.
Sets the symbol table for this scope. May be null .
public SetSymbolTable ( Symbol>.IDictionary table ) : void
table Symbol>.IDictionary
return void
		public virtual void SetSymbolTable(IDictionary<string, Symbol> table)
		{
			symbolTable = table;
		}