Changeset 37747 in webkit for trunk/JavaScriptCore/kjs/FunctionConstructor.cpp
- Timestamp:
- Oct 20, 2008, 2:27:44 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/FunctionConstructor.cpp
r37684 r37747 38 38 : InternalFunction(&exec->globalData(), structure, Identifier(exec, functionPrototype->classInfo()->className)) 39 39 { 40 putDirect (exec->propertyNames().prototype, functionPrototype, DontEnum | DontDelete | ReadOnly);40 putDirectWithoutTransition(exec->propertyNames().prototype, functionPrototype, DontEnum | DontDelete | ReadOnly); 41 41 42 42 // Number of arguments for constructor 43 putDirect (exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontDelete | DontEnum);43 putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontDelete | DontEnum); 44 44 } 45 45
Note:
See TracChangeset
for help on using the changeset viewer.