Changeset 50711 in webkit for trunk/JavaScriptCore/runtime/JSGlobalData.h
- Timestamp:
- Nov 9, 2009, 8:14:34 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSGlobalData.h
r50705 r50711 63 63 struct Instruction; 64 64 struct VPtrSet; 65 66 struct DSTOffsetCache { 67 DSTOffsetCache() 68 { 69 reset(); 70 } 71 72 void reset() 73 { 74 offset = 0.0; 75 start = 0.0; 76 end = -1.0; 77 increment = 0.0; 78 } 79 80 double offset; 81 double start; 82 double end; 83 double increment; 84 }; 65 85 66 86 class JSGlobalData : public RefCounted<JSGlobalData> { … … 155 175 156 176 double cachedUTCOffset; 157 177 DSTOffsetCache dstOffsetCache; 178 158 179 UString cachedDateString; 159 180 double cachedDateStringValue; … … 173 194 void createNativeThunk(); 174 195 }; 175 196 176 197 } // namespace JSC 177 198
Note:
See TracChangeset
for help on using the changeset viewer.