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
- Message
33
- </h2>
31
+ <h2>
32
+ <span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.Reflect.html">.Reflect</a>.</span>
33
+
34
+ Message
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="Message"><span class="type-signature"></span>new Message<span class="signature">(builder<span class="signature-attributes">non-null</span>, parent<span class="signature-attributes">non-null</span>, name, options<span class="signature-attributes">opt</span>, isGroup<span class="signature-attributes">opt</span>, syntax<span class="signature-attributes">nullable</span>)</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 new Message.</p>
53
- </div>
54
-
55
51
 
56
-
57
52
 
58
-
53
+ <div class="description">
54
+ <p>Constructs a new Message.</p>
55
+ </div>
56
+
57
+
58
+
59
+
59
60
 
61
+
62
+
63
+
64
+
65
+ <h5>Parameters:</h5>
60
66
 
61
- <h5>Parameters:</h5>
62
-
63
67
 
64
68
  <table class="params">
65
69
  <thead>
@@ -276,10 +280,20 @@
276
280
 
277
281
  </tbody>
278
282
  </table>
283
+
284
+
285
+
286
+
287
+
288
+
289
+ <dl class="details">
290
+
279
291
 
280
292
 
281
293
 
282
- <dl class="details">
294
+
295
+
296
+
283
297
 
284
298
 
285
299
 
@@ -301,7 +315,7 @@
301
315
 
302
316
  <dt class="tag-source">Source:</dt>
303
317
  <dd class="tag-source"><ul class="dummy"><li>
304
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2250">line 2250</a>
318
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line2298">line 2298</a>
305
319
  </li></ul></dd>
306
320
 
307
321
 
@@ -313,20 +327,19 @@
313
327
  </dl>
314
328
 
315
329
 
316
-
317
330
 
318
-
319
331
 
320
-
321
332
 
322
-
323
333
 
324
-
325
334
 
326
-
327
335
 
328
-
329
- </dd>
336
+
337
+
338
+
339
+
340
+
341
+
342
+
330
343
 
331
344
 
332
345
  </div>
@@ -334,10 +347,13 @@
334
347
 
335
348
  <h3 class="subsection-title">Extends</h3>
336
349
 
337
- <ul>
338
- <li><a href="ProtoBuf.Reflect.Namespace.html">ProtoBuf.Reflect.Namespace</a></li>
339
- </ul>
340
-
350
+
351
+
352
+
353
+ <ul>
354
+ <li><a href="ProtoBuf.Reflect.Namespace.html">ProtoBuf.Reflect.Namespace</a></li>
355
+ </ul>
356
+
341
357
 
342
358
 
343
359
 
@@ -365,35 +381,34 @@
365
381
 
366
382
  <h3 class="subsection-title">Members</h3>
367
383
 
368
- <dl>
384
+
369
385
 
370
- <dt>
371
- <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>
386
+ <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>
372
387
 
373
-
374
- </dt>
375
- <dd>
376
-
377
- <div class="description">
378
- <p>Builder reference.</p>
379
- </div>
380
-
381
388
 
382
-
383
- <h5>Type:</h5>
384
- <ul>
385
- <li>
386
-
389
+
390
+
391
+ <div class="description">
392
+ <p>Builder reference.</p>
393
+ </div>
394
+
395
+
396
+
397
+ <h5>Type:</h5>
398
+ <ul>
399
+ <li>
400
+
387
401
  <span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
388
402
 
389
403
 
390
- </li>
391
- </ul>
392
-
404
+ </li>
405
+ </ul>
406
+
407
+
408
+
409
+
393
410
 
394
-
395
411
  <dl class="details">
396
-
397
412
 
398
413
 
399
414
 
@@ -403,7 +418,15 @@
403
418
  <dt class="inherited-from">Inherited From:</dt>
404
419
  <dd class="inherited-from"><ul class="dummy"><li>
405
420
  <a href="ProtoBuf.Reflect.T.html#builder">ProtoBuf.Reflect.T#builder</a>
406
- </li></dd>
421
+ </li></ul></dd>
422
+
423
+
424
+
425
+
426
+
427
+
428
+
429
+
407
430
 
408
431
 
409
432
 
@@ -419,7 +442,7 @@
419
442
 
420
443
  <dt class="tag-source">Source:</dt>
421
444
  <dd class="tag-source"><ul class="dummy"><li>
422
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1382">line 1382</a>
445
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1417">line 1417</a>
423
446
  </li></ul></dd>
424
447
 
425
448
 
@@ -431,40 +454,38 @@
431
454
  </dl>
432
455
 
433
456
 
434
-
435
457
 
436
-
437
- </dd>
458
+
459
+
438
460
 
439
461
 
440
462
 
441
- <dt>
442
- <h4 class="name" id="children"><span class="type-signature">(non-null) </span>children<span class="type-signature"> :Array.&lt;<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>></span></h4>
463
+ <h4 class="name" id="children"><span class="type-signature">(non-null) </span>children<span class="type-signature"> :Array.&lt;<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>></span></h4>
443
464
 
444
-
445
- </dt>
446
- <dd>
447
-
448
- <div class="description">
449
- <p>Children inside the namespace.</p>
450
- </div>
451
-
452
465
 
453
-
454
- <h5>Type:</h5>
455
- <ul>
456
- <li>
457
-
466
+
467
+
468
+ <div class="description">
469
+ <p>Children inside the namespace.</p>
470
+ </div>
471
+
472
+
473
+
474
+ <h5>Type:</h5>
475
+ <ul>
476
+ <li>
477
+
458
478
  <span class="param-type">Array.&lt;<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>></span>
459
479
 
460
480
 
461
- </li>
462
- </ul>
463
-
481
+ </li>
482
+ </ul>
483
+
484
+
485
+
486
+
464
487
 
465
-
466
488
  <dl class="details">
467
-
468
489
 
469
490
 
470
491
 
@@ -474,7 +495,15 @@
474
495
  <dt class="inherited-from">Inherited From:</dt>
475
496
  <dd class="inherited-from"><ul class="dummy"><li>
476
497
  <a href="ProtoBuf.Reflect.Namespace.html#children">ProtoBuf.Reflect.Namespace#children</a>
477
- </li></dd>
498
+ </li></ul></dd>
499
+
500
+
501
+
502
+
503
+
504
+
505
+
506
+
478
507
 
479
508
 
480
509
 
@@ -490,7 +519,7 @@
490
519
 
491
520
  <dt class="tag-source">Source:</dt>
492
521
  <dd class="tag-source"><ul class="dummy"><li>
493
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1477">line 1477</a>
522
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1512">line 1512</a>
494
523
  </li></ul></dd>
495
524
 
496
525
 
@@ -502,25 +531,50 @@
502
531
  </dl>
503
532
 
504
533
 
505
-
506
534
 
507
-
508
- </dd>
535
+
536
+
509
537
 
510
538
 
511
539
 
512
- <dt>
513
- <h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"></span></h4>
540
+ <h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"> :string</span></h4>
541
+
542
+
543
+
544
+
545
+ <div class="description">
546
+ <p>Fully qualified class name</p>
547
+ </div>
548
+
549
+
550
+
551
+ <h5>Type:</h5>
552
+ <ul>
553
+ <li>
554
+
555
+ <span class="param-type">string</span>
556
+
557
+
558
+ </li>
559
+ </ul>
560
+
561
+
562
+
563
+
564
+
565
+ <dl class="details">
514
566
 
515
567
 
516
- </dt>
517
- <dd>
568
+
518
569
 
519
570
 
520
571
 
521
572
 
522
573
 
523
- <dl class="details">
574
+ <dt class="tag-overrides">Overrides:</dt>
575
+ <dd class="tag-overrides"><ul class="dummy"><li>
576
+ <a href="ProtoBuf.Reflect.Namespace.html#className">ProtoBuf.Reflect.Namespace#className</a>
577
+ </li></ul></dd>
524
578
 
525
579
 
526
580
 
@@ -542,7 +596,7 @@
542
596
 
543
597
  <dt class="tag-source">Source:</dt>
544
598
  <dd class="tag-source"><ul class="dummy"><li>
545
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2256">line 2256</a>
599
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1438">line 1438</a>
546
600
  </li></ul></dd>
547
601
 
548
602
 
@@ -554,39 +608,45 @@
554
608
  </dl>
555
609
 
556
610
 
557
-
558
611
 
559
-
560
- </dd>
612
+
613
+
561
614
 
562
615
 
563
616
 
