google-closure-compiler 20260830.0.0 → 20260907.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -28923,6 +28923,14 @@ google.maps.routes.RoutePolyline3DOptions.prototype.colorScheme;
28923
28923
  */
28924
28924
  google.maps.routes.RoutePolyline3DOptions.prototype.polylineOptions;
28925
28925
 
28926
+ /**
28927
+ * Whether to disable traffic-aware polylines. Traffic aware polylines are only
28928
+ * available when routingPreference is set to TRAFFIC_AWARE or
28929
+ * TRAFFIC_AWARE_OPTIMAL.
28930
+ * @type {boolean|undefined}
28931
+ */
28932
+ google.maps.routes.RoutePolyline3DOptions.prototype.trafficPolylinesDisabled;
28933
+
28926
28934
  /**
28927
28935
  * Details about a section of a route corresponding to a polyline that can be
28928
28936
  * used to customize the polyline style.
@@ -28923,6 +28923,14 @@ google.maps.routes.RoutePolyline3DOptions.prototype.colorScheme;
28923
28923
  */
28924
28924
  google.maps.routes.RoutePolyline3DOptions.prototype.polylineOptions;
28925
28925
 
28926
+ /**
28927
+ * Whether to disable traffic-aware polylines. Traffic aware polylines are only
28928
+ * available when routingPreference is set to TRAFFIC_AWARE or
28929
+ * TRAFFIC_AWARE_OPTIMAL.
28930
+ * @type {boolean|undefined}
28931
+ */
28932
+ google.maps.routes.RoutePolyline3DOptions.prototype.trafficPolylinesDisabled;
28933
+
28926
28934
  /**
28927
28935
  * Details about a section of a route corresponding to a polyline that can be
28928
28936
  * used to customize the polyline style.
@@ -6556,8 +6556,8 @@ Event.prototype.composedPath = function() {};
6556
6556
  /**
6557
6557
  * @constructor
6558
6558
  * @param {{
6559
- * firesTouchEvents: (string|undefined),
6560
- * pointerMovementScrolls: (string|undefined)
6559
+ * firesTouchEvents: (boolean|undefined),
6560
+ * pointerMovementScrolls: (boolean|undefined)
6561
6561
  * }=} opt_options
6562
6562
  */
6563
6563
  function InputDeviceCapabilities(opt_options) {}
@@ -3245,7 +3245,7 @@ RTCStatsReport.prototype.id;
3245
3245
 
3246
3246
 
3247
3247
  /**
3248
- * @return {!IteratorIterable<!Array<string|!RTCStats>>}
3248
+ * @return {!MapIterator<!Array<string|!RTCStats>>}
3249
3249
  */
3250
3250
  RTCStatsReport.prototype[Symbol.iterator] = function() {};
3251
3251
 
@@ -67,19 +67,19 @@ GPUSupportedFeatures.prototype.size;
67
67
  GPUSupportedFeatures.prototype[Symbol.iterator] = function() {};
68
68
  /**
69
69
  * @override
70
- * @return {!IteratorIterable<!Array<string>>}
70
+ * @return {!SetIterator<!Array<string>>}
71
71
  * @nosideeffects
72
72
  */
73
73
  GPUSupportedFeatures.prototype.entries = function() {};
74
74
  /**
75
75
  * @override
76
- * @return {!IteratorIterable<string>}
76
+ * @return {!SetIterator<string>}
77
77
  * @nosideeffects
78
78
  */
79
79
  GPUSupportedFeatures.prototype.keys = function() {};
80
80
  /**
81
81
  * @override
82
- * @return {!IteratorIterable<string>}
82
+ * @return {!SetIterator<string>}
83
83
  * @nosideeffects
84
84
  */
85
85
  GPUSupportedFeatures.prototype.values = function() {};
@@ -235,19 +235,19 @@ WGSLLanguageFeatures.prototype.size;
235
235
  WGSLLanguageFeatures.prototype[Symbol.iterator] = function() {};
