Changeset 35533 in webkit for trunk/JavaScriptCore/kjs/JSStaticScopeObject.cpp
- Timestamp:
- Aug 3, 2008, 2:58:21 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSStaticScopeObject.cpp
r35368 r35533 30 30 namespace KJS { 31 31 32 JSObject* JSStaticScopeObject::toThisObject(ExecState* exec) const 33 { 34 return exec->globalThisValue(); 35 } 36 37 void JSStaticScopeObject::put(ExecState*, const Identifier& propertyName, JSValue* value) 38 { 39 if (symbolTablePut(propertyName, value)) 40 return; 41 42 ASSERT_NOT_REACHED(); 43 } 44 32 45 void JSStaticScopeObject::putWithAttributes(ExecState*, const Identifier& propertyName, JSValue* value, unsigned attributes) 33 46 {
Note:
See TracChangeset
for help on using the changeset viewer.