Changeset 37747 in webkit for trunk/JavaScriptCore/kjs/ArrayConstructor.cpp
- Timestamp:
- Oct 20, 2008, 2:27:44 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ArrayConstructor.cpp
r37684 r37747 37 37 { 38 38 // ECMA 15.4.3.1 Array.prototype 39 putDirect (exec->propertyNames().prototype, arrayPrototype, DontEnum | DontDelete | ReadOnly);39 putDirectWithoutTransition(exec->propertyNames().prototype, arrayPrototype, DontEnum | DontDelete | ReadOnly); 40 40 41 41 // no. of arguments for constructor 42 putDirect (exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontEnum | DontDelete);42 putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontEnum | DontDelete); 43 43 } 44 44
Note:
See TracChangeset
for help on using the changeset viewer.