Changeset 35027 in webkit for trunk/JavaScriptCore/kjs/JSActivation.cpp
- Timestamp:
- Jul 6, 2008, 7:49:29 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSActivation.cpp
r35016 r35027 77 77 // We don't call through to JSObject because there's no way to give an 78 78 // activation object getter properties or a prototype. 79 ASSERT(! _prop.hasGetterSetterProperties());79 ASSERT(!m_propertyMap.hasGetterSetterProperties()); 80 80 ASSERT(prototype() == jsNull()); 81 81 return false; … … 90 90 // properties are non-standard extensions that other implementations do not 91 91 // expose in the activation object. 92 ASSERT(! _prop.hasGetterSetterProperties());93 _prop.put(propertyName, value, 0, true);92 ASSERT(!m_propertyMap.hasGetterSetterProperties()); 93 m_propertyMap.put(propertyName, value, 0, true); 94 94 } 95 95 … … 103 103 // properties are non-standard extensions that other implementations do not 104 104 // expose in the activation object. 105 ASSERT(! _prop.hasGetterSetterProperties());106 _prop.put(propertyName, value, attributes, true);105 ASSERT(!m_propertyMap.hasGetterSetterProperties()); 106 m_propertyMap.put(propertyName, value, attributes, true); 107 107 } 108 108
Note:
See TracChangeset
for help on using the changeset viewer.