Example #1
0
        public LexemV8 FindFirstChild(LexemV8Type lexemType)
        {
            foreach (var ch in ChildLexemList)
            {
                if (ch.LexemType == lexemType)
                {
                    return ch;
                }
            }

            return null;
        }
Example #2
0
        public LexemV8 FindFirstChild(LexemV8Type lexemType)
        {
            foreach (var ch in ChildLexemList)
            {
                if (ch.LexemType == lexemType)
                {
                    return(ch);
                }
            }

            return(null);
        }