Changeset 37747 in webkit for trunk/JavaScriptCore/kjs/RegExpConstructor.cpp
- Timestamp:
- Oct 20, 2008, 2:27:44 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/RegExpConstructor.cpp
r37684 r37747 109 109 { 110 110 // ECMA 15.10.5.1 RegExp.prototype 111 putDirect (exec->propertyNames().prototype, regExpPrototype, DontEnum | DontDelete | ReadOnly);111 putDirectWithoutTransition(exec->propertyNames().prototype, regExpPrototype, DontEnum | DontDelete | ReadOnly); 112 112 113 113 // no. of arguments for constructor 114 putDirect (exec->propertyNames().length, jsNumber(exec, 2), ReadOnly | DontDelete | DontEnum);114 putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 2), ReadOnly | DontDelete | DontEnum); 115 115 } 116 116
Note:
See TracChangeset
for help on using the changeset viewer.