Microsoft.Automata.Grammars.ProductionNode.ProductionNode C# (CSharp) Méthode

ProductionNode() private méthode

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