protobufjs 5.0.1 → 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 (170) hide show
  1. package/.travis.yml +2 -1
  2. package/README.md +144 -22
  3. package/bin/pbjs +2 -2
  4. package/bower.json +2 -2
  5. package/cli/pbjs/targets/amd.js +1 -1
  6. package/cli/pbjs/targets/json.js +8 -0
  7. package/cli/pbjs/util.js +1 -1
  8. package/cli/pbjs.js +1 -1
  9. package/dist/protobuf-light.js +166 -128
  10. package/dist/protobuf-light.min.js +88 -81
  11. package/dist/protobuf-light.min.js.gz +0 -0
  12. package/dist/protobuf-light.min.map +4 -4
  13. package/dist/protobuf.js +171 -129
  14. package/dist/protobuf.min.js +106 -98
  15. package/dist/protobuf.min.js.gz +0 -0
  16. package/dist/protobuf.min.map +4 -4
  17. package/docs/ProtoBuf.Builder.Message.html +1408 -971
  18. package/docs/ProtoBuf.Builder.Service.html +266 -197
  19. package/docs/ProtoBuf.Builder.html +758 -542
  20. package/docs/ProtoBuf.DotProto.Parser.html +223 -161
  21. package/docs/ProtoBuf.DotProto.Tokenizer.html +344 -248
  22. package/docs/ProtoBuf.DotProto.html +20 -12
  23. package/docs/ProtoBuf.Element.html +554 -554
  24. package/docs/ProtoBuf.Map.html +158 -123
  25. package/docs/ProtoBuf.Reflect.Element.html +286 -143
  26. package/docs/ProtoBuf.Reflect.Enum.Value.html +329 -228
  27. package/docs/ProtoBuf.Reflect.Enum.html +757 -537
  28. package/docs/ProtoBuf.Reflect.Extension.html +73 -56
  29. package/docs/ProtoBuf.Reflect.Message.ExtensionField.html +1013 -740
  30. package/docs/ProtoBuf.Reflect.Message.Field.html +926 -649
  31. package/docs/ProtoBuf.Reflect.Message.OneOf.html +327 -245
  32. package/docs/ProtoBuf.Reflect.Message.html +915 -651
  33. package/docs/ProtoBuf.Reflect.Namespace.html +648 -447
  34. package/docs/ProtoBuf.Reflect.Service.Method.html +363 -251
  35. package/docs/ProtoBuf.Reflect.Service.RPCMethod.html +545 -397
  36. package/docs/ProtoBuf.Reflect.Service.html +721 -511
  37. package/docs/ProtoBuf.Reflect.T.html +268 -197
  38. package/docs/ProtoBuf.Reflect.html +20 -12
  39. package/docs/ProtoBuf.Util.html +169 -118
  40. package/docs/ProtoBuf.html +840 -628
  41. package/docs/ProtoBuf.js.html +177 -134
  42. package/docs/fonts/OpenSans-Bold-webfont.eot +0 -0
  43. package/docs/fonts/OpenSans-Bold-webfont.svg +1830 -0
  44. package/docs/fonts/OpenSans-Bold-webfont.woff +0 -0
  45. package/docs/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
  46. package/docs/fonts/OpenSans-BoldItalic-webfont.svg +1830 -0
  47. package/docs/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
  48. package/docs/fonts/OpenSans-Italic-webfont.eot +0 -0
  49. package/docs/fonts/OpenSans-Italic-webfont.svg +1830 -0
  50. package/docs/fonts/OpenSans-Italic-webfont.woff +0 -0
  51. package/docs/fonts/OpenSans-Light-webfont.eot +0 -0
  52. package/docs/fonts/OpenSans-Light-webfont.svg +1831 -0
  53. package/docs/fonts/OpenSans-Light-webfont.woff +0 -0
  54. package/docs/fonts/OpenSans-LightItalic-webfont.eot +0 -0
  55. package/docs/fonts/OpenSans-LightItalic-webfont.svg +1835 -0
  56. package/docs/fonts/OpenSans-LightItalic-webfont.woff +0 -0
  57. package/docs/fonts/OpenSans-Regular-webfont.eot +0 -0
  58. package/docs/fonts/OpenSans-Regular-webfont.svg +1831 -0
  59. package/docs/fonts/OpenSans-Regular-webfont.woff +0 -0
  60. package/docs/index.html +7 -5
  61. package/docs/styles/jsdoc-default.css +95 -75
  62. package/docs/styles/prettify-tomorrow.css +1 -1
  63. package/examples/protoify/json.js +123 -123
  64. package/examples/protoify/json.json +123 -123
  65. package/examples/websocket/server.js +4 -4
  66. package/externs/protobuf.js +1 -1
  67. package/jsdoc.json +1 -1
  68. package/package.json +2 -2
  69. package/scripts/build.js +53 -53
  70. package/src/ProtoBuf/Builder/Message.js +9 -5
  71. package/src/ProtoBuf/Builder.js +19 -2
  72. package/src/ProtoBuf/DotProto/Parser.js +5 -1
  73. package/src/ProtoBuf/Reflect/Element.js +13 -1
  74. package/src/ProtoBuf/Reflect/Message/Field.js +2 -2
  75. package/src/ProtoBuf/Reflect/Message.js +6 -1
  76. package/src/ProtoBuf/Util.js +116 -116
  77. package/src/bower.json +1 -1
  78. package/src/google/protobuf/descriptor.json +27 -1
  79. package/tests/bench.txt +373 -373
  80. package/tests/complex.json +8 -1
  81. package/tests/custom-options.json +169 -169
  82. package/tests/extend.json +71 -71
  83. package/tests/imports.json +83 -83
  84. package/tests/nodeunit-browser/nodeunit.css +70 -70
  85. package/tests/nodeunit-browser/nodeunit.js +2108 -2108
  86. package/tests/options.json +32 -32
  87. package/tests/proto2js/Bar.json +46 -46
  88. package/tests/suite.js +43 -1
  89. package/sandbox/gapi/googleapis/google/api/annotations.proto +0 -29
  90. package/sandbox/gapi/googleapis/google/api/http.proto +0 -245
  91. package/sandbox/gapi/googleapis/google/datastore/v1beta3/datastore.proto +0 -281
  92. package/sandbox/gapi/googleapis/google/datastore/v1beta3/entity.proto +0 -189
  93. package/sandbox/gapi/googleapis/google/datastore/v1beta3/query.proto +0 -281
  94. package/sandbox/gapi/googleapis/google/longrunning/operations.proto +0 -144
  95. package/sandbox/gapi/googleapis/google/protobuf/any.proto +0 -98
  96. package/sandbox/gapi/googleapis/google/protobuf/any_test.proto +0 -41
  97. package/sandbox/gapi/googleapis/google/protobuf/api.proto +0 -201
  98. package/sandbox/gapi/googleapis/google/protobuf/descriptor.proto +0 -773
  99. package/sandbox/gapi/googleapis/google/protobuf/duration.proto +0 -95
  100. package/sandbox/gapi/googleapis/google/protobuf/empty.proto +0 -50
  101. package/sandbox/gapi/googleapis/google/protobuf/field_mask.proto +0 -167
  102. package/sandbox/gapi/googleapis/google/protobuf/map_lite_unittest.proto +0 -130
  103. package/sandbox/gapi/googleapis/google/protobuf/map_proto2_unittest.proto +0 -60
  104. package/sandbox/gapi/googleapis/google/protobuf/map_unittest.proto +0 -129
  105. package/sandbox/gapi/googleapis/google/protobuf/map_unittest_proto3.proto +0 -120
  106. package/sandbox/gapi/googleapis/google/protobuf/source_context.proto +0 -47
  107. package/sandbox/gapi/googleapis/google/protobuf/struct.proto +0 -94
  108. package/sandbox/gapi/googleapis/google/protobuf/timestamp.proto +0 -107
  109. package/sandbox/gapi/googleapis/google/protobuf/type.proto +0 -176
  110. package/sandbox/gapi/googleapis/google/protobuf/unittest.proto +0 -878
  111. package/sandbox/gapi/googleapis/google/protobuf/unittest_arena.proto +0 -46
  112. package/sandbox/gapi/googleapis/google/protobuf/unittest_custom_options.proto +0 -394
  113. package/sandbox/gapi/googleapis/google/protobuf/unittest_drop_unknown_fields.proto +0 -58
  114. package/sandbox/gapi/googleapis/google/protobuf/unittest_embed_optimize_for.proto +0 -51
  115. package/sandbox/gapi/googleapis/google/protobuf/unittest_empty.proto +0 -38
  116. package/sandbox/gapi/googleapis/google/protobuf/unittest_enormous_descriptor.proto +0 -1048
  117. package/sandbox/gapi/googleapis/google/protobuf/unittest_import.proto +0 -66
  118. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_lite.proto +0 -52
  119. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_proto3.proto +0 -68
  120. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public.proto +0 -41
  121. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_lite.proto +0 -43
  122. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_proto3.proto +0 -42
  123. package/sandbox/gapi/googleapis/google/protobuf/unittest_lite.proto +0 -385
  124. package/sandbox/gapi/googleapis/google/protobuf/unittest_lite_imports_nonlite.proto +0 -44
  125. package/sandbox/gapi/googleapis/google/protobuf/unittest_mset.proto +0 -82
  126. package/sandbox/gapi/googleapis/google/protobuf/unittest_mset_wire_format.proto +0 -52
  127. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena.proto +0 -202
  128. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_import.proto +0 -37
  129. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_lite.proto +0 -42
  130. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_field_presence.proto +0 -138
  131. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_generic_services.proto +0 -54
  132. package/sandbox/gapi/googleapis/google/protobuf/unittest_optimize_for.proto +0 -67
  133. package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum.proto +0 -71
  134. package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum2.proto +0 -50
  135. package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3.proto +0 -388
  136. package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3_arena.proto +0 -206
  137. package/sandbox/gapi/googleapis/google/protobuf/unittest_well_known_types.proto +0 -112
  138. package/sandbox/gapi/googleapis/google/protobuf/unknown_enum_test.proto +0 -62
  139. package/sandbox/gapi/googleapis/google/protobuf/wrappers.proto +0 -117
  140. package/sandbox/gapi/googleapis/google/rpc/code.proto +0 -190
  141. package/sandbox/gapi/googleapis/google/rpc/error_details.proto +0 -157
  142. package/sandbox/gapi/googleapis/google/rpc/status.proto +0 -90
  143. package/sandbox/gapi/googleapis/google/type/color.proto +0 -163
  144. package/sandbox/gapi/googleapis/google/type/date.proto +0 -43
  145. package/sandbox/gapi/googleapis/google/type/dayofweek.proto +0 -50
  146. package/sandbox/gapi/googleapis/google/type/latlng.proto +0 -36
  147. package/sandbox/gapi/googleapis/google/type/money.proto +0 -40
  148. package/sandbox/gapi/googleapis/google/type/timeofday.proto +0 -42
  149. package/sandbox/gapi/test.js +0 -17
  150. package/sandbox/gapi/test.proto +0 -12
  151. package/sandbox/issue146/MyOptions.proto +0 -28
  152. package/sandbox/issue146/Sample.proto +0 -21
  153. package/sandbox/issue146/main.js +0 -3
  154. package/sandbox/issue147/enum.proto +0 -8
  155. package/sandbox/issue147/main.js +0 -3
  156. package/sandbox/issue182/commands.proto +0 -10
  157. package/sandbox/issue182/execute.js +0 -22
  158. package/sandbox/issue182/session_commands.proto +0 -14
  159. package/sandbox/issue289/A.proto +0 -8
  160. package/sandbox/issue289/B.proto +0 -8
  161. package/sandbox/issue289/common.proto +0 -5
  162. package/sandbox/issue289/main.js +0 -7
  163. package/sandbox/issue300/IAuth.proto +0 -14
  164. package/sandbox/issue300/Request.proto +0 -14
  165. package/sandbox/issue300/main.js +0 -26
  166. package/sandbox/issue347/index.js +0 -27
  167. package/sandbox/issue355/main.proto +0 -15
  168. package/sandbox/issue42/innerextend.proto +0 -18
  169. package/sandbox/issue42/main.js +0 -8
  170. package/sandbox/issue42/outerextend.proto +0 -17
