Babel.Compiler.AttrDefinition.AttrDefinition C# (CSharp) Method

AttrDefinition() public method

public AttrDefinition ( string name, TypeSpecifier typeSpecifier, AttrModifier modifier, Location location ) : System
name string
typeSpecifier TypeSpecifier
modifier AttrModifier
location Location
return System
        public AttrDefinition(string name,
                              TypeSpecifier typeSpecifier,
                              AttrModifier modifier,
                              Location location)
            : base(location)
        {
            this.name = name;
            this.typeSpecifier = typeSpecifier;
            this.modifier = modifier;
            fieldBuilder = null;
            reader = null;
            writer = null;
        }