Changeset 268956 in webkit for trunk/Source/JavaScriptCore/runtime/VM.cpp
- Timestamp:
- Oct 24, 2020, 11:20:47 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/VM.cpp
r267938 r268956 69 69 #include "IntlDateTimeFormat.h" 70 70 #include "IntlDisplayNames.h" 71 #include "IntlListFormat.h" 71 72 #include "IntlLocale.h" 72 73 #include "IntlNumberFormat.h" … … 315 316 , intlDateTimeFormatHeapCellType(IsoHeapCellType::create<IntlDateTimeFormat>()) 316 317 , intlDisplayNamesHeapCellType(IsoHeapCellType::create<IntlDisplayNames>()) 318 , intlListFormatHeapCellType(IsoHeapCellType::create<IntlListFormat>()) 317 319 , intlLocaleHeapCellType(IsoHeapCellType::create<IntlLocale>()) 318 320 , intlNumberFormatHeapCellType(IsoHeapCellType::create<IntlNumberFormat>()) … … 1545 1547 DYNAMIC_ISO_SUBSPACE_DEFINE_MEMBER_SLOW(intlDateTimeFormatSpace, intlDateTimeFormatHeapCellType.get(), IntlDateTimeFormat) 1546 1548 DYNAMIC_ISO_SUBSPACE_DEFINE_MEMBER_SLOW(intlDisplayNamesSpace, intlDisplayNamesHeapCellType.get(), IntlDisplayNames) 1549 DYNAMIC_ISO_SUBSPACE_DEFINE_MEMBER_SLOW(intlListFormatSpace, intlListFormatHeapCellType.get(), IntlListFormat) 1547 1550 DYNAMIC_ISO_SUBSPACE_DEFINE_MEMBER_SLOW(intlLocaleSpace, intlLocaleHeapCellType.get(), IntlLocale) 1548 1551 DYNAMIC_ISO_SUBSPACE_DEFINE_MEMBER_SLOW(intlNumberFormatSpace, intlNumberFormatHeapCellType.get(), IntlNumberFormat)
Note:
See TracChangeset
for help on using the changeset viewer.