@@ -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#line2282">line 2282</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#line1413">line 1413</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#line1508">line 1508</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#line2288">line 2288</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#line2302">line 2302</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,42 +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"></span>extensions<span class="type-signature"> :!Array.&lt;number>|undefined</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
-
692
+
693
+
694
+ <div class="description">
695
+ <p>Extensions range.</p>
696
+ </div>
697
+
698
+
699
+
700
+ <h5>Type:</h5>
701
+ <ul>
702
+ <li>
703
+
647
704
  <span class="param-type">!Array.&lt;number></span>
648
705
  |
649
706
 
650
707
  <span class="param-type">undefined</span>
651
708
 
652
709
 
653
- </li>
654
- </ul>
710
+ </li>
711
+ </ul>
712
+
713
+
714
+
715
+
716
+
717
+ <dl class="details">
718
+
655
719
 
656
720
 
657
721
 
658
- <dl class="details">
722
+
723
+
724
+
659
725
 
660
726
 
661
727
 
@@ -677,7 +743,7 @@
677
743
 
678
744
  <dt class="tag-source">Source:</dt>
679
745
  <dd class="tag-source"><ul class="dummy"><li>
680
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2295">line 2295</a>
746
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line2311">line 2311</a>
681
747
  </li></ul></dd>
682
748
 
683
749
 
@@ -689,39 +755,45 @@
689
755
  </dl>
690
756
 
691
757
 
692
-
693
758
 
694
-
695
- </dd>
759
+
760
+
696
761
 
697
762
 
698
763
 
699
- <dt>
700
- <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>
701
765
 
702
-
703
- </dt>
704
- <dd>
705
-
706
- <div class="description">
707
- <p>Whether this is a legacy group or not.</p>
708
- </div>
709
-
710
766
 
711
-
712
- <h5>Type:</h5>
713
- <ul>
714
- <li>
715
-
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
+
716
779
  <span class="param-type">boolean</span>
717
780
 
718
781
 
719
- </li>
720
- </ul>
782
+ </li>
783
+ </ul>
784
+
785
+
786
+
787
+
788
+
789
+ <dl class="details">
790
+
721
791
 
722
792
 
723
793
 
724
- <dl class="details">
794
+
795
+
796
+
725
797
 
726
798
 
727
799
 
@@ -743,7 +815,7 @@
743
815
 
744
816
  <dt class="tag-source">Source:</dt>
745
817
  <dd class="tag-source"><ul class="dummy"><li>
746
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2309">line 2309</a>
818
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line2325">line 2325</a>
747
819
  </li></ul></dd>
