Rhino.Ast.Scope.GetSymbol C# (CSharp) Méthode

GetSymbol() public méthode

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