2 * Copyright (C) 1999-2000,2003 Harri Porten (porten@kde.org)
3 * Copyright (C) 2007, 2008 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::info
= { "Function", &InternalFunction::info
, 0, ExecState::numberTable
};
47 /* Source for NumberConstructor.lut.h
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
, NonNullPassRefPtr
<Structure
> structure
, NumberPrototype
* numberPrototype
)
58 : InternalFunction(&exec
->globalData(), structure
, Identifier(exec
, numberPrototype
->info
.className
))
61 putDirectWithoutTransition(exec
->propertyNames().prototype
, numberPrototype
, DontEnum
| DontDelete
| ReadOnly
);
63 // no. of arguments for constructor
64 putDirectWithoutTransition(exec
->propertyNames().length
, jsNumber(exec
, 1), ReadOnly
| DontEnum
| DontDelete
);
67 bool NumberConstructor::getOwnPropertySlot(ExecState
* exec
, const Identifier
& propertyName
, PropertySlot
& slot
)
69 return getStaticValueSlot
<NumberConstructor
, InternalFunction
>(exec
, ExecState::numberTable(exec
), this, propertyName
, slot
);
72 bool NumberConstructor::getOwnPropertyDescriptor(ExecState
* exec
, const Identifier
& propertyName
, PropertyDescriptor
& descriptor
)
74 return getStaticValueDescriptor
<NumberConstructor
, InternalFunction
>(exec
, ExecState::numberTable(exec
), this, propertyName
, descriptor
);
77 static JSValue
numberConstructorNaNValue(ExecState
* exec
, JSValue
, const Identifier
&)
82 static JSValue
numberConstructorNegInfinity(ExecState
* exec
, JSValue
, const Identifier
&)
84 return jsNumber(exec
, -Inf
);
87 static JSValue
numberConstructorPosInfinity(ExecState
* exec
, JSValue
, const Identifier
&)
89 return jsNumber(exec
, Inf
);
92 static JSValue
numberConstructorMaxValue(ExecState
* exec
, JSValue
, const Identifier
&)
94 return jsNumber(exec
, 1.7976931348623157E+308);
97 static JSValue
numberConstructorMinValue(ExecState
* exec
, JSValue
, const Identifier
&)
99 return jsNumber(exec
, 5E-324);
103 static JSObject
* constructWithNumberConstructor(ExecState
* exec
, JSObject
*, const ArgList
& args
)
105 NumberObject
* object
= new (exec
) NumberObject(exec
->lexicalGlobalObject()->numberObjectStructure());
106 double n
= args
.isEmpty() ? 0 : args
.at(0).toNumber(exec
);
107 object
->setInternalValue(jsNumber(exec
, n
));
111 ConstructType
NumberConstructor::getConstructData(ConstructData
& constructData
)
113 constructData
.native
.function
= constructWithNumberConstructor
;
114 return ConstructTypeHost
;
118 static JSValue JSC_HOST_CALL
callNumberConstructor(ExecState
* exec
, JSObject
*, JSValue
, const ArgList
& args
)
120 return jsNumber(exec
, args
.isEmpty() ? 0 : args
.at(0).toNumber(exec
));
123 CallType
NumberConstructor::getCallData(CallData
& callData
)
125 callData
.native
.function
= callNumberConstructor
;