Changeset 12911 in webkit for trunk/JavaScriptCore/kjs/array_object.cpp
- Timestamp:
- Feb 20, 2006, 11:54:55 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/array_object.cpp
r12890 r12911 434 434 // ------------------------------ ArrayProtoFunc ---------------------------- 435 435 436 ArrayProtoFunc::ArrayProtoFunc(ExecState *exec, int i, int len )437 : InternalFunctionImp( 438 static_cast<FunctionPrototype*>(exec->lexicalInterpreter()->builtinFunctionPrototype())439 ), id(i)436 ArrayProtoFunc::ArrayProtoFunc(ExecState *exec, int i, int len, const Identifier& name) 437 : InternalFunctionImp(static_cast<FunctionPrototype*> 438 (exec->lexicalInterpreter()->builtinFunctionPrototype()), name) 439 , id(i) 440 440 { 441 441 put(exec,lengthPropertyName,jsNumber(len),DontDelete|ReadOnly|DontEnum);
Note:
See TracChangeset
for help on using the changeset viewer.