@@ -14,7 +14,7 @@ $root.Message = (function() {
1414 /**
1515 * Properties of a Message.
1616 * @typedef Message$Properties
17- * @type Object
17+ * @type { Object }
1818 * @property {string } [stringVal] Message stringVal.
1919 * @property {Array.<string> } [stringRepeated] Message stringRepeated.
2020 * @property {number|Long } [uint64Val] Message uint64Val.
@@ -29,7 +29,6 @@ $root.Message = (function() {
2929 /**
3030 * Constructs a new Message.
3131 * @exports Message
32- * @implements Message$Properties
3332 * @constructor
3433 * @param {Message$Properties= } [properties] Properties to set
3534 */
@@ -45,46 +44,55 @@ $root.Message = (function() {
4544 }
4645
4746 /**
47+ * Message stringVal.
4848 * @type {string|undefined }
4949 */
5050 Message . prototype . stringVal = "" ;
5151
5252 /**
53+ * Message stringRepeated.
5354 * @type {Array.<string>|undefined }
5455 */
5556 Message . prototype . stringRepeated = $util . emptyArray ;
5657
5758 /**
59+ * Message uint64Val.
5860 * @type {number|Long|undefined }
5961 */
6062 Message . prototype . uint64Val = $util . Long ? $util . Long . fromBits ( 0 , 0 , true ) : 0 ;
6163
6264 /**
65+ * Message uint64Repeated.
6366 * @type {Array.<number|Long>|undefined }
6467 */
6568 Message . prototype . uint64Repeated = $util . emptyArray ;
6669
6770 /**
71+ * Message bytesVal.
6872 * @type {Uint8Array|undefined }
6973 */
7074 Message . prototype . bytesVal = $util . newBuffer ( [ ] ) ;
7175
7276 /**
77+ * Message bytesRepeated.
7378 * @type {Array.<Uint8Array>|undefined }
7479 */
7580 Message . prototype . bytesRepeated = $util . emptyArray ;
7681
7782 /**
83+ * Message enumVal.
7884 * @type {Message.SomeEnum|undefined }
7985 */
8086 Message . prototype . enumVal = 1 ;
8187
8288 /**
89+ * Message enumRepeated.
8390 * @type {Array.<Message.SomeEnum>|undefined }
8491 */
8592 Message . prototype . enumRepeated = $util . emptyArray ;
8693
8794 /**
95+ * Message int64Map.
8896 * @type {Object.<string,number|Long>|undefined }
8997 */
9098 Message . prototype . int64Map = $util . emptyObject ;
@@ -212,7 +220,7 @@ $root.Message = (function() {
212220 message . int64Map = { } ;
213221 key = reader . string ( ) ;
214222 reader . pos ++ ;
215- message . int64Map [ typeof key === "object" ? $util . longToHash ( key ) : key ] = reader . int64 ( ) ;
223+ message . int64Map [ key ] = reader . int64 ( ) ;
216224 break ;
217225 default :
218226 reader . skipType ( tag & 7 ) ;
0 commit comments