748
820
 
749
821
 
@@ -755,42 +827,40 @@
755
827
  </dl>
756
828
 
757
829
 
758
-
759
830
 
760
-
761
- </dd>
831
+
832
+
762
833
 
763
834
 
764
835
 
765
- <dt>
766
- <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>
767
837
 
768
-
769
- </dt>
770
- <dd>
771
-
772
- <div class="description">
773
- <p>Object name in namespace.</p>
774
- </div>
775
-
776
838
 
777
-
778
- <h5>Type:</h5>
779
- <ul>
780
- <li>
781
-
782
- <span class="param-type">string</span>
783
839
 
784
840
 
785
- </li>
786
- </ul>
787
-
841
+ <div class="description">
842
+ <p>Object name in namespace.</p>
843
+ </div>
788
844
 
789
-
790
- <dl class="details">
791
-
792
845
 
793
-
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
+
859
+
860
+
861
+ <dl class="details">
862
+
863
+
794
864
 
795
865
 
796
866
 
@@ -798,7 +868,15 @@
798
868
  <dt class="inherited-from">Inherited From:</dt>
799
869
  <dd class="inherited-from"><ul class="dummy"><li>
800
870
  <a href="ProtoBuf.Reflect.T.html#name">ProtoBuf.Reflect.T#name</a>
801
- </li></dd>
871
+ </li></ul></dd>
872
+
873
+
874
+
875
+
876
+
877
+
878
+
879
+
802
880
 
803
881
 
804
882
 
@@ -814,7 +892,7 @@
814
892
 
815
893
  <dt class="tag-source">Source:</dt>
816
894
  <dd class="tag-source"><ul class="dummy"><li>
817
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1427">line 1427</a>
895
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1431">line 1431</a>
818
896
  </li></ul></dd>
819
897
 
820
898
 
@@ -826,40 +904,38 @@
826
904
  </dl>
827
905
 
828
906
 
829
-
830
907
 
831
-
832
- </dd>
908
+
909
+
833
910
 
834
911
 
835
912
 
836
- <dt>
837
- <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>
838
914
 
839
-
840
- </dt>
841
- <dd>
842
-
843
- <div class="description">
844
- <p>Options.</p>
845
- </div>
846
-
847
915
 
848
-
849
- <h5>Type:</h5>
850
- <ul>
851
- <li>
852
-
916
+
917
+
918
+ <div class="description">
919
+ <p>Options.</p>
920
+ </div>
921
+
922
+
923
+
924
+ <h5>Type:</h5>
925
+ <ul>
926
+ <li>
927
+
853
928
  <span class="param-type">Object.&lt;string, *></span>
854
929
 
855
930
 
856
- </li>
857
- </ul>
858
-
931
+ </li>
932
+ </ul>
933
+
934
+
935
+
936
+
859
937
 
860
-
861
938
  <dl class="details">
862
-
863
939
 
864
940
 
865
941
 
@@ -869,7 +945,15 @@
869
945
  <dt class="inherited-from">Inherited From:</dt>
870
946
  <dd class="inherited-from"><ul class="dummy"><li>
871
947
  <a href="ProtoBuf.Reflect.Namespace.html#options">ProtoBuf.Reflect.Namespace#options</a>
872
- </li></dd>
948
+ </li></ul></dd>
949
+
950
+
951
+
952
+
953
+
954
+
955
+
956
+
873
957
 
874
958
 
875
959
 
@@ -885,7 +969,7 @@
885
969
 
886
970
  <dt class="tag-source">Source:</dt>
887
971
  <dd class="tag-source"><ul class="dummy"><li>
888
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1514">line 1514</a>
972
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1518">line 1518</a>
889
973
  </li></ul></dd>
890
974
 
891
975
 
@@ -897,40 +981,38 @@
897
981
  </dl>
898
982
 
899
983
 
900
-
901
984
 
902
-
903
- </dd>
985
+
986
+
904
987
 
905
988
 
906
989
 
907
- <dt>
908
- <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>
909
991
 
910
-
911
- </dt>
912
- <dd>
913
-
914
- <div class="description">
915
- <p>Parent object.</p>
916
- </div>
917
-
918
992
 
919
-
920
- <h5>Type:</h5>
921
- <ul>
922
- <li>
923
-
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
+
924
1005
  <span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
925
1006
 
926
1007
 
927
- </li>
928
- </ul>
929
-
1008
+ </li>
1009
+ </ul>
1010
+
1011
+
1012
+
1013
+
930
1014
 
931
-
932
1015
  <dl class="details">
933
-
934
1016
 
935
1017
 
936
1018
 
@@ -940,7 +1022,15 @@
940
1022
  <dt class="inherited-from">Inherited From:</dt>
941
1023
  <dd class="inherited-from"><ul class="dummy"><li>
942
1024
  <a href="ProtoBuf.Reflect.T.html#parent">ProtoBuf.Reflect.T#parent</a>
943
- </li></dd>
1025
+ </li></ul></dd>
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+
1033
+
944
1034
 
945
1035
 
946
1036
 
@@ -956,7 +1046,7 @@
956
1046
 
957
1047
  <dt class="tag-source">Source:</dt>
958
1048
  <dd class="tag-source"><ul class="dummy"><li>
959
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1420">line 1420</a>
1049
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1424">line 1424</a>
960
1050
  </li></ul></dd>
961
1051
 
962
1052
 
@@ -968,40 +1058,38 @@
968
1058
  </dl>
969
1059
 
970
1060
 
971
-
972
1061
 
973
-
974
- </dd>
1062
+
1063
+
975
1064
 
976
1065
 
977
1066
 
978
- <dt>
979
- <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>
980
1068
 
981
-
982
- </dt>
983
- <dd>
984
-
985
- <div class="description">
986
- <p>Syntax level (e.g., proto2 or proto3).</p>
987
- </div>
988
-
989
1069
 
990
-
991
- <h5>Type:</h5>
992
- <ul>
993
- <li>
994
-
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
+
995
1082
  <span class="param-type">string</span>
996
1083
 
997
1084
 
998
- </li>
999
- </ul>
1000
-
1085
+ </li>
1086
+ </ul>
1087
+
1088
+
1089
+
1090
+
1001
1091
 
1002
-
1003
1092
  <dl class="details">
1004
-
1005
1093
 
1006
1094
 
1007
1095
 
@@ -1011,7 +1099,15 @@
1011
1099
  <dt class="inherited-from">Inherited From:</dt>
1012
1100
  <dd class="inherited-from"><ul class="dummy"><li>
1013
1101
  <a href="ProtoBuf.Reflect.Namespace.html#syntax">ProtoBuf.Reflect.Namespace#syntax</a>
1014
- </li></dd>
1102
+ </li></ul></dd>
1103
+
1104
+
1105
+
1106
+
1107
+
1108
+
1109
+
1110
+
1015
1111
 
1016
1112
 
1017
1113
 
@@ -1027,7 +1123,7 @@
1027
1123
 
1028
1124
  <dt class="tag-source">Source:</dt>
1029
1125
  <dd class="tag-source"><ul class="dummy"><li>
1030
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1520">line 1520</a>
1126
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1524">line 1524</a>
1031
1127
  </li></ul></dd>
1032
1128
 
1033
1129
 
@@ -1039,39 +1135,41 @@
1039
1135
  </dl>
1040
1136
 
1041
1137
 
1042
-
1043
1138
 
