Ejemplo n.º 1
0
 public int GetChildIndex(SyntaxTreeNode child)
 {
     return(_children.FindIndex(n => n == child));
 }
Ejemplo n.º 2
0
        public void AddChild(SyntaxTreeNode node)
        {
            node.Parent = this;

            _children.Add(node);
        }