236
236
  /**
237
237
  * @override
238
- * @return {!IteratorIterable<!Array<string>>}
238
+ * @return {!SetIterator<!Array<string>>}
239
239
  * @nosideeffects
240
240
  */
241
241
  WGSLLanguageFeatures.prototype.entries = function() {};
242
242
  /**
243
243
  * @override
244
- * @return {!IteratorIterable<string>}
244
+ * @return {!SetIterator<string>}
245
245
  * @nosideeffects
246
246
  */
247
247
  WGSLLanguageFeatures.prototype.keys = function() {};
248
248
  /**
249
249
  * @override
250
- * @return {!IteratorIterable<string>}
250
+ * @return {!SetIterator<string>}
251
251
  * @nosideeffects
252
252
  */
253
253
  WGSLLanguageFeatures.prototype.values = function() {};
package/externs/es6.js CHANGED
@@ -29,6 +29,21 @@
29
29
  * define them together in the es3 file.
30
30
  */
31
31
 
32
+ /** @typedef {!IteratorIterable} */
33
+ var ArrayIterator;
34
+
35
+ /** @typedef {!IteratorIterable} */
36
+ var MapIterator;
37
+
38
+ /** @typedef {!IteratorIterable} */
39
+ var SetIterator;
40
+
41
+ /** @typedef {!IteratorIterable} */
42
+ var StringIterator;
43
+
44
+ /** @typedef {!IteratorIterable} */
45
+ var TypedArrayIterator;
46
+
32
47
  /**
33
48
  * TODO(b/142881197): TReturn and TNext are not yet used for anything.
34
49
  * https://github.com/google/closure-compiler/issues/3489
@@ -381,7 +396,7 @@ String.prototype.trimEnd = function() {};
381
396
  /**
382
397
  * @this {String|string}
383
398
  * @param {!RegExp|string} regexp
384
- * @return {!IteratorIterable<!RegExpResult>}
399
+ * @return {!StringIterator<!RegExpResult>}
385
400
  * @nosideeffects
386
401
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/matchAll
387
402
  */
@@ -975,14 +990,14 @@ Array.from = function(arrayLike, opt_mapFn, opt_this) {};
975
990
 
976
991
  /**
977
992
  * @override
978
- * @return {!IteratorIterable<number>}
993
+ * @return {!ArrayIterator<number>}
979
994
  */
980
995
  Array.prototype.keys;
981
996
 
982
997
 
983
998
  /**
984
999
  * @override
985
- * @return {!IteratorIterable<T>}
1000
+ * @return {!ArrayIterator<T>}
986
1001
  * @nosideeffects
987
1002
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/values
988
1003
  */
@@ -991,7 +1006,7 @@ Array.prototype.values;
991
1006
 
992
1007
  /**
993
1008
  * @override
994
- * @return {!IteratorIterable<!Array<number|T>>} Iterator of [key, value] pairs.
1009
+ * @return {!ArrayIterator<!Array<number|T>>} Iterator of [key, value] pairs.
995
1010
  */
996
1011
  Array.prototype.entries;
997
1012
 
@@ -1182,12 +1197,12 @@ Array.prototype.toSpliced = function(start, skipCount, var_toAdd) {};
1182
1197
  */
1183
1198
  Array.prototype.with = function(index, value) {};
1184
1199
 
1185
- /** @return {!IteratorIterable<number>} */
1200
+ /** @return {!ArrayIterator<number>} */
1186
1201
  ReadonlyArray.prototype.keys;
1187
1202
 
1188
1203
 
1189
1204
  /**
1190
- * @return {!IteratorIterable<T>}
1205
+ * @return {!ArrayIterator<T>}
1191
1206
  * @nosideeffects
1192
1207
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/values
1193
1208
  */
@@ -1195,7 +1210,7 @@ ReadonlyArray.prototype.values;
1195
1210
 
1196
1211
 