564
- <dt>
565
- <h4 class="name" id="clazz"><span class="type-signature">(nullable) </span>clazz<span class="type-signature"> :function</span></h4>
617
+ <h4 class="name" id="clazz"><span class="type-signature">(nullable) </span>clazz<span class="type-signature"> :function</span></h4>
566
618
 
567
-
568
- </dt>
569
- <dd>
570
-
571
- <div class="description">
572
- <p>Runtime message class.</p>
573
- </div>
574
-
575
619
 
576
-
577
- <h5>Type:</h5>
578
- <ul>
579
- <li>
580
-
620
+
621
+
622
+ <div class="description">
623
+ <p>Runtime message class.</p>
624
+ </div>
625
+
626
+
627
+
628
+ <h5>Type:</h5>
629
+ <ul>
630
+ <li>
631
+
581
632
  <span class="param-type">function</span>
582
633
 
583
634
 
584
- </li>
585
- </ul>
635
+ </li>
636
+ </ul>
637
+
638
+
639
+
640
+
641
+
642
+ <dl class="details">
643
+
586
644
 
587
645
 
588
646
 
589
- <dl class="details">
647
+
648
+
649
+
590
650
 
591
651
 
592
652
 
@@ -608,7 +668,7 @@
608
668
 
609
669
  <dt class="tag-source">Source:</dt>
610
670
  <dd class="tag-source"><ul class="dummy"><li>
611
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2270">line 2270</a>
671
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line2318">line 2318</a>
612
672
  </li></ul></dd>
613
673
 
614
674
 
@@ -620,39 +680,48 @@
620
680
  </dl>
621
681
 
622
682
 
623
-
624
683
 
625
-
626
- </dd>
684
+
685
+
627
686
 
628
687
 
629
688
 
630
- <dt>
631
- <h4 class="name" id="extensions"><span class="type-signature">(non-null) </span>extensions<span class="type-signature"> :Array.&lt;number></span></h4>
689
+ <h4 class="name" id="extensions"><span class="type-signature"></span>extensions<span class="type-signature"> :!Array.&lt;number>|undefined</span></h4>
632
690
 
633
-
634
- </dt>
635
- <dd>
636
-
637
- <div class="description">
638
- <p>Extensions range.</p>
639
- </div>
640
-
641
691
 
642
-
643
- <h5>Type:</h5>
644
- <ul>
645
- <li>
646
-
647
- <span class="param-type">Array.&lt;number></span>
648
692
 
649
693
 
650
- </li>
651
- </ul>
694
+ <div class="description">
695
+ <p>Extensions range.</p>
696
+ </div>
697
+
698
+
699
+
700
+ <h5>Type:</h5>
701
+ <ul>
702
+ <li>
703
+
704
+ <span class="param-type">!Array.&lt;number></span>
705
+ |
706
+
707
+ <span class="param-type">undefined</span>
708
+
709
+
710
+ </li>
711
+ </ul>
712
+
713
+
714
+
715
+
716
+
717
+ <dl class="details">
718
+
652
719
 
653
720
 
654
721
 
655
- <dl class="details">
722
+
723
+
724
+
656
725
 
657
726
 
658
727
 
@@ -674,7 +743,7 @@
674
743
 
675
744
  <dt class="tag-source">Source:</dt>
676
745
  <dd class="tag-source"><ul class="dummy"><li>
677
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2263">line 2263</a>
746
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line2311">line 2311</a>
678
747
  </li></ul></dd>
679
748
 
680
749
 
@@ -686,39 +755,45 @@
686
755
  </dl>
687
756
 
688
757
 
689
-
690
758
 
691
-
692
- </dd>
759
+
760
+
693
761
 
694
762
 
695
763
 
696
- <dt>
697
- <h4 class="name" id="isGroup"><span class="type-signature"></span>isGroup<span class="type-signature"> :boolean</span></h4>
764
+ <h4 class="name" id="isGroup"><span class="type-signature"></span>isGroup<span class="type-signature"> :boolean</span></h4>
698
765
 
699
-
700
- </dt>
701
- <dd>
702
-
703
- <div class="description">
704
- <p>Whether this is a legacy group or not.</p>
705
- </div>
706
-
707
766
 
708
-
709
- <h5>Type:</h5>
710
- <ul>
711
- <li>
712
-
767
+
768
+
769
+ <div class="description">
770
+ <p>Whether this is a legacy group or not.</p>
771
+ </div>
772
+
773
+
774
+
775
+ <h5>Type:</h5>
776
+ <ul>
777
+ <li>
778
+
713
779
  <span class="param-type">boolean</span>
714
780
 
715
781
 
716
- </li>
717
- </ul>
782
+ </li>
783
+ </ul>
784
+
785
+
786
+
787
+
788
+
789
+ <dl class="details">
790
+
718
791
 
719
792
 
720
793
 
721
- <dl class="details">
794
+
795
+
796
+
722
797
 
723
798
 
724
799
 
@@ -740,7 +815,7 @@
740
815
 
741
816
  <dt class="tag-source">Source:</dt>
742
817
  <dd class="tag-source"><ul class="dummy"><li>
743
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2277">line 2277</a>
818
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line2325">line 2325</a>
744
819
  </li></ul></dd>
745
820
 
746
821
 
@@ -752,40 +827,38 @@
752
827
  </dl>
753
828
 
754
829
 
755
-
756
830
 
757
-
758
- </dd>
831
+
832
+
759
833
 
760
834
 
761
835
 
762
- <dt>
763
- <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
836
+ <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
764
837
 
765
-
766
- </dt>
767
- <dd>
768
-
769
- <div class="description">
770
- <p>Object name in namespace.</p>
771
- </div>
772
-
773
838
 
774
-
775
- <h5>Type:</h5>
776
- <ul>
777
- <li>
778
-
779
- <span class="param-type">string</span>
780
839
 
781
840
 
782
- </li>
783
- </ul>
784
-
841
+ <div class="description">
842
+ <p>Object name in namespace.</p>
843
+ </div>
844
+
845
+
846
+
847
+ <h5>Type:</h5>
848
+ <ul>
849
+ <li>
850
+
851
+ <span class="param-type">string</span>
852
+
853
+
854
+ </li>
855
+ </ul>
856
+
857
+
858
+
785
859
 
786
-
787
- <dl class="details">
788
-
860
+
861
+ <dl class="details">
789
862
 
790
863
 
791
864
 
@@ -795,7 +868,15 @@
795
868
  <dt class="inherited-from">Inherited From:</dt>
796
869
  <dd class="inherited-from"><ul class="dummy"><li>
797
870
  <a href="ProtoBuf.Reflect.T.html#name">ProtoBuf.Reflect.T#name</a>
798
- </li></dd>
871
+ </li></ul></dd>
872
+
873
+
874
+
875
+
876
+
877
+
878
+
879
+
799
880
 
800
881
 
801
882
 
@@ -811,7 +892,7 @@
811
892
 
812
893
  <dt class="tag-source">Source:</dt>
813
894
  <dd class="tag-source"><ul class="dummy"><li>
814
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1396">line 1396</a>
895
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1431">line 1431</a>
815
896
  </li></ul></dd>
816
897
 
817
898
 
@@ -823,40 +904,38 @@
823
904
  </dl>
824
905
 
825
906
 
826
-
827
907
 
828
-
829
- </dd>
908
+
909
+
830
910
 
831
911
 
832
912
 
833
- <dt>
834
- <h4 class="name" id="options"><span class="type-signature">(non-null) </span>options<span class="type-signature"> :Object.&lt;string, *></span></h4>
913
+ <h4 class="name" id="options"><span class="type-signature">(non-null) </span>options<span class="type-signature"> :Object.&lt;string, *></span></h4>
835
914
 
836
-
837
- </dt>
838
- <dd>
839
-
840
- <div class="description">
841
- <p>Options.</p>
842
- </div>
843
-
844
915
 
845
-
846
- <h5>Type:</h5>
847
- <ul>
848
- <li>
849
-
916
+
917
+
918
+ <div class="description">
919
+ <p>Options.</p>
920
+ </div>
921
+
922
+
923
+
924
+ <h5>Type:</h5>
925
+ <ul>
926
+ <li>
927
+
850
928
  <span class="param-type">Object.&lt;string, *></span>
851
929
 
852
930
 
853
- </li>
854
- </ul>
855
-
931
+ </li>
932
+ </ul>
933
+
934
+
935
+
936
+
856
937
 
857
-
858
938
  <dl class="details">
859
-
860
939
 
861
940
 
862
941
 
@@ -866,7 +945,15 @@
866
945
  <dt class="inherited-from">Inherited From:</dt>
