Exemple #1
0
        public static Production Symbol(string name)
        {
            ProductionOfString production = new ProductionOfString();

            production.content = name;
            return(production);
        }
Exemple #2
0
        public override Production Copy()
        {
            ProductionOfString production = new ProductionOfString();

            production.content = this.content;
            return(production);
        }