Rhino.Ast.Symbol.GetName C# (CSharp) Method

GetName() public method

Returns symbol name
public GetName ( ) : string
return string
		public virtual string GetName()
		{
			return name;
		}

Usage Example

Example #1
0
		/// <summary>Enters a symbol into this scope.</summary>
		/// <remarks>Enters a symbol into this scope.</remarks>
		public virtual void PutSymbol(Symbol symbol)
		{
			if (symbol.GetName() == null)
			{
				throw new ArgumentException("null symbol name");
			}
			EnsureSymbolTable();
			symbolTable.Put(symbol.GetName(), symbol);
			symbol.SetContainingTable(this);
			top.AddSymbol(symbol);
		}