GetDeclType() public method

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