protobufjs 4.1.2 → 5.0.2

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.
Files changed (188) hide show
  1. package/.travis.yml +3 -1
  2. package/README.md +147 -25
  3. package/bin/pbjs +2 -2
  4. package/bower.json +3 -3
  5. package/cli/pbjs/targets/amd.js +1 -1
  6. package/cli/pbjs/targets/json.js +9 -1
  7. package/cli/pbjs/targets/proto.js +48 -24
  8. package/cli/pbjs/util.js +1 -1
  9. package/cli/pbjs.js +9 -2
  10. package/dist/README.md +10 -10
  11. package/dist/{ProtoBuf-light.js → protobuf-light.js} +207 -152
  12. package/dist/protobuf-light.min.js +94 -0
  13. package/dist/protobuf-light.min.js.gz +0 -0
  14. package/dist/protobuf-light.min.map +8 -0
  15. package/dist/{ProtoBuf.js → protobuf.js} +265 -175
  16. package/dist/protobuf.min.js +116 -0
  17. package/dist/protobuf.min.js.gz +0 -0
  18. package/dist/protobuf.min.map +8 -0
  19. package/docs/ProtoBuf.Builder.Message.html +1473 -967
  20. package/docs/ProtoBuf.Builder.Service.html +266 -197
  21. package/docs/ProtoBuf.Builder.html +758 -542
  22. package/docs/ProtoBuf.DotProto.Parser.html +223 -161
  23. package/docs/ProtoBuf.DotProto.Tokenizer.html +344 -248
  24. package/docs/ProtoBuf.DotProto.html +20 -12
  25. package/docs/ProtoBuf.Element.html +554 -554
  26. package/docs/ProtoBuf.Map.html +158 -123
  27. package/docs/ProtoBuf.Reflect.Element.html +286 -143
  28. package/docs/ProtoBuf.Reflect.Enum.Value.html +329 -228
  29. package/docs/ProtoBuf.Reflect.Enum.html +757 -537
  30. package/docs/ProtoBuf.Reflect.Extension.html +73 -56
  31. package/docs/ProtoBuf.Reflect.Message.ExtensionField.html +1013 -740
  32. package/docs/ProtoBuf.Reflect.Message.Field.html +926 -649
  33. package/docs/ProtoBuf.Reflect.Message.OneOf.html +327 -245
  34. package/docs/ProtoBuf.Reflect.Message.html +919 -652
  35. package/docs/ProtoBuf.Reflect.Namespace.html +648 -447
  36. package/docs/ProtoBuf.Reflect.Service.Method.html +363 -251
  37. package/docs/ProtoBuf.Reflect.Service.RPCMethod.html +545 -397
  38. package/docs/ProtoBuf.Reflect.Service.html +721 -511
  39. package/docs/ProtoBuf.Reflect.T.html +268 -197
  40. package/docs/ProtoBuf.Reflect.html +20 -12
  41. package/docs/ProtoBuf.Util.html +169 -118
  42. package/docs/ProtoBuf.html +840 -628
  43. package/docs/ProtoBuf.js.html +271 -180
  44. package/docs/fonts/OpenSans-Bold-webfont.eot +0 -0
  45. package/docs/fonts/OpenSans-Bold-webfont.svg +1830 -0
  46. package/docs/fonts/OpenSans-Bold-webfont.woff +0 -0
  47. package/docs/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
  48. package/docs/fonts/OpenSans-BoldItalic-webfont.svg +1830 -0
  49. package/docs/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
  50. package/docs/fonts/OpenSans-Italic-webfont.eot +0 -0
  51. package/docs/fonts/OpenSans-Italic-webfont.svg +1830 -0
  52. package/docs/fonts/OpenSans-Italic-webfont.woff +0 -0
  53. package/docs/fonts/OpenSans-Light-webfont.eot +0 -0
  54. package/docs/fonts/OpenSans-Light-webfont.svg +1831 -0
  55. package/docs/fonts/OpenSans-Light-webfont.woff +0 -0
  56. package/docs/fonts/OpenSans-LightItalic-webfont.eot +0 -0
  57. package/docs/fonts/OpenSans-LightItalic-webfont.svg +1835 -0
  58. package/docs/fonts/OpenSans-LightItalic-webfont.woff +0 -0
  59. package/docs/fonts/OpenSans-Regular-webfont.eot +0 -0
  60. package/docs/fonts/OpenSans-Regular-webfont.svg +1831 -0
  61. package/docs/fonts/OpenSans-Regular-webfont.woff +0 -0
  62. package/docs/index.html +7 -5
  63. package/docs/styles/jsdoc-default.css +95 -75
  64. package/docs/styles/prettify-tomorrow.css +1 -1
  65. package/donate.png +0 -0
  66. package/examples/protoify/json.js +123 -123
  67. package/examples/protoify/json.json +123 -123
  68. package/examples/websocket/server.js +4 -4
  69. package/externs/{ProtoBuf.js → protobuf.js} +933 -922
  70. package/index.js +1 -18
  71. package/jsdoc.json +1 -1
  72. package/package.json +11 -11
  73. package/protobuf.png +0 -0
  74. package/scripts/build.js +53 -58
  75. package/src/ProtoBuf/Builder/Message.js +18 -9
  76. package/src/ProtoBuf/Builder/Service.js +3 -0
  77. package/src/ProtoBuf/Builder.js +34 -10
  78. package/src/ProtoBuf/DotProto/Parser.js +58 -23
  79. package/src/ProtoBuf/Reflect/Element.js +17 -4
  80. package/src/ProtoBuf/Reflect/Message/Field.js +6 -5
  81. package/src/ProtoBuf/Reflect/Message.js +9 -4
  82. package/src/ProtoBuf/Util.js +116 -116
  83. package/src/bower.json +2 -2
  84. package/src/google/protobuf/descriptor.json +55 -15
  85. package/src/{ProtoBuf.js → protobuf.js} +0 -0
  86. package/src/wrap.js +4 -4
  87. package/tests/bench.txt +373 -373
  88. package/tests/complex.json +8 -1
  89. package/tests/custom-options.json +169 -169
  90. package/tests/extend.json +71 -71
  91. package/tests/imports-weak.proto +7 -0
  92. package/tests/imports.json +83 -83
  93. package/tests/nodeunit-browser/nodeunit.css +70 -70
  94. package/tests/nodeunit-browser/nodeunit.js +2108 -2108
  95. package/tests/options.json +32 -32
  96. package/tests/proto2js/Bar.json +46 -46
  97. package/tests/suite.js +107 -82
  98. package/ProtoBuf.png +0 -0
  99. package/dist/ProtoBuf-light.min.js +0 -87
  100. package/dist/ProtoBuf-light.min.js.gz +0 -0
  101. package/dist/ProtoBuf-light.min.map +0 -8
  102. package/dist/ProtoBuf.min.js +0 -108
  103. package/dist/ProtoBuf.min.js.gz +0 -0
  104. package/dist/ProtoBuf.min.map +0 -8
  105. package/externs/ByteBuffer.js +0 -767
  106. package/externs/Long.js +0 -328
  107. package/sandbox/gapi/googleapis/google/api/annotations.proto +0 -29
  108. package/sandbox/gapi/googleapis/google/api/http.proto +0 -245
  109. package/sandbox/gapi/googleapis/google/datastore/v1beta3/datastore.proto +0 -281
  110. package/sandbox/gapi/googleapis/google/datastore/v1beta3/entity.proto +0 -189
  111. package/sandbox/gapi/googleapis/google/datastore/v1beta3/query.proto +0 -281
  112. package/sandbox/gapi/googleapis/google/longrunning/operations.proto +0 -144
  113. package/sandbox/gapi/googleapis/google/protobuf/any.proto +0 -98
  114. package/sandbox/gapi/googleapis/google/protobuf/any_test.proto +0 -41
  115. package/sandbox/gapi/googleapis/google/protobuf/api.proto +0 -201
  116. package/sandbox/gapi/googleapis/google/protobuf/descriptor.proto +0 -773
  117. package/sandbox/gapi/googleapis/google/protobuf/duration.proto +0 -95
  118. package/sandbox/gapi/googleapis/google/protobuf/empty.proto +0 -50
  119. package/sandbox/gapi/googleapis/google/protobuf/field_mask.proto +0 -167
  120. package/sandbox/gapi/googleapis/google/protobuf/map_lite_unittest.proto +0 -130
  121. package/sandbox/gapi/googleapis/google/protobuf/map_proto2_unittest.proto +0 -60
  122. package/sandbox/gapi/googleapis/google/protobuf/map_unittest.proto +0 -129
  123. package/sandbox/gapi/googleapis/google/protobuf/map_unittest_proto3.proto +0 -120
  124. package/sandbox/gapi/googleapis/google/protobuf/source_context.proto +0 -47
  125. package/sandbox/gapi/googleapis/google/protobuf/struct.proto +0 -94
  126. package/sandbox/gapi/googleapis/google/protobuf/timestamp.proto +0 -107
  127. package/sandbox/gapi/googleapis/google/protobuf/type.proto +0 -176
  128. package/sandbox/gapi/googleapis/google/protobuf/unittest.proto +0 -878
  129. package/sandbox/gapi/googleapis/google/protobuf/unittest_arena.proto +0 -46
  130. package/sandbox/gapi/googleapis/google/protobuf/unittest_custom_options.proto +0 -394
  131. package/sandbox/gapi/googleapis/google/protobuf/unittest_drop_unknown_fields.proto +0 -58
  132. package/sandbox/gapi/googleapis/google/protobuf/unittest_embed_optimize_for.proto +0 -51
  133. package/sandbox/gapi/googleapis/google/protobuf/unittest_empty.proto +0 -38
  134. package/sandbox/gapi/googleapis/google/protobuf/unittest_enormous_descriptor.proto +0 -1048
  135. package/sandbox/gapi/googleapis/google/protobuf/unittest_import.proto +0 -66
  136. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_lite.proto +0 -52
  137. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_proto3.proto +0 -68
  138. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public.proto +0 -41
  139. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_lite.proto +0 -43
  140. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_proto3.proto +0 -42
  141. package/sandbox/gapi/googleapis/google/protobuf/unittest_lite.proto +0 -385
  142. package/sandbox/gapi/googleapis/google/protobuf/unittest_lite_imports_nonlite.proto +0 -44
  143. package/sandbox/gapi/googleapis/google/protobuf/unittest_mset.proto +0 -82
  144. package/sandbox/gapi/googleapis/google/protobuf/unittest_mset_wire_format.proto +0 -52
  145. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena.proto +0 -202
  146. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_import.proto +0 -37
  147. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_lite.proto +0 -42
  148. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_field_presence.proto +0 -138
  149. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_generic_services.proto +0 -54
  150. package/sandbox/gapi/googleapis/google/protobuf/unittest_optimize_for.proto +0 -67
  151. package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum.proto +0 -71
  152. package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum2.proto +0 -50
  153. package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3.proto +0 -388
  154. package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3_arena.proto +0 -206
  155. package/sandbox/gapi/googleapis/google/protobuf/unittest_well_known_types.proto +0 -112
  156. package/sandbox/gapi/googleapis/google/protobuf/unknown_enum_test.proto +0 -62
  157. package/sandbox/gapi/googleapis/google/protobuf/wrappers.proto +0 -117
  158. package/sandbox/gapi/googleapis/google/rpc/code.proto +0 -190
  159. package/sandbox/gapi/googleapis/google/rpc/error_details.proto +0 -157
  160. package/sandbox/gapi/googleapis/google/rpc/status.proto +0 -90
  161. package/sandbox/gapi/googleapis/google/type/color.proto +0 -163
  162. package/sandbox/gapi/googleapis/google/type/date.proto +0 -43
  163. package/sandbox/gapi/googleapis/google/type/dayofweek.proto +0 -50
  164. package/sandbox/gapi/googleapis/google/type/latlng.proto +0 -36
  165. package/sandbox/gapi/googleapis/google/type/money.proto +0 -40
  166. package/sandbox/gapi/googleapis/google/type/timeofday.proto +0 -42
  167. package/sandbox/gapi/test.js +0 -17
  168. package/sandbox/gapi/test.proto +0 -12
  169. package/sandbox/issue146/MyOptions.proto +0 -28
  170. package/sandbox/issue146/Sample.proto +0 -21
  171. package/sandbox/issue146/main.js +0 -3
  172. package/sandbox/issue147/enum.proto +0 -8
  173. package/sandbox/issue147/main.js +0 -3
  174. package/sandbox/issue182/commands.proto +0 -10
  175. package/sandbox/issue182/execute.js +0 -22
  176. package/sandbox/issue182/session_commands.proto +0 -14
  177. package/sandbox/issue289/A.proto +0 -8
  178. package/sandbox/issue289/B.proto +0 -8
  179. package/sandbox/issue289/common.proto +0 -5
  180. package/sandbox/issue289/main.js +0 -7
  181. package/sandbox/issue300/IAuth.proto +0 -14
  182. package/sandbox/issue300/Request.proto +0 -14
  183. package/sandbox/issue300/main.js +0 -26
  184. package/sandbox/issue42/innerextend.proto +0 -18
  185. package/sandbox/issue42/main.js +0 -8
  186. package/sandbox/issue42/outerextend.proto +0 -17
  187. package/tests/gtfs-realtime.proto +0 -552
  188. package/webpack.config.js +0 -9
