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

GetDeclType() public method

Returns symbol declaration type
public GetDeclType ( ) : int
return int
		public virtual int GetDeclType()
		{
			return declType;
		}

Usage Example

Beispiel #1
0
		internal virtual void AddSymbol(Symbol symbol)
		{
			if (variableNames != null)
			{
				CodeBug();
			}
			if (symbol.GetDeclType() == Token.LP)
			{
				paramCount++;
			}
			symbols.Add(symbol);
		}