Babel.Compiler.ConstDefinition.ConstDefinition C# (CSharp) 메소드

ConstDefinition() 공개 메소드

public ConstDefinition ( string name, TypeSpecifier typeSpecifier, object value, ConstModifier modifier, Location location ) : System
name string
typeSpecifier TypeSpecifier
value object
modifier ConstModifier
location Location
리턴 System
        public ConstDefinition(string name,
                               TypeSpecifier typeSpecifier,
                               object value,
                               ConstModifier modifier,
                               Location location)
            : base(location)
        {
            this.name = name;
            this.typeSpecifier = typeSpecifier;
            this.value = value;
            this.modifier = modifier;
            fieldBuilder = null;
            reader = null;
        }