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