867
946
  <dd class="inherited-from"><ul class="dummy"><li>
868
947
  <a href="ProtoBuf.Reflect.Namespace.html#options">ProtoBuf.Reflect.Namespace#options</a>
869
- </li></dd>
948
+ </li></ul></dd>
949
+
950
+
951
+
952
+
953
+
954
+
955
+
956
+
870
957
 
871
958
 
872
959
 
@@ -882,7 +969,7 @@
882
969
 
883
970
  <dt class="tag-source">Source:</dt>
884
971
  <dd class="tag-source"><ul class="dummy"><li>
885
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1483">line 1483</a>
972
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1518">line 1518</a>
886
973
  </li></ul></dd>
887
974
 
888
975
 
@@ -894,40 +981,38 @@
894
981
  </dl>
895
982
 
896
983
 
897
-
898
984
 
899
-
900
- </dd>
985
+
986
+
901
987
 
902
988
 
903
989
 
904
- <dt>
905
- <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>
990
+ <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>
906
991
 
907
-
908
- </dt>
909
- <dd>
910
-
911
- <div class="description">
912
- <p>Parent object.</p>
913
- </div>
914
-
915
992
 
916
-
917
- <h5>Type:</h5>
918
- <ul>
919
- <li>
920
-
993
+
994
+
995
+ <div class="description">
996
+ <p>Parent object.</p>
997
+ </div>
998
+
999
+
1000
+
1001
+ <h5>Type:</h5>
1002
+ <ul>
1003
+ <li>
1004
+
921
1005
  <span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
922
1006
 
923
1007
 
924
- </li>
925
- </ul>
926
-
1008
+ </li>
1009
+ </ul>
1010
+
1011
+
1012
+
1013
+
927
1014
 
928
-
929
1015
  <dl class="details">
930
-
931
1016
 
932
1017
 
933
1018
 
@@ -937,7 +1022,15 @@
937
1022
  <dt class="inherited-from">Inherited From:</dt>
938
1023
  <dd class="inherited-from"><ul class="dummy"><li>
939
1024
  <a href="ProtoBuf.Reflect.T.html#parent">ProtoBuf.Reflect.T#parent</a>
940
- </li></dd>
1025
+ </li></ul></dd>
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+
1033
+
941
1034
 
942
1035
 
943
1036
 
@@ -953,7 +1046,7 @@
953
1046
 
954
1047
  <dt class="tag-source">Source:</dt>
955
1048
  <dd class="tag-source"><ul class="dummy"><li>
956
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1389">line 1389</a>
1049
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1424">line 1424</a>
957
1050
  </li></ul></dd>
958
1051
 
959
1052
 
@@ -965,40 +1058,38 @@
965
1058
  </dl>
966
1059
 
967
1060
 
968
-
969
1061
 
970
-
971
- </dd>
1062
+
1063
+
972
1064
 
973
1065
 
974
1066
 
975
- <dt>
976
- <h4 class="name" id="syntax"><span class="type-signature">(non-null) </span>syntax<span class="type-signature"> :string</span></h4>
1067
+ <h4 class="name" id="syntax"><span class="type-signature">(non-null) </span>syntax<span class="type-signature"> :string</span></h4>
977
1068
 
978
-
979
- </dt>
980
- <dd>
981
-
982
- <div class="description">
983
- <p>Syntax level (e.g., proto2 or proto3).</p>
984
- </div>
985
-
986
1069
 
987
-
988
- <h5>Type:</h5>
989
- <ul>
990
- <li>
991
-
1070
+
1071
+
1072
+ <div class="description">
1073
+ <p>Syntax level (e.g., proto2 or proto3).</p>
1074
+ </div>
1075
+
1076
+
1077
+
1078
+ <h5>Type:</h5>
1079
+ <ul>
1080
+ <li>
1081
+
992
1082
  <span class="param-type">string</span>
993
1083
 
994
1084
 
995
- </li>
996
- </ul>
997
-
1085
+ </li>
1086
+ </ul>
1087
+
1088
+
1089
+
1090
+
998
1091
 
999
-
1000
1092
  <dl class="details">
1001
-
1002
1093
 
1003
1094
 
1004
1095
 
@@ -1008,7 +1099,15 @@
1008
1099
  <dt class="inherited-from">Inherited From:</dt>
1009
1100
  <dd class="inherited-from"><ul class="dummy"><li>
1010
1101
  <a href="ProtoBuf.Reflect.Namespace.html#syntax">ProtoBuf.Reflect.Namespace#syntax</a>
1011
- </li></dd>
1102
+ </li></ul></dd>
1103
+
1104
+
1105
+
1106
+
1107
+
1108
+
1109
+
1110
+
1012
1111
 
1013
1112
 
1014
1113
 
@@ -1024,7 +1123,7 @@
1024
1123
 
1025
1124
  <dt class="tag-source">Source:</dt>
1026
1125
  <dd class="tag-source"><ul class="dummy"><li>
1027
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1489">line 1489</a>
1126
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1524">line 1524</a>
1028
1127
  </li></ul></dd>
1029
1128
 
1030
1129
 
@@ -1036,39 +1135,41 @@
1036
1135
  </dl>
1037
1136
 
1038
1137
 
1039
-
1040
1138
 
1041
-
1042
- </dd>
1043
1139
 
1044
- </dl>
1140
+
1141
+
1142
+
1045
1143
 
1046
1144
 
1047
1145
 
1048
1146
  <h3 class="subsection-title">Methods</h3>
1049
1147
 
1050
- <dl>
1148
+
1051
1149
 
1052
- <dt>
1053
- <h4 class="name" id="addChild"><span class="type-signature"></span>addChild<span class="signature">(child)</span><span class="type-signature"></span></h4>
1054
1150
 
1055
1151
 
1056
- </dt>
1057
- <dd>
1058
1152
 
1059
-
1060
- <div class="description">
1061
- <p>Adds a child to the namespace.</p>
1062
- </div>
1063
-
1153
+ <h4 class="name" id="addChild"><span class="type-signature"></span>addChild<span class="signature">(child)</span><span class="type-signature"></span></h4>
1064
1154
 
1065
1155
 
1066
1156
 
1067
-
1068
1157
 
1158
+
1159
+ <div class="description">
1160
+ <p>Adds a child to the namespace.</p>
1161
+ </div>
1162
+
1163
+
1164
+
1165
+
1166
+
1167
+
1168
+
1169
+
1170
+
1171
+ <h5>Parameters:</h5>
1069
1172
 
1070
- <h5>Parameters:</h5>
1071
-
1072
1173
 
1073
1174
  <table class="params">
1074
1175
  <thead>
@@ -1114,11 +1215,13 @@
1114
1215
 
1115
1216
  </tbody>
1116
1217
  </table>
1117
-
1118
1218
 
1119
-
1219
+
1220
+
1221
+
1222
+
1223
+
1120
1224
  <dl class="details">
1121
-
1122
1225
 
1123
1226
 
1124
1227
 
@@ -1128,7 +1231,15 @@
1128
1231
  <dt class="inherited-from">Inherited From:</dt>
1129
1232
  <dd class="inherited-from"><ul class="dummy"><li>
1130
1233
  <a href="ProtoBuf.Reflect.Namespace.html#addChild">ProtoBuf.Reflect.Namespace#addChild</a>
1131
- </li></dd>
1234
+ </li></ul></dd>
1235
+
1236
+
1237
+
1238
+
1239
+
1240
+
1241
+
1242
+
1132
1243
 
1133
1244
 
1134
1245
 
@@ -1144,7 +1255,7 @@
1144
1255
 
1145
1256
  <dt class="tag-source">Source:</dt>
1146
1257
  <dd class="tag-source"><ul class="dummy"><li>
1147
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1521">line 1521</a>
1258
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1556">line 1556</a>
1148
1259
  </li></ul></dd>
1149
1260
 
1150
1261
 
@@ -1156,25 +1267,26 @@
1156
1267
  </dl>
1157
1268
 
1158
1269
 
1159
-
1160
1270
 
1161
-
1162
1271
 
1163
-
1164
1272
 
1165
-
1166
1273
 
1167
-
1168
- <h5>Throws:</h5>
1169
-
1170
-
1274
+
1275
+
1276
+
1277
+
1278
+
1279
+ <h5>Throws:</h5>
1280
+
1281
+
1171
1282
 
1172
1283
  <dl>
1173
1284
  <dt>
1174
1285
  <div class="param-desc">