1197
1212
  /**
1198
- * @return {!IteratorIterable<!Array<number|T>>} Iterator of [key, value] pairs.
1213
+ * @return {!ArrayIterator<!Array<number|T>>} Iterator of [key, value] pairs.
1199
1214
  */
1200
1215
  ReadonlyArray.prototype.entries;
1201
1216
 
@@ -29,7 +29,7 @@
29
29
  function ReadonlyMap() {}
30
30
 
31
31
  /**
32
- * @return {!IteratorIterable<!Array<K|V>>}
32
+ * @return {!MapIterator<!Array<K|V>>}
33
33
  * @nosideeffects
34
34
  */
35
35
  ReadonlyMap.prototype.entries = function() {};
@@ -58,7 +58,7 @@ ReadonlyMap.prototype.get = function(key) {};
58
58
  ReadonlyMap.prototype.has = function(key) {};
59
59
 
60
60
  /**
61
- * @return {!IteratorIterable<K>}
61
+ * @return {!MapIterator<K>}
62
62
  * @nosideeffects
63
63
  */
64
64
  ReadonlyMap.prototype.keys = function() {};
@@ -70,13 +70,13 @@ ReadonlyMap.prototype.keys = function() {};
70
70
  ReadonlyMap.prototype.size;
71
71
 
72
72
  /**
73
- * @return {!IteratorIterable<V>}
73
+ * @return {!MapIterator<V>}
74
74
  * @nosideeffects
75
75
  */
76
76
  ReadonlyMap.prototype.values = function() {};
77
77
 
78
78
  /**
79
- * @return {!IteratorIterable<!Array<K|V>>}
79
+ * @return {!MapIterator<!Array<K|V>>}
80
80
  * @nosideeffects
81
81
  */
82
82
  ReadonlyMap.prototype[Symbol.iterator] = function() {};
@@ -111,7 +111,7 @@ Map.prototype.delete = function(key) {};
111
111
 
112
112
  /**
113
113
  * @override
114
- * @return {!IteratorIterable<!Array<K|V>>}
114
+ * @return {!MapIterator<!Array<K|V>>}
115
115
  * @nosideeffects
116
116
  */
117
117
  Map.prototype.entries = function() {};
@@ -164,7 +164,7 @@ Map.prototype.has = function(key) {};
164
164
 
165
165
  /**
166
166
  * @override
167
- * @return {!IteratorIterable<K>}
167
+ * @return {!MapIterator<K>}
168
168
  * @nosideeffects
169
169
  */
170
170
  Map.prototype.keys = function() {};
@@ -187,14 +187,14 @@ Map.prototype.size;
187
187
 
188
188
  /**
189
189
  * @override
190
- * @return {!IteratorIterable<V>}
190
+ * @return {!MapIterator<V>}
191
191
  * @nosideeffects
192
192
  */
193
193
  Map.prototype.values = function() {};
194
194
 
195
195
  /**
196
196
  * @override
197
- * @return {!IteratorIterable<!Array<K|V>>}
197
+ * @return {!MapIterator<!Array<K|V>>}
198
198
  * @nosideeffects
199
199
  */
200
200
  Map.prototype[Symbol.iterator] = function() {};
@@ -338,25 +338,25 @@ ReadonlySet.prototype.has = function(value) {};
338
338
  ReadonlySet.prototype.size;
339
339
 
340
340
  /**
341
- * @return {!IteratorIterable<VALUE>}
341
+ * @return {!SetIterator<VALUE>}
342
342
  * @override
343
343
  */
344
344
  ReadonlySet.prototype[Symbol.iterator] = function() {};
345
345
 
346
346
  /**
347
- * @return {!IteratorIterable<!Array<VALUE>>}
347
+ * @return {!SetIterator<!Array<VALUE>>}
348
348
  * @nosideeffects
349
349
  */
350
350
  ReadonlySet.prototype.entries = function() {};
351
351
 
