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><a href="ProtoBuf.Reflect.Message.html">.Message</a>.</span>
31
30
 
32
- Field
33
- </h2>
31
+ <h2>
32
+ <span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.Reflect.html">.Reflect</a><a href="ProtoBuf.Reflect.Message.html">.Message</a>.</span>
33
+
34
+ Field
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="Field"><span class="type-signature"></span>new Field<span class="signature">(builder<span class="signature-attributes">non-null</span>, message<span class="signature-attributes">non-null</span>, rule, keytype<span class="signature-attributes">nullable</span>, type, name, id, options<span class="signature-attributes">opt</span>, oneof<span class="signature-attributes">opt, non-null</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 Field.</p>
53
- </div>
54
-
55
51
 
56
-
57
52
 
58
-
53
+ <div class="description">
54
+ <p>Constructs a new Message Field.</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>
@@ -402,10 +406,20 @@
402
406
 
403
407
  </tbody>
404
408
  </table>
409
+
410
+
411
+
412
+
413
+
414
+
415
+ <dl class="details">
416
+
405
417
 
406
418
 
407
419
 
408
- <dl class="details">
420
+
421
+
422
+
409
423
 
410
424
 
411
425
 
@@ -427,7 +441,7 @@
427
441
 
428
442
  <dt class="tag-source">Source:</dt>
429
443
  <dd class="tag-source"><ul class="dummy"><li>
430
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3250">line 3250</a>
444
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3312">line 3312</a>
431
445
  </li></ul></dd>
432
446
 
433
447
 
@@ -439,20 +453,19 @@
439
453
  </dl>
440
454
 
441
455
 
442
-
443
456
 
444
-
445
457
 
446
-
447
458
 
448
-
449
459
 
450
-
451
460
 
452
-
453
461
 
454
-
455
- </dd>
462
+
463
+
464
+
465
+
466
+
467
+
468
+
456
469
 
457
470
 
458
471
  </div>
@@ -460,10 +473,13 @@
460
473
 
461
474
  <h3 class="subsection-title">Extends</h3>
462
475
 
463
- <ul>
464
- <li><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></li>
465
- </ul>
466
-
476
+
477
+
478
+
479
+ <ul>
480
+ <li><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></li>
481
+ </ul>
482
+
467
483
 
468
484
 
469
485
 
@@ -478,35 +494,34 @@
478
494
 
479
495
  <h3 class="subsection-title">Members</h3>
480
496
 
481
- <dl>
497
+
482
498
 
483
- <dt>
484
- <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>
499
+ <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>
485
500
 
486
-
487
- </dt>
488
- <dd>
489
-
490
- <div class="description">
491
- <p>Builder reference.</p>
492
- </div>
493
-
494
501
 
495
-
496
- <h5>Type:</h5>
497
- <ul>
498
- <li>
499
-
502
+
503
+
504
+ <div class="description">
505
+ <p>Builder reference.</p>
506
+ </div>
507
+
508
+
509
+
510
+ <h5>Type:</h5>
511
+ <ul>
512
+ <li>
513
+
500
514
  <span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
501
515
 
502
516
 
503
- </li>
504
- </ul>
505
-
517
+ </li>
518
+ </ul>
519
+
520
+
521
+
522
+
506
523
 
507
-
508
524
  <dl class="details">
509
-
510
525
 
511
526
 
512
527
 
@@ -516,7 +531,15 @@
516
531
  <dt class="inherited-from">Inherited From:</dt>
517
532
  <dd class="inherited-from"><ul class="dummy"><li>
518
533
  <a href="ProtoBuf.Reflect.T.html#builder">ProtoBuf.Reflect.T#builder</a>
519
- </li></dd>
534
+ </li></ul></dd>
535
+
536
+
537
+
538
+
539
+
540
+
541
+
542
+
520
543
 
521
544
 
522
545
 
@@ -532,7 +555,7 @@
532
555
 
533
556
  <dt class="tag-source">Source:</dt>
534
557
  <dd class="tag-source"><ul class="dummy"><li>
535
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1382">line 1382</a>
558
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1417">line 1417</a>
536
559
  </li></ul></dd>
537
560
 
538
561
 
@@ -544,25 +567,50 @@
544
567
  </dl>
545
568
 
546
569
 
547
-
548
570
 
549
-
550
- </dd>
571
+
572
+
551
573
 
552
574
 
553
575
 
554
- <dt>
555
- <h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"></span></h4>
576
+ <h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"> :string</span></h4>
577
+
578
+
579
+
580
+
581
+ <div class="description">
582
+ <p>Fully qualified class name</p>
583
+ </div>
584
+
585
+
586
+
587
+ <h5>Type:</h5>
588
+ <ul>
589
+ <li>
590
+
591
+ <span class="param-type">string</span>
592
+
593
+
594
+ </li>
595
+ </ul>
596
+
597
+
598
+
599
+
600
+
601
+ <dl class="details">
556
602
 
557
603
 
558
- </dt>
559
- <dd>
604
+
560
605
 
561
606
 
562
607
 
563
608
 
564
609
 
565
- <dl class="details">
610
+ <dt class="tag-overrides">Overrides:</dt>
611
+ <dd class="tag-overrides"><ul class="dummy"><li>
612
+ <a href="ProtoBuf.Reflect.T.html#className">ProtoBuf.Reflect.T#className</a>
613
+ </li></ul></dd>
566
614
 
567
615
 
568
616
 
@@ -584,7 +632,7 @@
584
632
 
585
633
  <dt class="tag-source">Source:</dt>
586
634
  <dd class="tag-source"><ul class="dummy"><li>
587
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3256">line 3256</a>
635
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1438">line 1438</a>
588
636
  </li></ul></dd>
589
637
 
590
638
 
@@ -596,39 +644,45 @@
596
644
  </dl>
597
645
 
598
646
 
599
-
600
647
 
601
-
602
- </dd>
648
+
649
+
603
650
 
604
651
 
605
652
 
606
- <dt>
607
- <h4 class="name" id="defaultValue"><span class="type-signature"></span>defaultValue<span class="type-signature"> :*</span></h4>
653
+ <h4 class="name" id="defaultValue"><span class="type-signature"></span>defaultValue<span class="type-signature"> :*</span></h4>
608
654
 
609
-
610
- </dt>
611
- <dd>
612
-
613
- <div class="description">
614
- <p>Default value.</p>
615
- </div>
616
-
617
655
 
618
-
619
- <h5>Type:</h5>
620
- <ul>
621
- <li>
622
-
656
+
657
+
658
+ <div class="description">
659
+ <p>Default value.</p>
660
+ </div>
661
+
662
+
663
+
664
+ <h5>Type:</h5>
665
+ <ul>
666
+ <li>
667
+
623
668
  <span class="param-type">*</span>
624
669
 
625
670
 
626
- </li>
627
- </ul>
671
+ </li>
672
+ </ul>
673
+
674
+
675
+
676
+
677
+
678
+ <dl class="details">
679
+
628
680
 
629
681
 
630
682
 
631
- <dl class="details">
683
+
684
+
685
+
632
686
 
633
687
 
634
688
 
@@ -650,7 +704,7 @@
650
704
 
651
705
  <dt class="tag-source">Source:</dt>
652
706
  <dd class="tag-source"><ul class="dummy"><li>
653
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3322">line 3322</a>
707
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3384">line 3384</a>
654
708
  </li></ul></dd>
655
709
 
656
710
 
@@ -662,39 +716,45 @@
662
716
  </dl>
663
717
 
664
718
 
665
-
666
719
 
667
-
668
- </dd>
720
+
721
+
669
722
 
670
723
 
671
724
 
672
- <dt>
673
- <h4 class="name" id="element"><span class="type-signature"></span>element<span class="type-signature"> :ProtoBuf.Element</span></h4>
725
+ <h4 class="name" id="element"><span class="type-signature"></span>element<span class="type-signature"> :ProtoBuf.Element</span></h4>
674
726
 
675
-
676
- </dt>
677
- <dd>
678
-
679
- <div class="description">
680
- <p>Element implementation. Created in build() after types are resolved.</p>
681
- </div>
682
-
683
727
 
684
-
685
- <h5>Type:</h5>
686
- <ul>
687
- <li>
688
-
728
+
729
+
730
+ <div class="description">
731
+ <p>Element implementation. Created in build() after types are resolved.</p>
732
+ </div>
733
+
734
+
735
+
736
+ <h5>Type:</h5>
737
+ <ul>
738
+ <li>
739
+
689
740
  <span class="param-type">ProtoBuf.Element</span>
690
741
 
691
742
 
692
- </li>
693
- </ul>
743
+ </li>
744
+ </ul>
745
+
746
+
747
+
748
+
749
+
750
+ <dl class="details">
751
+
752
+
753
+
694
754
 
695
755
 
696
756
 
697
- <dl class="details">
757
+
698
758
 
699
759
 
700
760
 
@@ -716,7 +776,7 @@
716
776
 
717
777
  <dt class="tag-source">Source:</dt>
718
778
  <dd class="tag-source"><ul class="dummy"><li>
719
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3350">line 3350</a>
779
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3412">line 3412</a>
720
780
  </li></ul></dd>
721
781
 
722
782
 
@@ -728,39 +788,45 @@
728
788
  </dl>
729
789
 
730
790
 
731
-
732
791
 
733
-
734
- </dd>
792
+
793
+
735
794
 
736
795
 
737
796
 
738
- <dt>
739
- <h4 class="name" id="id"><span class="type-signature"></span>id<span class="type-signature"> :number</span></h4>
797
+ <h4 class="name" id="id"><span class="type-signature"></span>id<span class="type-signature"> :number</span></h4>
740
798
 
741
-
742
- </dt>
743
- <dd>
744
-
745
- <div class="description">
746
- <p>Unique message field id.</p>
747
- </div>
748
-
749
799
 
750
-
751
- <h5>Type:</h5>
752
- <ul>
753
- <li>
754
-
800
+
801
+
802
+ <div class="description">
803
+ <p>Unique message field id.</p>
804
+ </div>
805
+
806
+
807
+
808
+ <h5>Type:</h5>
809
+ <ul>
810
+ <li>
811
+
755
812
  <span class="param-type">number</span>
756
813
 
757
814
 
758
- </li>
759
- </ul>
815
+ </li>
816
+ </ul>
817
+
818
+
819
+
820
+
821
+
822
+ <dl class="details">
823
+
760
824
 
761
825
 
762
826
 
763
- <dl class="details">
827
+
828
+
829
+
764
830
 
765
831
 
766
832
 
@@ -782,7 +848,7 @@
782
848
 
783
849
  <dt class="tag-source">Source:</dt>
784
850
  <dd class="tag-source"><ul class="dummy"><li>
785
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3307">line 3307</a>
851
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3369">line 3369</a>
786
852
  </li></ul></dd>
787
853
 
788
854
 
@@ -794,40 +860,46 @@
794
860
  </dl>
795
861
 
796
862
 
797
-
798
863
 
799
-
800
- </dd>
864
+
865
+
801
866
 
802
867
 
803
868
 
804
- <dt>
805
- <h4 class="name" id="keyElement"><span class="type-signature"></span>keyElement<span class="type-signature"> :ProtoBuf.Element</span></h4>
869
+ <h4 class="name" id="keyElement"><span class="type-signature"></span>keyElement<span class="type-signature"> :ProtoBuf.Element</span></h4>
806
870
 
807
-
808
- </dt>
809
- <dd>
810
-
811
- <div class="description">
812
- <p>Key element implementation, for map fields. Created in build() after
871
+
872
+
873
+
874
+ <div class="description">
875
+ <p>Key element implementation, for map fields. Created in build() after
813
876
  types are resolved.</p>
814
- </div>
815
-
877
+ </div>
816
878
 
817
-
818
- <h5>Type:</h5>
819
- <ul>
820
- <li>
821
-
879
+
880
+
881
+ <h5>Type:</h5>
882
+ <ul>
883
+ <li>
884
+
822
885
  <span class="param-type">ProtoBuf.Element</span>
823
886
 
824
887
 
825
- </li>
826
- </ul>
888
+ </li>
889
+ </ul>
890
+
891
+
892
+
893
+
894
+
895
+ <dl class="details">
896
+
897
+
898
+
827
899
 
828
900
 
829
901
 
830
- <dl class="details">
902
+
831
903
 
832
904
 
833
905
 
@@ -849,7 +921,7 @@ types are resolved.</p>
849
921
 
850
922
  <dt class="tag-source">Source:</dt>
851
923
  <dd class="tag-source"><ul class="dummy"><li>
852
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3358">line 3358</a>
924
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3420">line 3420</a>
853
925
  </li></ul></dd>
854
926
 
855
927
 
@@ -861,31 +933,28 @@ types are resolved.</p>
861
933
  </dl>
862
934
 
863
935
 
864
-
865
936
 
866
-
867
- </dd>
937
+
938
+
868
939
 
869
940
 
870
941
 
871
- <dt>
872
- <h4 class="name" id="keyType"><span class="type-signature"></span>keyType<span class="type-signature"> :string|Object|null</span></h4>
942
+ <h4 class="name" id="keyType"><span class="type-signature"></span>keyType<span class="type-signature"> :string|Object|null</span></h4>
873
943
 
874
-
875
- </dt>
876
- <dd>
877
-
878
- <div class="description">
879
- <p>Message field key type. Type reference string if unresolved, protobuf
944
+
945
+
946
+
947
+ <div class="description">
948
+ <p>Message field key type. Type reference string if unresolved, protobuf
880
949
  type if resolved. Valid only if this.map === true, null otherwise.</p>
881
- </div>
882
-
950
+ </div>
883
951
 
884
-
885
- <h5>Type:</h5>
886
- <ul>
887
- <li>
888
-
952
+
953
+
954
+ <h5>Type:</h5>
955
+ <ul>
956
+ <li>
957
+
889
958
  <span class="param-type">string</span>
890
959
  |
891
960
 
@@ -895,12 +964,21 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
895
964
  <span class="param-type">null</span>
896
965
 
897
966
 
898
- </li>
899
- </ul>
967
+ </li>
968
+ </ul>
969
+
970
+
971
+
972
+
973
+
974
+ <dl class="details">
975
+
900
976
 
901
977
 
902
978
 
903
- <dl class="details">
979
+
980
+
981
+
904
982
 
905
983
 
906
984
 
@@ -922,7 +1000,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
922
1000
 
923
1001
  <dt class="tag-source">Source:</dt>
924
1002
  <dd class="tag-source"><ul class="dummy"><li>
925
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3285">line 3285</a>
1003
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3347">line 3347</a>
926
1004
  </li></ul></dd>
927
1005
 
928
1006
 
@@ -934,39 +1012,45 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
934
1012
  </dl>
935
1013
 
936
1014
 
937
-
938
1015
 
939
-
940
- </dd>
1016
+
1017
+
941
1018
 
942
1019
 
943
1020
 
944
- <dt>
945
- <h4 class="name" id="map"><span class="type-signature"></span>map<span class="type-signature"> :boolean</span></h4>
1021
+ <h4 class="name" id="map"><span class="type-signature"></span>map<span class="type-signature"> :boolean</span></h4>
946
1022
 
947
-
948
- </dt>
949
- <dd>
950
-
951
- <div class="description">
952
- <p>Message field map flag.</p>
953
- </div>
954
-
955
1023
 
956
-
957
- <h5>Type:</h5>
958
- <ul>
959
- <li>
960
-
1024
+
1025
+
1026
+ <div class="description">
1027
+ <p>Message field map flag.</p>
1028
+ </div>
1029
+
1030
+
1031
+
1032
+ <h5>Type:</h5>
1033
+ <ul>
1034
+ <li>
1035
+
961
1036
  <span class="param-type">boolean</span>
962
1037
 
963
1038
 
964
- </li>
965
- </ul>
1039
+ </li>
1040
+ </ul>
1041
+
1042
+
1043
+
1044
+
1045
+
1046
+ <dl class="details">
1047
+
1048
+
1049
+
966
1050
 
967
1051
 
968
1052
 
969
- <dl class="details">
1053
+
970
1054
 
971
1055
 
972
1056
 
@@ -988,7 +1072,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
988
1072
 
989
1073
  <dt class="tag-source">Source:</dt>
990
1074
  <dd class="tag-source"><ul class="dummy"><li>
991
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3277">line 3277</a>
1075
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3339">line 3339</a>
992
1076
  </li></ul></dd>
993
1077
 
994
1078
 
@@ -1000,39 +1084,39 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1000
1084
  </dl>
1001
1085
 
1002
1086
 
1003
-
1004
1087
 
1005
-
1006
- </dd>
1088
+
1089
+
1007
1090
 
1008
1091
 
1009
1092
 
1010
- <dt>
1011
- <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
1093
+ <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
1012
1094
 
1013
-
1014
- </dt>
1015
- <dd>
1016
-
1017
- <div class="description">
1018
- <p>Object name in namespace.</p>
1019
- </div>
1020
-
1021
1095
 
1022
-
1023
- <h5>Type:</h5>
1024
- <ul>
1025
- <li>
1026
-
1096
+
1097
+
1098
+ <div class="description">
1099
+ <p>Object name in namespace.</p>
1100
+ </div>
1101
+
1102
+
1103
+
1104
+ <h5>Type:</h5>
1105
+ <ul>
1106
+ <li>
1107
+
1027
1108
  <span class="param-type">string</span>
1028
1109
 
1029
1110
 
1030
- </li>
1031
- </ul>
1032
-
1111
+ </li>
1112
+ </ul>
1113
+
1114
+
1115
+
1116
+
1033
1117
 
1034
-
1035
1118
  <dl class="details">
1119
+
1036
1120
 
1037
1121
 
1038
1122
 
@@ -1040,10 +1124,16 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1040
1124
 
1041
1125
 
1042
1126
 
1043
- <dt class="inherited-from">Inherited From:</dt>
1044
- <dd class="inherited-from"><ul class="dummy"><li>
1127
+ <dt class="tag-overrides">Overrides:</dt>
1128
+ <dd class="tag-overrides"><ul class="dummy"><li>
1045
1129
  <a href="ProtoBuf.Reflect.T.html#name">ProtoBuf.Reflect.T#name</a>
1046
- </li></dd>
1130
+ </li></ul></dd>
1131
+
1132
+
1133
+
1134
+
1135
+
1136
+
1047
1137
 
1048
1138
 
1049
1139
 
@@ -1059,7 +1149,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1059
1149
 
1060
1150
  <dt class="tag-source">Source:</dt>
1061
1151
  <dd class="tag-source"><ul class="dummy"><li>
1062
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1396">line 1396</a>
1152
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1431">line 1431</a>
1063
1153
  </li></ul></dd>
1064
1154
 
1065
1155
 
@@ -1071,39 +1161,45 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1071
1161
  </dl>
1072
1162
 
1073
1163
 
1074
-
1075
1164
 
1076
-
1077
- </dd>
1165
+
1166
+
1078
1167
 
1079
1168
 
1080
1169
 
1081
- <dt>
1082
- <h4 class="name" id="oneof"><span class="type-signature">(nullable) </span>oneof<span class="type-signature"> :<a href="ProtoBuf.Reflect.Message.OneOf.html">ProtoBuf.Reflect.Message.OneOf</a></span></h4>
1170
+ <h4 class="name" id="oneof"><span class="type-signature">(nullable) </span>oneof<span class="type-signature"> :<a href="ProtoBuf.Reflect.Message.OneOf.html">ProtoBuf.Reflect.Message.OneOf</a></span></h4>
1083
1171
 
1084
-
1085
- </dt>
1086
- <dd>
1087
-
1088
- <div class="description">
1089
- <p>Enclosing OneOf.</p>
1090
- </div>
1091
-
1092
1172
 
1093
-
1094
- <h5>Type:</h5>
1095
- <ul>
1096
- <li>
1097
-
1173
+
1174
+
1175
+ <div class="description">
1176
+ <p>Enclosing OneOf.</p>
1177
+ </div>
1178
+
1179
+
1180
+
1181
+ <h5>Type:</h5>
1182
+ <ul>
1183
+ <li>
1184
+
1098
1185
  <span class="param-type"><a href="ProtoBuf.Reflect.Message.OneOf.html">ProtoBuf.Reflect.Message.OneOf</a></span>
1099
1186
 
1100
1187
 
1101
- </li>
1102
- </ul>
1188
+ </li>
1189
+ </ul>
1190
+
1191
+
1192
+
1193
+
1194
+
1195
+ <dl class="details">
1196
+
1103
1197
 
1104
1198
 
1105
1199
 
1106
- <dl class="details">
1200
+
1201
+
1202
+
1107
1203
 
1108
1204
 
1109
1205
 
@@ -1125,7 +1221,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1125
1221
 
1126
1222
  <dt class="tag-source">Source:</dt>
1127
1223
  <dd class="tag-source"><ul class="dummy"><li>
1128
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3329">line 3329</a>
1224
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3391">line 3391</a>
1129
1225
  </li></ul></dd>
1130
1226
 
1131
1227
 
@@ -1137,39 +1233,45 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1137
1233
  </dl>
1138
1234
 
1139
1235
 
1140
-
1141
1236
 
1142
-
1143
- </dd>
1237
+
1238
+
1144
1239
 
1145
1240
 
1146
1241
 
1147
- <dt>
1148
- <h4 class="name" id="options"><span class="type-signature">(non-null) </span>options<span class="type-signature"> :Object.&lt;string, *></span></h4>
1242
+ <h4 class="name" id="options"><span class="type-signature">(non-null) </span>options<span class="type-signature"> :Object.&lt;string, *></span></h4>
1149
1243
 
1150
-
1151
- </dt>
1152
- <dd>
1153
-
1154
- <div class="description">
1155
- <p>Message field options.</p>
1156
- </div>
1157
-
1158
1244
 
1159
-
1160
- <h5>Type:</h5>
1161
- <ul>
1162
- <li>
1163
-
1245
+
1246
+
1247
+ <div class="description">
1248
+ <p>Message field options.</p>
1249
+ </div>
1250
+
1251
+
1252
+
1253
+ <h5>Type:</h5>
1254
+ <ul>
1255
+ <li>
1256
+
1164
1257
  <span class="param-type">Object.&lt;string, *></span>
1165
1258
 
1166
1259
 
1167
- </li>
1168
- </ul>
1260
+ </li>
1261
+ </ul>
1262
+
1263
+
1264
+
1265
+
1266
+
1267
+ <dl class="details">
1268
+
1169
1269
 
1170
1270
 
1171
1271
 
1172
- <dl class="details">
1272
+
1273
+
1274
+
1173
1275
 
1174
1276
 
1175
1277
 
@@ -1191,7 +1293,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1191
1293
 
1192
1294
  <dt class="tag-source">Source:</dt>
1193
1295
  <dd class="tag-source"><ul class="dummy"><li>
1194
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3315">line 3315</a>
1296
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3377">line 3377</a>
1195
1297
  </li></ul></dd>
1196
1298
 
1197
1299
 
@@ -1203,39 +1305,45 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1203
1305
  </dl>
1204
1306
 
1205
1307
 
1206
-
1207
1308
 
1208
-
1209
- </dd>
1309
+
1310
+
1210
1311
 
1211
1312
 
1212
1313
 
1213
- <dt>
1214
- <h4 class="name" id="originalName"><span class="type-signature"></span>originalName<span class="type-signature"> :string</span></h4>
1314
+ <h4 class="name" id="originalName"><span class="type-signature"></span>originalName<span class="type-signature"> :string</span></h4>
1215
1315
 
1216
-
1217
- </dt>
1218
- <dd>
1219
-
1220
- <div class="description">
1221
- <p>Original field name.</p>
1222
- </div>
1223
-
1224
1316
 
1225
-
1226
- <h5>Type:</h5>
1227
- <ul>
1228
- <li>
1229
-
1317
+
1318
+
1319
+ <div class="description">
1320
+ <p>Original field name.</p>
1321
+ </div>
1322
+
1323
+
1324
+
1325
+ <h5>Type:</h5>
1326
+ <ul>
1327
+ <li>
1328
+
1230
1329
  <span class="param-type">string</span>
1231
1330
 
1232
1331
 
1233
- </li>
1234
- </ul>
1332
+ </li>
1333
+ </ul>
1334
+
1335
+
1336
+
1337
+
1338
+
1339
+ <dl class="details">
1340
+
1235
1341
 
1236
1342
 
1237
1343
 
1238
- <dl class="details">
1344
+
1345
+
1346
+
1239
1347
 
1240
1348
 
1241
1349
 
@@ -1257,7 +1365,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1257
1365
 
1258
1366
  <dt class="tag-source">Source:</dt>
1259
1367
  <dd class="tag-source"><ul class="dummy"><li>
1260
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3343">line 3343</a>
1368
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3405">line 3405</a>
1261
1369
  </li></ul></dd>
1262
1370
 
1263
1371
 
@@ -1269,40 +1377,38 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1269
1377
  </dl>
1270
1378
 
1271
1379
 
1272
-
1273
1380
 
1274
-
1275
- </dd>
1381
+
1382
+
1276
1383
 
1277
1384
 
1278
1385
 
1279
- <dt>
1280
- <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>
1386
+ <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>
1281
1387
 
1282
-
1283
- </dt>
1284
- <dd>
1285
-
1286
- <div class="description">
1287
- <p>Parent object.</p>
1288
- </div>
1289
-
1290
1388
 
1291
-
1292
- <h5>Type:</h5>
1293
- <ul>
1294
- <li>
1295
-
1389
+
1390
+
1391
+ <div class="description">
1392
+ <p>Parent object.</p>
1393
+ </div>
1394
+
1395
+
1396
+
1397
+ <h5>Type:</h5>
1398
+ <ul>
1399
+ <li>
1400
+
1296
1401
  <span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
1297
1402
 
1298
1403
 
1299
- </li>
1300
- </ul>
1301
-
1404
+ </li>
1405
+ </ul>
1406
+
1407
+
1408
+
1409
+
1302
1410
 
1303
-
1304
1411
  <dl class="details">
1305
-
1306
1412
 
1307
1413
 
1308
1414
 
@@ -1312,7 +1418,15 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1312
1418
  <dt class="inherited-from">Inherited From:</dt>
1313
1419
  <dd class="inherited-from"><ul class="dummy"><li>
1314
1420
  <a href="ProtoBuf.Reflect.T.html#parent">ProtoBuf.Reflect.T#parent</a>
1315
- </li></dd>
1421
+ </li></ul></dd>
1422
+
1423
+
1424
+
1425
+
1426
+
1427
+
1428
+
1429
+
1316
1430
 
1317
1431
 
1318
1432
 
@@ -1328,7 +1442,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1328
1442
 
1329
1443
  <dt class="tag-source">Source:</dt>
1330
1444
  <dd class="tag-source"><ul class="dummy"><li>
1331
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1389">line 1389</a>
1445
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1424">line 1424</a>
1332
1446
  </li></ul></dd>
1333
1447
 
1334
1448
 
@@ -1340,39 +1454,45 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1340
1454
  </dl>
1341
1455
 
1342
1456
 
1343
-
1344
1457
 
1345
-
1346
- </dd>
1458
+
1459
+
1347
1460
 
1348
1461
 
1349
1462
 
1350
- <dt>
1351
- <h4 class="name" id="repeated"><span class="type-signature"></span>repeated<span class="type-signature"> :boolean</span></h4>
1463
+ <h4 class="name" id="repeated"><span class="type-signature"></span>repeated<span class="type-signature"> :boolean</span></h4>
1352
1464
 
1353
-
1354
- </dt>
1355
- <dd>
1356
-
1357
- <div class="description">
1358
- <p>Message field repeated flag.</p>
1359
- </div>
1360
-
1361
1465
 
1362
-
1363
- <h5>Type:</h5>
1364
- <ul>
1365
- <li>
1366
-
1466
+
1467
+
1468
+ <div class="description">
1469
+ <p>Message field repeated flag.</p>
1470
+ </div>
1471
+
1472
+
1473
+
1474
+ <h5>Type:</h5>
1475
+ <ul>
1476
+ <li>
1477
+
1367
1478
  <span class="param-type">boolean</span>
1368
1479
 
1369
1480
 
1370
- </li>
1371
- </ul>
1481
+ </li>
1482
+ </ul>
1483
+
1484
+
1485
+
1486
+
1487
+
1488
+ <dl class="details">
1489
+
1372
1490
 
1373
1491
 
1374
1492
 
1375
- <dl class="details">
1493
+
1494
+
1495
+
1376
1496
 
1377
1497
 
1378
1498
 
@@ -1394,7 +1514,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1394
1514
 
1395
1515
  <dt class="tag-source">Source:</dt>
1396
1516
  <dd class="tag-source"><ul class="dummy"><li>
1397
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3270">line 3270</a>
1517
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3332">line 3332</a>
1398
1518
  </li></ul></dd>
1399
1519
 
1400
1520
 
@@ -1406,39 +1526,45 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1406
1526
  </dl>
1407
1527
 
1408
1528
 
1409
-
1410
1529
 
1411
-
1412
- </dd>
1530
+
1531
+
1413
1532
 
1414
1533
 
1415
1534
 
1416
- <dt>
1417
- <h4 class="name" id="required"><span class="type-signature"></span>required<span class="type-signature"> :boolean</span></h4>
1535
+ <h4 class="name" id="required"><span class="type-signature"></span>required<span class="type-signature"> :boolean</span></h4>
1418
1536
 
1419
-
1420
- </dt>
1421
- <dd>
1422
-
1423
- <div class="description">
1424
- <p>Message field required flag.</p>
1425
- </div>
1426
-
1427
1537
 
1428
-
1429
- <h5>Type:</h5>
1430
- <ul>
1431
- <li>
1432
-
1538
+
1539
+
1540
+ <div class="description">
1541
+ <p>Message field required flag.</p>
1542
+ </div>
1543
+
1544
+
1545
+
1546
+ <h5>Type:</h5>
1547
+ <ul>
1548
+ <li>
1549
+
1433
1550
  <span class="param-type">boolean</span>
1434
1551
 
1435
1552
 
1436
- </li>
1437
- </ul>
1553
+ </li>
1554
+ </ul>
1555
+
1556
+
1557
+
1558
+
1559
+
1560
+ <dl class="details">
1561
+
1438
1562
 
1439
1563
 
1440
1564
 
1441
- <dl class="details">
1565
+
1566
+
1567
+
1442
1568
 
1443
1569
 
1444
1570
 
@@ -1460,7 +1586,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1460
1586
 
1461
1587
  <dt class="tag-source">Source:</dt>
1462
1588
  <dd class="tag-source"><ul class="dummy"><li>
1463
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3263">line 3263</a>
1589
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3325">line 3325</a>
1464
1590
  </li></ul></dd>
1465
1591
 
1466
1592
 
@@ -1472,42 +1598,48 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1472
1598
  </dl>
1473
1599
 
1474
1600
 
1475
-
1476
1601
 
1477
-
1478
- </dd>
1602
+
1603
+
1479
1604
 
1480
1605
 
1481
1606
 
1482
- <dt>
1483
- <h4 class="name" id="resolvedType"><span class="type-signature"></span>resolvedType<span class="type-signature"> :<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>|null</span></h4>
1607
+ <h4 class="name" id="resolvedType"><span class="type-signature"></span>resolvedType<span class="type-signature"> :<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>|null</span></h4>
1484
1608
 
1485
-
1486
- </dt>
1487
- <dd>
1488
-
1489
- <div class="description">
1490
- <p>Resolved type reference inside the global namespace.</p>
1491
- </div>
1492
-
1493
1609
 
1494
-
1495
- <h5>Type:</h5>
1496
- <ul>
1497
- <li>
1498
-
1610
+
1611
+
1612
+ <div class="description">
1613
+ <p>Resolved type reference inside the global namespace.</p>
1614
+ </div>
1615
+
1616
+
1617
+
1618
+ <h5>Type:</h5>
1619
+ <ul>
1620
+ <li>
1621
+
1499
1622
  <span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
1500
1623
  |
1501
1624
 
1502
1625
  <span class="param-type">null</span>
1503
1626
 
1504
1627
 
1505
- </li>
1506
- </ul>
1628
+ </li>
1629
+ </ul>
1630
+
1631
+
1632
+
1633
+
1634
+
1635
+ <dl class="details">
1636
+
1507
1637
 
1508
1638
 
1509
1639
 
1510
- <dl class="details">
1640
+
1641
+
1642
+
1511
1643
 
1512
1644
 
1513
1645
 
@@ -1529,7 +1661,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1529
1661
 
1530
1662
  <dt class="tag-source">Source:</dt>
1531
1663
  <dd class="tag-source"><ul class="dummy"><li>
1532
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3300">line 3300</a>
1664
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3362">line 3362</a>
1533
1665
  </li></ul></dd>
1534
1666
 
1535
1667
 
@@ -1541,39 +1673,45 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1541
1673
  </dl>
1542
1674
 
1543
1675
 
1544
-
1545
1676
 
1546
-
1547
- </dd>
1677
+
1678
+
1548
1679
 
1549
1680
 
1550
1681
 
1551
- <dt>
1552
- <h4 class="name" id="syntax"><span class="type-signature"></span>syntax<span class="type-signature"> :string</span></h4>
1682
+ <h4 class="name" id="syntax"><span class="type-signature"></span>syntax<span class="type-signature"> :string</span></h4>
1553
1683
 
1554
-
1555
- </dt>
1556
- <dd>
1557
-
1558
- <div class="description">
1559
- <p>Syntax level of this definition (e.g., proto3).</p>
1560
- </div>
1561
-
1562
1684
 
1563
-
1564
- <h5>Type:</h5>
1565
- <ul>
1566
- <li>
1567
-
1685
+
1686
+
1687
+ <div class="description">
1688
+ <p>Syntax level of this definition (e.g., proto3).</p>
1689
+ </div>
1690
+
1691
+
1692
+
1693
+ <h5>Type:</h5>
1694
+ <ul>
1695
+ <li>
1696
+
1568
1697
  <span class="param-type">string</span>
1569
1698
 
1570
1699
 
1571
- </li>
1572
- </ul>
1700
+ </li>
1701
+ </ul>
1702
+
1703
+
1704
+
1705
+
1706
+
1707
+ <dl class="details">
1708
+
1573
1709
 
1574
1710
 
1575
1711
 
1576
- <dl class="details">
1712
+
1713
+
1714
+
1577
1715
 
1578
1716
 
1579
1717
 
@@ -1595,7 +1733,7 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1595
1733
 
1596
1734
  <dt class="tag-source">Source:</dt>
1597
1735
  <dd class="tag-source"><ul class="dummy"><li>
1598
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3336">line 3336</a>
1736
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3398">line 3398</a>
1599
1737
  </li></ul></dd>
1600
1738
 
1601
1739
 
@@ -1607,43 +1745,49 @@ type if resolved. Valid only if this.map === true, null otherwise.</p>
1607
1745
  </dl>
1608
1746
 
1609
1747
 
1610
-
1611
1748
 
1612
-
1613
- </dd>
1749
+
1750
+
1614
1751
 
1615
1752
 
1616
1753
 
1617
- <dt>
1618
- <h4 class="name" id="type"><span class="type-signature"></span>type<span class="type-signature"> :string|Object</span></h4>
1754
+ <h4 class="name" id="type"><span class="type-signature"></span>type<span class="type-signature"> :string|Object</span></h4>
1619
1755
 
1620
-
1621
- </dt>
1622
- <dd>
1623
-
1624
- <div class="description">
1625
- <p>Message field type. Type reference string if unresolved, protobuf type if
1756
+
1757
+
1758
+
1759
+ <div class="description">
1760
+ <p>Message field type. Type reference string if unresolved, protobuf type if
1626
1761
  resolved. In a map field, this is the value type.</p>
1627
- </div>
1628
-
1762
+ </div>
1629
1763
 
1630
-
1631
- <h5>Type:</h5>
1632
- <ul>
1633
- <li>
1634
-
1764
+
1765
+
1766
+ <h5>Type:</h5>
1767
+ <ul>
1768
+ <li>
1769
+
1635
1770
  <span class="param-type">string</span>
1636
1771
  |
1637
1772
 
1638
1773
  <span class="param-type">Object</span>
1639
1774
 
1640
1775
 
1641
- </li>
1642
- </ul>
1776
+ </li>
1777
+ </ul>
1778
+
1779
+
1780
+
1781
+
1782
+
1783
+ <dl class="details">
1784
+
1643
1785
 
1644
1786
 
1645
1787
 
1646
- <dl class="details">
1788
+
1789
+
1790
+
1647
1791
 
1648
1792
 
1649
1793
 
@@ -1665,7 +1809,7 @@ resolved. In a map field, this is the value type.</p>
1665
1809
 
1666
1810
  <dt class="tag-source">Source:</dt>
1667
1811
  <dd class="tag-source"><ul class="dummy"><li>
1668
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3293">line 3293</a>
1812
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3355">line 3355</a>
1669
1813
  </li></ul></dd>
1670
1814
 
1671
1815
 
@@ -1677,31 +1821,44 @@ resolved. In a map field, this is the value type.</p>
1677
1821
  </dl>
1678
1822
 
1679
1823
 
1680
-
1681
1824
 
1682
-
1683
- </dd>
1684
1825
 
1685
- </dl>
1826
+
1827
+
1828
+
1686
1829
 
1687
1830
 
1688
1831
 
1689
1832
  <h3 class="subsection-title">Methods</h3>
1690
1833
 
1691
- <dl>
1834
+
1692
1835
 
1693
- <dt>
1694
- <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
1695
1836
 
1696
1837
 
1697
- </dt>
1698
- <dd>
1838
+
1839
+ <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
1699
1840
 
1700
1841
 
1701
- <div class="description">
1702
- <p>Builds the field.</p>
1703
- </div>
1704
-
1842
+
1843
+
1844
+
1845
+ <div class="description">
1846
+ <p>Builds this type.</p>
1847
+ </div>
1848
+
1849
+
1850
+
1851
+
1852
+
1853
+
1854
+
1855
+
1856
+
1857
+
1858
+
1859
+
1860
+
1861
+ <dl class="details">
1705
1862
 
1706
1863
 
1707
1864
 
@@ -1710,7 +1867,10 @@ resolved. In a map field, this is the value type.</p>
1710
1867
 
1711
1868
 
1712
1869
 
1713
- <dl class="details">
1870
+ <dt class="tag-overrides">Overrides:</dt>
1871
+ <dd class="tag-overrides"><ul class="dummy"><li>
1872
+ <a href="ProtoBuf.Reflect.T.html#build">ProtoBuf.Reflect.T#build</a>
1873
+ </li></ul></dd>
1714
1874
 
1715
1875
 
1716
1876
 
@@ -1732,7 +1892,7 @@ resolved. In a map field, this is the value type.</p>
1732
1892
 
1733
1893
  <dt class="tag-source">Source:</dt>
1734
1894
  <dd class="tag-source"><ul class="dummy"><li>
1735
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3376">line 3376</a>
1895
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1479">line 1479</a>
1736
1896
  </li></ul></dd>
1737
1897
 
1738
1898
 
@@ -1744,43 +1904,74 @@ resolved. In a map field, this is the value type.</p>
1744
1904
  </dl>
1745
1905
 
1746
1906
 
1747
-
1748
1907
 
1749
-
1750
1908
 
1751
-
1752
1909
 
1753
-
1754
1910
 
1755
-
1756
1911
 
1757
-
1912
+
1913
+
1914
+
1915
+
1916
+ <h5>Throws:</h5>
1917
+
1918
+
1919
+
1920
+ <dl>
1921
+ <dt>
1922
+ <div class="param-desc">
1923
+ <p>If this type cannot be built directly</p>
1924
+ </div>
1925
+ </dt>
1926
+ <dd></dd>
1927
+ <dt>
1928
+ <dl>
1929
+ <dt>
1930
+ Type
1931
+ </dt>
1932
+ <dd>
1933
+
1934
+ <span class="param-type">Error</span>
1935
+
1936
+
1937
+ </dd>
1938
+ </dl>
1939
+ </dt>
1940
+ <dd></dd>
1941
+ </dl>
1942
+
1758
1943
 
1759
1944
 
1760
- </dd>
1945
+
1946
+
1947
+
1948
+
1761
1949
 
1762
1950
 
1763
1951
 
1764
- <dt>
1765
- <h4 class="name" id="calculate"><span class="type-signature"></span>calculate<span class="signature">(value, message<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {number}</span></h4>
1766
1952
 
1767
1953
 
1768
- </dt>
1769
- <dd>
1770
1954
 
1771
-
1772
- <div class="description">
1773
- <p>Calculates the length of this field's value on the network level.</p>
1774
- </div>
1775
-
1955
+ <h4 class="name" id="calculate"><span class="type-signature"></span>calculate<span class="signature">(value, message<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {number}</span></h4>
1776
1956
 
1777
1957
 
1778
1958
 
1779
-
1780
1959
 
1960
+
1961
+ <div class="description">
1962
+ <p>Calculates the length of this field's value on the network level.</p>
1963
+ </div>
1964
+
1965
+
1966
+
1967
+
1968
+
1969
+
1970
+
1971
+
1972
+
1973
+ <h5>Parameters:</h5>
1781
1974
 
1782
- <h5>Parameters:</h5>
1783
-
1784
1975
 
1785
1976
  <table class="params">
1786
1977
  <thead>
@@ -1849,10 +2040,20 @@ resolved. In a map field, this is the value type.</p>
1849
2040
 
1850
2041
  </tbody>
1851
2042
  </table>
2043
+
2044
+
2045
+
2046
+
2047
+
2048
+
2049
+ <dl class="details">
2050
+
1852
2051
 
1853
2052
 
1854
2053
 
1855
- <dl class="details">
2054
+
2055
+
2056
+
1856
2057
 
1857
2058
 
1858
2059
 
@@ -1874,7 +2075,7 @@ resolved. In a map field, this is the value type.</p>
1874
2075
 
1875
2076
  <dt class="tag-source">Source:</dt>
1876
2077
  <dd class="tag-source"><ul class="dummy"><li>
1877
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3572">line 3572</a>
2078
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3635">line 3635</a>
1878
2079
  </li></ul></dd>
1879
2080
 
1880
2081
 
@@ -1886,20 +2087,20 @@ resolved. In a map field, this is the value type.</p>
1886
2087
  </dl>
1887
2088
 
1888
2089
 
1889
-
1890
2090
 
1891
-
1892
2091
 
1893
-
1894
2092
 
1895
-
1896
2093
 
1897
-
1898
2094
 
1899
-
1900
- <h5>Returns:</h5>
1901
-
1902
-
2095
+
2096
+
2097
+
2098
+
2099
+
2100
+
2101
+ <h5>Returns:</h5>
2102
+
2103
+
1903
2104
  <div class="param-desc">
1904
2105
  <p>Byte length</p>
1905
2106
  </div>
@@ -1918,33 +2119,35 @@ resolved. In a map field, this is the value type.</p>
1918
2119
  </dd>
1919
2120
  </dl>
1920
2121
 
1921
-
1922
-
1923
2122
 
1924
- </dd>
2123
+
2124
+
1925
2125
 
1926
2126
 
1927
2127
 
1928
- <dt>
1929
- <h4 class="name" id="decode"><span class="type-signature"></span>decode<span class="signature">(wireType, buffer, skipRepeated<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {*}</span></h4>
1930
2128
 
1931
2129
 
1932
- </dt>
1933
- <dd>
1934
2130
 
1935
-
1936
- <div class="description">
1937
- <p>Decode the field value from the specified buffer.</p>
1938
- </div>
1939
-
2131
+ <h4 class="name" id="decode"><span class="type-signature"></span>decode<span class="signature">(wireType, buffer, skipRepeated<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {*}</span></h4>
1940
2132
 
1941
2133
 
1942
2134
 
1943
-
1944
2135
 
2136
+
2137
+ <div class="description">
2138
+ <p>Decode the field value from the specified buffer.</p>
2139
+ </div>
2140
+
2141
+
2142
+
2143
+
2144
+
2145
+
2146
+
2147
+
2148
+
2149
+ <h5>Parameters:</h5>
1945
2150
 
1946
- <h5>Parameters:</h5>
1947
-
1948
2151
 
1949
2152
  <table class="params">
1950
2153
  <thead>
@@ -2064,10 +2267,20 @@ resolved. In a map field, this is the value type.</p>
2064
2267
 
2065
2268
  </tbody>
2066
2269
  </table>
2270
+
2271
+
2272
+
2273
+
2274
+
2275
+
2276
+ <dl class="details">
2277
+
2067
2278
 
2068
2279
 
2069
2280
 
2070
- <dl class="details">
2281
+
2282
+
2283
+
2071
2284
 
2072
2285
 
2073
2286
 
@@ -2089,7 +2302,7 @@ resolved. In a map field, this is the value type.</p>
2089
2302
 
2090
2303
  <dt class="tag-source">Source:</dt>
2091
2304
  <dd class="tag-source"><ul class="dummy"><li>
2092
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3630">line 3630</a>
2305
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3693">line 3693</a>
2093
2306
  </li></ul></dd>
2094
2307
 
2095
2308
 
@@ -2101,25 +2314,26 @@ resolved. In a map field, this is the value type.</p>
2101
2314
  </dl>
2102
2315
 
2103
2316
 
2104
-
2105
2317
 
2106
-
2107
2318
 
2108
-
2109
2319
 
2110
-
2111
2320
 
2112
-
2113
- <h5>Throws:</h5>
2114
-
2115
-
2321
+
2322
+
2323
+
2324
+
2325
+
2326
+ <h5>Throws:</h5>
2327
+
2328
+
2116
2329
 
2117
2330
  <dl>
2118
2331
  <dt>
2119
2332
  <div class="param-desc">
2120
- If the field cannot be decoded
2333
+ <p>If the field cannot be decoded</p>
2121
2334
  </div>
2122
2335
  </dt>
2336
+ <dd></dd>
2123
2337
  <dt>
2124
2338
  <dl>
2125
2339
  <dt>
@@ -2133,15 +2347,16 @@ resolved. In a map field, this is the value type.</p>
2133
2347
  </dd>
2134
2348
  </dl>
2135
2349
  </dt>
2350
+ <dd></dd>
2136
2351
  </dl>
2137
2352
 
2138
2353
 
2139
-
2140
-
2141
2354
 
2142
- <h5>Returns:</h5>
2143
-
2144
-
2355
+
2356
+
2357
+ <h5>Returns:</h5>
2358
+
2359
+
2145
2360
  <div class="param-desc">
2146
2361
  <p>Decoded value: array for packed repeated fields, [key, value] for
2147
2362
  map fields, or an individual value otherwise.</p>
@@ -2161,33 +2376,35 @@ resolved. In a map field, this is the value type.</p>
2161
2376
  </dd>
2162
2377
  </dl>
2163
2378
 
2164
-
2165
-
2166
2379
 
2167
- </dd>
2380
+
2381
+
2168
2382
 
2169
2383
 
2170
2384
 
2171
- <dt>
2172
- <h4 class="name" id="encode"><span class="type-signature"></span>encode<span class="signature">(value, buffer, message<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {ByteBuffer}</span></h4>
2173
2385
 
2174
2386
 
2175
- </dt>
2176
- <dd>
2387
+
2388
+ <h4 class="name" id="encode"><span class="type-signature"></span>encode<span class="signature">(value, buffer, message<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {ByteBuffer}</span></h4>
2177
2389
 
2178
2390
 
2179
- <div class="description">
2180
- <p>Encodes the specified field value to the specified buffer.</p>
2181
- </div>
2182
-
2183
2391
 
2184
-
2185
2392
 
2186
-
2187
2393
 
2394
+ <div class="description">
2395
+ <p>Encodes the specified field value to the specified buffer.</p>
2396
+ </div>
2397
+
2398
+
2399
+
2400
+
2401
+
2402
+
2403
+
2404
+
2405
+
2406
+ <h5>Parameters:</h5>
2188
2407
 
2189
- <h5>Parameters:</h5>
2190
-
2191
2408
 
2192
2409
  <table class="params">
2193
2410
  <thead>
@@ -2279,10 +2496,20 @@ resolved. In a map field, this is the value type.</p>
2279
2496
 
2280
2497
  </tbody>
2281
2498
  </table>
2499
+
2500
+
2501
+
2502
+
2503
+
2504
+
2505
+ <dl class="details">
2506
+
2282
2507
 
2283
2508
 
2284
2509
 
2285
- <dl class="details">
2510
+
2511
+
2512
+
2286
2513
 
2287
2514
 
2288
2515
 
@@ -2304,7 +2531,7 @@ resolved. In a map field, this is the value type.</p>
2304
2531
 
2305
2532
  <dt class="tag-source">Source:</dt>
2306
2533
  <dd class="tag-source"><ul class="dummy"><li>
2307
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3498">line 3498</a>
2534
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3561">line 3561</a>
2308
2535
  </li></ul></dd>
2309
2536
 
2310
2537
 
@@ -2316,25 +2543,26 @@ resolved. In a map field, this is the value type.</p>
2316
2543
  </dl>
2317
2544
 
2318
2545
 
2319
-
2320
2546
 
2321
-
2322
2547
 
2323
-
2324
2548
 
2325
-
2326
2549
 
2327
-
2328
- <h5>Throws:</h5>
2329
-
2330
-
2550
+
2551
+
2552
+
2553
+
2554
+
2555
+ <h5>Throws:</h5>
2556
+
2557
+
2331
2558
 
2332
2559
  <dl>
2333
2560
  <dt>
2334
2561
  <div class="param-desc">
2335
- If the field cannot be encoded
2562
+ <p>If the field cannot be encoded</p>
2336
2563
  </div>
2337
2564
  </dt>
2565
+ <dd></dd>
2338
2566
  <dt>
2339
2567
  <dl>
2340
2568
  <dt>
@@ -2348,15 +2576,16 @@ resolved. In a map field, this is the value type.</p>
2348
2576
  </dd>
2349
2577
  </dl>
2350
2578
  </dt>
2579
+ <dd></dd>
2351
2580
  </dl>
2352
2581
 
2353
2582
 
2354
-
2355
-
2356
-
2357
- <h5>Returns:</h5>
2358
2583
 
2359
-
2584
+
2585
+
2586
+ <h5>Returns:</h5>
2587
+
2588
+
2360
2589
  <div class="param-desc">
2361
2590
  <p>The ByteBuffer for chaining</p>
2362
2591
  </div>
@@ -2375,35 +2604,38 @@ resolved. In a map field, this is the value type.</p>
2375
2604
  </dd>
2376
2605
  </dl>
2377
2606
 
2378
-
2379
-
2380
2607
 
2381
- </dd>
2608
+
2609
+
2382
2610
 
2383
2611
 
2384
2612
 
2385
- <dt>
2386
- <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
2387
2613
 
2388
2614
 
2389
- </dt>
2390
- <dd>
2391
2615
 
2392
-
2393
- <div class="description">
2394
- <p>Returns the fully qualified name of this object.</p>
2395
- </div>
2396
-
2616
+ <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
2397
2617
 
2398
2618
 
2399
2619
 
2400
-
2401
2620
 
2402
-
2403
2621
 
2404
-
2622
+ <div class="description">
2623
+ <p>Returns the fully qualified name of this object.</p>
2624
+ </div>
2625
+
2626
+
2627
+
2628
+
2629
+
2630
+
2631
+
2632
+
2633
+
2634
+
2635
+
2636
+
2637
+
2405
2638
  <dl class="details">
2406
-
2407
2639
 
2408
2640
 
2409
2641
 
@@ -2413,7 +2645,15 @@ resolved. In a map field, this is the value type.</p>
2413
2645
  <dt class="inherited-from">Inherited From:</dt>
2414
2646
  <dd class="inherited-from"><ul class="dummy"><li>
2415
2647
  <a href="ProtoBuf.Reflect.T.html#fqn">ProtoBuf.Reflect.T#fqn</a>
2416
- </li></dd>
2648
+ </li></ul></dd>
2649
+
2650
+
2651
+
2652
+
2653
+
2654
+
2655
+
2656
+
2417
2657
 
2418
2658
 
2419
2659
 
@@ -2429,7 +2669,7 @@ resolved. In a map field, this is the value type.</p>
2429
2669
 
2430
2670
  <dt class="tag-source">Source:</dt>
2431
2671
  <dd class="tag-source"><ul class="dummy"><li>
2432
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1417">line 1417</a>
2672
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1452">line 1452</a>
2433
2673
  </li></ul></dd>
2434
2674
 
2435
2675
 
@@ -2441,20 +2681,20 @@ resolved. In a map field, this is the value type.</p>
2441
2681
  </dl>
2442
2682
 
2443
2683
 
2444
-
2445
2684
 
2446
-
2447
2685
 
2448
-
2449
2686
 
2450
-
2451
2687
 
2452
-
2453
2688
 
2454
-
2455
- <h5>Returns:</h5>
2456
-
2457
-
2689
+
2690
+
2691
+
2692
+
2693
+
2694
+
2695
+ <h5>Returns:</h5>
2696
+
2697
+
2458
2698
  <div class="param-desc">
2459
2699
  <p>Fully qualified name as of &quot;.PATH.TO.THIS&quot;</p>
2460
2700
  </div>
@@ -2473,34 +2713,36 @@ resolved. In a map field, this is the value type.</p>
2473
2713
  </dd>
2474
2714
  </dl>
2475
2715
 
2476
-
2477
-
2478
2716
 
2479
- </dd>
2717
+
2718
+
2480
2719
 
2481
2720
 
2482
2721
 
2483
- <dt>
2484
- <h4 class="name" id="hasWirePresence"><span class="type-signature"></span>hasWirePresence<span class="signature">(value, message<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
2485
2722
 
2486
2723
 
2487
- </dt>
2488
- <dd>
2724
+
2725
+ <h4 class="name" id="hasWirePresence"><span class="type-signature"></span>hasWirePresence<span class="signature">(value, message<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
2489
2726
 
2490
2727
 
2491
- <div class="description">
2492
- <p>Determines whether the field will have a presence on the wire given its
2728
+
2729
+
2730
+
2731
+ <div class="description">
2732
+ <p>Determines whether the field will have a presence on the wire given its
2493
2733
  value.</p>
2494
- </div>
2495
-
2734
+ </div>
2496
2735
 
2497
-
2498
2736
 
2499
-
2500
2737
 
2738
+
2739
+
2740
+
2741
+
2742
+
2743
+
2744
+ <h5>Parameters:</h5>
2501
2745
 
2502
- <h5>Parameters:</h5>
2503
-
2504
2746
 
2505
2747
  <table class="params">
2506
2748
  <thead>
@@ -2569,10 +2811,20 @@ value.</p>
2569
2811
 
2570
2812
  </tbody>
2571
2813
  </table>
2814
+
2815
+
2816
+
2817
+
2818
+
2819
+
2820
+ <dl class="details">
2821
+
2572
2822
 
2573
2823
 
2574
2824
 
2575
- <dl class="details">
2825
+
2826
+
2827
+
2576
2828
 
2577
2829
 
2578
2830
 
@@ -2594,7 +2846,7 @@ value.</p>
2594
2846
 
2595
2847
  <dt class="tag-source">Source:</dt>
2596
2848
  <dd class="tag-source"><ul class="dummy"><li>
2597
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3446">line 3446</a>
2849
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3509">line 3509</a>
2598
2850
  </li></ul></dd>
2599
2851
 
2600
2852
 
@@ -2606,20 +2858,20 @@ value.</p>
2606
2858
  </dl>
2607
2859
 
2608
2860
 
2609
-
2610
2861
 
2611
-
2612
2862
 
2613
-
2614
2863
 
2615
-
2616
2864
 
2617
-
2618
2865
 
2619
-
2620
- <h5>Returns:</h5>
2621
-
2622
-
2866
+
2867
+
2868
+
2869
+
2870
+
2871
+
2872
+ <h5>Returns:</h5>
2873
+
2874
+
2623
2875
  <div class="param-desc">
2624
2876
  <p>Whether the field will be present on the wire</p>
2625
2877
  </div>
@@ -2638,33 +2890,35 @@ value.</p>
2638
2890
  </dd>
2639
2891
  </dl>
2640
2892
 
2641
-
2642
-
2643
2893
 
2644
- </dd>
2894
+
2895
+
2645
2896
 
2646
2897
 
2647
2898
 
2648
- <dt>
2649
- <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>
2650
2899
 
2651
2900
 
2652
- </dt>
2653
- <dd>
2654
2901
 
2655
-
2656
- <div class="description">
2657
- <p>Returns a string representation of this Reflect object (its fully qualified name).</p>
2658
- </div>
2659
-
2902
+ <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>
2660
2903
 
2661
2904
 
2662
2905
 
2663
-
2664
2906
 
2907
+
2908
+ <div class="description">
2909
+ <p>Returns a string representation of this Reflect object (its fully qualified name).</p>
2910
+ </div>
2911
+
2912
+
2913
+
2914
+
2915
+
2916
+
2917
+
2918
+
2919
+
2920
+ <h5>Parameters:</h5>
2665
2921
 
2666
- <h5>Parameters:</h5>
2667
-
2668
2922
 
2669
2923
  <table class="params">
2670
2924
  <thead>
@@ -2722,11 +2976,13 @@ value.</p>
2722
2976
 
2723
2977
  </tbody>
2724
2978
  </table>
2725
-
2726
2979
 
2727
-
2980
+
2981
+
2982
+
2983
+
2984
+
2728
2985
  <dl class="details">
2729
-
2730
2986
 
2731
2987
 
2732
2988
 
@@ -2736,7 +2992,15 @@ value.</p>
2736
2992
  <dt class="inherited-from">Inherited From:</dt>
2737
2993
  <dd class="inherited-from"><ul class="dummy"><li>
2738
2994
  <a href="ProtoBuf.Reflect.T.html#toString">ProtoBuf.Reflect.T#toString</a>
2739
- </li></dd>
2995
+ </li></ul></dd>
2996
+
2997
+
2998
+
2999
+
3000
+
3001
+
3002
+
3003
+
2740
3004
 
2741
3005
 
2742
3006
 
@@ -2752,7 +3016,7 @@ value.</p>
2752
3016
 
2753
3017
  <dt class="tag-source">Source:</dt>
2754
3018
  <dd class="tag-source"><ul class="dummy"><li>
2755
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1435">line 1435</a>
3019
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1470">line 1470</a>
2756
3020
  </li></ul></dd>
2757
3021
 
2758
3022
 
@@ -2764,53 +3028,55 @@ value.</p>
2764
3028
  </dl>
2765
3029
 
2766
3030
 
2767
-
2768
3031
 
2769
-
2770
3032
 
2771
-
2772
3033
 
2773
-
2774
3034
 
2775
-
2776
3035
 
2777
-
2778
- <h5>Returns:</h5>
2779
-
2780
-
3036
+
3037
+
3038
+
3039
+
3040
+
3041
+
3042
+ <h5>Returns:</h5>
3043
+
3044
+
2781
3045
  <div class="param-desc">
2782
3046
  <p>String representation</p>
2783
3047
  </div>
2784
3048
 
2785
3049
 
2786
3050
 
2787
-
2788
-
2789
3051
 
2790
- </dd>
3052
+
3053
+
2791
3054
 
2792
3055
 
2793
3056
 
2794
- <dt>
2795
- <h4 class="name" id="verifyValue"><span class="type-signature"></span>verifyValue<span class="signature">(value, skipRepeated<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {*}</span></h4>
2796
3057
 
2797
3058
 
2798
- </dt>
2799
- <dd>
2800
3059
 
2801
-
2802
- <div class="description">
2803
- <p>Checks if the given value can be set for this field.</p>
2804
- </div>
2805
-
3060
+ <h4 class="name" id="verifyValue"><span class="type-signature"></span>verifyValue<span class="signature">(value, skipRepeated<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {*}</span></h4>
2806
3061
 
2807
3062
 
2808
3063
 
2809
-
2810
3064
 
3065
+
3066
+ <div class="description">
3067
+ <p>Checks if the given value can be set for this field.</p>
3068
+ </div>
3069
+
3070
+
3071
+
3072
+
3073
+
3074
+
3075
+
3076
+
3077
+
3078
+ <h5>Parameters:</h5>
2811
3079
 
2812
- <h5>Parameters:</h5>
2813
-
2814
3080
 
2815
3081
  <table class="params">
2816
3082
  <thead>
@@ -2899,10 +3165,20 @@ value.</p>
2899
3165
 
2900
3166
  </tbody>
2901
3167
  </table>
3168
+
3169
+
3170
+
3171
+
3172
+
3173
+
3174
+ <dl class="details">
3175
+
2902
3176
 
2903
3177
 
2904
3178
 
2905
- <dl class="details">
3179
+
3180
+
3181
+
2906
3182
 
2907
3183
 
2908
3184
 
@@ -2924,7 +3200,7 @@ value.</p>
2924
3200
 
2925
3201
  <dt class="tag-source">Source:</dt>
2926
3202
  <dd class="tag-source"><ul class="dummy"><li>
2927
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3399">line 3399</a>
3203
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3461">line 3461</a>
2928
3204
  </li></ul></dd>
2929
3205
 
2930
3206
 
@@ -2936,25 +3212,26 @@ value.</p>
2936
3212
  </dl>
2937
3213
 
2938
3214
 
2939
-
2940
3215
 
2941
-
2942
3216
 
2943
-
2944
3217
 
2945
-
2946
3218
 
2947
-
2948
- <h5>Throws:</h5>
2949
-
2950
-
3219
+
3220
+
3221
+
3222
+
3223
+
3224
+ <h5>Throws:</h5>
3225
+
3226
+
2951
3227
 
2952
3228
  <dl>
2953
3229
  <dt>
2954
3230
  <div class="param-desc">
2955
- If the value cannot be set for this field
3231
+ <p>If the value cannot be set for this field</p>
2956
3232
  </div>
2957
3233
  </dt>
3234
+ <dd></dd>
2958
3235
  <dt>
2959
3236
  <dl>
2960
3237
  <dt>
@@ -2968,15 +3245,16 @@ value.</p>
2968
3245
  </dd>
2969
3246
  </dl>
2970
3247
  </dt>
3248
+ <dd></dd>
2971
3249
  </dl>
2972
3250
 
2973
3251
 
2974
-
2975
-
2976
3252
 
2977
- <h5>Returns:</h5>
2978
-
2979
-
3253
+
3254
+
3255
+ <h5>Returns:</h5>
3256
+
3257
+
2980
3258
  <div class="param-desc">
2981
3259
  <p>Verified, maybe adjusted, value</p>
2982
3260
  </div>
@@ -2995,12 +3273,11 @@ value.</p>
2995
3273
  </dd>
2996
3274
  </dl>
2997
3275
 
2998
-
2999
-
3000
3276
 
3001
- </dd>
3002
3277
 
3003
- </dl>
3278
+
3279
+
3280
+
3004
3281
 
3005
3282
 
3006
3283
 
@@ -3016,13 +3293,13 @@ value.</p>
3016
3293
  </div>
3017
3294
 
3018
3295
  <nav>
3019
- <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>
3296
+ <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>
3020
3297
  </nav>
3021
3298
 
3022
- <br clear="both">
3299
+ <br class="clear">
3023
3300
 
3024
3301
  <footer>
3025
- 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)
3302
+ 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)
3026
3303
  </footer>
3027
3304
 
3028
3305
  <script> prettyPrint(); </script>