Changeset 43220 in webkit for trunk/JavaScriptCore/runtime/JSGlobalData.h
- Timestamp:
- May 5, 2009, 4:34:23 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSGlobalData.h
r43122 r43220 47 47 class ArgList; 48 48 class CommonIdentifiers; 49 class FunctionBodyNode; 49 50 class Heap; 50 51 class IdentifierTable; … … 120 121 #if ENABLE(JIT) 121 122 JITStubs jitStubs; 123 FunctionBodyNode* nativeFunctionThunk() { 124 if (!lazyNativeFunctionThunk) 125 createNativeThunk(); 126 return lazyNativeFunctionThunk.get(); 127 } 128 RefPtr<FunctionBodyNode> lazyNativeFunctionThunk; 122 129 #endif 123 130 TimeoutChecker timeoutChecker; … … 148 155 JSGlobalData(bool isShared, const VPtrSet&); 149 156 static JSGlobalData*& sharedInstanceInternal(); 157 void createNativeThunk(); 150 158 }; 151 159 } // namespace JSC
Note:
See TracChangeset
for help on using the changeset viewer.