1044
-
1045
- </dd>
1046
1139
 
1047
- </dl>
1140
+
1141
+
1142
+
1048
1143
 
1049
1144
 
1050
1145
 
1051
1146
  <h3 class="subsection-title">Methods</h3>
1052
1147
 
1053
- <dl>
1148
+
1054
1149
 
1055
- <dt>
1056
- <h4 class="name" id="addChild"><span class="type-signature"></span>addChild<span class="signature">(child)</span><span class="type-signature"></span></h4>
1057
1150
 
1058
1151
 
1059
- </dt>
1060
- <dd>
1061
1152
 
1062
-
1063
- <div class="description">
1064
- <p>Adds a child to the namespace.</p>
1065
- </div>
1066
-
1153
+ <h4 class="name" id="addChild"><span class="type-signature"></span>addChild<span class="signature">(child)</span><span class="type-signature"></span></h4>
1067
1154
 
1068
1155
 
1069
1156
 
1070
-
1071
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>
1072
1172
 
1073
- <h5>Parameters:</h5>
1074
-
1075
1173
 
1076
1174
  <table class="params">
1077
1175
  <thead>
@@ -1117,11 +1215,13 @@
1117
1215
 
1118
1216
  </tbody>
1119
1217
  </table>
1120
-
1121
1218
 
1122
-
1219
+
1220
+
1221
+
1222
+
1223
+
1123
1224
  <dl class="details">
1124
-
1125
1225
 
1126
1226
 
1127
1227
 
@@ -1131,7 +1231,15 @@
1131
1231
  <dt class="inherited-from">Inherited From:</dt>
1132
1232
  <dd class="inherited-from"><ul class="dummy"><li>
1133
1233
  <a href="ProtoBuf.Reflect.Namespace.html#addChild">ProtoBuf.Reflect.Namespace#addChild</a>
1134
- </li></dd>
1234
+ </li></ul></dd>
1235
+
1236
+
1237
+
1238
+
1239
+
1240
+
1241
+
1242
+
1135
1243
 
1136
1244
 
1137
1245
 
@@ -1147,7 +1255,7 @@
1147
1255
 
1148
1256
  <dt class="tag-source">Source:</dt>
1149
1257
  <dd class="tag-source"><ul class="dummy"><li>
1150
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1552">line 1552</a>
1258
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1556">line 1556</a>
1151
1259
  </li></ul></dd>
1152
1260
 
1153
1261
 
@@ -1159,25 +1267,26 @@
1159
1267
  </dl>
1160
1268
 
1161
1269
 
1162
-
1163
1270
 
1164
-
1165
1271
 
1166
-
1167
1272
 
1168
-
1169
1273
 
1170
-
1171
- <h5>Throws:</h5>
1172
-
1173
-
1274
+
1275
+
1276
+
1277
+
1278
+
1279
+ <h5>Throws:</h5>
1280
+
1281
+
1174
1282
 
1175
1283
  <dl>
1176
1284
  <dt>
1177
1285
  <div class="param-desc">
1178
- If the child cannot be added (duplicate)
1286
+ <p>If the child cannot be added (duplicate)</p>
1179
1287
  </div>
1180
1288
  </dt>
1289
+ <dd></dd>
1181
1290
  <dt>
1182
1291
  <dl>
1183
1292
  <dt>
@@ -1191,38 +1300,41 @@
1191
1300
  </dd>
1192
1301
  </dl>
1193
1302
  </dt>
1303
+ <dd></dd>
1194
1304
  </dl>
1195
1305
 
1196
1306
 
1197
-
1198
-
1199
1307
 
1200
1308
 
1201
-
1202
- </dd>
1309
+
1310
+
1311
+
1203
1312
 
1204
1313
 
1205
1314
 
1206
- <dt>
1207
- <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>
1208
1315
 
1209
1316
 
1210
- </dt>
1211
- <dd>
1212
1317
 
1213
-
1214
- <div class="description">
1215
- <p>Builds the message and returns the runtime counterpart, which is a fully functional class.</p>
1216
- </div>
1217
-
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>
1218
1319
 
1219
1320
 
1220
1321
 
1221
-
1222
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>
1223
1337
 
1224
- <h5>Parameters:</h5>
1225
-
1226
1338
 
1227
1339
  <table class="params">
1228
1340
  <thead>
@@ -1280,10 +1392,25 @@
1280
1392
 
1281
1393
  </tbody>
1282
1394
  </table>
1395
+
1396
+
1397
+
1398
+
1399
+
1400
+
1401
+ <dl class="details">
1402
+
1283
1403
 
1284
1404
 
1285
1405
 
1286
- <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>
1287
1414
 
1288
1415
 
1289
1416
 
@@ -1305,7 +1432,7 @@
1305
1432
 
1306
1433
  <dt class="tag-source">Source:</dt>
1307
1434
  <dd class="tag-source"><ul class="dummy"><li>
1308
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2349">line 2349</a>
1435
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line2365">line 2365</a>
1309
1436
  </li></ul></dd>
1310
1437
 
1311
1438
 
@@ -1324,25 +1451,26 @@
1324
1451
  </dl>
1325
1452
 
1326
1453
 
1327
-
1328
1454
 
1329
-
1330
1455
 
1331
-
1332
1456
 
1333
-
1334
1457
 
1335
-
1336
- <h5>Throws:</h5>
1337
-
1338
-
1458
+
1459
+
1460
+
1461
+
1462
+
1463
+ <h5>Throws:</h5>
1464
+
1465
+
1339
1466
 
1340
1467
  <dl>
1341
1468
  <dt>
1342
1469
  <div class="param-desc">
1343
- If the message cannot be built
1470
+ <p>If the message cannot be built</p>
1344
1471
  </div>
1345
1472
  </dt>
1473
+ <dd></dd>
1346
1474
  <dt>
1347
1475
  <dl>
1348
1476
  <dt>
@@ -1356,15 +1484,16 @@
1356
1484
  </dd>
1357
1485
  </dl>
1358
1486
  </dt>
1487
+ <dd></dd>
1359
1488
  </dl>
1360
1489
 
1361
1490
 
1362
-
1363
-
1364
-
1365
- <h5>Returns:</h5>
1366
1491
 
1367
-
1492
+
1493
+
1494
+ <h5>Returns:</h5>
1495
+
1496
+
1368
1497
  <div class="param-desc">
1369
1498
  <p>Message class</p>
1370
1499
  </div>
@@ -1383,35 +1512,38 @@
1383
1512
  </dd>
1384
1513
  </dl>
1385
1514
 
1386
-
1387
-
1388
1515
 
1389
- </dd>
1516
+
1517
+
1390
1518
 
1391
1519
 
1392
1520
 
1393
- <dt>
1394
- <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>
1395
1521
 
1396
1522
 
1397
- </dt>
1398
- <dd>
1399
1523
 
1400
-
1401
- <div class="description">
1402
- <p>Builds the namespace's '$options' property.</p>
1403
- </div>
1404
-
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>
1405
1525
 
1406
1526
 
1407
1527
 
1408
-
1409
1528
 
1410
-
1411
1529
 
1412
-
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
+
1413
1546
  <dl class="details">
1414
-
1415
1547
 
1416
1548
 
1417
1549
 
@@ -1421,7 +1553,15 @@
1421
1553
  <dt class="inherited-from">Inherited From:</dt>
1422
1554
  <dd class="inherited-from"><ul class="dummy"><li>