@@ -23,43 +23,47 @@
23
23
 
24
24
 
25
25
 
26
+
26
27
  <section>
27
28
 
28
29
  <header>
29
- <h2>
30
- <span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.Reflect.html">.Reflect</a>.</span>
31
30
 
32
- T
33
- </h2>
31
+ <h2>
32
+ <span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.Reflect.html">.Reflect</a>.</span>
33
+
34
+ T
35
+ </h2>
36
+
34
37
 
35
38
  </header>
36
39
 
37
40
  <article>
38
41
  <div class="container-overview">
39
42
 
43
+
40
44
 
41
45
 
42
-
43
- <dt>
46
+
44
47
  <h4 class="name" id="T"><span class="type-signature">(abstract) </span>new T<span class="signature">(builder<span class="signature-attributes">non-null</span>, parent<span class="signature-attributes">nullable</span>, name)</span><span class="type-signature"></span></h4>
45
48
 
46
49
 
47
- </dt>
48
- <dd>
49
50
 
50
-
51
- <div class="description">
52
- <p>Constructs a Reflect base class.</p>
53
- </div>
54
-
55
51
 
56
-
57
52
 
58
-
53
+ <div class="description">
54
+ <p>Constructs a Reflect base class.</p>
55
+ </div>
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
59
64
 
