Antlr3.Tool.Grammar.LabelElementPair.LabelElementPair C# (CSharp) Method

LabelElementPair() public method

public LabelElementPair ( Grammar outer, Antlr.Runtime.IToken label, Antlr3.Tool.GrammarAST elementRef ) : System.Collections.Generic
outer Grammar
label Antlr.Runtime.IToken
elementRef Antlr3.Tool.GrammarAST
return System.Collections.Generic
            public LabelElementPair( Grammar outer, IToken label, GrammarAST elementRef )
            {
                this._outer = outer;
                this.label = label;
                this.elementRef = elementRef;
                this.referencedRuleName = elementRef.Text;
            }