1175
- If the child cannot be added (duplicate)
1286
+ <p>If the child cannot be added (duplicate)</p>
1176
1287
  </div>
1177
1288
  </dt>
1289
+ <dd></dd>
1178
1290
  <dt>
1179
1291
  <dl>
1180
1292
  <dt>
@@ -1188,38 +1300,41 @@
1188
1300
  </dd>
1189
1301
  </dl>
1190
1302
  </dt>
1303
+ <dd></dd>
1191
1304
  </dl>
1192
1305
 
1193
1306
 
1194
-
1195
-
1196
1307
 
1197
1308
 
1198
-
1199
- </dd>
1309
+
1310
+
1311
+
1200
1312
 
1201
1313
 
1202
1314
 
1203
- <dt>
1204
- <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">(rebuild<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {<a href="ProtoBuf.Reflect.Message.html">ProtoBuf.Reflect.Message</a>}</span></h4>
1205
1315
 
1206
1316
 
1207
- </dt>
1208
- <dd>
1209
1317
 
1210
-
1211
- <div class="description">
1212
- <p>Builds the message and returns the runtime counterpart, which is a fully functional class.</p>
1213
- </div>
1214
-
1318
+ <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">(rebuild<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {<a href="ProtoBuf.Reflect.Message.html">ProtoBuf.Reflect.Message</a>}</span></h4>
1215
1319
 
1216
1320
 
1217
1321
 
1218
-
1219
1322
 
1323
+
1324
+ <div class="description">
1325
+ <p>Builds the message and returns the runtime counterpart, which is a fully functional class.</p>
1326
+ </div>
1327
+
1328
+
1329
+
1330
+
1331
+
1332
+
1333
+
1334
+
1335
+
1336
+ <h5>Parameters:</h5>
1220
1337
 
1221
- <h5>Parameters:</h5>
1222
-
1223
1338
 
1224
1339
  <table class="params">
1225
1340
  <thead>
@@ -1277,10 +1392,25 @@
1277
1392
 
1278
1393
  </tbody>
1279
1394
  </table>
1395
+
1396
+
1397
+
1398
+
1399
+
1400
+
1401
+ <dl class="details">
1402
+
1280
1403
 
1281
1404
 
1282
1405
 
1283
- <dl class="details">
1406
+
1407
+
1408
+
1409
+
1410
+ <dt class="tag-overrides">Overrides:</dt>
1411
+ <dd class="tag-overrides"><ul class="dummy"><li>
1412
+ <a href="ProtoBuf.Reflect.Namespace.html#build">ProtoBuf.Reflect.Namespace#build</a>
1413
+ </li></ul></dd>
1284
1414
 
1285
1415
 
1286
1416
 
@@ -1302,7 +1432,7 @@
1302
1432
 
1303
1433
  <dt class="tag-source">Source:</dt>
1304
1434
  <dd class="tag-source"><ul class="dummy"><li>
1305
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2317">line 2317</a>
1435
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line2365">line 2365</a>
1306
1436
  </li></ul></dd>
1307
1437
 
1308
1438
 
@@ -1321,25 +1451,26 @@
1321
1451
  </dl>
1322
1452
 
1323
1453
 
1324
-
1325
1454
 
1326
-
1327
1455
 
1328
-
1329
1456
 
1330
-
1331
1457
 
1332
-
1333
- <h5>Throws:</h5>
1334
-
1335
-
1458
+
1459
+
1460
+
1461
+
1462
+
1463
+ <h5>Throws:</h5>
1464
+
1465
+
1336
1466
 
1337
1467
  <dl>
1338
1468
  <dt>
1339
1469
  <div class="param-desc">
1340
- If the message cannot be built
1470
+ <p>If the message cannot be built</p>
1341
1471
  </div>
1342
1472
  </dt>
1473
+ <dd></dd>
1343
1474
  <dt>
1344
1475
  <dl>
1345
1476
  <dt>
@@ -1353,15 +1484,16 @@
1353
1484
  </dd>
1354
1485
  </dl>
1355
1486
  </dt>
1487
+ <dd></dd>
1356
1488
  </dl>
1357
1489
 
1358
1490
 
1359
-
1360
-
1361
-
1362
- <h5>Returns:</h5>
1363
1491
 
1364
-
1492
+
1493
+
1494
+ <h5>Returns:</h5>
1495
+
1496
+
1365
1497
  <div class="param-desc">
1366
1498
  <p>Message class</p>
1367
1499
  </div>
@@ -1380,35 +1512,38 @@
1380
1512
  </dd>
1381
1513
  </dl>
1382
1514
 
1383
-
1384
-
1385
1515
 
1386
- </dd>
1516
+
1517
+
1387
1518
 
1388
1519
 
1389
1520
 
1390
- <dt>
1391
- <h4 class="name" id="buildOpt"><span class="type-signature"></span>buildOpt<span class="signature">()</span><span class="type-signature"> &rarr; {Object.&lt;string, *>}</span></h4>
1392
1521
 
1393
1522
 
1394
- </dt>
1395
- <dd>
1396
1523
 
1397
-
1398
- <div class="description">
1399
- <p>Builds the namespace's '$options' property.</p>
1400
- </div>
1401
-
1524
+ <h4 class="name" id="buildOpt"><span class="type-signature"></span>buildOpt<span class="signature">()</span><span class="type-signature"> &rarr; {Object.&lt;string, *>}</span></h4>
1402
1525
 
1403
1526
 
1404
1527
 
1405
-
1406
1528
 
1407
-
1408
1529
 
1409
-
1530
+ <div class="description">
1531
+ <p>Builds the namespace's '$options' property.</p>
1532
+ </div>
1533
+
1534
+
1535
+
1536
+
1537
+
1538
+
1539
+
1540
+
1541
+
1542
+
1543
+
1544
+
1545
+
1410
1546
  <dl class="details">
1411
-
1412
1547
 
1413
1548
 
1414
1549
 
@@ -1418,7 +1553,15 @@
1418
1553
  <dt class="inherited-from">Inherited From:</dt>
1419
1554
  <dd class="inherited-from"><ul class="dummy"><li>
1420
1555
  <a href="ProtoBuf.Reflect.Namespace.html#buildOpt">ProtoBuf.Reflect.Namespace#buildOpt</a>
1421
- </li></dd>
1556
+ </li></ul></dd>
1557
+
1558
+
1559
+
1560
+
1561
+
1562
+
1563
+
1564
+
1422
1565
 
1423
1566
 
1424
1567
 
@@ -1434,7 +1577,7 @@
1434
1577
 
1435
1578
  <dt class="tag-source">Source:</dt>
1436
1579
  <dd class="tag-source"><ul class="dummy"><li>
1437
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1631">line 1631</a>
1580
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1666">line 1666</a>
1438
1581
  </li></ul></dd>
1439
1582
 
1440
1583
 
@@ -1446,20 +1589,20 @@
1446
1589
  </dl>
1447
1590
 
1448
1591
 
1449
-
1450
1592
 
1451
-
1452
1593
 
1453
-
1454
1594
 
1455
-
1456
1595
 
1457
-
1458
1596
 
1459
-
1460
- <h5>Returns:</h5>
1461
-
1462
-
1597
+
1598
+
1599
+
1600
+
1601
+
1602
+
1603
+ <h5>Returns:</h5>
1604
+
1605
+
1463
1606
 
1464
1607
 
1465
1608
  <dl>
@@ -1474,33 +1617,35 @@
1474
1617
  </dd>
1475
1618
  </dl>
1476
1619
 
1477
-
1478
-
1479
1620
 
1480
- </dd>
1621
+
1622
+
1481
1623
 
1482
1624
 
1483
1625
 
