File tree Expand file tree Collapse file tree 2 files changed +31
-1
lines changed
src/com/google/javascript/jscomp/resources Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change @@ -412,30 +412,60 @@ XMLHttpRequest.prototype.onerror;
412
412
*/
413
413
XMLHttpRequest . UNSENT ;
414
414
415
+ /**
416
+ * @const {number}
417
+ * @see https://xhr.spec.whatwg.org/#states
418
+ */
419
+ XMLHttpRequest . prototype . UNSENT ;
420
+
415
421
/**
416
422
* @const {number}
417
423
* @see https://xhr.spec.whatwg.org/#states
418
424
*/
419
425
XMLHttpRequest . OPENED ;
420
426
427
+ /**
428
+ * @const {number}
429
+ * @see https://xhr.spec.whatwg.org/#states
430
+ */
431
+ XMLHttpRequest . prototype . OPENED ;
432
+
421
433
/**
422
434
* @const {number}
423
435
* @see https://xhr.spec.whatwg.org/#states
424
436
*/
425
437
XMLHttpRequest . HEADERS_RECEIVED ;
426
438
439
+ /**
440
+ * @const {number}
441
+ * @see https://xhr.spec.whatwg.org/#states
442
+ */
443
+ XMLHttpRequest . prototype . HEADERS_RECEIVED ;
444
+
427
445
/**
428
446
* @const {number}
429
447
* @see https://xhr.spec.whatwg.org/#states
430
448
*/
431
449
XMLHttpRequest . LOADING ;
432
450
451
+ /**
452
+ * @const {number}
453
+ * @see https://xhr.spec.whatwg.org/#states
454
+ */
455
+ XMLHttpRequest . prototype . LOADING ;
456
+
433
457
/**
434
458
* @const {number}
435
459
* @see https://xhr.spec.whatwg.org/#states
436
460
*/
437
461
XMLHttpRequest . DONE ;
438
462
463
+ /**
464
+ * @const {number}
465
+ * @see https://xhr.spec.whatwg.org/#states
466
+ */
467
+ XMLHttpRequest . prototype . DONE ;
468
+
439
469
440
470
/**
441
471
* @see https://xhr.spec.whatwg.org/#formdataentryvalue
Load Diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments