public void AddChild(Token token) { var node = new NodeAST(token) { Parent = this }; AddChild(node); }
public void AddChild(NodeAST node) { node.Parent = this; children.Add(node); }