Lines Matching full:intl
28 // Test that we always use original Intl.Constructors for toLocaleString calls.
34 Intl.Collator = Intl.NumberFormat = Intl.DateTimeFormat = throwError;
36 Intl.Collator.prototype.compare = throwError;
37 Intl.NumberFormat.prototype.format = throwError;
38 Intl.DateTimeFormat.prototype.format = throwError;
41 assertThrows('new Intl.Collator()');
42 assertThrows('new Intl.NumberFormat()');
43 assertThrows('new Intl.DateTimeFormat()');