65
+ <h5>Parameters:</h5>
60
66
 
61
- <h5>Parameters:</h5>
62
-
63
67
 
64
68
  <table class="params">
65
69
  <thead>
@@ -179,10 +183,20 @@
179
183
 
180
184
  </tbody>
181
185
  </table>
186
+
187
+
188
+
189
+
190
+
191
+
192
+ <dl class="details">
193
+
182
194
 
183
195
 
184
196
 
185
- <dl class="details">
197
+
198
+
199
+
186
200
 
187
201
 
188
202
 
@@ -204,7 +218,7 @@
204
218
 
205
219
  <dt class="tag-source">Source:</dt>
206
220
  <dd class="tag-source"><ul class="dummy"><li>
207
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1375">line 1375</a>
221
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1410">line 1410</a>
208
222
  </li></ul></dd>
209
223
 
210
224
 
@@ -216,25 +230,22 @@
216
230
  </dl>
217
231
 
218
232
 
219
-
220
233
 
221
-
222
234
 
223
-
224
235
 
225
-
226
236
 
227
-
228
237
 
229
-
230
238
 
231
-
232
- </dd>
233
239
 
234
-
235
- </div>
240
+
241
+
242
+
243
+
244
+
245
+
236
246
 
237
247
 
248
+ </div>
238
249
 
