Skip to content

Commit d2b66b8

Browse files
Merge pull request #3654 from bugreportuser:make-storage-properties-non-null
PiperOrigin-RevId: 325290363
2 parents 9024289 + 9dc91ac commit d2b66b8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

externs/browser/webstorage.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ Storage.prototype.clear = function() {};
6767
function WindowSessionStorage() {}
6868

6969
/**
70-
* @type {Storage}
70+
* @type {!Storage}
7171
*/
7272
WindowSessionStorage.prototype.sessionStorage;
7373

7474
/**
7575
* Window implements WindowSessionStorage
7676
*
77-
* @type {Storage}
77+
* @type {!Storage}
7878
*/
7979
Window.prototype.sessionStorage;
8080

@@ -85,14 +85,14 @@ Window.prototype.sessionStorage;
8585
function WindowLocalStorage() {}
8686

8787
/**
88-
* @type {Storage}
88+
* @type {!Storage}
8989
*/
9090
WindowLocalStorage.prototype.localStorage;
9191

9292
/**
9393
* Window implements WindowLocalStorage
9494
*
95-
* @type {Storage}
95+
* @type {!Storage}
9696
*/
9797
Window.prototype.localStorage;
9898

src/com/google/javascript/jscomp/resources/resources.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)