352
352
  /**
353
- * @return {!IteratorIterable<VALUE>}
353
+ * @return {!SetIterator<VALUE>}
354
354
  * @nosideeffects
355
355
  */
356
356
  ReadonlySet.prototype.keys = function() {};
357
357
 
358
358
  /**
359
- * @return {!IteratorIterable<VALUE>}
359
+ * @return {!SetIterator<VALUE>}
360
360
  * @nosideeffects
361
361
  */
362
362
  ReadonlySet.prototype.values = function() {};
@@ -451,7 +451,7 @@ Set.prototype.delete = function(value) {};
451
451
 
452
452
  /**
453
453
  * @override
454
- * @return {!IteratorIterable<!Array<VALUE>>} Where each array has two entries:
454
+ * @return {!SetIterator<!Array<VALUE>>} Where each array has two entries:
455
455
  * [value, value]
456
456
  * @nosideeffects
457
457
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/entries
@@ -479,7 +479,7 @@ Set.prototype.has = function(value) {};
479
479
 
480
480
  /**
481
481
  * @override
482
- * @return {!IteratorIterable<VALUE>}
482
+ * @return {!SetIterator<VALUE>}
483
483
  * @nosideeffects
484
484
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/keys
485
485
  */
@@ -487,7 +487,7 @@ Set.prototype.keys = function() {};
487
487
 
488
488
  /**
489
489
  * @override
490
- * @return {!IteratorIterable<VALUE>}
490
+ * @return {!SetIterator<VALUE>}
491
491
  * @nosideeffects
492
492
  * @see https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.values
493
493
  */
@@ -561,7 +561,7 @@ Set.prototype.isSubsetOf = function(other) {};
561
561
  Set.prototype.isDisjointFrom = function(other) {};
562
562
 
563
563
  /**
564
- * @return {!IteratorIterable<VALUE>}
564
+ * @return {!SetIterator<VALUE>}
565
565
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/Symbol.iterator
566
566
  * @override
567
567
  */
@@ -98,7 +98,7 @@ Int8Array.prototype.at = function(index) {};
98
98
  Int8Array.prototype.copyWithin = function(target, start, opt_end) {};
99
99
 
100
100
  /**
101
- * @return {!IteratorIterable<!Array<number>>}
101
+ * @return {!TypedArrayIterator<!Array<number>>}
102
102
  * @nosideeffects
103
103
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/entries
104
104
  */
@@ -206,7 +206,7 @@ Int8Array.prototype.indexOf = function(searchElement, opt_fromIndex) {};
206
206
  Int8Array.prototype.join = function(opt_separator) {};
207
207
 
208
208
  /**
209
- * @return {!IteratorIterable<number>}
209
+ * @return {!TypedArrayIterator<number>}
210
210
  * @nosideeffects
211
211
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/keys
212
212
  */
@@ -306,7 +306,7 @@ Int8Array.prototype.sort = function(opt_compareFunction) {};
306
306
  Int8Array.prototype.subarray = function(begin, opt_end) {};
307
307
 
308
308
  /**
309
- * @return {!IteratorIterable<number>}
309
+ * @return {!TypedArrayIterator<number>}
310
310
  * @nosideeffects
311
311
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/values
312
312
  */
@@ -429,7 +429,7 @@ Uint8ClampedArray.prototype.at = function(index) {};
429
429
  Uint8ClampedArray.prototype.copyWithin = function(target, start, opt_end) {};
430
430
 
431
431
  /**
432
- * @return {!IteratorIterable<!Array<number>>}
432
+ * @return {!TypedArrayIterator<!Array<number>>}
433
433
  * @nosideeffects
434
434
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/entries
435
435
  */
@@ -537,7 +537,7 @@ Uint8ClampedArray.prototype.indexOf = function(searchElement, opt_fromIndex) {};
537
537
  Uint8ClampedArray.prototype.join = function(opt_separator) {};
538
538
 
539
539
  /**
540
- * @return {!IteratorIterable<number>}
540
+ * @return {!TypedArrayIterator<number>}
541
541
  * @nosideeffects
542
542
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/keys
543
543
  */
