Changeset 33318
- Timestamp:
- 05/12/08 23:03:05 (6 months ago)
- Location:
- branches/squirrelfish/JavaScriptCore
- Files:
-
- 3 modified
-
ChangeLog (modified) (1 diff)
-
kjs/ExecState.cpp (modified) (1 diff)
-
kjs/ExecState.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/squirrelfish/JavaScriptCore/ChangeLog
r33317 r33318 1 2008-04-30 Geoffrey Garen <ggaren@apple.com> 2 3 Release build fix: Always compile in "isGlobalObject", since it's 4 listed in our .exp file. 5 6 * kjs/ExecState.cpp: 7 (KJS::ExecState::isGlobalObject): 8 * kjs/ExecState.h: 9 1 10 2008-04-30 Oliver Hunt <oliver@apple.com> 2 11 -
branches/squirrelfish/JavaScriptCore/kjs/ExecState.cpp
r33314 r33318 42 42 } 43 43 44 #ifndef NDEBUG45 44 bool ExecState::isGlobalObject(JSObject* o) const 46 45 { 47 46 return o->isGlobalObject(); 48 47 } 49 #endif50 48 51 49 } // namespace KJS -
branches/squirrelfish/JavaScriptCore/kjs/ExecState.h
r33316 r33318 103 103 104 104 private: 105 #ifndef NDEBUG106 105 bool isGlobalObject(JSObject*) const; 107 #endif108 106 109 107 JSGlobalObject* m_globalObject;