1423
1555
  <a href="ProtoBuf.Reflect.Namespace.html#buildOpt">ProtoBuf.Reflect.Namespace#buildOpt</a>
1424
- </li></dd>
1556
+ </li></ul></dd>
1557
+
1558
+
1559
+
1560
+
1561
+
1562
+
1563
+
1564
+
1425
1565
 
1426
1566
 
1427
1567
 
@@ -1437,7 +1577,7 @@
1437
1577
 
1438
1578
  <dt class="tag-source">Source:</dt>
1439
1579
  <dd class="tag-source"><ul class="dummy"><li>
1440
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1662">line 1662</a>
1580
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1666">line 1666</a>
1441
1581
  </li></ul></dd>
1442
1582
 
1443
1583
 
@@ -1449,20 +1589,20 @@
1449
1589
  </dl>
1450
1590
 
1451
1591
 
1452
-
1453
1592
 
1454
-
1455
1593
 
1456
-
1457
1594
 
1458
-
1459
1595
 
1460
-
1461
1596
 
1462
-
1463
- <h5>Returns:</h5>
1464
-
1465
-
1597
+
1598
+
1599
+
1600
+
1601
+
1602
+
1603
+ <h5>Returns:</h5>
1604
+
1605
+
1466
1606
 
1467
1607
 
1468
1608
  <dl>
@@ -1477,33 +1617,35 @@
1477
1617
  </dd>
1478
1618
  </dl>
1479
1619
 
1480
-
1481
-
1482
1620
 
1483
- </dd>
1621
+
1622
+
1484
1623
 
1485
1624
 
1486
1625
 
1487
- <dt>
1488
- <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>
1489
1626
 
1490
1627
 
1491
- </dt>
1492
- <dd>
1493
1628
 
1494
-
1495
- <div class="description">
1496
- <p>Calculates a runtime message's byte length.</p>
1497
- </div>
1498
-
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>
1499
1630
 
1500
1631
 
1501
1632
 
1502
-
1503
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>
1504
1648
 
1505
- <h5>Parameters:</h5>
1506
-
1507
1649
 
1508
1650
  <table class="params">
1509
1651
  <thead>
@@ -1549,10 +1691,20 @@
1549
1691
 
1550
1692
  </tbody>
1551
1693
  </table>
1694
+
1695
+
1696
+
1697
+
1698
+
1699
+
1700
+ <dl class="details">
1701
+
1552
1702
 
1553
1703
 
1554
1704
 
1555
- <dl class="details">
1705
+
1706
+
1707
+
1556
1708
 
1557
1709
 
1558
1710
 
@@ -1574,7 +1726,7 @@
1574
1726
 
1575
1727
  <dt class="tag-source">Source:</dt>
1576
1728
  <dd class="tag-source"><ul class="dummy"><li>
1577
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3132">line 3132</a>
1729
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3156">line 3156</a>
1578
1730
  </li></ul></dd>
1579
1731
 
1580
1732
 
@@ -1586,25 +1738,26 @@
1586
1738
  </dl>
1587
1739
 
1588
1740
 
1589
-
1590
1741
 
1591
-
1592
1742
 
1593
-
1594
1743
 
1595
-
1596
1744
 
1597
-
1598
- <h5>Throws:</h5>
1599
-
1600
-
1745
+
1746
+
1747
+
1748
+
1749
+
1750
+ <h5>Throws:</h5>
1751
+
1752
+
1601
1753
 
1602
1754
  <dl>
1603
1755
  <dt>
1604
1756
  <div class="param-desc">
1605
- 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>
1606
1758
  </div>
1607
1759
  </dt>
1760
+ <dd></dd>
1608
1761
  <dt>
1609
1762
  <dl>
1610
1763
  <dt>
@@ -1618,15 +1771,16 @@
1618
1771
  </dd>
1619
1772
  </dl>
1620
1773
  </dt>
1774
+ <dd></dd>
1621
1775
  </dl>
1622
1776
 
1623
1777
 
1624
-
1778
+
1779
+
1780
+
1781
+ <h5>Returns:</h5>
1625
1782
 
1626
-
1627
- <h5>Returns:</h5>
1628
-
1629
-
1783
+
1630
1784
  <div class="param-desc">
1631
1785
  <p>Byte length</p>
1632
1786
  </div>
@@ -1645,33 +1799,35 @@
1645
1799
  </dd>
1646
1800
  </dl>
1647
1801
 
1648
-
1649
-
1650
1802
 
1651
- </dd>
1803
+
1804
+
1652
1805
 
1653
1806
 
1654
1807
 
1655
- <dt>
1656
- <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>
1657
1808
 
1658
1809
 
1659
- </dt>
1660
- <dd>
1661
1810
 
1662
-
1663
- <div class="description">
1664
- <p>Decodes an encoded message and returns the decoded message.</p>
1665
- </div>
1666
-
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>
1667
1812
 
1668
1813
 
1669
1814
 
1670
-
1671
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>
1672
1830
 
1673
- <h5>Parameters:</h5>
1674
-
1675
1831
 
1676
1832
  <table class="params">
1677
1833
  <thead>
@@ -1793,10 +1949,20 @@
1793
1949
 
1794
1950
  </tbody>
1795
1951
  </table>
1952
+
1953
+
1954
+
1955
+
1956
+
1957
+
1958
+ <dl class="details">
1959
+
1796
1960
 
1797
1961
 
1798
1962
 
1799
- <dl class="details">
1963
+
1964
+
1965
+
1800
1966
 
1801
1967
 
1802
1968
 
@@ -1818,7 +1984,7 @@
1818
1984
 
1819
1985
  <dt class="tag-source">Source:</dt>
1820
1986
  <dd class="tag-source"><ul class="dummy"><li>
1821
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3194">line 3194</a>
1987
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3218">line 3218</a>
1822
1988
  </li></ul></dd>
1823
1989
 
1824
1990
 
@@ -1830,25 +1996,26 @@
1830
1996
  </dl>
1831
1997
 
1832
1998
 
1833
-
1834
1999
 
1835
-
1836
2000
 
1837
-
1838
2001
 
1839
-
1840
2002
 
1841
-
1842
- <h5>Throws:</h5>
1843
-
1844
-
2003
+
2004
+
2005
+
2006
+
2007
+
2008
+ <h5>Throws:</h5>
2009
+
2010
+
1845
2011
 
1846
2012
  <dl>
1847
2013
  <dt>
1848
2014
  <div class="param-desc">
1849
- If the message cannot be decoded
2015
+ <p>If the message cannot be decoded</p>
1850
2016
  </div>
1851
2017
  </dt>
2018
+ <dd></dd>
1852
2019
  <dt>
1853
2020
  <dl>
1854
2021
  <dt>
@@ -1862,15 +2029,16 @@
1862
2029
  </dd>
1863
2030
  </dl>
1864
2031
  </dt>
2032
+ <dd></dd>
1865
2033
  </dl>
1866
2034
 
1867
2035
 
1868
-
1869
-
1870
2036
 
1871
- <h5>Returns:</h5>
1872
-
1873
-
2037
+
2038
+
2039
+ <h5>Returns:</h5>
2040
+
2041
+
1874
2042
  <div class="param-desc">
1875
2043
  <p>Decoded message</p>
1876
2044
  </div>
@@ -1889,33 +2057,35 @@
1889
2057
  </dd>
1890
2058
  </dl>
1891
2059
 
1892
-
1893
-
1894
2060
 
1895
- </dd>
2061
+
2062
+
1896
2063
 
1897
2064
 
1898
2065
 
1899
- <dt>
1900
- <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>
1901
2066
 
1902
2067
 
1903
- </dt>
1904
- <dd>
1905
2068
 
1906
-
1907
- <div class="description">
1908
- <p>Encodes a runtime message's contents to the specified buffer.</p>
1909
- </div>
1910
-
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>
1911
2070
 
1912
2071
 
1913
2072
 
1914
-
1915
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>
1916
2088
 
1917
- <h5>Parameters:</h5>
1918
-
1919
2089
 
1920
2090
  <table class="params">
1921
2091
  <thead>
@@ -2035,10 +2205,20 @@
2035
2205
 
2036
2206
  </tbody>
2037
2207
  </table>
2208
+
2209
+
2210
+
2211
+
2212
+
2213
+
2214
+ <dl class="details">
2215
+
2038
2216
 
2039
2217
 
2040
2218
 
2041
- <dl class="details">
2219
+
2220
+
2221
+
2042
2222
 
2043
2223
 
2044
2224
 
@@ -2060,7 +2240,7 @@
2060
2240
 
2061
2241
  <dt class="tag-source">Source:</dt>
2062
2242
  <dd class="tag-source"><ul class="dummy"><li>
2063
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3105">line 3105</a>
2243
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3129">line 3129</a>
2064
2244
  </li></ul></dd>
2065
2245
 
2066
2246
 
@@ -2072,25 +2252,26 @@
2072
2252
  </dl>
2073
2253
 
2074
2254
 
2075
-
2076
2255
 
2077
-
2078
2256
 
2079
-
2080
2257
 
2081
-
2082
2258
 
2083
-
2084
- <h5>Throws:</h5>
2085
-
2086
-
2259
+
2260
+
2261
+
2262
+
2263
+
2264
+ <h5>Throws:</h5>
2265
+
2266
+
2087
2267
 
2088
2268
  <dl>
2089
2269
  <dt>
2090
2270
  <div class="param-desc">
2091
- 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>
2092
2272
  </div>
2093
2273
  </dt>
2274
+ <dd></dd>
2094
2275
  <dt>
2095
2276
  <dl>
2096
2277
  <dt>
@@ -2104,15 +2285,16 @@
2104
2285
  </dd>
2105
2286
  </dl>
2106
2287
  </dt>
2288
+ <dd></dd>
2107
2289
  </dl>
2108
2290
 
2109
2291
 
2110
-
2111
-
2112
2292
 
2113
- <h5>Returns:</h5>
2114
-
2115
-
2293
+
2294
+
2295
+ <h5>Returns:</h5>
2296
+
2297
+
2116
2298
  <div class="param-desc">
2117
2299
  <p>The ByteBuffer for chaining</p>
2118
2300
  </div>
@@ -2131,35 +2313,38 @@
2131
2313
  </dd>
2132
2314
  </dl>
2133
2315
 
2134
-
2135
-
2136
2316
 
2137
- </dd>
2317
+
2318
+
2138
2319
 
2139
2320
 
2140
2321
 
2141
- <dt>
2142
- <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
2143
2322
 
2144
2323
 
2145
- </dt>
2146
- <dd>
2147
2324
 
2148
-
2149
- <div class="description">
2150
- <p>Returns the fully qualified name of this object.</p>
2151
- </div>
2152
-
2325
+ <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
2153
2326
 
2154
2327
 
2155
2328
 
2156
-
2157
2329
 
2158
-
2159
2330
 
2160
-
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
+
2161
2347
  <dl class="details">
2162
-
2163
2348
 
2164
2349
 
2165
2350
 
@@ -2169,7 +2354,15 @@
2169
2354
  <dt class="inherited-from">Inherited From:</dt>
2170
2355
  <dd class="inherited-from"><ul class="dummy"><li>
2171
2356
  <a href="ProtoBuf.Reflect.T.html#fqn">ProtoBuf.Reflect.T#fqn</a>
2172
- </li></dd>
2357
+ </li></ul></dd>
2358
+
2359
+
2360
+
2361
+
2362
+
2363
+
2364
+
2365
+
2173
2366
 
2174
2367
 
2175
2368
 
@@ -2185,7 +2378,7 @@
2185
2378
 
2186
2379
  <dt class="tag-source">Source:</dt>
2187
2380
  <dd class="tag-source"><ul class="dummy"><li>
2188
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1448">line 1448</a>
2381
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1452">line 1452</a>
2189
2382
  </li></ul></dd>
2190
2383
 
2191
2384
 
@@ -2197,20 +2390,20 @@
2197
2390
  </dl>
2198
2391
 
2199
2392
 
2200
-
2201
2393
 
2202
-
2203
2394
 
2204
-
2205
2395
 
2206
-
2207
2396
 
2208
-
2209
2397
 
2210
-
2211
- <h5>Returns:</h5>
2212
-
2213
-
2398
+
2399
+
2400
+
2401
+
2402
+
2403
+
2404
+ <h5>Returns:</h5>
2405
+
2406
+
2214
2407
  <div class="param-desc">
2215
2408
  <p>Fully qualified name as of &quot;.PATH.TO.THIS&quot;</p>
2216
2409
  </div>
@@ -2229,33 +2422,35 @@
2229
2422
  </dd>
2230
2423
  </dl>
2231
2424
 
2232
-
2233
-
2234
2425
 
2235
- </dd>
2426
+
2427
+
2236
2428
 
2237
2429
 
2238
2430
 
2239
- <dt>
2240
- <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>
2241
2431
 
2242
2432
 
2243
- </dt>
2244
- <dd>
2245
2433
 
2246
-
2247
- <div class="description">
2248
- <p>Gets a child by its name or id.</p>
2249
- </div>
2250
-
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>
2251
2435
 
2252
2436
 
2253
2437
 
2254
-
2255
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>
2256
2453
 
2257
- <h5>Parameters:</h5>
2258
-
2259
2454
 
2260
2455
  <table class="params">
2261
2456
  <thead>
@@ -2304,11 +2499,13 @@
2304
2499
 
2305
2500
  </tbody>
2306
2501
  </table>
2307
-
2308
2502
 
2309
-
2503
+
2504
+
2505
+
2506
+
2507
+
2310
2508
  <dl class="details">
2311
-
2312
2509
 
2313
2510
 
2314
2511
 
@@ -2318,7 +2515,15 @@
2318
2515
  <dt class="inherited-from">Inherited From:</dt>
2319
2516
  <dd class="inherited-from"><ul class="dummy"><li>
2320
2517
  <a href="ProtoBuf.Reflect.Namespace.html#getChild">ProtoBuf.Reflect.Namespace#getChild</a>
2321
- </li></dd>
2518
+ </li></ul></dd>
2519
+
2520
+
2521
+
2522
+
2523
+
2524
+
2525
+
2526
+
2322
2527
 
2323
2528
 
2324
2529
 
@@ -2334,7 +2539,7 @@
2334
2539
 
2335
2540
  <dt class="tag-source">Source:</dt>
2336
2541
  <dd class="tag-source"><ul class="dummy"><li>
2337
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1572">line 1572</a>
2542
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1576">line 1576</a>
2338
2543
  </li></ul></dd>
2339
2544
 
2340
2545
 
@@ -2346,20 +2551,20 @@
2346
2551
  </dl>
2347
2552
 
2348
2553
 
2349
-
2350
2554
 
2351
-
2352
2555
 