@@ -637,7 +637,7 @@ Uint8ClampedArray.prototype.sort = function(opt_compareFunction) {};
637
637
  Uint8ClampedArray.prototype.subarray = function(begin, opt_end) {};
638
638
 
639
639
  /**
640
- * @return {!IteratorIterable<number>}
640
+ * @return {!TypedArrayIterator<number>}
641
641
  * @nosideeffects
642
642
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/values
643
643
  */
@@ -760,7 +760,7 @@ Int16Array.prototype.at = function(index) {};
760
760
  Int16Array.prototype.copyWithin = function(target, start, opt_end) {};
761
761
 
762
762
  /**
763
- * @return {!IteratorIterable<!Array<number>>}
763
+ * @return {!TypedArrayIterator<!Array<number>>}
764
764
  * @nosideeffects
765
765
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/entries
766
766
  */
@@ -868,7 +868,7 @@ Int16Array.prototype.indexOf = function(searchElement, opt_fromIndex) {};
868
868
  Int16Array.prototype.join = function(opt_separator) {};
869
869
 
870
870
  /**
871
- * @return {!IteratorIterable<number>}
871
+ * @return {!TypedArrayIterator<number>}
872
872
  * @nosideeffects
873
873
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/keys
874
874
  */
@@ -968,7 +968,7 @@ Int16Array.prototype.sort = function(opt_compareFunction) {};
968
968
  Int16Array.prototype.subarray = function(begin, opt_end) {};
969
969
 
970
970
  /**
971
- * @return {!IteratorIterable<number>}
971
+ * @return {!TypedArrayIterator<number>}
972
972
  * @nosideeffects
973
973
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/values
974
974
  */
@@ -1091,7 +1091,7 @@ Uint16Array.prototype.at = function(index) {};
1091
1091
  Uint16Array.prototype.copyWithin = function(target, start, opt_end) {};
1092
1092
 
1093
1093
  /**
1094
- * @return {!IteratorIterable<!Array<number>>}
1094
+ * @return {!TypedArrayIterator<!Array<number>>}
1095
1095
  * @nosideeffects
1096
1096
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/entries
1097
1097
  */
@@ -1199,7 +1199,7 @@ Uint16Array.prototype.indexOf = function(searchElement, opt_fromIndex) {};
1199
1199
  Uint16Array.prototype.join = function(opt_separator) {};
1200
1200
 
1201
1201
  /**
1202
- * @return {!IteratorIterable<number>}
1202
+ * @return {!TypedArrayIterator<number>}
1203
1203
  * @nosideeffects
1204
1204
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/keys
1205
1205
  */
@@ -1299,7 +1299,7 @@ Uint16Array.prototype.sort = function(opt_compareFunction) {};
1299
1299
  Uint16Array.prototype.subarray = function(begin, opt_end) {};
1300
1300
 
1301
1301
  /**
1302
- * @return {!IteratorIterable<number>}
1302
+ * @return {!TypedArrayIterator<number>}
1303
1303
  * @nosideeffects
1304
1304
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/values
1305
1305
  */
@@ -1422,7 +1422,7 @@ Int32Array.prototype.at = function(index) {};
1422
1422
  Int32Array.prototype.copyWithin = function(target, start, opt_end) {};
1423
1423
 
1424
1424
  /**
1425
- * @return {!IteratorIterable<!Array<number>>}
1425
+ * @return {!TypedArrayIterator<!Array<number>>}
1426
1426
  * @nosideeffects
1427
1427
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/entries
1428
1428
  */
@@ -1530,7 +1530,7 @@ Int32Array.prototype.indexOf = function(searchElement, opt_fromIndex) {};
1530
1530
  Int32Array.prototype.join = function(opt_separator) {};
1531
1531
 
