GetRuleInvocationStack() 공개 메소드

* Return IList{T} of the rules in your parser instance * leading up to a call to this method. You could override if * you want more details such as the file/line info of where * in the parser java code a rule is invoked. *
* This is very useful for error messages and for context-sensitive * error recovery. *
public GetRuleInvocationStack ( ) : IList
리턴 IList
예제 #1
0
 public virtual IList <string> GetRuleInvocationStack()
 {
     return(BaseRecognizer.GetRuleInvocationStack(new StackTrace(true)));
 }