Changeset 12911 in webkit for trunk/JavaScriptCore/kjs/math_object.cpp
- Timestamp:
- Feb 20, 2006, 11:54:55 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/math_object.cpp
r12317 r12911 154 154 static bool randomSeeded = false; 155 155 156 MathFuncImp::MathFuncImp(ExecState *exec, int i, int l) 157 : InternalFunctionImp( 158 static_cast<FunctionPrototype*>(exec->lexicalInterpreter()->builtinFunctionPrototype()) 159 ), id(i) 156 MathFuncImp::MathFuncImp(ExecState* exec, int i, int l, const Identifier& name) 157 : InternalFunctionImp(static_cast<FunctionPrototype*>(exec->lexicalInterpreter()->builtinFunctionPrototype()), name) 158 , id(i) 160 159 { 161 160 putDirect(lengthPropertyName, l, DontDelete|ReadOnly|DontEnum);
Note:
See TracChangeset
for help on using the changeset viewer.