1532
1532
  /**
1533
- * @return {!IteratorIterable<number>}
1533
+ * @return {!TypedArrayIterator<number>}
1534
1534
  * @nosideeffects
1535
1535
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/keys
1536
1536
  */
@@ -1630,7 +1630,7 @@ Int32Array.prototype.sort = function(opt_compareFunction) {};
1630
1630
  Int32Array.prototype.subarray = function(begin, opt_end) {};
1631
1631
 
1632
1632
  /**
1633
- * @return {!IteratorIterable<number>}
1633
+ * @return {!TypedArrayIterator<number>}
1634
1634
  * @nosideeffects
1635
1635
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/values
1636
1636
  */
@@ -1753,7 +1753,7 @@ Uint32Array.prototype.at = function(index) {};
1753
1753
  Uint32Array.prototype.copyWithin = function(target, start, opt_end) {};
1754
1754
 
1755
1755
  /**
1756
- * @return {!IteratorIterable<!Array<number>>}
1756
+ * @return {!TypedArrayIterator<!Array<number>>}
1757
1757
  * @nosideeffects
1758
1758
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/entries
1759
1759
  */
@@ -1861,7 +1861,7 @@ Uint32Array.prototype.indexOf = function(searchElement, opt_fromIndex) {};
1861
1861
  Uint32Array.prototype.join = function(opt_separator) {};
1862
1862
 
1863
1863
  /**
1864
- * @return {!IteratorIterable<number>}
1864
+ * @return {!TypedArrayIterator<number>}
1865
1865
  * @nosideeffects
1866
1866
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/keys
1867
1867
  */
@@ -1961,7 +1961,7 @@ Uint32Array.prototype.sort = function(opt_compareFunction) {};
1961
1961
  Uint32Array.prototype.subarray = function(begin, opt_end) {};
1962
1962
 
1963
1963
  /**
1964
- * @return {!IteratorIterable<number>}
1964
+ * @return {!TypedArrayIterator<number>}
1965
1965
  * @nosideeffects
1966
1966
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/values
1967
1967
  */
@@ -2084,7 +2084,7 @@ Float16Array.prototype.at = function(index) {};
2084
2084
  Float16Array.prototype.copyWithin = function(target, start, opt_end) {};
2085
2085
 
2086
2086
  /**
2087
- * @return {!IteratorIterable<!Array<number>>}
2087
+ * @return {!TypedArrayIterator<!Array<number>>}
2088
2088
  * @nosideeffects
2089
2089
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/entries
2090
2090
  */
@@ -2192,7 +2192,7 @@ Float16Array.prototype.indexOf = function(searchElement, opt_fromIndex) {};
2192
2192
  Float16Array.prototype.join = function(opt_separator) {};
2193
2193
 
2194
2194
  /**
2195
- * @return {!IteratorIterable<number>}
2195
+ * @return {!TypedArrayIterator<number>}
2196
2196
  * @nosideeffects
2197
2197
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/keys
2198
2198
  */
@@ -2292,7 +2292,7 @@ Float16Array.prototype.sort = function(opt_compareFunction) {};
2292
2292
  Float16Array.prototype.subarray = function(begin, opt_end) {};
2293
2293
 
2294
2294
  /**
2295
- * @return {!IteratorIterable<number>}
2295
+ * @return {!TypedArrayIterator<number>}
2296
2296
  * @nosideeffects
2297
2297
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/values
2298
2298
  */
@@ -2415,7 +2415,7 @@ Float32Array.prototype.at = function(index) {};
2415
2415
  Float32Array.prototype.copyWithin = function(target, start, opt_end) {};
2416
2416
 
2417
2417
  /**
2418
- * @return {!IteratorIterable<!Array<number>>}
2418
+ * @return {!TypedArrayIterator<!Array<number>>}
2419
2419
  * @nosideeffects
2420
2420
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/entries
2421
2421
  */
@@ -2523,7 +2523,7 @@ Float32Array.prototype.indexOf = function(searchElement, opt_fromIndex) {};
2523
2523
  Float32Array.prototype.join = function(opt_separator) {};