239
250
 
240
251
 
@@ -249,34 +260,41 @@
249
260
 
250
261
  <h3 class="subsection-title">Members</h3>
251
262
 
252
- <dl>
263
+
253
264
 
254
- <dt>
255
- <h4 class="name" id="builder"><span class="type-signature">(non-null) </span>builder<span class="type-signature"> :<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span></h4>
265
+ <h4 class="name" id="builder"><span class="type-signature">(non-null) </span>builder<span class="type-signature"> :<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span></h4>
256
266
 
257
-
258
- </dt>
259
- <dd>
260
-
261
- <div class="description">
262
- <p>Builder reference.</p>
263
- </div>
264
-
265
267
 
266
-
267
- <h5>Type:</h5>
268
- <ul>
269
- <li>
270
-
268
+
269
+
270
+ <div class="description">
271
+ <p>Builder reference.</p>
272
+ </div>
273
+
274
+
275
+
276
+ <h5>Type:</h5>
277
+ <ul>
278
+ <li>
279
+
271
280
  <span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
272
281
 
273
282
 
274
- </li>
275
- </ul>
283
+ </li>
284
+ </ul>
285
+
286
+
287
+
288
+
289
+
290
+ <dl class="details">
291
+
276
292
 
277
293
 
278
294
 
279
- <dl class="details">
295
+
296
+
297
+
280
298
 
