Microsoft.Automata.Grammars.ProductionNode.ProductionNode C# (CSharp) Method

ProductionNode() private method

private ProductionNode ( VariableNode parent ) : System
parent VariableNode
return System
        internal ProductionNode(VariableNode parent, params VariableNode[] children)
        {
            this.parent = parent;
            this.children = new HashSet<VariableNode>(children);
        }