Antlr4.Codegen.Model.Decl.AttributeDecl.AttributeDecl C# (CSharp) Метод

AttributeDecl() публичный Метод

public AttributeDecl ( OutputModelFactory factory, Attribute a ) : Antlr4.Tool
factory OutputModelFactory
a Antlr4.Tool.Attribute
Результат Antlr4.Tool
        public AttributeDecl(OutputModelFactory factory, Attribute a)
            : base(factory, a.name, a.decl)
        {
            this.Type = a.type;
            this.InitValue = a.initValue;
        }
AttributeDecl