Click or drag to resize

BaseRecognizerGetRuleInvocationStack Method

Return IListT 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.

Namespace:  Stimulsoft.Data.Expressions.Antlr.Runtime
Assembly:  Stimulsoft.Data (in Stimulsoft.Data.dll) Version: 2019.3.1.0
Syntax
public virtual IList<string> GetRuleInvocationStack()

Return Value

Type: IListString

[Missing <returns> documentation for "M:Stimulsoft.Data.Expressions.Antlr.Runtime.BaseRecognizer.GetRuleInvocationStack"]

Remarks
This is very useful for error messages and for context-sensitive error recovery.
See Also