Changeset 429 for trunk/JavaScriptCore/kjs/JSStaticScopeObject.cpp
- Timestamp:
- 08/04/08 12:23:14 (5 months ago)
- Files:
-
- trunk/JavaScriptCore/kjs/JSStaticScopeObject.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/JavaScriptCore/kjs/JSStaticScopeObject.cpp
r419 r429 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 {
