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"
28 #include "Operations.h"
32 static JSValue
numberConstructorNaNValue(ExecState
*, JSValue
, PropertyName
);
33 static JSValue
numberConstructorNegInfinity(ExecState
*, JSValue
, PropertyName
);
34 static JSValue
numberConstructorPosInfinity(ExecState
*, JSValue
, PropertyName
);
35 static JSValue
numberConstructorMaxValue(ExecState
*, JSValue
, PropertyName
);
36 static JSValue
numberConstructorMinValue(ExecState
*, JSValue
, PropertyName
);
40 #include "NumberConstructor.lut.h"
44 ASSERT_HAS_TRIVIAL_DESTRUCTOR(NumberConstructor
);
46 const ClassInfo
NumberConstructor::s_info
= { "Function", &InternalFunction::s_info
, 0, ExecState::numberConstructorTable
, CREATE_METHOD_TABLE(NumberConstructor
) };
48 /* Source for NumberConstructor.lut.h
49 @begin numberConstructorTable
50 NaN numberConstructorNaNValue DontEnum|DontDelete|ReadOnly
51 NEGATIVE_INFINITY numberConstructorNegInfinity DontEnum|DontDelete|ReadOnly
52 POSITIVE_INFINITY numberConstructorPosInfinity DontEnum|DontDelete|ReadOnly
53 MAX_VALUE numberConstructorMaxValue DontEnum|DontDelete|ReadOnly
54 MIN_VALUE numberConstructorMinValue DontEnum|DontDelete|ReadOnly
58 NumberConstructor::NumberConstructor(JSGlobalObject
* globalObject
, Structure
* structure
)
59 : InternalFunction(globalObject
, structure
)
63 void NumberConstructor::finishCreation(ExecState
* exec
, NumberPrototype
* numberPrototype
)
65 Base::finishCreation(exec
->vm(), numberPrototype
->s_info
.className
);
66 ASSERT(inherits(&s_info
));
69 putDirectWithoutTransition(exec
->vm(), exec
->propertyNames().prototype
, numberPrototype
, DontEnum
| DontDelete
| ReadOnly
);
71 // no. of arguments for constructor
72 putDirectWithoutTransition(exec
->vm(), exec
->propertyNames().length
, jsNumber(1), ReadOnly
| DontEnum
| DontDelete
);
75 bool NumberConstructor::getOwnPropertySlot(JSCell
* cell
, ExecState
* exec
, PropertyName propertyName
, PropertySlot
& slot
)
77 return getStaticValueSlot
<NumberConstructor
, InternalFunction
>(exec
, ExecState::numberConstructorTable(exec
), jsCast
<NumberConstructor
*>(cell
), propertyName
, slot
);
80 bool NumberConstructor::getOwnPropertyDescriptor(JSObject
* object
, ExecState
* exec
, PropertyName propertyName
, PropertyDescriptor
& descriptor
)
82 return getStaticValueDescriptor
<NumberConstructor
, InternalFunction
>(exec
, ExecState::numberConstructorTable(exec
), jsCast
<NumberConstructor
*>(object
), propertyName
, descriptor
);
85 void NumberConstructor::put(JSCell
* cell
, ExecState
* exec
, PropertyName propertyName
, JSValue value
, PutPropertySlot
& slot
)
87 lookupPut
<NumberConstructor
, InternalFunction
>(exec
, propertyName
, value
, ExecState::numberConstructorTable(exec
), jsCast
<NumberConstructor
*>(cell
), slot
);
90 static JSValue
numberConstructorNaNValue(ExecState
*, JSValue
, PropertyName
)
95 static JSValue
numberConstructorNegInfinity(ExecState
*, JSValue
, PropertyName
)
97 return jsNumber(-std::numeric_limits
<double>::infinity());
100 static JSValue
numberConstructorPosInfinity(ExecState
*, JSValue
, PropertyName
)
102 return jsNumber(std::numeric_limits
<double>::infinity());
105 static JSValue
numberConstructorMaxValue(ExecState
*, JSValue
, PropertyName
)
107 return jsNumber(1.7976931348623157E+308);
110 static JSValue
numberConstructorMinValue(ExecState
*, JSValue
, PropertyName
)
112 return jsNumber(5E-324);
116 static EncodedJSValue JSC_HOST_CALL
constructWithNumberConstructor(ExecState
* exec
)
118 NumberObject
* object
= NumberObject::create(exec
->vm(), asInternalFunction(exec
->callee())->globalObject()->numberObjectStructure());
119 double n
= exec
->argumentCount() ? exec
->argument(0).toNumber(exec
) : 0;
120 object
->setInternalValue(exec
->vm(), jsNumber(n
));
121 return JSValue::encode(object
);
124 ConstructType
NumberConstructor::getConstructData(JSCell
*, ConstructData
& constructData
)
126 constructData
.native
.function
= constructWithNumberConstructor
;
127 return ConstructTypeHost
;
131 static EncodedJSValue JSC_HOST_CALL
callNumberConstructor(ExecState
* exec
)
133 return JSValue::encode(jsNumber(!exec
->argumentCount() ? 0 : exec
->argument(0).toNumber(exec
)));
136 CallType
NumberConstructor::getCallData(JSCell
*, CallData
& callData
)
138 callData
.native
.function
= callNumberConstructor
;