2353
-
2354
2556
 
2355
-
2356
2557
 
2357
-
2358
2558
 
2359
-
2360
- <h5>Returns:</h5>
2361
-
2362
-
2559
+
2560
+
2561
+
2562
+
2563
+
2564
+
2565
+ <h5>Returns:</h5>
2566
+
2567
+
2363
2568
  <div class="param-desc">
2364
2569
  <p>The child or null if not found</p>
2365
2570
  </div>
@@ -2378,33 +2583,35 @@
2378
2583
  </dd>
2379
2584
  </dl>
2380
2585
 
2381
-
2382
-
2383
2586
 
2384
- </dd>
2587
+
2588
+
2385
2589
 
2386
2590
 
2387
2591
 
2388
- <dt>
2389
- <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>
2390
2592
 
2391
2593
 
2392
- </dt>
2393
- <dd>
2394
2594
 
2395
-
2396
- <div class="description">
2397
- <p>Returns an array of the namespace's children.</p>
2398
- </div>
2399
-
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>
2400
2596
 
2401
2597
 
2402
2598
 
2403
-
2404
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>
2405
2614
 
2406
- <h5>Parameters:</h5>
2407
-
2408
2615
 
2409
2616
  <table class="params">
2410
2617
  <thead>
@@ -2460,12 +2667,25 @@
2460
2667
  </tr>
2461
2668
 
2462
2669
 
2463
- </tbody>
2464
- </table>
2670
+ </tbody>
2671
+ </table>
2672
+
2673
+
2674
+
2675
+
2676
+
2677
+
2678
+ <dl class="details">
2679
+
2680
+
2681
+
2465
2682
 
2466
2683
 
2467
2684
 
2468
- <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>
2469
2689
 
2470
2690
 
2471
2691
 
@@ -2473,10 +2693,7 @@
2473
2693
 
2474
2694
 
2475
2695
 
2476
- <dt class="inherited-from">Inherited From:</dt>
2477
- <dd class="inherited-from"><ul class="dummy"><li>
2478
- <a href="ProtoBuf.Reflect.Namespace.html#getChildren">ProtoBuf.Reflect.Namespace#getChildren</a>
2479
- </li></dd>
2696
+
2480
2697
 
2481
2698
 
2482
2699
 
@@ -2492,7 +2709,7 @@
2492
2709
 
2493
2710
  <dt class="tag-source">Source:</dt>
2494
2711
  <dd class="tag-source"><ul class="dummy"><li>
2495
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1535">line 1535</a>
2712
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1539">line 1539</a>
2496
2713
  </li></ul></dd>
2497
2714
 
2498
2715
 
@@ -2504,20 +2721,20 @@
2504
2721
  </dl>
2505
2722
 
2506
2723
 
2507
-
2508
2724
 
2509
-
2510
2725
 
2511
-
2512
2726
 
2513
-
2514
2727
 
2515
-
2516
2728
 
2517
-
2518
- <h5>Returns:</h5>
2519
-
2520
-
2729
+
2730
+
2731
+
2732
+
2733
+
2734
+
2735
+ <h5>Returns:</h5>
2736
+
2737
+
2521
2738
 
2522
2739
 
2523
2740
  <dl>
@@ -2532,33 +2749,35 @@
2532
2749
  </dd>
2533
2750
  </dl>
2534
2751
 
2535
-
2536
-
2537
2752
 
2538
- </dd>
2753
+
2754
+
2539
2755
 
2540
2756
 
2541
2757
 
2542
- <dt>
2543
- <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>
2544
2758
 
2545
2759
 
2546
- </dt>
2547
- <dd>
2548
2760
 
2549
-
2550
- <div class="description">
2551
- <p>Gets the value assigned to the option with the specified name.</p>
2552
- </div>
2553
-
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>
2554
2762
 
2555
2763
 
2556
2764
 
2557
-
2558
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>
2559
2780
 
2560
- <h5>Parameters:</h5>
2561
-
2562
2781
 
2563
2782
  <table class="params">
2564
2783
  <thead>
@@ -2616,11 +2835,13 @@
2616
2835
 
2617
2836
  </tbody>
2618
2837
  </table>
2619
-
2620
2838
 
2621
-
2839
+
2840
+
2841
+
2842
+
2843
+
2622
2844
  <dl class="details">
2623
-
2624
2845
 
2625
2846
 
2626
2847
 
@@ -2630,7 +2851,15 @@
2630
2851
  <dt class="inherited-from">Inherited From:</dt>
2631
2852
  <dd class="inherited-from"><ul class="dummy"><li>
2632
2853
  <a href="ProtoBuf.Reflect.Namespace.html#getOption">ProtoBuf.Reflect.Namespace#getOption</a>
2633
- </li></dd>
2854
+ </li></ul></dd>
2855
+
2856
+
2857
+
2858
+
2859
+
2860
+
2861
+
2862
+
2634
2863
 
2635
2864
 
2636
2865
 
@@ -2646,7 +2875,7 @@
2646
2875
 
2647
2876
  <dt class="tag-source">Source:</dt>
2648
2877
  <dd class="tag-source"><ul class="dummy"><li>
2649
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1683">line 1683</a>
2878
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1687">line 1687</a>
2650
2879
  </li></ul></dd>
2651
2880
 
2652
2881
 
@@ -2658,20 +2887,20 @@
2658
2887
  </dl>
2659
2888
 
2660
2889
 
2661
-
2662
2890
 
2663
-
2664
2891
 
2665
-
2666
2892
 
2667
-
2668
2893
 
2669
-
2670
2894
 
2671
-
2672
- <h5>Returns:</h5>
2673
-
2674
-
2895
+
2896
+
2897
+
2898
+
2899
+
2900
+
2901
+ <h5>Returns:</h5>
2902
+
2903
+
2675
2904
  <div class="param-desc">
2676
2905
  <p>null} Option value or NULL if there is no such option</p>
2677
2906
  </div>
@@ -2693,33 +2922,35 @@
2693
2922
  </dd>
2694
2923
  </dl>
2695
2924
 
2696
-
2697
-
2698
2925
 
2699
- </dd>
2926
+
2927
+
2700
2928
 
2701
2929
 
2702
2930
 
2703
- <dt>
2704
- <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>
2705
2931
 
2706
2932
 
2707
- </dt>
2708
- <dd>
2709
2933
 
2710
-
2711
- <div class="description">
2712
- <p>Determines the shortest qualified name of the specified type, if any, relative to this namespace.</p>
2713
- </div>
2714
-
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>
2715
2935
 
2716
2936
 
2717
2937
 
2718
-
2719
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>
2720
2953
 
2721
- <h5>Parameters:</h5>
2722
-
2723
2954
 
2724
2955
  <table class="params">
2725
2956
  <thead>
@@ -2765,11 +2996,13 @@
2765
2996
 
2766
2997
  </tbody>
2767
2998
  </table>
2768
-
2769
2999
 
2770
-
3000
+
3001
+
3002
+
3003
+
3004
+
2771
3005
  <dl class="details">
2772
-
2773
3006
 
2774
3007
 
2775
3008
 
@@ -2779,7 +3012,15 @@
2779
3012
  <dt class="inherited-from">Inherited From:</dt>
2780
3013
  <dd class="inherited-from"><ul class="dummy"><li>
2781
3014
  <a href="ProtoBuf.Reflect.Namespace.html#qn">ProtoBuf.Reflect.Namespace#qn</a>
