Uses of Class
openjava.syntax.SyntaxException

Packages that use SyntaxException
openjava.syntax   
 

Uses of SyntaxException in openjava.syntax
 

Methods in openjava.syntax that return SyntaxException
 SyntaxException AbstractSyntaxRule.getSyntaxException()
          Obtains the syntax exception at the last lookahead. through the method lookahead(TokenSource).
 SyntaxException SyntaxRule.getSyntaxException()
          Returns the last syntax exception in consuming token source through the method consume(TokenSource).
static SyntaxException JavaSyntaxRules.getLastException()
           
 

Methods in openjava.syntax that throw SyntaxException
abstract  ParseTree AbstractSyntaxRule.consume(TokenSource token_src)
          Consumes tokens from the given token source following the rule.
 ParseTree CompositeRule.consume(TokenSource token_src)
          Consumes token source.
 ParseTree TokenRule.consume(TokenSource token_src)
          Consumes token source.
 ParseTree BlockRule.consume(TokenSource token_src)
           
 ParseTree SyntaxRule.consume(TokenSource token_src)
          Consumes tokens from the given token source following the rule.
 ParseTree SeparatedListRule.consume(TokenSource token_src)
          Consumes token source.
 ParseTree SelectionRule.consume(TokenSource token_src)
           
 ParseTree NameRule.consume(TokenSource token_src)
          Consumes a dot-separated name like java.lang.String.
 Variable NameRule.consumeQualifiedName(TokenSource token_src)
          To override for modifying rule.
 ParseTree StatementRule.consume(TokenSource token_src)
           
 Statement StatementRule.consumeStatement(TokenSource token_src)
           
 ParseTree TypeNameRule.consume(TokenSource token_src)
           
 TypeName TypeNameRule.consumeTypeName(TokenSource token_src)
           
 ParseTree IdentifierRule.consume(TokenSource token_src)
           
 Variable IdentifierRule.consumeIdentifier(TokenSource token_src)
           
 ParseTree IterationRule.consume(TokenSource token_src)
          Consumes token source.
 ParseTree PrepPhraseRule.consume(TokenSource token_src)
           
 ParseTree ExpressionRule.consume(TokenSource token_src)
           
 Expression ExpressionRule.consumeExpression(TokenSource token_src)
          Subclasses of this class can override this method to extend its returnable expressions.