2524
2524
 
2525
2525
  /**
2526
- * @return {!IteratorIterable<number>}
2526
+ * @return {!TypedArrayIterator<number>}
2527
2527
  * @nosideeffects
2528
2528
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/keys
2529
2529
  */
@@ -2623,7 +2623,7 @@ Float32Array.prototype.sort = function(opt_compareFunction) {};
2623
2623
  Float32Array.prototype.subarray = function(begin, opt_end) {};
2624
2624
 
2625
2625
  /**
2626
- * @return {!IteratorIterable<number>}
2626
+ * @return {!TypedArrayIterator<number>}
2627
2627
  * @nosideeffects
2628
2628
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/values
2629
2629
  */
@@ -2746,7 +2746,7 @@ Float64Array.prototype.at = function(index) {};
2746
2746
  Float64Array.prototype.copyWithin = function(target, start, opt_end) {};
2747
2747
 
2748
2748
  /**
2749
- * @return {!IteratorIterable<!Array<number>>}
2749
+ * @return {!TypedArrayIterator<!Array<number>>}
2750
2750
  * @nosideeffects
2751
2751
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/entries
2752
2752
  */
@@ -2854,7 +2854,7 @@ Float64Array.prototype.indexOf = function(searchElement, opt_fromIndex) {};
2854
2854
  Float64Array.prototype.join = function(opt_separator) {};
2855
2855
 
2856
2856
  /**
2857
- * @return {!IteratorIterable<number>}
2857
+ * @return {!TypedArrayIterator<number>}
2858
2858
  * @nosideeffects
2859
2859
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/keys
2860
2860
  */
@@ -2954,7 +2954,7 @@ Float64Array.prototype.sort = function(opt_compareFunction) {};
2954
2954
  Float64Array.prototype.subarray = function(begin, opt_end) {};
2955
2955
 
2956
2956
  /**
2957
- * @return {!IteratorIterable<number>}
2957
+ * @return {!TypedArrayIterator<number>}
2958
2958
  * @nosideeffects
2959
2959
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/values
2960
2960
  */
@@ -3077,7 +3077,7 @@ Uint8Array.prototype.at = function(index) {};
3077
3077
  Uint8Array.prototype.copyWithin = function(target, start, opt_end) {};
3078
3078
 
3079
3079
  /**
3080
- * @return {!IteratorIterable<!Array<number>>}
3080
+ * @return {!TypedArrayIterator<!Array<number>>}
3081
3081
  * @nosideeffects
3082
3082
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/entries
3083
3083
  */
@@ -3185,7 +3185,7 @@ Uint8Array.prototype.indexOf = function(searchElement, opt_fromIndex) {};
3185
3185
  Uint8Array.prototype.join = function(opt_separator) {};
3186
3186
 
3187
3187
  /**
3188
- * @return {!IteratorIterable<number>}
3188
+ * @return {!TypedArrayIterator<number>}
3189
3189
  * @nosideeffects
3190
3190
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/keys
3191
3191
  */
@@ -3285,7 +3285,7 @@ Uint8Array.prototype.sort = function(opt_compareFunction) {};
3285
3285
  Uint8Array.prototype.subarray = function(begin, opt_end) {};
3286
3286
 
3287
3287
  /**
3288
- * @return {!IteratorIterable<number>}
3288
+ * @return {!TypedArrayIterator<number>}
3289
3289
  * @nosideeffects
3290
3290
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/values
3291
3291
  */
@@ -3540,7 +3540,7 @@ BigInt64Array.prototype.at = function(index) {};
3540
3540
  BigInt64Array.prototype.copyWithin = function(target, start, opt_end) {};
3541
3541
 
3542
3542
  /**
3543
- * @return {!IteratorIterable<!Array<bigint>>}
3543
+ * @return {!TypedArrayIterator<!Array<bigint>>}
3544
3544
  * @nosideeffects
3545
3545
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/entries
3546
3546
  */
