Changeset 9404 in webkit for trunk/JavaScriptCore/kjs/nodes.cpp
- Timestamp:
- Jun 16, 2005, 5:57:37 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes.cpp
r9352 r9404 1629 1629 // We use Internal to bypass all checks in derived objects, e.g. so that 1630 1630 // "var location" creates a dynamic property instead of activating window.location. 1631 variable.put(exec, ident, val, DontDelete | Internal); 1632 1631 if (exec->context().imp()->codeType() == EvalCode) { 1632 // ECMA 10.2.2 1633 variable.put(exec, ident, val, Internal); 1634 } else { 1635 variable.put(exec, ident, val, DontDelete | Internal); 1636 } 1633 1637 return ident.ustring(); 1634 1638 }
Note:
See TracChangeset
for help on using the changeset viewer.