281
299
 
282
300
 
@@ -298,7 +316,7 @@
298
316
 
299
317
  <dt class="tag-source">Source:</dt>
300
318
  <dd class="tag-source"><ul class="dummy"><li>
301
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1382">line 1382</a>
319
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1417">line 1417</a>
302
320
  </li></ul></dd>
303
321
 
304
322
 
@@ -310,39 +328,45 @@
310
328
  </dl>
311
329
 
312
330
 
313
-
314
331
 
315
-
316
- </dd>
332
+
333
+
317
334
 
318
335
 
319
336
 
320
- <dt>
321
- <h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"> :string</span></h4>
337
+ <h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"> :string</span></h4>
322
338
 
323
-
324
- </dt>
325
- <dd>
326
-
327
- <div class="description">
328
- <p>Fully qualified class name</p>
329
- </div>
330
-
331
339
 
332
-
333
- <h5>Type:</h5>
334
- <ul>
335
- <li>
336
-
340
+
341
+
342
+ <div class="description">
343
+ <p>Fully qualified class name</p>
344
+ </div>
345
+
346
+
347
+
348
+ <h5>Type:</h5>
349
+ <ul>
350
+ <li>
351
+
337
352
  <span class="param-type">string</span>
338
353
 
339
354
 
340
- </li>
341
- </ul>
355
+ </li>
356
+ </ul>
357
+
358
+
359
+
360
+
361
+
362
+ <dl class="details">
363
+
342
364
 
343
365
 
344
366
 
345
- <dl class="details">
367
+
368
+
369
+
346
370
 
347
371
 
348
372
 
@@ -364,7 +388,7 @@
364
388
 
365
389
  <dt class="tag-source">Source:</dt>
366
390
  <dd class="tag-source"><ul class="dummy"><li>
367
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1403">line 1403</a>
391
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1438">line 1438</a>
368
392
  </li></ul></dd>
369
393
 
370
394
 
@@ -376,39 +400,45 @@
376
400
  </dl>
377
401
 
378
402
 
379
-
380
403
 
381
-
382
- </dd>
404
+
405
+
383
406
 
384
407
 
385
408
 
386
- <dt>
387
- <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
409
+ <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
388
410
 
389
-
390
- </dt>
391
- <dd>
392
-
393
- <div class="description">
394
- <p>Object name in namespace.</p>
395
- </div>
396
-
397
411
 
398
-
399
- <h5>Type:</h5>
400
- <ul>
401
- <li>
402
-
412
+
413
+
414
+ <div class="description">
415
+ <p>Object name in namespace.</p>
416
+ </div>
417
+
418
+
419
+
420
+ <h5>Type:</h5>
421
+ <ul>
422
+ <li>
423
+
403
424
  <span class="param-type">string</span>
404
425
 
405
426
 
406
- </li>
407
- </ul>
427
+ </li>
428
+ </ul>
429
+
430
+
431
+
432
+
433
+
434
+ <dl class="details">
435
+
408
436
 
409
437
 
410
438
 
411
- <dl class="details">
439
+
440
+
441
+
412
442
 
413
443
 
414
444
 
@@ -430,7 +460,7 @@
430
460
 
431
461
  <dt class="tag-source">Source:</dt>
432
462
  <dd class="tag-source"><ul class="dummy"><li>
433
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1396">line 1396</a>
463
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1431">line 1431</a>
434
464
  </li></ul></dd>
435
465
 
436
466
 
@@ -442,39 +472,45 @@
442
472
  </dl>
443
473
 
444
474
 
445
-
446
475
 
447
-
448
- </dd>
476
+
477
+
449
478
 
450
479
 
451
480
 
