You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CLI: With null/undefined eliminated by constructors and .create, document message fields as non-optional where applicable (ideally used with TS & strictNullChecks), see #743
Copy file name to clipboardExpand all lines: tests/data/comments.js
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -39,19 +39,19 @@ $root.Test1 = (function() {
39
39
40
40
/**
41
41
* Field with a comment.
42
-
* @type {string|undefined}
42
+
* @type {string}
43
43
*/
44
44
Test1.prototype.field1="";
45
45
46
46
/**
47
47
* Test1 field2.
48
-
* @type {number|undefined}
48
+
* @type {number}
49
49
*/
50
50
Test1.prototype.field2=0;
51
51
52
52
/**
53
53
* Field with a comment and a <a href="http://example.com/foo/">link</a>
0 commit comments