Beispiel #1
0
 public void PrepareExpression(TokenList tokens, Stack <int?> precedenceStack)
 {
     if (tokens.Next.TokenType != TokenType.GroupStart)
     {
         throw new TokenParserException("You must specify an argument representing the category code for the new forum.", tokens.Current);
     }
     tokens.Advance();
 }
 public void PrepareExpression(TokenList tokens, Stack <int?> precedenceStack)
 {
     token = tokens.Current;
     tokens.Advance();
 }