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

DeclarationStatement() public method

public DeclarationStatement ( string name, TypeSpecifier typeSpecifier, Location location ) : System
name string
typeSpecifier TypeSpecifier
location Location
return System
        public DeclarationStatement(string name, TypeSpecifier typeSpecifier,
                                    Location location)
            : base(location)
        {
            this.name = name;
            this.typeSpecifier = typeSpecifier;
        }