1484
- <dt>
1485
- <h4 class="name" id="calculate"><span class="type-signature"></span>calculate<span class="signature">(message<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {number}</span></h4>
1486
1626
 
1487
1627
 
1488
- </dt>
1489
- <dd>
1490
1628
 
1491
-
1492
- <div class="description">
1493
- <p>Calculates a runtime message's byte length.</p>
1494
- </div>
1495
-
1629
+ <h4 class="name" id="calculate"><span class="type-signature"></span>calculate<span class="signature">(message<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {number}</span></h4>
1496
1630
 
1497
1631
 
1498
1632
 
1499
-
1500
1633
 
1634
+
1635
+ <div class="description">
1636
+ <p>Calculates a runtime message's byte length.</p>
1637
+ </div>
1638
+
1639
+
1640
+
1641
+
1642
+
1643
+
1644
+
1645
+
1646
+
1647
+ <h5>Parameters:</h5>
1501
1648
 
1502
- <h5>Parameters:</h5>
1503
-
1504
1649
 
1505
1650
  <table class="params">
1506
1651
  <thead>
@@ -1546,10 +1691,20 @@
1546
1691
 
1547
1692
  </tbody>
1548
1693
  </table>
1694
+
1695
+
1696
+
1697
+
1698
+
1699
+
1700
+ <dl class="details">
1701
+
1549
1702
 
1550
1703
 
1551
1704
 
1552
- <dl class="details">
1705
+
1706
+
1707
+
1553
1708
 
1554
1709
 
1555
1710
 
@@ -1571,7 +1726,7 @@
1571
1726
 
1572
1727
  <dt class="tag-source">Source:</dt>
1573
1728
  <dd class="tag-source"><ul class="dummy"><li>
1574
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3095">line 3095</a>
1729
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3156">line 3156</a>
1575
1730
  </li></ul></dd>
1576
1731
 
1577
1732
 
@@ -1583,25 +1738,26 @@
1583
1738
  </dl>
1584
1739
 
1585
1740
 
1586
-
1587
1741
 
1588
-
1589
1742
 
1590
-
1591
1743
 
1592
-
1593
1744
 
1594
-
1595
- <h5>Throws:</h5>
1596
-
1597
-
1745
+
1746
+
1747
+
1748
+
1749
+
1750
+ <h5>Throws:</h5>
1751
+
1752
+
1598
1753
 
1599
1754
  <dl>
1600
1755
  <dt>
1601
1756
  <div class="param-desc">
1602
- If required fields are missing or the message cannot be calculated for another reason
1757
+ <p>If required fields are missing or the message cannot be calculated for another reason</p>
1603
1758
  </div>
1604
1759
  </dt>
1760
+ <dd></dd>
1605
1761
  <dt>
1606
1762
  <dl>
1607
1763
  <dt>
@@ -1615,15 +1771,16 @@
1615
1771
  </dd>
1616
1772
  </dl>
1617
1773
  </dt>
1774
+ <dd></dd>
1618
1775
  </dl>
1619
1776
 
1620
1777
 
1621
-
1778
+
1779
+
1780
+
1781
+ <h5>Returns:</h5>
1622
1782
 
1623
-
1624
- <h5>Returns:</h5>
1625
-
1626
-
1783
+
1627
1784
  <div class="param-desc">
1628
1785
  <p>Byte length</p>
1629
1786
  </div>
@@ -1642,33 +1799,35 @@
1642
1799
  </dd>
1643
1800
  </dl>
1644
1801
 
1645
-
1646
-
1647
1802
 
1648
- </dd>
1803
+
1804
+
1649
1805
 
1650
1806
 
1651
1807
 
1652
- <dt>
1653
- <h4 class="name" id="decode"><span class="type-signature"></span>decode<span class="signature">(buffer, length<span class="signature-attributes">opt</span>, expectedGroupEndId<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {<a href="ProtoBuf.Builder.Message.html">ProtoBuf.Builder.Message</a>}</span></h4>
1654
1808
 
1655
1809
 
1656
- </dt>
1657
- <dd>
1658
1810
 
1659
-
1660
- <div class="description">
1661
- <p>Decodes an encoded message and returns the decoded message.</p>
1662
- </div>
1663
-
1811
+ <h4 class="name" id="decode"><span class="type-signature"></span>decode<span class="signature">(buffer, length<span class="signature-attributes">opt</span>, expectedGroupEndId<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {<a href="ProtoBuf.Builder.Message.html">ProtoBuf.Builder.Message</a>}</span></h4>
1664
1812
 
1665
1813
 
1666
1814
 
1667
-
1668
1815
 
1816
+
1817
+ <div class="description">
1818
+ <p>Decodes an encoded message and returns the decoded message.</p>
1819
+ </div>
1820
+
1821
+
1822
+
1823
+
1824
+
1825
+
1826
+
1827
+
1828
+
1829
+ <h5>Parameters:</h5>
1669
1830
 
1670
- <h5>Parameters:</h5>
1671
-
1672
1831
 
1673
1832
  <table class="params">
1674
1833
  <thead>
@@ -1751,7 +1910,7 @@
1751
1910
 
1752
1911
 
1753
1912
 
1754
- <td class="description last"><p>Message length. Defaults to decode all the available data.</p></td>
1913
+ <td class="description last"><p>Message length. Defaults to decode all remaining data.</p></td>
1755
1914
  </tr>
1756
1915
 
1757
1916
 
@@ -1790,10 +1949,20 @@
1790
1949
 
1791
1950
  </tbody>
1792
1951
  </table>
1952
+
1953
+
1954
+
1955
+
1956
+
1957
+
1958
+ <dl class="details">
1959
+
1793
1960
 
1794
1961
 
1795
1962
 
1796
- <dl class="details">
1963
+
1964
+
1965
+
1797
1966
 
1798
1967
 
1799
1968
 
@@ -1815,7 +1984,7 @@
1815
1984
 
1816
1985
  <dt class="tag-source">Source:</dt>
1817
1986
  <dd class="tag-source"><ul class="dummy"><li>
1818
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3157">line 3157</a>
1987
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3218">line 3218</a>
1819
1988
  </li></ul></dd>
1820
1989
 
1821
1990
 
@@ -1827,25 +1996,26 @@
1827
1996
  </dl>
1828
1997
 
1829
1998
 
1830
-
1831
1999
 
1832
-
1833
2000
 
1834
-
1835
2001
 
1836
-
1837
2002
 
1838
-
1839
- <h5>Throws:</h5>
1840
-
1841
-
2003
+
2004
+
2005
+
2006
+
2007
+
2008
+ <h5>Throws:</h5>
2009
+
2010
+
1842
2011
 
1843
2012
  <dl>
1844
2013
  <dt>
1845
2014
  <div class="param-desc">
1846
- If the message cannot be decoded
2015
+ <p>If the message cannot be decoded</p>
1847
2016
  </div>
1848
2017
  </dt>
2018
+ <dd></dd>
1849
2019
  <dt>
1850
2020
  <dl>
1851
2021
  <dt>
@@ -1859,15 +2029,16 @@
1859
2029
  </dd>
1860
2030
  </dl>
1861
2031
  </dt>
2032
+ <dd></dd>
1862
2033
  </dl>
1863
2034
 
1864
2035
 
1865
-
1866
-
1867
2036
 
1868
- <h5>Returns:</h5>
1869
-
1870
-
2037
+
2038
+
2039
+ <h5>Returns:</h5>
2040
+
2041
+
1871
2042
  <div class="param-desc">
1872
2043
  <p>Decoded message</p>
1873
2044
  </div>
@@ -1886,33 +2057,35 @@
1886
2057
  </dd>
1887
2058
  </dl>
1888
2059
 
1889
-
1890
-
1891
2060
 
1892
- </dd>
2061
+
2062
+
1893
2063
 
1894
2064
 
1895
2065
 
1896
- <dt>
1897
- <h4 class="name" id="encode"><span class="type-signature"></span>encode<span class="signature">(message<span class="signature-attributes">non-null</span>, buffer, noVerify<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {ByteBuffer}</span></h4>
1898
2066
 
1899
2067
 
1900
- </dt>
1901
- <dd>
1902
2068
 
1903
-
1904
- <div class="description">
1905
- <p>Encodes a runtime message's contents to the specified buffer.</p>
1906
- </div>
1907
-
2069
+ <h4 class="name" id="encode"><span class="type-signature"></span>encode<span class="signature">(message<span class="signature-attributes">non-null</span>, buffer, noVerify<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {ByteBuffer}</span></h4>
1908
2070
 
1909
2071
 
1910
2072
 
1911
-
1912
2073
 
2074
+
2075
+ <div class="description">
2076
+ <p>Encodes a runtime message's contents to the specified buffer.</p>
2077
+ </div>
2078
+
2079
+
2080
+
2081
+
2082
+
2083
+
2084
+
2085
+
2086
+
2087
+ <h5>Parameters:</h5>
1913
2088
 
1914
- <h5>Parameters:</h5>
1915
-
1916
2089
 
1917
2090
  <table class="params">
1918
2091
  <thead>
@@ -2032,10 +2205,20 @@
2032
2205
 
2033
2206
  </tbody>
2034
2207
  </table>
2208
+
2209
+
2210
+
2211
+
2212
+
2213
+
2214
+ <dl class="details">
2215
+
2035
2216
 
2036
2217
 
2037
2218
 
2038
- <dl class="details">
2219
+
2220
+
2221
+
2039
2222
 
2040
2223
 
2041
2224
 
@@ -2057,7 +2240,7 @@
2057
2240
 
2058
2241
  <dt class="tag-source">Source:</dt>
2059
2242
  <dd class="tag-source"><ul class="dummy"><li>
2060
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3068">line 3068</a>
2243
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3129">line 3129</a>
2061
2244
  </li></ul></dd>
2062
2245
 
2063
2246
 
@@ -2069,25 +2252,26 @@
2069
2252
  </dl>
2070
2253
 
2071
2254
 
2072
-
2073
2255
 
2074
-
2075
2256
 
2076
-
2077
2257
 
2078
-
2079
2258
 
2080
-
2081
- <h5>Throws:</h5>
2082
-
2083
-
2259
+
2260
+
2261
+
2262
+
2263
+
2264
+ <h5>Throws:</h5>
2265
+
2266
+
2084
2267
 
2085
2268
  <dl>
2086
2269
  <dt>
2087
2270
  <div class="param-desc">
2088
- If required fields are missing or the message cannot be encoded for another reason
2271
+ <p>If required fields are missing or the message cannot be encoded for another reason</p>
2089
2272
  </div>
2090
2273
  </dt>
2274
+ <dd></dd>
2091
2275
  <dt>
2092
2276
  <dl>
2093
2277
  <dt>
@@ -2101,15 +2285,16 @@
2101
2285
  </dd>
2102
2286
  </dl>
2103
2287
  </dt>
2288
+ <dd></dd>
2104
2289
  </dl>
2105
2290
 
2106
2291
 
2107
-
2108
-
2109
2292
 
2110
- <h5>Returns:</h5>
2111
-
2112
-
2293
+
2294
+
2295
+ <h5>Returns:</h5>
2296
+
2297
+
2113
2298
  <div class="param-desc">
2114
2299
  <p>The ByteBuffer for chaining</p>
2115
2300
  </div>
@@ -2128,35 +2313,38 @@
2128
2313
  </dd>
2129
2314
  </dl>
2130
2315
 
2131
-
2132
-
2133
2316
 
2134
- </dd>
2317
+
2318
+
2135
2319
 
2136
2320
 
2137
2321
 
2138
- <dt>
2139
- <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
2140
2322
 
2141
2323
 
2142
- </dt>
2143
- <dd>
2144
2324
 
2145
-
2146
- <div class="description">
2147
- <p>Returns the fully qualified name of this object.</p>
2148
- </div>
2149
-
2325
+ <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
2150
2326
 
2151
2327
 
2152
2328
 
2153
-
2154
2329
 
2155
-
2156
2330
 
2157
-
2331
+ <div class="description">
2332
+ <p>Returns the fully qualified name of this object.</p>
2333
+ </div>
2334
+
2335
+
2336
+
2337
+
2338
+
2339
+
2340
+
2341
+
2342
+
2343
+
2344
+
2345
+
2346
+
2158
2347
  <dl class="details">
2159
-
2160
2348
 
2161
2349
 
2162
2350
 
@@ -2166,7 +2354,15 @@
2166
2354
  <dt class="inherited-from">Inherited From:</dt>
2167
2355
  <dd class="inherited-from"><ul class="dummy"><li>
2168
2356
  <a href="ProtoBuf.Reflect.T.html#fqn">ProtoBuf.Reflect.T#fqn</a>
2169
- </li></dd>
2357
+ </li></ul></dd>
2358
+
2359
+
2360
+
2361
+
2362
+
2363
+
2364
+
2365
+
2170
2366
 
2171
2367
 
2172
2368
 
@@ -2182,7 +2378,7 @@
2182
2378
 
2183
2379
  <dt class="tag-source">Source:</dt>
2184
2380
  <dd class="tag-source"><ul class="dummy"><li>
2185
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1417">line 1417</a>
2381
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1452">line 1452</a>
2186
2382
  </li></ul></dd>
2187
2383
 
2188
2384
 
@@ -2194,20 +2390,20 @@
2194
2390
  </dl>
2195
2391
 
2196
2392
 
2197
-
2198
2393
 
2199
-
2200
2394
 
2201
-
2202
2395
 
2203
-
2204
2396
 
2205
-
2206
2397
 
2207
-
2208
- <h5>Returns:</h5>
2209
-
2210
-
2398
+
2399
+
2400
+
2401
+
2402
+
2403
+
2404
+ <h5>Returns:</h5>
2405
+
2406
+
2211
2407
  <div class="param-desc">
2212
2408
  <p>Fully qualified name as of &quot;.PATH.TO.THIS&quot;</p>
2213
2409
  </div>
@@ -2226,33 +2422,35 @@
2226
2422
  </dd>
2227
2423
  </dl>
2228
2424
 
2229
-
2230
-
2231
2425
 
2232
- </dd>
2426
+
2427
+
2233
2428
 
2234
2429
 
2235
2430
 
2236
- <dt>
2237
- <h4 class="name" id="getChild"><span class="type-signature"></span>getChild<span class="signature">(nameOrId)</span><span class="type-signature"> &rarr; (nullable) {<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>}</span></h4>
2238
2431
 
2239
2432
 
2240
- </dt>
2241
- <dd>
2242
2433
 
2243
-
2244
- <div class="description">
2245
- <p>Gets a child by its name or id.</p>
2246
- </div>
2247
-
2434
+ <h4 class="name" id="getChild"><span class="type-signature"></span>getChild<span class="signature">(nameOrId)</span><span class="type-signature"> &rarr; (nullable) {<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>}</span></h4>
2248
2435
 
2249
2436
 
2250
2437
 
2251
-
2252
2438
 
2439
+
2440
+ <div class="description">
2441
+ <p>Gets a child by its name or id.</p>
2442
+ </div>
2443
+
2444
+
2445
+
2446
+
2447
+
2448
+
2449
+
2450
+
2451
+
2452
+ <h5>Parameters:</h5>
2253
2453
 
2254
- <h5>Parameters:</h5>
2255
-
2256
2454
 
2257
2455
  <table class="params">
2258
2456
  <thead>
@@ -2301,11 +2499,13 @@
2301
2499
 
2302
2500
  </tbody>
2303
2501
  </table>
2304
-
2305
2502
 
2306
-
2503
+
2504
+
2505
+
2506
+
2507
+
2307
2508
  <dl class="details">
2308
-
2309
2509
 
2310
2510
 
2311
2511
 
@@ -2315,7 +2515,15 @@
2315
2515
  <dt class="inherited-from">Inherited From:</dt>
2316
2516
  <dd class="inherited-from"><ul class="dummy"><li>
2317
2517
  <a href="ProtoBuf.Reflect.Namespace.html#getChild">ProtoBuf.Reflect.Namespace#getChild</a>
2318
- </li></dd>
2518
+ </li></ul></dd>
2519
+
2520
+
2521
+
2522
+
2523
+
2524
+
2525
+
2526
+
2319
2527
 
2320
2528
 
2321
2529
 
@@ -2331,7 +2539,7 @@
2331
2539
 
2332
2540
  <dt class="tag-source">Source:</dt>
2333
2541
  <dd class="tag-source"><ul class="dummy"><li>
2334
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1541">line 1541</a>
2542
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1576">line 1576</a>
2335
2543
  </li></ul></dd>
2336
2544
 
2337
2545
 
@@ -2343,20 +2551,20 @@
2343
2551
  </dl>
2344
2552
 
2345
2553
 
2346
-
2347
2554
 
2348
-
2349
2555
 
2350
-
2351
2556
 
2352
-
2353
2557
 
2354
-
2355
2558
 
2356
-
2357
- <h5>Returns:</h5>
2358
-
2359
-
2559
+
2560
+
2561
+
2562
+
2563
+
2564
+
2565
+ <h5>Returns:</h5>
2566
+
2567
+
2360
2568
  <div class="param-desc">
2361
2569
  <p>The child or null if not found</p>
2362
2570
  </div>
@@ -2375,33 +2583,35 @@
2375
2583
  </dd>
2376
2584
  </dl>
2377
2585
 
2378
-
2379
-
2380
2586
 
2381
- </dd>
2587
+
2588
+
2382
2589
 
2383
2590
 
2384
2591
 
2385
- <dt>
2386
- <h4 class="name" id="getChildren"><span class="type-signature"></span>getChildren<span class="signature">(type<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Array.&lt;<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>>}</span></h4>
2387
2592
 
2388
2593
 
2389
- </dt>
2390
- <dd>
2391
2594
 
2392
-
2393
- <div class="description">
2394
- <p>Returns an array of the namespace's children.</p>
2395
- </div>
2396
-
2595
+ <h4 class="name" id="getChildren"><span class="type-signature"></span>getChildren<span class="signature">(type<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Array.&lt;<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>>}</span></h4>
2397
2596
 
2398
2597
 
2399
2598
 
2400
-
2401
2599
 
2600
+
2601
+ <div class="description">
2602
+ <p>Returns an array of the namespace's children.</p>
2603
+ </div>
2604
+
2605
+
2606
+
2607
+
2608
+
2609
+
2610
+
2611
+
2612
+
2613
+ <h5>Parameters:</h5>
2402
2614
 
2403
- <h5>Parameters:</h5>
2404
-
2405
2615
 
2406
2616
  <table class="params">
2407
2617
  <thead>
@@ -2457,12 +2667,25 @@
2457
2667
  </tr>
2458
2668
 
2459
2669
 
2460
- </tbody>
2461
- </table>
2670
+ </tbody>
2671
+ </table>
2672
+
2673
+
2674
+
2675
+
2676
+
2677
+
2678
+ <dl class="details">
2679
+
2680
+
2681
+
2462
2682
 
2463
2683
 
2464
2684
 
2465
- <dl class="details">
2685
+ <dt class="inherited-from">Inherited From:</dt>
2686
+ <dd class="inherited-from"><ul class="dummy"><li>
2687
+ <a href="ProtoBuf.Reflect.Namespace.html#getChildren">ProtoBuf.Reflect.Namespace#getChildren</a>
2688
+ </li></ul></dd>
2466
2689
 
2467
2690
 
2468
2691
 
@@ -2470,10 +2693,7 @@
2470
2693
 
2471
2694
 
2472
2695
 
2473
- <dt class="inherited-from">Inherited From:</dt>
2474
- <dd class="inherited-from"><ul class="dummy"><li>
2475
- <a href="ProtoBuf.Reflect.Namespace.html#getChildren">ProtoBuf.Reflect.Namespace#getChildren</a>
2476
- </li></dd>
2696
+
2477
2697
 
2478
2698
 
2479
2699
 
@@ -2489,7 +2709,7 @@
2489
2709
 
2490
2710
  <dt class="tag-source">Source:</dt>
2491
2711
  <dd class="tag-source"><ul class="dummy"><li>
2492
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1504">line 1504</a>
2712
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1539">line 1539</a>
2493
2713
  </li></ul></dd>
2494
2714
 
2495
2715
 
@@ -2501,20 +2721,20 @@
2501
2721
  </dl>
2502
2722
 
2503
2723
 
2504
-
2505
2724
 
2506
-
2507
2725
 
2508
-
2509
2726
 
2510
-
2511
2727
 
2512
-
2513
2728
 
2514
-
2515
- <h5>Returns:</h5>
2516
-
2517
-
2729
+
2730
+
2731
+
2732
+
2733
+
2734
+
2735
+ <h5>Returns:</h5>
2736
+
2737
+
2518
2738
 
2519
2739
 
2520
2740
  <dl>
@@ -2529,33 +2749,35 @@
2529
2749
  </dd>
2530
2750
  </dl>
2531
2751
 
2532
-
2533
-
2534
2752
 
2535
- </dd>
2753
+
2754
+
2536
2755
 
2537
2756
 
2538
2757
 
2539
- <dt>
2540
- <h4 class="name" id="getOption"><span class="type-signature"></span>getOption<span class="signature">(name<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {*|Object.&lt;string, *>}</span></h4>
2541
2758
 
2542
2759
 
2543
- </dt>
2544
- <dd>
2545
2760
 
2546
-
2547
- <div class="description">
2548
- <p>Gets the value assigned to the option with the specified name.</p>
2549
- </div>
2550
-
2761
+ <h4 class="name" id="getOption"><span class="type-signature"></span>getOption<span class="signature">(name<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {*|Object.&lt;string, *>}</span></h4>
2551
2762
 
2552
2763
 
2553
2764
 
2554
-
2555
2765
 
2766
+
2767
+ <div class="description">
2768
+ <p>Gets the value assigned to the option with the specified name.</p>
2769
+ </div>
2770
+
2771
+
2772
+
2773
+
2774
+
2775
+
2776
+
2777
+
2778
+
2779
+ <h5>Parameters:</h5>
2556
2780
 
2557
- <h5>Parameters:</h5>
2558
-
2559
2781
 
2560
2782
  <table class="params">
2561
2783
  <thead>
@@ -2613,11 +2835,13 @@
2613
2835
 
2614
2836
  </tbody>
2615
2837
  </table>
2616
-
2617
2838
 
2618
-
2839
+
2840
+
2841
+
2842
+
2843
+
2619
2844
  <dl class="details">
2620
-
2621
2845
 
2622
2846
 
2623
2847
 
@@ -2627,7 +2851,15 @@
2627
2851
  <dt class="inherited-from">Inherited From:</dt>
2628
2852
  <dd class="inherited-from"><ul class="dummy"><li>
2629
2853
  <a href="ProtoBuf.Reflect.Namespace.html#getOption">ProtoBuf.Reflect.Namespace#getOption</a>
2630
- </li></dd>
2854
+ </li></ul></dd>
2855
+
2856
+
2857
+
2858
+
2859
+
2860
+
2861
+
2862
+
2631
2863
 
2632
2864
 
2633
2865
 
@@ -2643,7 +2875,7 @@
2643
2875
 
2644
2876
  <dt class="tag-source">Source:</dt>
2645
2877
  <dd class="tag-source"><ul class="dummy"><li>
2646
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1652">line 1652</a>
2878
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1687">line 1687</a>
2647
2879
  </li></ul></dd>
2648
2880
 
2649
2881
 
@@ -2655,20 +2887,20 @@
2655
2887
  </dl>
2656
2888
 
2657
2889
 
2658
-
2659
2890
 
2660
-
2661
2891
 
2662
-
2663
2892
 
2664
-
2665
2893
 
2666
-
2667
2894
 
2668
-
2669
- <h5>Returns:</h5>
2670
-
2671
-
2895
+
2896
+
2897
+
2898
+
2899
+
2900
+
2901
+ <h5>Returns:</h5>
2902
+
2903
+
2672
2904
  <div class="param-desc">
2673
2905
  <p>null} Option value or NULL if there is no such option</p>
2674
2906
  </div>
@@ -2690,33 +2922,35 @@
2690
2922
  </dd>
2691
2923
  </dl>
2692
2924
 
2693
-
2694
-
2695
2925
 
2696
- </dd>
2926
+
2927
+
2697
2928
 
2698
2929
 
2699
2930
 
2700
- <dt>
2701
- <h4 class="name" id="qn"><span class="type-signature"></span>qn<span class="signature">(t<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {string}</span></h4>
2702
2931
 
2703
2932
 
2704
- </dt>
2705
- <dd>
2706
2933
 
2707
-
2708
- <div class="description">
2709
- <p>Determines the shortest qualified name of the specified type, if any, relative to this namespace.</p>
2710
- </div>
2711
-
2934
+ <h4 class="name" id="qn"><span class="type-signature"></span>qn<span class="signature">(t<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {string}</span></h4>
2712
2935
 
2713
2936
 
2714
2937
 
2715
-
2716
2938
 
2939
+
2940
+ <div class="description">
2941
+ <p>Determines the shortest qualified name of the specified type, if any, relative to this namespace.</p>
2942
+ </div>
2943
+
2944
+
2945
+
2946
+
2947
+
2948
+
2949
+
2950
+
2951
+
2952
+ <h5>Parameters:</h5>
2717
2953
 
2718
- <h5>Parameters:</h5>
2719
-
2720
2954
 
2721
2955
  <table class="params">
2722
2956
  <thead>
@@ -2762,11 +2996,13 @@
2762
2996
 
2763
2997
  </tbody>
2764
2998
  </table>
2765
-
2766
2999
 
2767
-
3000
+
3001
+
3002
+
3003
+
3004
+
2768
3005
  <dl class="details">
2769
-
2770
3006
 
2771
3007
 
2772
3008
 
@@ -2776,7 +3012,15 @@
2776
3012
  <dt class="inherited-from">Inherited From:</dt>
2777
3013
  <dd class="inherited-from"><ul class="dummy"><li>
2778
3014
  <a href="ProtoBuf.Reflect.Namespace.html#qn">ProtoBuf.Reflect.Namespace#qn</a>
2779
- </li></dd>
3015
+ </li></ul></dd>
3016
+
3017
+
3018
+
3019
+
3020
+
3021
+
3022
+
3023
+
2780
3024
 
2781
3025
 
2782
3026
 
@@ -2792,7 +3036,7 @@
2792
3036
 
2793
3037
  <dt class="tag-source">Source:</dt>
2794
3038
  <dd class="tag-source"><ul class="dummy"><li>
2795
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1594">line 1594</a>
3039
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1629">line 1629</a>
2796
3040
  </li></ul></dd>
2797
3041
 
2798
3042
 
@@ -2804,20 +3048,20 @@
2804
3048
  </dl>
2805
3049
 
2806
3050
 
2807
-
2808
3051
 
2809
-
2810
3052
 
2811
-
2812
3053
 
2813
-
2814
3054
 
2815
-
2816
3055
 
2817
-
2818
- <h5>Returns:</h5>
2819
-
2820
-
3056
+
3057
+
3058
+
3059
+
3060
+
3061
+
3062
+ <h5>Returns:</h5>
3063
+
3064
+
2821
3065
  <div class="param-desc">
2822
3066
  <p>The shortest qualified name or, if there is none, the fqn</p>
2823
3067
  </div>
@@ -2836,33 +3080,35 @@
2836
3080
  </dd>
2837
3081
  </dl>
2838
3082
 
2839
-
2840
-
2841
3083
 
2842
- </dd>
3084
+
3085
+
2843
3086
 
2844
3087
 
2845
3088
 
2846
- <dt>
2847
- <h4 class="name" id="resolve"><span class="type-signature"></span>resolve<span class="signature">(qn, excludeNonNamespace<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; (nullable) {<a href="ProtoBuf.Reflect.Namespace.html">ProtoBuf.Reflect.Namespace</a>}</span></h4>
2848
3089
 
2849
3090
 
2850
- </dt>
2851
- <dd>
2852
3091
 
2853
-
2854
- <div class="description">
2855
- <p>Resolves a reflect object inside of this namespace.</p>
2856
- </div>
2857
-
3092
+ <h4 class="name" id="resolve"><span class="type-signature"></span>resolve<span class="signature">(qn, excludeNonNamespace<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; (nullable) {<a href="ProtoBuf.Reflect.Namespace.html">ProtoBuf.Reflect.Namespace</a>}</span></h4>
2858
3093
 
2859
3094
 
2860
3095
 
2861
-
2862
3096
 
3097
+
3098
+ <div class="description">
3099
+ <p>Resolves a reflect object inside of this namespace.</p>
3100
+ </div>
3101
+
3102
+
3103
+
3104
+
3105
+
3106
+
3107
+
3108
+
3109
+
3110
+ <h5>Parameters:</h5>
2863
3111
 
2864
- <h5>Parameters:</h5>
2865
-
2866
3112
 
2867
3113
  <table class="params">
2868
3114
  <thead>
@@ -2954,11 +3200,13 @@
2954
3200
 
2955
3201
  </tbody>
2956
3202
  </table>
2957
-
2958
3203
 
2959
-
3204
+
3205
+
3206
+
3207
+
3208
+
2960
3209
  <dl class="details">
2961
-
2962
3210
 
2963
3211
 
2964
3212
 
@@ -2968,7 +3216,15 @@
2968
3216
  <dt class="inherited-from">Inherited From:</dt>
2969
3217
  <dd class="inherited-from"><ul class="dummy"><li>
2970
3218
  <a href="ProtoBuf.Reflect.Namespace.html#resolve">ProtoBuf.Reflect.Namespace#resolve</a>
2971
- </li></dd>
3219
+ </li></ul></dd>
3220
+
3221
+
3222
+
3223
+
3224
+
3225
+
3226
+
3227
+
2972
3228
 
2973
3229
 
2974
3230
 
@@ -2984,7 +3240,7 @@
2984
3240
 
2985
3241
  <dt class="tag-source">Source:</dt>
2986
3242
  <dd class="tag-source"><ul class="dummy"><li>
2987
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1556">line 1556</a>
3243
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1591">line 1591</a>
2988
3244
  </li></ul></dd>
2989
3245
 
2990
3246
 
@@ -2996,20 +3252,20 @@
2996
3252
  </dl>
2997
3253
 
2998
3254
 
2999
-
3000
3255
 
3001
-
3002
3256
 
3003
-
3004
3257
 
3005
-
3006
3258
 
3007
-
3008
3259
 
3009
-
3010
- <h5>Returns:</h5>
3011
-
3012
-
3260
+
3261
+
3262
+
3263
+
3264
+
3265
+
3266
+ <h5>Returns:</h5>
3267
+
3268
+
3013
3269
  <div class="param-desc">
3014
3270
  <p>The resolved type or null if not found</p>
3015
3271
  </div>
@@ -3028,33 +3284,35 @@
3028
3284
  </dd>
3029
3285
  </dl>
3030
3286
 
3031
-
3032
-
3033
3287
 
3034
- </dd>
3288
+
3289
+
3035
3290
 
3036
3291
 
3037
3292
 
3038
- <dt>
3039
- <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>
3040
3293
 
3041
3294
 
3042
- </dt>
3043
- <dd>
3044
3295
 
3045
-
3046
- <div class="description">
3047
- <p>Returns a string representation of this Reflect object (its fully qualified name).</p>
3048
- </div>
3049
-
3296
+ <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>
3050
3297
 
3051
3298
 
3052
3299
 
3053
-
3054
3300
 
3301
+
3302
+ <div class="description">
3303
+ <p>Returns a string representation of this Reflect object (its fully qualified name).</p>
3304
+ </div>
3305
+
3306
+
3307
+
3308
+
3309
+
3310
+
3311
+
3312
+
3313
+
3314
+ <h5>Parameters:</h5>
3055
3315
 
3056
- <h5>Parameters:</h5>
3057
-
3058
3316
 
3059
3317
  <table class="params">
3060
3318
  <thead>
@@ -3112,11 +3370,13 @@
3112
3370
 
3113
3371
  </tbody>
3114
3372
  </table>
3115
-
3116
3373
 
3117
-
3374
+
3375
+
3376
+
3377
+
3378
+
3118
3379
  <dl class="details">
3119
-
3120
3380
 
3121
3381
 
3122
3382
 
@@ -3126,7 +3386,15 @@
3126
3386
  <dt class="inherited-from">Inherited From:</dt>
3127
3387
  <dd class="inherited-from"><ul class="dummy"><li>
3128
3388
  <a href="ProtoBuf.Reflect.T.html#toString">ProtoBuf.Reflect.T#toString</a>
3129
- </li></dd>
3389
+ </li></ul></dd>
3390
+
3391
+
3392
+
3393
+
3394
+
3395
+
3396
+
3397
+
3130
3398
 
3131
3399
 
3132
3400
 
@@ -3142,7 +3410,7 @@
3142
3410
 
3143
3411
  <dt class="tag-source">Source:</dt>
3144
3412
  <dd class="tag-source"><ul class="dummy"><li>
3145
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1435">line 1435</a>
3413
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1470">line 1470</a>
3146
3414
  </li></ul></dd>
3147
3415
 
3148
3416
 
@@ -3154,32 +3422,31 @@
3154
3422
  </dl>
3155
3423
 
3156
3424
 
3157
-
3158
3425
 
3159
-
3160
3426
 
3161
-
3162
3427
 
3163
-
3164
3428
 
3165
-
3166
3429
 
3167
-
3168
- <h5>Returns:</h5>
3169
-
3170
-
3430
+
3431
+
3432
+
3433
+
3434
+
3435
+
3436
+ <h5>Returns:</h5>
3437
+
3438
+
3171
3439
  <div class="param-desc">
3172
3440
  <p>String representation</p>
3173
3441
  </div>
3174
3442
 
3175
3443
 
3176
3444
 
3177
-
3178
-
3179
3445
 
3180
- </dd>
3181
3446
 
3182
- </dl>
3447
+
3448
+
3449
+
3183
3450
 
3184
3451
 
3185
3452
 
@@ -3195,13 +3462,13 @@
3195
3462
  </div>
3196
3463
 
3197
3464
  <nav>
3198
- <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>
3465
+ <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>
3199
3466
  </nav>
3200
3467
 
3201
- <br clear="both">
3468
+ <br class="clear">
3202
3469
 
3203
3470
  <footer>
3204
- 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)
3471
+ 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)
3205
3472
  </footer>
3206
3473
 
3207
3474
  <script> prettyPrint(); </script>