Antlr4.Codegen.Model.Decl.AttributeDecl.AttributeDecl C# (CSharp) Méthode

AttributeDecl() public méthode

public AttributeDecl ( OutputModelFactory factory, Attribute a ) : Antlr4.Tool
factory OutputModelFactory
a Antlr4.Tool.Attribute
Résultat Antlr4.Tool
        public AttributeDecl(OutputModelFactory factory, Attribute a)
            : base(factory, a.name, a.decl)
        {
            this.Type = a.type;
            this.InitValue = a.initValue;
        }
AttributeDecl