Antlr4.Runtime.Tree.Pattern.ParseTreeMatch.GetAll C# (CSharp) Method

GetAll() private method

private GetAll ( string label ) : IList
label string
return IList
        public virtual IList<IParseTree> GetAll(string label)
        {
            IList<IParseTree> nodes = labels.Get(label);
            if (nodes == null)
            {
                return Sharpen.Collections.EmptyList<IParseTree>();
            }
            return nodes;
        }