452
- <dt>
453
- <h4 class="name" id="parent"><span class="type-signature">(nullable) </span>parent<span class="type-signature"> :<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span></h4>
481
+ <h4 class="name" id="parent"><span class="type-signature">(nullable) </span>parent<span class="type-signature"> :<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span></h4>
454
482
 
455
-
456
- </dt>
457
- <dd>
458
-
459
- <div class="description">
460
- <p>Parent object.</p>
461
- </div>
462
-
463
483
 
464
-
465
- <h5>Type:</h5>
466
- <ul>
467
- <li>
468
-
484
+
485
+
486
+ <div class="description">
487
+ <p>Parent object.</p>
488
+ </div>
489
+
490
+
491
+
492
+ <h5>Type:</h5>
493
+ <ul>
494
+ <li>
495
+
469
496
  <span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
470
497
 
471
498
 
472
- </li>
473
- </ul>
499
+ </li>
500
+ </ul>
501
+
502
+
503
+
504
+
505
+
506
+ <dl class="details">
507
+
474
508
 
475
509
 
476
510
 
477
- <dl class="details">
511
+
512
+
513
+
478
514
 
479
515
 
480
516
 
@@ -496,7 +532,7 @@
496
532
 
497
533
  <dt class="tag-source">Source:</dt>
498
534
  <dd class="tag-source"><ul class="dummy"><li>
499
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1389">line 1389</a>
535
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1424">line 1424</a>
500
536
  </li></ul></dd>
501
537
 
502
538
 
@@ -508,40 +544,51 @@
508
544
  </dl>
509
545
 
510
546
 
511
-
512
547
 
513
-
514
- </dd>
515
548
 
516
- </dl>
549
+
550
+
551
+
517
552
 
518
553
 
519
554
 
520
555
  <h3 class="subsection-title">Methods</h3>
521
556
 
522
- <dl>
557
+
523
558
 
524
- <dt>
525
- <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
526
559
 
527
560
 
528
- </dt>
529
- <dd>
530
561
 
531
-
532
- <div class="description">
533
- <p>Builds this type.</p>
534
- </div>
535
-
562
+ <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
536
563
 
537
564
 
538
565
 
566
+
567
+
568
+ <div class="description">
569
+ <p>Builds this type.</p>
570
+ </div>
571
+
572
+
573
+
574
+
575
+
576
+
577
+
578
+
579
+
580
+
581
+
582
+
583
+
584
+ <dl class="details">
585
+
539
586
 
540
587
 
541
588
 
542
589
 
543
590
 
544
- <dl class="details">
591
+
545
592
 
546
593
 
547
594
 
@@ -563,7 +610,7 @@
563
610
 
564
611
  <dt class="tag-source">Source:</dt>
565
612
  <dd class="tag-source"><ul class="dummy"><li>
566
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1444">line 1444</a>
613
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1479">line 1479</a>
567
614
  </li></ul></dd>
568
615
 
569
616
 
@@ -575,25 +622,26 @@
575
622
  </dl>
576
623
 
577
624
 
578
-
579
625
 
580
-
581
626
 
582
-
583
627
 
584
-
585
628
 
586
-
587
- <h5>Throws:</h5>
588
-
589
-
629
+
630
+
631
+
632
+
633
+
634
+ <h5>Throws:</h5>
635
+
636
+
590
637
 
591
638
  <dl>
592
639
  <dt>
593
640
  <div class="param-desc">
594
- If this type cannot be built directly
641
+ <p>If this type cannot be built directly</p>
595
642
  </div>
596
643
  </dt>
644
+ <dd></dd>
597
645
  <dt>
598
646
  <dl>
599
647
  <dt>
@@ -607,39 +655,51 @@
607
655
  </dd>
608
656
  </dl>
609
657
  </dt>
658
+ <dd></dd>
610
659
  </dl>
611
660
 
612
661
 
613
-
614
-
615
662
 
616
663
 
617
-
618
- </dd>
664
+
665
+
666
+
619
667
 
620
668
 
621
669
 
622
- <dt>
623
- <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
624
670
 
625
671
 
626
- </dt>
627
- <dd>
628
672
 
629
-
630
- <div class="description">
631
- <p>Returns the fully qualified name of this object.</p>
632
- </div>
633
-
673
+ <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
634
674
 
635
675
 
636
676
 
