Antlr4.Runtime.Tree.Trees.GetNodeText C# (CSharp) Method

GetNodeText() public static method

public static GetNodeText ( ITree t, Parser recog ) : string
t ITree
recog Parser
return string
        public static string GetNodeText(ITree t, Parser recog)
        {
            string[] ruleNames = recog != null ? recog.RuleNames : null;
            IList<string> ruleNamesList = ruleNames != null ? Arrays.AsList(ruleNames) : null;
            return GetNodeText(t, ruleNamesList);
        }

Same methods

Trees::GetNodeText ( ITree t, IList ruleNames ) : string