Changeset 9448 in webkit for trunk/JavaScriptCore/kjs/nodes.cpp
- Timestamp:
- Jun 21, 2005, 11:42:30 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes.cpp
r9445 r9448 2780 2780 func.put(exec, lengthPropertyName, Number(plen), ReadOnly|DontDelete|DontEnum); 2781 2781 2782 exec->context().imp()->variableObject().put(exec,ident,func); 2782 if (exec->context().imp()->codeType() == EvalCode) { 2783 // ECMA 10.2.2 2784 exec->context().imp()->variableObject().put(exec, ident, func, Internal); 2785 } else { 2786 exec->context().imp()->variableObject().put(exec, ident, func, Internal | DontDelete); 2787 } 2783 2788 2784 2789 if (body) {
Note:
See TracChangeset
for help on using the changeset viewer.