677
+
678
+
679
+ <div class="description">
680
+ <p>Returns the fully qualified name of this object.</p>
681
+ </div>
682
+
683
+
684
+
685
+
686
+
687
+
688
+
689
+
690
+
691
+
692
+
693
+
694
+
695
+ <dl class="details">
696
+
637
697
 
638
698
 
639
699
 
640
700
 
641
701
 
642
- <dl class="details">
702
+
643
703
 
644
704
 
645
705
 
@@ -661,7 +721,7 @@
661
721
 
662
722
  <dt class="tag-source">Source:</dt>
663
723
  <dd class="tag-source"><ul class="dummy"><li>
664
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1417">line 1417</a>
724
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1452">line 1452</a>
665
725
  </li></ul></dd>
666
726
 
667
727
 
@@ -673,20 +733,20 @@
673
733
  </dl>
674
734
 
675
735
 
676
-
677
736
 
678
-
679
737
 
680
-
681
738
 
682
-
683
739
 
684
-
685
740
 
686
-
687
- <h5>Returns:</h5>
688
-
689
-
741
+
742
+
743
+
744
+
745
+
746
+
747
+ <h5>Returns:</h5>
748
+
749
+
690
750
  <div class="param-desc">
691
751
  <p>Fully qualified name as of &quot;.PATH.TO.THIS&quot;</p>
692
752
  </div>
@@ -705,33 +765,35 @@
705
765
  </dd>
706
766
  </dl>
707
767
 
708
-
709
-
710
768
 
711
- </dd>
769
+
770
+
712
771
 
713
772
 
714
773
 
715
- <dt>
716
- <h4 class="name" id="toString"><span class="type-signature"></span>toString<span class="signature">(includeClass<span class="signature-attributes">opt</span>)</span><span class="type-signature"></span></h4>
717
774
 
718
775
 
719
- </dt>
720
- <dd>
721
776
 
722
-
723
- <div class="description">
724
- <p>Returns a string representation of this Reflect object (its fully qualified name).</p>
725
- </div>
726
-
777
+ <h4 class="name" id="toString"><span class="type-signature"></span>toString<span class="signature">(includeClass<span class="signature-attributes">opt</span>)</span><span class="type-signature"></span></h4>
727
778
 
728
779
 
729
780
 
730
-
731
781
 
782
+
783
+ <div class="description">
784
+ <p>Returns a string representation of this Reflect object (its fully qualified name).</p>
785
+ </div>
786
+
787
+
788
+
789
+
790
+
791
+
792
+
793
+
794
+
795
+ <h5>Parameters:</h5>
732
796
 
733
- <h5>Parameters:</h5>
734
-
735
797
 
736
798
  <table class="params">
737
799
  <thead>
@@ -789,10 +851,20 @@
789
851
 
790
852
  </tbody>
791
853
  </table>
854
+
855
+
856
+
857
+
858
+
859
+
860
+ <dl class="details">
861
+
792
862
 
793
863
 
794
864
 
795
- <dl class="details">
865
+
866
+
867
+
796
868
 
797
869
 
798
870
 
@@ -814,7 +886,7 @@
814
886
 
815
887
  <dt class="tag-source">Source:</dt>
816
888
  <dd class="tag-source"><ul class="dummy"><li>
817
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1435">line 1435</a>
889
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1470">line 1470</a>
818
890
  </li></ul></dd>
819
891
 
820
892
 
@@ -826,32 +898,31 @@
826
898
  </dl>
827
899
 
828
900
 
829
-
830
901
 
831
-
832
902
 
833
-
834
903
 
835
-
836
904
 
837
-
838
905
 
839
-
840
- <h5>Returns:</h5>
841
-
842
-
906
+
907
+
908
+
909
+
910
+
911
+
912
+ <h5>Returns:</h5>
913
+
914
+
843
915
  <div class="param-desc">
844
916
  <p>String representation</p>
845
917
  </div>
846
918
 
847
919
 
848
920
 
849
-
850
-
851
921
 
852
- </dd>
853
922
 
854
- </dl>
923
+
924
+
925
+
855
926
 
856
927
 
857
928
 
@@ -867,13 +938,13 @@
867
938
  </div>
868
939
 
869
940
  <nav>
