2 * Copyright (C) 1999-2000,2003 Harri Porten (porten@kde.org)
3 * Copyright (C) 2007, 2008, 2011 Apple Inc. All rights reserved.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
23 #include "NumberConstructor.h"
26 #include "NumberObject.h"
27 #include "NumberPrototype.h"
31 ASSERT_CLASS_FITS_IN_CELL(NumberConstructor
);
33 static JSValue
numberConstructorNaNValue(ExecState
*, JSValue
, const Identifier
&);
34 static JSValue
numberConstructorNegInfinity(ExecState
*, JSValue
, const Identifier
&);
35 static JSValue
numberConstructorPosInfinity(ExecState
*, JSValue
, const Identifier
&);
36 static JSValue
numberConstructorMaxValue(ExecState
*, JSValue
, const Identifier
&);
37 static JSValue
numberConstructorMinValue(ExecState
*, JSValue
, const Identifier
&);
41 #include "NumberConstructor.lut.h"
45 const ClassInfo
NumberConstructor::s_info
= { "Function", &InternalFunction::s_info
, 0, ExecState::numberConstructorTable
};
47 /* Source for NumberConstructor.lut.h
48 @begin numberConstructorTable
49 NaN numberConstructorNaNValue DontEnum|DontDelete|ReadOnly
50 NEGATIVE_INFINITY numberConstructorNegInfinity DontEnum|DontDelete|ReadOnly
51 POSITIVE_INFINITY numberConstructorPosInfinity DontEnum|DontDelete|ReadOnly
52 MAX_VALUE numberConstructorMaxValue DontEnum|DontDelete|ReadOnly
53 MIN_VALUE numberConstructorMinValue DontEnum|DontDelete|ReadOnly
57 NumberConstructor::NumberConstructor(ExecState
* exec
, JSGlobalObject
* globalObject
, Structure
* structure
, NumberPrototype
* numberPrototype
)
58 : InternalFunction(&exec
->globalData(), globalObject
, structure
, Identifier(exec
, numberPrototype
->s_info
.className
))
60 ASSERT(inherits(&s_info
));
63 putDirectWithoutTransition(exec
->globalData(), exec
->propertyNames().prototype
, numberPrototype
, DontEnum
| DontDelete
| ReadOnly
);
65 // no. of arguments for constructor
66 putDirectWithoutTransition(exec
->globalData(), exec
->propertyNames().length
, jsNumber(1), ReadOnly
| DontEnum
| DontDelete
);
69 bool NumberConstructor::getOwnPropertySlot(ExecState
* exec
, const Identifier
& propertyName
, PropertySlot
& slot
)
71 return getStaticValueSlot
<NumberConstructor
, InternalFunction
>(exec
, ExecState::numberConstructorTable(exec
), this, propertyName
, slot
);
74 bool NumberConstructor::getOwnPropertyDescriptor(ExecState
* exec
, const Identifier
& propertyName
, PropertyDescriptor
& descriptor
)
76 return getStaticValueDescriptor
<NumberConstructor
, InternalFunction
>(exec
, ExecState::numberConstructorTable(exec
), this, propertyName
, descriptor
);
79 static JSValue
numberConstructorNaNValue(ExecState
*, JSValue
, const Identifier
&)
84 static JSValue
numberConstructorNegInfinity(ExecState
*, JSValue
, const Identifier
&)
86 return jsNumber(-Inf
);
89 static JSValue
numberConstructorPosInfinity(ExecState
*, JSValue
, const Identifier
&)
94 static JSValue
numberConstructorMaxValue(ExecState
*, JSValue
, const Identifier
&)
96 return jsNumber(1.7976931348623157E+308);
99 static JSValue
numberConstructorMinValue(ExecState
*, JSValue
, const Identifier
&)
101 return jsNumber(5E-324);
105 static EncodedJSValue JSC_HOST_CALL
constructWithNumberConstructor(ExecState
* exec
)
107 NumberObject
* object
= new (exec
) NumberObject(exec
->globalData(), asInternalFunction(exec
->callee())->globalObject()->numberObjectStructure());
108 double n
= exec
->argumentCount() ? exec
->argument(0).toNumber(exec
) : 0;
109 object
->setInternalValue(exec
->globalData(), jsNumber(n
));
110 return JSValue::encode(object
);
113 ConstructType
NumberConstructor::getConstructData(ConstructData
& constructData
)
115 constructData
.native
.function
= constructWithNumberConstructor
;
116 return ConstructTypeHost
;
120 static EncodedJSValue JSC_HOST_CALL
callNumberConstructor(ExecState
* exec
)
122 return JSValue::encode(jsNumber(!exec
->argumentCount() ? 0 : exec
->argument(0).toNumber(exec
)));
125 CallType
NumberConstructor::getCallData(CallData
& callData
)
127 callData
.native
.function
= callNumberConstructor
;