()
| 303 | } |
| 304 | |
| 305 | resolvedOptions(): ResolvedIntlListFormatOptions { |
| 306 | validateInstance(this, 'resolvedOptions') |
| 307 | return { |
| 308 | locale: getInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'locale'), |
| 309 | type: getInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'type')!, |
| 310 | style: getInternalSlot(ListFormat.__INTERNAL_SLOT_MAP__, this, 'style')!, |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | public static supportedLocalesOf( |
| 315 | locales: string | string[], |
nothing calls this directly
no test coverage detected