870
- <h2><a href="index.html">Index</a></h2><h3>Classes</h3><ul><li><a href="ProtoBuf.Builder.html">Builder</a></li><li><a href="ProtoBuf.Builder.Message.html">Message</a></li><li><a href="ProtoBuf.Builder.Service.html">Service</a></li><li><a href="ProtoBuf.DotProto.Parser.html">Parser</a></li><li><a href="ProtoBuf.DotProto.Tokenizer.html">Tokenizer</a></li><li><a href="ProtoBuf.Map.html">Map</a></li><li><a href="ProtoBuf.Reflect.Element.html">Element</a></li><li><a href="ProtoBuf.Reflect.Enum.html">Enum</a></li><li><a href="ProtoBuf.Reflect.Enum.Value.html">Value</a></li><li><a href="ProtoBuf.Reflect.Extension.html">Extension</a></li><li><a href="ProtoBuf.Reflect.Message.html">Message</a></li><li><a href="ProtoBuf.Reflect.Message.ExtensionField.html">ExtensionField</a></li><li><a href="ProtoBuf.Reflect.Message.Field.html">Field</a></li><li><a href="ProtoBuf.Reflect.Message.OneOf.html">OneOf</a></li><li><a href="ProtoBuf.Reflect.Namespace.html">Namespace</a></li><li><a href="ProtoBuf.Reflect.Service.html">Service</a></li><li><a href="ProtoBuf.Reflect.Service.Method.html">Method</a></li><li><a href="ProtoBuf.Reflect.Service.RPCMethod.html">RPCMethod</a></li><li><a href="ProtoBuf.Reflect.T.html">T</a></li></ul><h3>Namespaces</h3><ul><li><a href="ProtoBuf.html">ProtoBuf</a></li><li><a href="ProtoBuf.DotProto.html">DotProto</a></li><li><a href="ProtoBuf.Reflect.html">Reflect</a></li><li><a href="ProtoBuf.Util.html">Util</a></li></ul>
941
+ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="ProtoBuf.Builder.html">Builder</a></li><li><a href="ProtoBuf.Builder.Message.html">Message</a></li><li><a href="ProtoBuf.Builder.Service.html">Service</a></li><li><a href="ProtoBuf.DotProto.Parser.html">Parser</a></li><li><a href="ProtoBuf.DotProto.Tokenizer.html">Tokenizer</a></li><li><a href="ProtoBuf.Map.html">Map</a></li><li><a href="ProtoBuf.Reflect.Element.html">Element</a></li><li><a href="ProtoBuf.Reflect.Enum.html">Enum</a></li><li><a href="ProtoBuf.Reflect.Enum.Value.html">Value</a></li><li><a href="ProtoBuf.Reflect.Extension.html">Extension</a></li><li><a href="ProtoBuf.Reflect.Message.html">Message</a></li><li><a href="ProtoBuf.Reflect.Message.ExtensionField.html">ExtensionField</a></li><li><a href="ProtoBuf.Reflect.Message.Field.html">Field</a></li><li><a href="ProtoBuf.Reflect.Message.OneOf.html">OneOf</a></li><li><a href="ProtoBuf.Reflect.Namespace.html">Namespace</a></li><li><a href="ProtoBuf.Reflect.Service.html">Service</a></li><li><a href="ProtoBuf.Reflect.Service.Method.html">Method</a></li><li><a href="ProtoBuf.Reflect.Service.RPCMethod.html">RPCMethod</a></li><li><a href="ProtoBuf.Reflect.T.html">T</a></li></ul><h3>Namespaces</h3><ul><li><a href="ProtoBuf.html">ProtoBuf</a></li><li><a href="ProtoBuf.DotProto.html">DotProto</a></li><li><a href="ProtoBuf.Reflect.html">Reflect</a></li><li><a href="ProtoBuf.Util.html">Util</a></li></ul>
871
942
  </nav>
872
943
 
873
- <br clear="both">
944
+ <br class="clear">
874
945
 
875
946
  <footer>
876
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-alpha9</a> on Wed Oct 14 2015 18:20:52 GMT+0200 (Mitteleuropäische Sommerzeit)
947
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.3</a> on Fri Jan 27 2017 17:03:55 GMT+0100 (Mitteleuropäische Zeit)
877
948
  </footer>
878
949
 
879
950
  <script> prettyPrint(); </script>