Uses of Class
fr.umlv.tatoo.runtime.parser.ActionReturn

Packages that use ActionReturn
fr.umlv.tatoo.runtime.parser   
 

Uses of ActionReturn in fr.umlv.tatoo.runtime.parser
 

Methods in fr.umlv.tatoo.runtime.parser that return ActionReturn
 ActionReturn SimpleParser.branchOnError(T terminal, String message)
          Signals to the parser an external error, (by example a lexer error) has occurred allowing the parser to try to branch (enter or exit from the current grammar).
 ActionReturn Parser.branchOnError(T terminal, String message)
          Signals to the parser an external error, (by example a lexer error) has occurred allowing the parser to try to branch (enter or exit from the current grammar).
 ActionReturn DefaultParserErrorRecoveryPolicy.continueRecoverOnError(Parser<T,N,P,V> parser, IntArrayList states, T terminal)
           
abstract  ActionReturn ParserErrorRecoveryPolicy.continueRecoverOnError(Parser<T,N,P,V> parser, IntArrayList states, T terminal)
          Called when error recovery was initiated by recover on error, and method ParserErrorRecoveryPolicy.errorRecoveryNeedsContinuation() returns true
<N> ActionReturn
ErrorAction.doPerform(Parser<T,N,P,V> parser, T terminal)
           
<N> ActionReturn
BranchAction.doPerform(Parser<T,N,P,V> parser, T terminal)
           
<N> ActionReturn
ExitAction.doPerform(Parser<T,N,P,V> parser, T terminal)
           
<N> ActionReturn
AcceptAction.doPerform(Parser<T,N,P,V> parser, T terminal)
           
<N> ActionReturn
VersionedAction.doPerform(Parser<T,N,P,V> parser, T terminal)
           
<N> ActionReturn
ShiftAction.doPerform(Parser<T,N,P,V> parser, T terminal)
           
<N> ActionReturn
ReduceAction.doPerform(Parser<T,N,P,V> parser, T terminal)
           
<N> ActionReturn
EnterAction.doPerform(Parser<T,N,P,V> parser, T terminal)
           
abstract
<N> ActionReturn
Action.doPerform(Parser<T,N,P,V> parser, T terminal)
          Performs necessary computations required by the action.
 ActionReturn DefaultParserErrorRecoveryPolicy.recoverOnError(Parser<T,N,P,V> parser, IntArrayList states, T terminal, String message)
           
abstract  ActionReturn ParserErrorRecoveryPolicy.recoverOnError(Parser<T,N,P,V> parser, IntArrayList states, T terminal, String message)
          Tries to recover on an error.
static ActionReturn ActionReturn.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ActionReturn[] ActionReturn.values()
          Returns an array containing the constants of this enum type, in the order they are declared.