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

GetSymbol() public method

Looks up a symbol in this scope.
Looks up a symbol in this scope.
public GetSymbol ( string name ) : Symbol
name string the symbol name
return Symbol
		public virtual Symbol GetSymbol(string name)
		{
			return symbolTable == null ? null : symbolTable.Get(name);
		}