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.Service.html">.Service</a>.</span>
31
30
 
32
- RPCMethod
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.Service.html">.Service</a>.</span>
33
+
34
+ RPCMethod
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="RPCMethod"><span class="type-signature"></span>new RPCMethod<span class="signature">(builder<span class="signature-attributes">non-null</span>, svc<span class="signature-attributes">non-null</span>, name, request, response, request_stream, response_stream, options<span class="signature-attributes">opt</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>RPC service method.</p>
53
- </div>
54
-
55
51
 
56
-
57
52
 
58
-
53
+ <div class="description">
54
+ <p>RPC service method.</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>
@@ -334,10 +338,20 @@
334
338
 
335
339
  </tbody>
336
340
  </table>
341
+
342
+
343
+
344
+
345
+
346
+
347
+ <dl class="details">
348
+
337
349
 
338
350
 
339
351
 
340
- <dl class="details">
352
+
353
+
354
+
341
355
 
342
356
 
343
357
 
@@ -359,7 +373,7 @@
359
373
 
360
374
  <dt class="tag-source">Source:</dt>
361
375
  <dd class="tag-source"><ul class="dummy"><li>
362
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4151">line 4151</a>
376
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4217">line 4217</a>
363
377
  </li></ul></dd>
364
378
 
365
379
 
@@ -371,20 +385,19 @@
371
385
  </dl>
372
386
 
373
387
 
374
-
375
388
 
376
-
377
389
 
378
-
379
390
 
380
-
381
391
 
382
-
383
392
 
384
-
385
393
 
386
-
387
- </dd>
394
+
395
+
396
+
397
+
398
+
399
+
400
+
388
401
 
389
402
 
390
403
  </div>
@@ -392,10 +405,13 @@
392
405
 
393
406
  <h3 class="subsection-title">Extends</h3>
394
407
 
395
- <ul>
396
- <li><a href="ProtoBuf.Reflect.Service.Method.html">ProtoBuf.Reflect.Service.Method</a></li>
397
- </ul>
398
-
408
+
409
+
410
+
411
+ <ul>
412
+ <li><a href="ProtoBuf.Reflect.Service.Method.html">ProtoBuf.Reflect.Service.Method</a></li>
413
+ </ul>
414
+
399
415
 
400
416
 
401
417
 
@@ -410,35 +426,34 @@
410
426
 
411
427
  <h3 class="subsection-title">Members</h3>
412
428
 
413
- <dl>
429
+
414
430
 
415
- <dt>
416
- <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>
431
+ <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>
417
432
 
418
-
419
- </dt>
420
- <dd>
421
-
422
- <div class="description">
423
- <p>Builder reference.</p>
424
- </div>
425
-
426
433
 
427
-
428
- <h5>Type:</h5>
429
- <ul>
430
- <li>
431
-
434
+
435
+
436
+ <div class="description">
437
+ <p>Builder reference.</p>
438
+ </div>
439
+
440
+
441
+
442
+ <h5>Type:</h5>
443
+ <ul>
444
+ <li>
445
+
432
446
  <span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
433
447
 
434
448
 
435
- </li>
436
- </ul>
437
-
449
+ </li>
450
+ </ul>
451
+
452
+
453
+
454
+
438
455
 
439
-
440
456
  <dl class="details">
441
-
442
457
 
443
458
 
444
459
 
@@ -448,7 +463,15 @@
448
463
  <dt class="inherited-from">Inherited From:</dt>
449
464
  <dd class="inherited-from"><ul class="dummy"><li>
450
465
  <a href="ProtoBuf.Reflect.T.html#builder">ProtoBuf.Reflect.T#builder</a>
451
- </li></dd>
466
+ </li></ul></dd>
467
+
468
+
469
+
470
+
471
+
472
+
473
+
474
+
452
475
 
453
476
 
454
477
 
@@ -464,7 +487,7 @@
464
487
 
465
488
  <dt class="tag-source">Source:</dt>
466
489
  <dd class="tag-source"><ul class="dummy"><li>
467
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1382">line 1382</a>
490
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1417">line 1417</a>
468
491
  </li></ul></dd>
469
492
 
470
493
 
@@ -476,25 +499,50 @@
476
499
  </dl>
477
500
 
478
501
 
479
-
480
502
 
481
-
482
- </dd>
503
+
504
+
483
505
 
484
506
 
485
507
 
486
- <dt>
487
- <h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"></span></h4>
508
+ <h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"> :string</span></h4>
509
+
510
+
511
+
512
+
513
+ <div class="description">
514
+ <p>Fully qualified class name</p>
515
+ </div>
516
+
517
+
518
+
519
+ <h5>Type:</h5>
520
+ <ul>
521
+ <li>
522
+
523
+ <span class="param-type">string</span>
524
+
525
+
526
+ </li>
527
+ </ul>
528
+
529
+
530
+
531
+
532
+
533
+ <dl class="details">
488
534
 
489
535
 
490
- </dt>
491
- <dd>
536
+
492
537
 
493
538
 
494
539
 
495
540
 
496
541
 
497
- <dl class="details">
542
+ <dt class="tag-overrides">Overrides:</dt>
543
+ <dd class="tag-overrides"><ul class="dummy"><li>
544
+ <a href="ProtoBuf.Reflect.Service.Method.html#className">ProtoBuf.Reflect.Service.Method#className</a>
545
+ </li></ul></dd>
498
546
 
499
547
 
500
548
 
@@ -516,7 +564,7 @@
516
564
 
517
565
  <dt class="tag-source">Source:</dt>
518
566
  <dd class="tag-source"><ul class="dummy"><li>
519
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4157">line 4157</a>
567
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1438">line 1438</a>
520
568
  </li></ul></dd>
521
569
 
522
570
 
@@ -528,40 +576,38 @@
528
576
  </dl>
529
577
 
530
578
 
531
-
532
579
 
533
-
534
- </dd>
580
+
581
+
535
582
 
536
583
 
537
584
 
538
- <dt>
539
- <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
585
+ <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
540
586
 
541
-
542
- </dt>
543
- <dd>
544
-
545
- <div class="description">
546
- <p>Object name in namespace.</p>
547
- </div>
548
-
549
587
 
550
-
551
- <h5>Type:</h5>
552
- <ul>
553
- <li>
554
-
588
+
589
+
590
+ <div class="description">
591
+ <p>Object name in namespace.</p>
592
+ </div>
593
+
594
+
595
+
596
+ <h5>Type:</h5>
597
+ <ul>
598
+ <li>
599
+
555
600
  <span class="param-type">string</span>
556
601
 
557
602
 
558
- </li>
559
- </ul>
560
-
603
+ </li>
604
+ </ul>
605
+
606
+
607
+
608
+
561
609
 
562
-
563
610
  <dl class="details">
564
-
565
611
 
566
612
 
567
613
 
@@ -571,7 +617,15 @@
571
617
  <dt class="inherited-from">Inherited From:</dt>
572
618
  <dd class="inherited-from"><ul class="dummy"><li>
573
619
  <a href="ProtoBuf.Reflect.T.html#name">ProtoBuf.Reflect.T#name</a>
574
- </li></dd>
620
+ </li></ul></dd>
621
+
622
+
623
+
624
+
625
+
626
+
627
+
628
+
575
629
 
576
630
 
577
631
 
@@ -587,7 +641,7 @@
587
641
 
588
642
  <dt class="tag-source">Source:</dt>
589
643
  <dd class="tag-source"><ul class="dummy"><li>
590
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1396">line 1396</a>
644
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1431">line 1431</a>
591
645
  </li></ul></dd>
592
646
 
593
647
 
@@ -599,40 +653,38 @@
599
653
  </dl>
600
654
 
601
655
 
602
-
603
656
 
604
-
605
- </dd>
657
+
658
+
606
659
 
607
660
 
608
661
 
609
- <dt>
610
- <h4 class="name" id="options"><span class="type-signature"></span>options<span class="type-signature"> :Object.&lt;string, *></span></h4>
662
+ <h4 class="name" id="options"><span class="type-signature"></span>options<span class="type-signature"> :Object.&lt;string, *></span></h4>
611
663
 
612
-
613
- </dt>
614
- <dd>
615
-
616
- <div class="description">
617
- <p>Options.</p>
618
- </div>
619
-
620
664
 
621
-
622
- <h5>Type:</h5>
623
- <ul>
624
- <li>
625
-
665
+
666
+
667
+ <div class="description">
668
+ <p>Options.</p>
669
+ </div>
670
+
671
+
672
+
673
+ <h5>Type:</h5>
674
+ <ul>
675
+ <li>
676
+
626
677
  <span class="param-type">Object.&lt;string, *></span>
627
678
 
628
679
 
629
- </li>
630
- </ul>
631
-
680
+ </li>
681
+ </ul>
682
+
683
+
684
+
685
+
632
686
 
633
-
634
687
  <dl class="details">
635
-
636
688
 
637
689
 
638
690
 
@@ -642,7 +694,15 @@
642
694
  <dt class="inherited-from">Inherited From:</dt>
643
695
  <dd class="inherited-from"><ul class="dummy"><li>
644
696
  <a href="ProtoBuf.Reflect.Service.Method.html#options">ProtoBuf.Reflect.Service.Method#options</a>
645
- </li></dd>
697
+ </li></ul></dd>
698
+
699
+
700
+
701
+
702
+
703
+
704
+
705
+
646
706
 
647
707
 
648
708
 
@@ -658,7 +718,7 @@
658
718
 
659
719
  <dt class="tag-source">Source:</dt>
660
720
  <dd class="tag-source"><ul class="dummy"><li>
661
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4114">line 4114</a>
721
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4180">line 4180</a>
662
722
  </li></ul></dd>
663
723
 
664
724
 
@@ -670,40 +730,38 @@
670
730
  </dl>
671
731
 
672
732
 
673
-
674
733
 
675
-
676
- </dd>
734
+
735
+
677
736
 
678
737
 
679
738
 
680
- <dt>
681
- <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>
739
+ <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>
682
740
 
683
-
684
- </dt>
685
- <dd>
686
-
687
- <div class="description">
688
- <p>Parent object.</p>
689
- </div>
690
-
691
741
 
692
-
693
- <h5>Type:</h5>
694
- <ul>
695
- <li>
696
-
742
+
743
+
744
+ <div class="description">
745
+ <p>Parent object.</p>
746
+ </div>
747
+
748
+
749
+
750
+ <h5>Type:</h5>
751
+ <ul>
752
+ <li>
753
+
697
754
  <span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
698
755
 
699
756
 
700
- </li>
701
- </ul>
702
-
757
+ </li>
758
+ </ul>
759
+
760
+
761
+
762
+
703
763
 
704
-
705
764
  <dl class="details">
706
-
707
765
 
708
766
 
709
767
 
@@ -713,7 +771,15 @@
713
771
  <dt class="inherited-from">Inherited From:</dt>
714
772
  <dd class="inherited-from"><ul class="dummy"><li>
715
773
  <a href="ProtoBuf.Reflect.T.html#parent">ProtoBuf.Reflect.T#parent</a>
716
- </li></dd>
774
+ </li></ul></dd>
775
+
776
+
777
+
778
+
779
+
780
+
781
+
782
+
717
783
 
718
784
 
719
785
 
@@ -729,7 +795,7 @@
729
795
 
730
796
  <dt class="tag-source">Source:</dt>
731
797
  <dd class="tag-source"><ul class="dummy"><li>
732
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1389">line 1389</a>
798
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1424">line 1424</a>
733
799
  </li></ul></dd>
734
800
 
735
801
 
@@ -741,39 +807,45 @@
741
807
  </dl>
742
808
 
743
809
 
744
-
745
810
 
746
-
747
- </dd>
811
+
812
+
748
813
 
749
814
 
750
815
 
751
- <dt>
752
- <h4 class="name" id="requestName"><span class="type-signature"></span>requestName<span class="type-signature"> :string</span></h4>
816
+ <h4 class="name" id="requestName"><span class="type-signature"></span>requestName<span class="type-signature"> :string</span></h4>
753
817
 
754
-
755
- </dt>
756
- <dd>
757
-
758
- <div class="description">
759
- <p>Request message name.</p>
760
- </div>
761
-
762
818
 
763
-
764
- <h5>Type:</h5>
765
- <ul>
766
- <li>
767
-
819
+
820
+
821
+ <div class="description">
822
+ <p>Request message name.</p>
823
+ </div>
824
+
825
+
826
+
827
+ <h5>Type:</h5>
828
+ <ul>
829
+ <li>
830
+
768
831
  <span class="param-type">string</span>
769
832
 
770
833
 
771
- </li>
772
- </ul>
834
+ </li>
835
+ </ul>
836
+
837
+
838
+
839
+
840
+
841
+ <dl class="details">
842
+
773
843
 
774
844
 
775
845
 
776
- <dl class="details">
846
+
847
+
848
+
777
849
 
778
850
 
779
851
 
@@ -795,7 +867,7 @@
795
867
 
796
868
  <dt class="tag-source">Source:</dt>
797
869
  <dd class="tag-source"><ul class="dummy"><li>
798
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4164">line 4164</a>
870
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4230">line 4230</a>
799
871
  </li></ul></dd>
800
872
 
801
873
 
@@ -807,46 +879,52 @@
807
879
  </dl>
808
880
 
809
881
 
810
-
811
882
 
812
-
813
- </dd>
883
+
884
+
814
885
 
815
886
 
816
887
 
817
- <dt>
818
- <h4 class="name" id="requestStream"><span class="type-signature"></span>requestStream<span class="type-signature"> :bool</span></h4>
888
+ <h4 class="name" id="requestStream"><span class="type-signature"></span>requestStream<span class="type-signature"> :bool</span></h4>
819
889
 
820
-
821
- </dt>
822
- <dd>
823
-
824
- <div class="description">
825
- <p>Whether requests are streamed</p>
826
- </div>
827
-
828
890
 
829
-
830
- <h5>Type:</h5>
831
- <ul>
832
- <li>
833
-
834
- <span class="param-type">bool</span>
835
891
 
836
892
 
837
- </li>
838
- </ul>
839
-
893
+ <div class="description">
894
+ <p>Whether requests are streamed</p>
895
+ </div>
840
896
 
841
-
842
- <dl class="details">
843
-
844
897
 
845
-
846
898
 
847
-
899
+ <h5>Type:</h5>
900
+ <ul>
901
+ <li>
902
+
903
+ <span class="param-type">bool</span>
848
904
 
849
-
905
+
906
+ </li>
907
+ </ul>
908
+
909
+
910
+
911
+
912
+
913
+ <dl class="details">
914
+
915
+
916
+
917
+
918
+
919
+
920
+
921
+
922
+
923
+
924
+
925
+
926
+
927
+
850
928
 
851
929
 
852
930
 
@@ -861,7 +939,7 @@
861
939
 
862
940
  <dt class="tag-source">Source:</dt>
863
941
  <dd class="tag-source"><ul class="dummy"><li>
864
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4178">line 4178</a>
942
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4244">line 4244</a>
865
943
  </li></ul></dd>
866
944
 
867
945
 
@@ -873,39 +951,45 @@
873
951
  </dl>
874
952
 
875
953
 
876
-
877
954
 
878
-
879
- </dd>
955
+
956
+
880
957
 
881
958
 
882
959
 
883
- <dt>
884
- <h4 class="name" id="resolvedRequestType"><span class="type-signature"></span>resolvedRequestType<span class="type-signature"> :<a href="ProtoBuf.Reflect.Message.html">ProtoBuf.Reflect.Message</a></span></h4>
960
+ <h4 class="name" id="resolvedRequestType"><span class="type-signature"></span>resolvedRequestType<span class="type-signature"> :<a href="ProtoBuf.Reflect.Message.html">ProtoBuf.Reflect.Message</a></span></h4>
885
961
 
886
-
887
- </dt>
888
- <dd>
889
-
890
- <div class="description">
891
- <p>Resolved request message type.</p>
892
- </div>
893
-
894
962
 
895
-
896
- <h5>Type:</h5>
897
- <ul>
898
- <li>
899
-
963
+
964
+
965
+ <div class="description">
966
+ <p>Resolved request message type.</p>
967
+ </div>
968
+
969
+
970
+
971
+ <h5>Type:</h5>
972
+ <ul>
973
+ <li>
974
+
900
975
  <span class="param-type"><a href="ProtoBuf.Reflect.Message.html">ProtoBuf.Reflect.Message</a></span>
901
976
 
902
977
 
903
- </li>
904
- </ul>
978
+ </li>
979
+ </ul>
980
+
981
+
982
+
983
+
984
+
985
+ <dl class="details">
986
+
905
987
 
906
988
 
907
989
 
908
- <dl class="details">
990
+
991
+
992
+
909
993
 
910
994
 
911
995
 
@@ -927,7 +1011,7 @@
927
1011
 
928
1012
  <dt class="tag-source">Source:</dt>
929
1013
  <dd class="tag-source"><ul class="dummy"><li>
930
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4192">line 4192</a>
1014
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4258">line 4258</a>
931
1015
  </li></ul></dd>
932
1016
 
933
1017
 
@@ -939,39 +1023,45 @@
939
1023
  </dl>
940
1024
 
941
1025
 
942
-
943
1026
 
944
-
945
- </dd>
1027
+
1028
+
946
1029
 
947
1030
 
948
1031
 
949
- <dt>
950
- <h4 class="name" id="resolvedResponseType"><span class="type-signature"></span>resolvedResponseType<span class="type-signature"> :<a href="ProtoBuf.Reflect.Message.html">ProtoBuf.Reflect.Message</a></span></h4>
1032
+ <h4 class="name" id="resolvedResponseType"><span class="type-signature"></span>resolvedResponseType<span class="type-signature"> :<a href="ProtoBuf.Reflect.Message.html">ProtoBuf.Reflect.Message</a></span></h4>
951
1033
 
952
-
953
- </dt>
954
- <dd>
955
-
956
- <div class="description">
957
- <p>Resolved response message type.</p>
958
- </div>
959
-
960
1034
 
961
-
962
- <h5>Type:</h5>
963
- <ul>
964
- <li>
965
-
1035
+
1036
+
1037
+ <div class="description">
1038
+ <p>Resolved response message type.</p>
1039
+ </div>
1040
+
1041
+
1042
+
1043
+ <h5>Type:</h5>
1044
+ <ul>
1045
+ <li>
1046
+
966
1047
  <span class="param-type"><a href="ProtoBuf.Reflect.Message.html">ProtoBuf.Reflect.Message</a></span>
967
1048
 
968
1049
 
969
- </li>
970
- </ul>
1050
+ </li>
1051
+ </ul>
1052
+
1053
+
1054
+
1055
+
1056
+
1057
+ <dl class="details">
1058
+
971
1059
 
972
1060
 
973
1061
 
974
- <dl class="details">
1062
+
1063
+
1064
+
975
1065
 
976
1066
 
977
1067
 
@@ -993,7 +1083,7 @@
993
1083
 
994
1084
  <dt class="tag-source">Source:</dt>
995
1085
  <dd class="tag-source"><ul class="dummy"><li>
996
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4199">line 4199</a>
1086
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4265">line 4265</a>
997
1087
  </li></ul></dd>
998
1088
 
999
1089
 
@@ -1005,39 +1095,45 @@
1005
1095
  </dl>
1006
1096
 
1007
1097
 
1008
-
1009
1098
 
1010
-
1011
- </dd>
1099
+
1100
+
1012
1101
 
1013
1102
 
1014
1103
 
1015
- <dt>
1016
- <h4 class="name" id="responseName"><span class="type-signature"></span>responseName<span class="type-signature"> :string</span></h4>
1104
+ <h4 class="name" id="responseName"><span class="type-signature"></span>responseName<span class="type-signature"> :string</span></h4>
1017
1105
 
1018
-
1019
- </dt>
1020
- <dd>
1021
-
1022
- <div class="description">
1023
- <p>Response message name.</p>
1024
- </div>
1025
-
1026
1106
 
1027
-
1028
- <h5>Type:</h5>
1029
- <ul>
1030
- <li>
1031
-
1107
+
1108
+
1109
+ <div class="description">
1110
+ <p>Response message name.</p>
1111
+ </div>
1112
+
1113
+
1114
+
1115
+ <h5>Type:</h5>
1116
+ <ul>
1117
+ <li>
1118
+
1032
1119
  <span class="param-type">string</span>
1033
1120
 
1034
1121
 
1035
- </li>
1036
- </ul>
1122
+ </li>
1123
+ </ul>
1124
+
1125
+
1126
+
1127
+
1128
+
1129
+ <dl class="details">
1130
+
1037
1131
 
1038
1132
 
1039
1133
 
1040
- <dl class="details">
1134
+
1135
+
1136
+
1041
1137
 
1042
1138
 
1043
1139
 
@@ -1059,7 +1155,7 @@
1059
1155
 
1060
1156
  <dt class="tag-source">Source:</dt>
1061
1157
  <dd class="tag-source"><ul class="dummy"><li>
1062
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4171">line 4171</a>
1158
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4237">line 4237</a>
1063
1159
  </li></ul></dd>
1064
1160
 
1065
1161
 
@@ -1071,39 +1167,45 @@
1071
1167
  </dl>
1072
1168
 
1073
1169
 
1074
-
1075
1170
 
1076
-
1077
- </dd>
1171
+
1172
+
1078
1173
 
1079
1174
 
1080
1175
 
1081
- <dt>
1082
- <h4 class="name" id="responseStream"><span class="type-signature"></span>responseStream<span class="type-signature"> :bool</span></h4>
1176
+ <h4 class="name" id="responseStream"><span class="type-signature"></span>responseStream<span class="type-signature"> :bool</span></h4>
1083
1177
 
1084
-
1085
- </dt>
1086
- <dd>
1087
-
1088
- <div class="description">
1089
- <p>Whether responses are streamed</p>
1090
- </div>
1091
-
1092
1178
 
1093
-
1094
- <h5>Type:</h5>
1095
- <ul>
1096
- <li>
1097
-
1179
+
1180
+
1181
+ <div class="description">
1182
+ <p>Whether responses are streamed</p>
1183
+ </div>
1184
+
1185
+
1186
+
1187
+ <h5>Type:</h5>
1188
+ <ul>
1189
+ <li>
1190
+
1098
1191
  <span class="param-type">bool</span>
1099
1192
 
1100
1193
 
1101
- </li>
1102
- </ul>
1194
+ </li>
1195
+ </ul>
1196
+
1197
+
1198
+
1199
+
1200
+
1201
+ <dl class="details">
1202
+
1103
1203
 
1104
1204
 
1105
1205
 
1106
- <dl class="details">
1206
+
1207
+
1208
+
1107
1209
 
1108
1210
 
1109
1211
 
@@ -1125,7 +1227,7 @@
1125
1227
 
1126
1228
  <dt class="tag-source">Source:</dt>
1127
1229
  <dd class="tag-source"><ul class="dummy"><li>
1128
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4185">line 4185</a>
1230
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4251">line 4251</a>
1129
1231
  </li></ul></dd>
1130
1232
 
1131
1233
 
@@ -1137,41 +1239,44 @@
1137
1239
  </dl>
1138
1240
 
1139
1241
 
1140
-
1141
1242
 
1142
-
1143
- </dd>
1144
1243
 
1145
- </dl>
1244
+
1245
+
1246
+
1146
1247
 
1147
1248
 
1148
1249
 
1149
1250
  <h3 class="subsection-title">Methods</h3>
1150
1251
 
1151
- <dl>
1252
+
1152
1253
 
1153
- <dt>
1154
- <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
1155
1254
 
1156
1255
 
1157
- </dt>
1158
- <dd>
1159
1256
 
1160
-
1161
- <div class="description">
1162
- <p>Builds this type.</p>
1163
- </div>
1164
-
1257
+ <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
1165
1258
 
1166
1259
 
1167
1260
 
1168
-
1169
1261
 
1170
-
1171
1262
 
1172
-
1263
+ <div class="description">
1264
+ <p>Builds this type.</p>
1265
+ </div>
1266
+
1267
+
1268
+
1269
+
1270
+
1271
+
1272
+
1273
+
1274
+
1275
+
1276
+
1277
+
1278
+
1173
1279
  <dl class="details">
1174
-
1175
1280
 
1176
1281
 
1177
1282
 
@@ -1181,7 +1286,15 @@
1181
1286
  <dt class="inherited-from">Inherited From:</dt>
1182
1287
  <dd class="inherited-from"><ul class="dummy"><li>
1183
1288
  <a href="ProtoBuf.Reflect.T.html#build">ProtoBuf.Reflect.T#build</a>
1184
- </li></dd>
1289
+ </li></ul></dd>
1290
+
1291
+
1292
+
1293
+
1294
+
1295
+
1296
+
1297
+
1185
1298
 
1186
1299
 
1187
1300
 
@@ -1197,7 +1310,7 @@
1197
1310
 
1198
1311
  <dt class="tag-source">Source:</dt>
1199
1312
  <dd class="tag-source"><ul class="dummy"><li>
1200
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1444">line 1444</a>
1313
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1479">line 1479</a>
1201
1314
  </li></ul></dd>
1202
1315
 
1203
1316
 
@@ -1209,25 +1322,26 @@
1209
1322
  </dl>
1210
1323
 
1211
1324
 
1212
-
1213
1325
 
1214
-
1215
1326
 
1216
-
1217
1327
 
1218
-
1219
1328
 
1220
-
1221
- <h5>Throws:</h5>
1222
-
1223
-
1329
+
1330
+
1331
+
1332
+
1333
+
1334
+ <h5>Throws:</h5>
1335
+
1336
+
1224
1337
 
1225
1338
  <dl>
1226
1339
  <dt>
1227
1340
  <div class="param-desc">
1228
- If this type cannot be built directly
1341
+ <p>If this type cannot be built directly</p>
1229
1342
  </div>
1230
1343
  </dt>
1344
+ <dd></dd>
1231
1345
  <dt>
1232
1346
  <dl>
1233
1347
  <dt>
@@ -1241,40 +1355,44 @@
1241
1355
  </dd>
1242
1356
  </dl>
1243
1357
  </dt>
1358
+ <dd></dd>
1244
1359
  </dl>
1245
1360
 
1246
1361
 
1247
-
1248
-
1249
1362
 
1250
1363
 
1251
-
1252
- </dd>
1364
+
1365
+
1366
+
1253
1367
 
1254
1368
 
1255
1369
 
1256
- <dt>
1257
- <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>
1258
1370
 
1259
1371
 
1260
- </dt>
1261
- <dd>
1262
1372
 
1263
-
1264
- <div class="description">
1265
- <p>Builds the method's '$options' property.</p>
1266
- </div>
1267
-
1373
+ <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>
1268
1374
 
1269
1375
 
1270
1376
 
1271
-
1272
1377
 
1273
-
1274
1378
 
1275
-
1379
+ <div class="description">
1380
+ <p>Builds the method's '$options' property.</p>
1381
+ </div>
1382
+
1383
+
1384
+
1385
+
1386
+
1387
+
1388
+
1389
+
1390
+
1391
+
1392
+
1393
+
1394
+
1276
1395
  <dl class="details">
1277
-
1278
1396
 
1279
1397
 
1280
1398
 
@@ -1284,7 +1402,15 @@
1284
1402
  <dt class="inherited-from">Inherited From:</dt>
1285
1403
  <dd class="inherited-from"><ul class="dummy"><li>
1286
1404
  <a href="ProtoBuf.Reflect.Service.Method.html#buildOpt">ProtoBuf.Reflect.Service.Method#buildOpt</a>
1287
- </li></dd>
1405
+ </li></ul></dd>
1406
+
1407
+
1408
+
1409
+
1410
+
1411
+
1412
+
1413
+
1288
1414
 
1289
1415
 
1290
1416
 
@@ -1300,7 +1426,7 @@
1300
1426
 
1301
1427
  <dt class="tag-source">Source:</dt>
1302
1428
  <dd class="tag-source"><ul class="dummy"><li>
1303
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4123">line 4123</a>
1429
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4189">line 4189</a>
1304
1430
  </li></ul></dd>
1305
1431
 
1306
1432
 
@@ -1312,20 +1438,20 @@
1312
1438
  </dl>
1313
1439
 
1314
1440
 
1315
-
1316
1441
 
1317
-
1318
1442
 
1319
-
1320
1443
 
1321
-
1322
1444
 
1323
-
1324
1445
 
1325
-
1326
- <h5>Returns:</h5>
1327
-
1328
-
1446
+
1447
+
1448
+
1449
+
1450
+
1451
+
1452
+ <h5>Returns:</h5>
1453
+
1454
+
1329
1455
 
1330
1456
 
1331
1457
  <dl>
@@ -1340,35 +1466,38 @@
1340
1466
  </dd>
1341
1467
  </dl>
1342
1468
 
1343
-
1344
-
1345
1469
 
1346
- </dd>
1470
+
1471
+
1347
1472
 
1348
1473
 
1349
1474
 
1350
- <dt>
1351
- <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
1352
1475
 
1353
1476
 
1354
- </dt>
1355
- <dd>
1356
1477
 
1357
-
1358
- <div class="description">
1359
- <p>Returns the fully qualified name of this object.</p>
1360
- </div>
1361
-
1478
+ <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
1362
1479
 
1363
1480
 
1364
1481
 
1365
-
1366
1482
 
1367
-
1368
1483
 
1369
-
1484
+ <div class="description">
1485
+ <p>Returns the fully qualified name of this object.</p>
1486
+ </div>
1487
+
1488
+
1489
+
1490
+
1491
+
1492
+
1493
+
1494
+
1495
+
1496
+
1497
+
1498
+
1499
+
1370
1500
  <dl class="details">
1371
-
1372
1501
 
1373
1502
 
1374
1503
 
@@ -1378,7 +1507,15 @@
1378
1507
  <dt class="inherited-from">Inherited From:</dt>
1379
1508
  <dd class="inherited-from"><ul class="dummy"><li>
1380
1509
  <a href="ProtoBuf.Reflect.T.html#fqn">ProtoBuf.Reflect.T#fqn</a>
1381
- </li></dd>
1510
+ </li></ul></dd>
1511
+
1512
+
1513
+
1514
+
1515
+
1516
+
1517
+
1518
+
1382
1519
 
1383
1520
 
1384
1521
 
@@ -1394,7 +1531,7 @@
1394
1531
 
1395
1532
  <dt class="tag-source">Source:</dt>
1396
1533
  <dd class="tag-source"><ul class="dummy"><li>
1397
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1417">line 1417</a>
1534
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1452">line 1452</a>
1398
1535
  </li></ul></dd>
1399
1536
 
1400
1537
 
@@ -1406,20 +1543,20 @@
1406
1543
  </dl>
1407
1544
 
1408
1545
 
1409
-
1410
1546
 
1411
-
1412
1547
 
1413
-
1414
1548
 
1415
-
1416
1549
 
1417
-
1418
1550
 
1419
-
1420
- <h5>Returns:</h5>
1421
-
1422
-
1551
+
1552
+
1553
+
1554
+
1555
+
1556
+
1557
+ <h5>Returns:</h5>
1558
+
1559
+
1423
1560
  <div class="param-desc">
1424
1561
  <p>Fully qualified name as of &quot;.PATH.TO.THIS&quot;</p>
1425
1562
  </div>
@@ -1438,33 +1575,35 @@
1438
1575
  </dd>
1439
1576
  </dl>
1440
1577
 
1441
-
1442
-
1443
1578
 
1444
- </dd>
1579
+
1580
+
1445
1581
 
1446
1582
 
1447
1583
 
1448
- <dt>
1449
- <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>
1450
1584
 
1451
1585
 
1452
- </dt>
1453
- <dd>
1454
1586
 
1455
-
1456
- <div class="description">
1457
- <p>Returns a string representation of this Reflect object (its fully qualified name).</p>
1458
- </div>
1459
-
1587
+ <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>
1460
1588
 
1461
1589
 
1462
1590
 
1463
-
1464
1591
 
1592
+
1593
+ <div class="description">
1594
+ <p>Returns a string representation of this Reflect object (its fully qualified name).</p>
1595
+ </div>
1596
+
1597
+
1598
+
1599
+
1600
+
1601
+
1602
+
1603
+
1604
+
1605
+ <h5>Parameters:</h5>
1465
1606
 
1466
- <h5>Parameters:</h5>
1467
-
1468
1607
 
1469
1608
  <table class="params">
1470
1609
  <thead>
@@ -1522,11 +1661,13 @@
1522
1661
 
1523
1662
  </tbody>
1524
1663
  </table>
1525
-
1526
1664
 
1527
-
1665
+
1666
+
1667
+
1668
+
1669
+
1528
1670
  <dl class="details">
1529
-
1530
1671
 
1531
1672
 
1532
1673
 
@@ -1536,7 +1677,15 @@
1536
1677
  <dt class="inherited-from">Inherited From:</dt>
1537
1678
  <dd class="inherited-from"><ul class="dummy"><li>
1538
1679
  <a href="ProtoBuf.Reflect.T.html#toString">ProtoBuf.Reflect.T#toString</a>
1539
- </li></dd>
1680
+ </li></ul></dd>
1681
+
1682
+
1683
+
1684
+
1685
+
1686
+
1687
+
1688
+
1540
1689
 
1541
1690
 
1542
1691
 
@@ -1552,7 +1701,7 @@
1552
1701
 
1553
1702
  <dt class="tag-source">Source:</dt>
1554
1703
  <dd class="tag-source"><ul class="dummy"><li>
1555
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1435">line 1435</a>
1704
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1470">line 1470</a>
1556
1705
  </li></ul></dd>
1557
1706
 
1558
1707
 
@@ -1564,32 +1713,31 @@
1564
1713
  </dl>
1565
1714
 
1566
1715
 
1567
-
1568
1716
 
1569
-
1570
1717
 
1571
-
1572
1718
 
1573
-
1574
1719
 
1575
-
1576
1720
 
1577
-
1578
- <h5>Returns:</h5>
1579
-
1580
-
1721
+
1722
+
1723
+
1724
+
1725
+
1726
+
1727
+ <h5>Returns:</h5>
1728
+
1729
+
1581
1730
  <div class="param-desc">
1582
1731
  <p>String representation</p>
1583
1732
  </div>
1584
1733
 
1585
1734
 
1586
1735
 
1587
-
1588
-
1589
1736
 
1590
- </dd>
1591
1737
 
1592
- </dl>
1738
+
1739
+
1740
+
1593
1741
 
1594
1742
 
1595
1743
 
@@ -1605,13 +1753,13 @@
1605
1753
  </div>
1606
1754
 
1607
1755
  <nav>
1608
- <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>
1756
+ <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>
1609
1757
  </nav>
1610
1758
 
1611
- <br clear="both">
1759
+ <br class="clear">
1612
1760
 
1613
1761
  <footer>
1614
- 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)
1762
+ 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)
1615
1763
  </footer>
1616
1764
 
1617
1765
  <script> prettyPrint(); </script>