Antlr4.Runtime.Tree.Pattern.RuleTagToken.RuleTagToken C# (CSharp) Method

RuleTagToken() public method

Constructs a new instance of RuleTagToken with the specified rule name and bypass token type and no label.
/// IllegalArgumentException /// if /// /// is /// /// or empty. ///
public RuleTagToken ( string ruleName, int bypassTokenType ) : System
ruleName string The name of the parser rule this rule tag matches.
bypassTokenType int The bypass token type assigned to the parser rule.
return System
        public RuleTagToken(string ruleName, int bypassTokenType)
            : this(ruleName, bypassTokenType, null)
        {
        }

Same methods

RuleTagToken::RuleTagToken ( string ruleName, int bypassTokenType, string label ) : System