2782
- </li></dd>
3015
+ </li></ul></dd>
3016
+
3017
+
3018
+
3019
+
3020
+
3021
+
3022
+
3023
+
2783
3024
 
2784
3025
 
2785
3026
 
@@ -2795,7 +3036,7 @@
2795
3036
 
2796
3037
  <dt class="tag-source">Source:</dt>
2797
3038
  <dd class="tag-source"><ul class="dummy"><li>
2798
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1625">line 1625</a>
3039
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1629">line 1629</a>
2799
3040
  </li></ul></dd>
2800
3041
 
2801
3042
 
@@ -2807,20 +3048,20 @@
2807
3048
  </dl>
2808
3049
 
2809
3050
 
2810
-
2811
3051
 
2812
-
2813
3052
 
2814
-
2815
3053
 
2816
-
2817
3054
 
2818
-
2819
3055
 
2820
-
2821
- <h5>Returns:</h5>
2822
-
2823
-
3056
+
3057
+
3058
+
3059
+
3060
+
3061
+
3062
+ <h5>Returns:</h5>
3063
+
3064
+
2824
3065
  <div class="param-desc">
2825
3066
  <p>The shortest qualified name or, if there is none, the fqn</p>
2826
3067
  </div>
@@ -2839,33 +3080,35 @@
2839
3080
  </dd>
2840
3081
  </dl>
2841
3082
 
2842
-
2843
-
2844
3083
 
2845
- </dd>
3084
+
3085
+
2846
3086
 
2847
3087
 
2848
3088
 
2849
- <dt>
2850
- <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>
2851
3089
 
2852
3090
 
2853
- </dt>
2854
- <dd>
2855
3091
 
2856
-
2857
- <div class="description">
2858
- <p>Resolves a reflect object inside of this namespace.</p>
2859
- </div>
2860
-
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>
2861
3093
 
2862
3094
 
2863
3095
 
2864
-
2865
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>
2866
3111
 
2867
- <h5>Parameters:</h5>
2868
-
2869
3112
 
2870
3113
  <table class="params">
2871
3114
  <thead>
@@ -2957,11 +3200,13 @@
2957
3200
 
2958
3201
  </tbody>
2959
3202
  </table>
2960
-
2961
3203
 
2962
-
3204
+
3205
+
3206
+
3207
+
3208
+
2963
3209
  <dl class="details">
2964
-
2965
3210
 
2966
3211
 
2967
3212
 
@@ -2971,7 +3216,15 @@
2971
3216
  <dt class="inherited-from">Inherited From:</dt>
2972
3217
  <dd class="inherited-from"><ul class="dummy"><li>
2973
3218
  <a href="ProtoBuf.Reflect.Namespace.html#resolve">ProtoBuf.Reflect.Namespace#resolve</a>
2974
- </li></dd>
3219
+ </li></ul></dd>
3220
+
3221
+
3222
+
3223
+
3224
+
3225
+
3226
+
3227
+
2975
3228
 
2976
3229
 
2977
3230
 
@@ -2987,7 +3240,7 @@
2987
3240
 
2988
3241
  <dt class="tag-source">Source:</dt>
2989
3242
  <dd class="tag-source"><ul class="dummy"><li>
2990
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1587">line 1587</a>
3243
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1591">line 1591</a>
2991
3244
  </li></ul></dd>
2992
3245
 
2993
3246
 
@@ -2999,20 +3252,20 @@
2999
3252
  </dl>
3000
3253
 
3001
3254
 
3002
-
3003
3255
 
3004
-
3005
3256
 
3006
-
3007
3257
 
3008
-
3009
3258
 
3010
-
3011
3259
 
3012
-
3013
- <h5>Returns:</h5>
3014
-
3015
-
3260
+
3261
+
3262
+
3263
+
3264
+
3265
+
3266
+ <h5>Returns:</h5>
3267
+
3268
+
3016
3269
  <div class="param-desc">
3017
3270
  <p>The resolved type or null if not found</p>
3018
3271
  </div>
@@ -3031,33 +3284,35 @@
3031
3284
  </dd>
3032
3285
  </dl>
3033
3286
 
3034
-
3035
-
3036
3287
 
3037
- </dd>
3288
+
3289
+
3038
3290
 
3039
3291
 
3040
3292
 
3041
- <dt>
3042
- <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>
3043
3293
 
3044
3294
 
3045
- </dt>
3046
- <dd>
3047
3295
 
3048
-
3049
- <div class="description">
3050
- <p>Returns a string representation of this Reflect object (its fully qualified name).</p>
3051
- </div>
3052
-
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>
3053
3297
 
3054
3298
 
3055
3299
 
3056
-
3057
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>
3058
3315
 
3059
- <h5>Parameters:</h5>
3060
-
3061
3316
 
3062
3317
  <table class="params">
3063
3318
  <thead>
@@ -3115,11 +3370,13 @@
3115
3370
 
3116
3371
  </tbody>
3117
3372
  </table>
3118
-
3119
3373
 
3120
-
3374
+
3375
+
3376
+
3377
+
3378
+
3121
3379
  <dl class="details">
3122
-
3123
3380
 
3124
3381
 
3125
3382
 
@@ -3129,7 +3386,15 @@
3129
3386
  <dt class="inherited-from">Inherited From:</dt>
3130
3387
  <dd class="inherited-from"><ul class="dummy"><li>
3131
3388
  <a href="ProtoBuf.Reflect.T.html#toString">ProtoBuf.Reflect.T#toString</a>
3132
- </li></dd>
3389
+ </li></ul></dd>
3390
+
3391
+
3392
+
3393
+
3394
+
3395
+
3396
+
3397
+
3133
3398
 
3134
3399
 
3135
3400
 
@@ -3145,7 +3410,7 @@
3145
3410
 
3146
3411
  <dt class="tag-source">Source:</dt>
3147
3412
  <dd class="tag-source"><ul class="dummy"><li>
3148
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1466">line 1466</a>
3413
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1470">line 1470</a>
3149
3414
  </li></ul></dd>
3150
3415
 
3151
3416
 
@@ -3157,32 +3422,31 @@
3157
3422
  </dl>
3158
3423
 
3159
3424
 
3160
-
3161
3425
 
3162
-
3163
3426
 
3164
-
3165
3427
 
3166
-
3167
3428
 
3168
-
3169
3429
 
3170
-
3171
- <h5>Returns:</h5>
3172
-
3173
-
3430
+
3431
+
3432
+
3433
+
3434
+
3435
+
3436
+ <h5>Returns:</h5>
3437
+
3438
+
3174
3439
  <div class="param-desc">
3175
3440
  <p>String representation</p>
3176
3441
  </div>
3177
3442
 
3178
3443
 
3179
3444
 
3180
-
3181
-
3182
3445
 
3183
- </dd>
3184
3446
 
3185
- </dl>
3447
+
3448
+
3449
+
3186
3450
 
3187
3451
 
3188
3452
 
@@ -3198,13 +3462,13 @@
3198
3462
  </div>
3199
3463
 
3200
3464
  <nav>
3201
- <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>
3202
3466
  </nav>
3203
3467
 
3204
- <br clear="both">
3468
+ <br class="clear">
3205
3469
 
3206
3470
  <footer>
3207
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-alpha9</a> on Wed Jan 06 2016 01:34:59 GMT+0100 (Mitteleuropäische Zeit)
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)
3208
3472
  </footer>
3209
3473
 
3210
3474
  <script> prettyPrint(); </script>