@@ -3648,7 +3648,7 @@ BigInt64Array.prototype.indexOf = function(searchElement, opt_fromIndex) {};
3648
3648
  BigInt64Array.prototype.join = function(opt_separator) {};
3649
3649
 
3650
3650
  /**
3651
- * @return {!IteratorIterable<bigint>}
3651
+ * @return {!TypedArrayIterator<bigint>}
3652
3652
  * @nosideeffects
3653
3653
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/keys
3654
3654
  */
@@ -3749,7 +3749,7 @@ BigInt64Array.prototype.sort = function(opt_compareFunction) {};
3749
3749
  BigInt64Array.prototype.subarray = function(begin, opt_end) {};
3750
3750
 
3751
3751
  /**
3752
- * @return {!IteratorIterable<bigint>}
3752
+ * @return {!TypedArrayIterator<bigint>}
3753
3753
  * @nosideeffects
3754
3754
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/values
3755
3755
  */
@@ -3861,7 +3861,7 @@ BigUint64Array.prototype.at = function(index) {};
3861
3861
  BigUint64Array.prototype.copyWithin = function(target, start, opt_end) {};
3862
3862
 
3863
3863
  /**
3864
- * @return {!IteratorIterable<!Array<bigint>>}
3864
+ * @return {!TypedArrayIterator<!Array<bigint>>}
3865
3865
  * @nosideeffects
3866
3866
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/entries
3867
3867
  */
@@ -3969,7 +3969,7 @@ BigUint64Array.prototype.indexOf = function(searchElement, opt_fromIndex) {};
3969
3969
  BigUint64Array.prototype.join = function(opt_separator) {};
3970
3970
 
3971
3971
  /**
3972
- * @return {!IteratorIterable<bigint>}
3972
+ * @return {!TypedArrayIterator<bigint>}
3973
3973
  * @nosideeffects
3974
3974
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/keys
3975
3975
  */
@@ -4070,7 +4070,7 @@ BigUint64Array.prototype.sort = function(opt_compareFunction) {};
4070
4070
  BigUint64Array.prototype.subarray = function(begin, opt_end) {};
4071
4071
 
4072
4072
  /**
4073
- * @return {!IteratorIterable<bigint>}
4073
+ * @return {!TypedArrayIterator<bigint>}
4074
4074
  * @nosideeffects
4075
4075
  * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/values
4076
4076
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "google-closure-compiler",
3
- "version": "20260830.0.0",
3
+ "version": "20260907.0.0",
4
4
  "description": "Check, compile, optimize and compress Javascript with Closure-Compiler",
5
5
  "type": "module",
6
6
  "repository": {
@@ -41,16 +41,16 @@
41
41
  "homepage": "https://developers.google.com/closure/compiler/",
42
42
  "dependencies": {
43
43
  "chalk": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 <5.6.1 || ^5.6.2 >5.6.1",
44
- "google-closure-compiler-java": "^20260830.0.0",
44
+ "google-closure-compiler-java": "^20260907.0.0",
45
45
  "minimist": "^1.0.0",
46
46
  "vinyl": "^3.0.1",
47
47
  "vinyl-sourcemaps-apply": "^0.2.0"
48
48
  },
49
49
  "optionalDependencies": {
50
- "google-closure-compiler-linux": "^20260830.0.0",
51
- "google-closure-compiler-linux-arm64": "^20260830.0.0",
52
- "google-closure-compiler-macos": "^20260830.0.0",
53
- "google-closure-compiler-windows": "^20260830.0.0"
50
+ "google-closure-compiler-linux": "^20260907.0.0",
51
+ "google-closure-compiler-linux-arm64": "^20260907.0.0",
52
+ "google-closure-compiler-macos": "^20260907.0.0",
53
+ "google-closure-compiler-windows": "^20260907.0.0"
54
54
  },
55
55
  "devDependencies": {
56
56
  "gulp": "^5.0.1",