protobufjs 4.1.2 → 5.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (188) hide show
  1. package/.travis.yml +3 -1
  2. package/README.md +147 -25
  3. package/bin/pbjs +2 -2
  4. package/bower.json +3 -3
  5. package/cli/pbjs/targets/amd.js +1 -1
  6. package/cli/pbjs/targets/json.js +9 -1
  7. package/cli/pbjs/targets/proto.js +48 -24
  8. package/cli/pbjs/util.js +1 -1
  9. package/cli/pbjs.js +9 -2
  10. package/dist/README.md +10 -10
  11. package/dist/{ProtoBuf-light.js → protobuf-light.js} +207 -152
  12. package/dist/protobuf-light.min.js +94 -0
  13. package/dist/protobuf-light.min.js.gz +0 -0
  14. package/dist/protobuf-light.min.map +8 -0
  15. package/dist/{ProtoBuf.js → protobuf.js} +265 -175
  16. package/dist/protobuf.min.js +116 -0
  17. package/dist/protobuf.min.js.gz +0 -0
  18. package/dist/protobuf.min.map +8 -0
  19. package/docs/ProtoBuf.Builder.Message.html +1473 -967
  20. package/docs/ProtoBuf.Builder.Service.html +266 -197
  21. package/docs/ProtoBuf.Builder.html +758 -542
  22. package/docs/ProtoBuf.DotProto.Parser.html +223 -161
  23. package/docs/ProtoBuf.DotProto.Tokenizer.html +344 -248
  24. package/docs/ProtoBuf.DotProto.html +20 -12
  25. package/docs/ProtoBuf.Element.html +554 -554
  26. package/docs/ProtoBuf.Map.html +158 -123
  27. package/docs/ProtoBuf.Reflect.Element.html +286 -143
  28. package/docs/ProtoBuf.Reflect.Enum.Value.html +329 -228
  29. package/docs/ProtoBuf.Reflect.Enum.html +757 -537
  30. package/docs/ProtoBuf.Reflect.Extension.html +73 -56
  31. package/docs/ProtoBuf.Reflect.Message.ExtensionField.html +1013 -740
  32. package/docs/ProtoBuf.Reflect.Message.Field.html +926 -649
  33. package/docs/ProtoBuf.Reflect.Message.OneOf.html +327 -245
  34. package/docs/ProtoBuf.Reflect.Message.html +919 -652
  35. package/docs/ProtoBuf.Reflect.Namespace.html +648 -447
  36. package/docs/ProtoBuf.Reflect.Service.Method.html +363 -251
  37. package/docs/ProtoBuf.Reflect.Service.RPCMethod.html +545 -397
  38. package/docs/ProtoBuf.Reflect.Service.html +721 -511
  39. package/docs/ProtoBuf.Reflect.T.html +268 -197
  40. package/docs/ProtoBuf.Reflect.html +20 -12
  41. package/docs/ProtoBuf.Util.html +169 -118
  42. package/docs/ProtoBuf.html +840 -628
  43. package/docs/ProtoBuf.js.html +271 -180
  44. package/docs/fonts/OpenSans-Bold-webfont.eot +0 -0
  45. package/docs/fonts/OpenSans-Bold-webfont.svg +1830 -0
  46. package/docs/fonts/OpenSans-Bold-webfont.woff +0 -0
  47. package/docs/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
  48. package/docs/fonts/OpenSans-BoldItalic-webfont.svg +1830 -0
  49. package/docs/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
  50. package/docs/fonts/OpenSans-Italic-webfont.eot +0 -0
  51. package/docs/fonts/OpenSans-Italic-webfont.svg +1830 -0
  52. package/docs/fonts/OpenSans-Italic-webfont.woff +0 -0
  53. package/docs/fonts/OpenSans-Light-webfont.eot +0 -0
  54. package/docs/fonts/OpenSans-Light-webfont.svg +1831 -0
  55. package/docs/fonts/OpenSans-Light-webfont.woff +0 -0
  56. package/docs/fonts/OpenSans-LightItalic-webfont.eot +0 -0
  57. package/docs/fonts/OpenSans-LightItalic-webfont.svg +1835 -0
  58. package/docs/fonts/OpenSans-LightItalic-webfont.woff +0 -0
  59. package/docs/fonts/OpenSans-Regular-webfont.eot +0 -0
  60. package/docs/fonts/OpenSans-Regular-webfont.svg +1831 -0
  61. package/docs/fonts/OpenSans-Regular-webfont.woff +0 -0
  62. package/docs/index.html +7 -5
  63. package/docs/styles/jsdoc-default.css +95 -75
  64. package/docs/styles/prettify-tomorrow.css +1 -1
  65. package/donate.png +0 -0
  66. package/examples/protoify/json.js +123 -123
  67. package/examples/protoify/json.json +123 -123
  68. package/examples/websocket/server.js +4 -4
  69. package/externs/{ProtoBuf.js → protobuf.js} +933 -922
  70. package/index.js +1 -18
  71. package/jsdoc.json +1 -1
  72. package/package.json +11 -11
  73. package/protobuf.png +0 -0
  74. package/scripts/build.js +53 -58
  75. package/src/ProtoBuf/Builder/Message.js +18 -9
  76. package/src/ProtoBuf/Builder/Service.js +3 -0
  77. package/src/ProtoBuf/Builder.js +34 -10
  78. package/src/ProtoBuf/DotProto/Parser.js +58 -23
  79. package/src/ProtoBuf/Reflect/Element.js +17 -4
  80. package/src/ProtoBuf/Reflect/Message/Field.js +6 -5
  81. package/src/ProtoBuf/Reflect/Message.js +9 -4
  82. package/src/ProtoBuf/Util.js +116 -116
  83. package/src/bower.json +2 -2
  84. package/src/google/protobuf/descriptor.json +55 -15
  85. package/src/{ProtoBuf.js → protobuf.js} +0 -0
  86. package/src/wrap.js +4 -4
  87. package/tests/bench.txt +373 -373
  88. package/tests/complex.json +8 -1
  89. package/tests/custom-options.json +169 -169
  90. package/tests/extend.json +71 -71
  91. package/tests/imports-weak.proto +7 -0
  92. package/tests/imports.json +83 -83
  93. package/tests/nodeunit-browser/nodeunit.css +70 -70
  94. package/tests/nodeunit-browser/nodeunit.js +2108 -2108
  95. package/tests/options.json +32 -32
  96. package/tests/proto2js/Bar.json +46 -46
  97. package/tests/suite.js +107 -82
  98. package/ProtoBuf.png +0 -0
  99. package/dist/ProtoBuf-light.min.js +0 -87
  100. package/dist/ProtoBuf-light.min.js.gz +0 -0
  101. package/dist/ProtoBuf-light.min.map +0 -8
  102. package/dist/ProtoBuf.min.js +0 -108
  103. package/dist/ProtoBuf.min.js.gz +0 -0
  104. package/dist/ProtoBuf.min.map +0 -8
  105. package/externs/ByteBuffer.js +0 -767
  106. package/externs/Long.js +0 -328
  107. package/sandbox/gapi/googleapis/google/api/annotations.proto +0 -29
  108. package/sandbox/gapi/googleapis/google/api/http.proto +0 -245
  109. package/sandbox/gapi/googleapis/google/datastore/v1beta3/datastore.proto +0 -281
  110. package/sandbox/gapi/googleapis/google/datastore/v1beta3/entity.proto +0 -189
  111. package/sandbox/gapi/googleapis/google/datastore/v1beta3/query.proto +0 -281
  112. package/sandbox/gapi/googleapis/google/longrunning/operations.proto +0 -144
  113. package/sandbox/gapi/googleapis/google/protobuf/any.proto +0 -98
  114. package/sandbox/gapi/googleapis/google/protobuf/any_test.proto +0 -41
  115. package/sandbox/gapi/googleapis/google/protobuf/api.proto +0 -201
  116. package/sandbox/gapi/googleapis/google/protobuf/descriptor.proto +0 -773
  117. package/sandbox/gapi/googleapis/google/protobuf/duration.proto +0 -95
  118. package/sandbox/gapi/googleapis/google/protobuf/empty.proto +0 -50
  119. package/sandbox/gapi/googleapis/google/protobuf/field_mask.proto +0 -167
  120. package/sandbox/gapi/googleapis/google/protobuf/map_lite_unittest.proto +0 -130
  121. package/sandbox/gapi/googleapis/google/protobuf/map_proto2_unittest.proto +0 -60
  122. package/sandbox/gapi/googleapis/google/protobuf/map_unittest.proto +0 -129
  123. package/sandbox/gapi/googleapis/google/protobuf/map_unittest_proto3.proto +0 -120
  124. package/sandbox/gapi/googleapis/google/protobuf/source_context.proto +0 -47
  125. package/sandbox/gapi/googleapis/google/protobuf/struct.proto +0 -94
  126. package/sandbox/gapi/googleapis/google/protobuf/timestamp.proto +0 -107
  127. package/sandbox/gapi/googleapis/google/protobuf/type.proto +0 -176
  128. package/sandbox/gapi/googleapis/google/protobuf/unittest.proto +0 -878
  129. package/sandbox/gapi/googleapis/google/protobuf/unittest_arena.proto +0 -46
  130. package/sandbox/gapi/googleapis/google/protobuf/unittest_custom_options.proto +0 -394
  131. package/sandbox/gapi/googleapis/google/protobuf/unittest_drop_unknown_fields.proto +0 -58
  132. package/sandbox/gapi/googleapis/google/protobuf/unittest_embed_optimize_for.proto +0 -51
  133. package/sandbox/gapi/googleapis/google/protobuf/unittest_empty.proto +0 -38
  134. package/sandbox/gapi/googleapis/google/protobuf/unittest_enormous_descriptor.proto +0 -1048
  135. package/sandbox/gapi/googleapis/google/protobuf/unittest_import.proto +0 -66
  136. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_lite.proto +0 -52
  137. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_proto3.proto +0 -68
  138. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public.proto +0 -41
  139. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_lite.proto +0 -43
  140. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_proto3.proto +0 -42
  141. package/sandbox/gapi/googleapis/google/protobuf/unittest_lite.proto +0 -385
  142. package/sandbox/gapi/googleapis/google/protobuf/unittest_lite_imports_nonlite.proto +0 -44
  143. package/sandbox/gapi/googleapis/google/protobuf/unittest_mset.proto +0 -82
  144. package/sandbox/gapi/googleapis/google/protobuf/unittest_mset_wire_format.proto +0 -52
  145. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena.proto +0 -202
  146. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_import.proto +0 -37
  147. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_lite.proto +0 -42
  148. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_field_presence.proto +0 -138
  149. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_generic_services.proto +0 -54
  150. package/sandbox/gapi/googleapis/google/protobuf/unittest_optimize_for.proto +0 -67
  151. package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum.proto +0 -71
  152. package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum2.proto +0 -50
  153. package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3.proto +0 -388
  154. package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3_arena.proto +0 -206
  155. package/sandbox/gapi/googleapis/google/protobuf/unittest_well_known_types.proto +0 -112
  156. package/sandbox/gapi/googleapis/google/protobuf/unknown_enum_test.proto +0 -62
  157. package/sandbox/gapi/googleapis/google/protobuf/wrappers.proto +0 -117
  158. package/sandbox/gapi/googleapis/google/rpc/code.proto +0 -190
  159. package/sandbox/gapi/googleapis/google/rpc/error_details.proto +0 -157
  160. package/sandbox/gapi/googleapis/google/rpc/status.proto +0 -90
  161. package/sandbox/gapi/googleapis/google/type/color.proto +0 -163
  162. package/sandbox/gapi/googleapis/google/type/date.proto +0 -43
  163. package/sandbox/gapi/googleapis/google/type/dayofweek.proto +0 -50
  164. package/sandbox/gapi/googleapis/google/type/latlng.proto +0 -36
  165. package/sandbox/gapi/googleapis/google/type/money.proto +0 -40
  166. package/sandbox/gapi/googleapis/google/type/timeofday.proto +0 -42
  167. package/sandbox/gapi/test.js +0 -17
  168. package/sandbox/gapi/test.proto +0 -12
  169. package/sandbox/issue146/MyOptions.proto +0 -28
  170. package/sandbox/issue146/Sample.proto +0 -21
  171. package/sandbox/issue146/main.js +0 -3
  172. package/sandbox/issue147/enum.proto +0 -8
  173. package/sandbox/issue147/main.js +0 -3
  174. package/sandbox/issue182/commands.proto +0 -10
  175. package/sandbox/issue182/execute.js +0 -22
  176. package/sandbox/issue182/session_commands.proto +0 -14
  177. package/sandbox/issue289/A.proto +0 -8
  178. package/sandbox/issue289/B.proto +0 -8
  179. package/sandbox/issue289/common.proto +0 -5
  180. package/sandbox/issue289/main.js +0 -7
  181. package/sandbox/issue300/IAuth.proto +0 -14
  182. package/sandbox/issue300/Request.proto +0 -14
  183. package/sandbox/issue300/main.js +0 -26
  184. package/sandbox/issue42/innerextend.proto +0 -18
  185. package/sandbox/issue42/main.js +0 -8
  186. package/sandbox/issue42/outerextend.proto +0 -17
  187. package/tests/gtfs-realtime.proto +0 -552
  188. package/webpack.config.js +0 -9
@@ -23,43 +23,47 @@
23
23
 
24
24
 
25
25
 
26
+
26
27
  <section>
27
28
 
28
29
  <header>
29
- <h2>
30
- <span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.Reflect.html">.Reflect</a>.</span>
31
30
 
32
- Namespace
33
- </h2>
31
+ <h2>
32
+ <span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.Reflect.html">.Reflect</a>.</span>
33
+
34
+ Namespace
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="Namespace"><span class="type-signature"></span>new Namespace<span class="signature">(builder<span class="signature-attributes">non-null</span>, parent<span class="signature-attributes">nullable</span>, name, options<span class="signature-attributes">opt</span>, syntax<span class="signature-attributes">nullable</span>)</span><span class="type-signature"></span></h4>
45
48
 
46
49
 
47
- </dt>
48
- <dd>
49
50
 
50
-
51
- <div class="description">
52
- <p>Constructs a new Namespace.</p>
53
- </div>
54
-
55
51
 
56
-
57
52
 
58
-
53
+ <div class="description">
54
+ <p>Constructs a new Namespace.</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>
@@ -245,10 +249,20 @@
245
249
 
246
250
  </tbody>
247
251
  </table>
252
+
253
+
254
+
255
+
256
+
257
+
258
+ <dl class="details">
259
+
248
260
 
249
261
 
250
262
 
251
- <dl class="details">
263
+
264
+
265
+
252
266
 
253
267
 
254
268
 
@@ -270,7 +284,7 @@
270
284
 
271
285
  <dt class="tag-source">Source:</dt>
272
286
  <dd class="tag-source"><ul class="dummy"><li>
273
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1465">line 1465</a>
287
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1500">line 1500</a>
274
288
  </li></ul></dd>
275
289
 
276
290
 
@@ -282,20 +296,19 @@
282
296
  </dl>
283
297
 
284
298
 
285
-
286
299
 
287
-
288
300
 
289
-
290
301
 
291
-
292
302
 
293
-
294
303
 
295
-
296
304
 
297
-
298
- </dd>
305
+
306
+
307
+
308
+
309
+
310
+
311
+
299
312
 
300
313
 
301
314
  </div>
@@ -303,10 +316,13 @@
303
316
 
304
317
  <h3 class="subsection-title">Extends</h3>
305
318
 
306
- <ul>
307
- <li><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></li>
308
- </ul>
309
-
319
+
320
+
321
+
322
+ <ul>
323
+ <li><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></li>
324
+ </ul>
325
+
310
326
 
311
327
 
312
328
 
@@ -321,35 +337,34 @@
321
337
 
322
338
  <h3 class="subsection-title">Members</h3>
323
339
 
324
- <dl>
340
+
325
341
 
326
- <dt>
327
- <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>
342
+ <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>
328
343
 
329
-
330
- </dt>
331
- <dd>
332
-
333
- <div class="description">
334
- <p>Builder reference.</p>
335
- </div>
336
-
337
344
 
338
-
339
- <h5>Type:</h5>
340
- <ul>
341
- <li>
342
-
345
+
346
+
347
+ <div class="description">
348
+ <p>Builder reference.</p>
349
+ </div>
350
+
351
+
352
+
353
+ <h5>Type:</h5>
354
+ <ul>
355
+ <li>
356
+
343
357
  <span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
344
358
 
345
359
 
346
- </li>
347
- </ul>
348
-
360
+ </li>
361
+ </ul>
362
+
363
+
364
+
365
+
349
366
 
350
-
351
367
  <dl class="details">
352
-
353
368
 
354
369
 
355
370
 
@@ -359,7 +374,15 @@
359
374
  <dt class="inherited-from">Inherited From:</dt>
360
375
  <dd class="inherited-from"><ul class="dummy"><li>
361
376
  <a href="ProtoBuf.Reflect.T.html#builder">ProtoBuf.Reflect.T#builder</a>
362
- </li></dd>
377
+ </li></ul></dd>
378
+
379
+
380
+
381
+
382
+
383
+
384
+
385
+
363
386
 
364
387
 
365
388
 
@@ -375,7 +398,7 @@
375
398
 
376
399
  <dt class="tag-source">Source:</dt>
377
400
  <dd class="tag-source"><ul class="dummy"><li>
378
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1382">line 1382</a>
401
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1417">line 1417</a>
379
402
  </li></ul></dd>
380
403
 
381
404
 
@@ -387,39 +410,45 @@
387
410
  </dl>
388
411
 
389
412
 
390
-
391
413
 
392
-
393
- </dd>
414
+
415
+
394
416
 
395
417
 
396
418
 
397
- <dt>
398
- <h4 class="name" id="children"><span class="type-signature">(non-null) </span>children<span class="type-signature"> :Array.&lt;<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>></span></h4>
419
+ <h4 class="name" id="children"><span class="type-signature">(non-null) </span>children<span class="type-signature"> :Array.&lt;<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>></span></h4>
399
420
 
400
-
401
- </dt>
402
- <dd>
403
-
404
- <div class="description">
405
- <p>Children inside the namespace.</p>
406
- </div>
407
-
408
421
 
409
-
410
- <h5>Type:</h5>
411
- <ul>
412
- <li>
413
-
422
+
423
+
424
+ <div class="description">
425
+ <p>Children inside the namespace.</p>
426
+ </div>
427
+
428
+
429
+
430
+ <h5>Type:</h5>
431
+ <ul>
432
+ <li>
433
+
414
434
  <span class="param-type">Array.&lt;<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>></span>
415
435
 
416
436
 
417
- </li>
418
- </ul>
437
+ </li>
438
+ </ul>
439
+
440
+
441
+
442
+
443
+
444
+ <dl class="details">
445
+
419
446
 
420
447
 
421
448
 
422
- <dl class="details">
449
+
450
+
451
+
423
452
 
424
453
 
425
454
 
@@ -441,7 +470,7 @@
441
470
 
442
471
  <dt class="tag-source">Source:</dt>
443
472
  <dd class="tag-source"><ul class="dummy"><li>
444
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1477">line 1477</a>
473
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1512">line 1512</a>
445
474
  </li></ul></dd>
446
475
 
447
476
 
@@ -453,25 +482,50 @@
453
482
  </dl>
454
483
 
455
484
 
456
-
457
485
 
458
-
459
- </dd>
486
+
487
+
460
488
 
461
489
 
462
490
 
463
- <dt>
464
- <h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"></span></h4>
491
+ <h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"> :string</span></h4>
492
+
493
+
494
+
495
+
496
+ <div class="description">
497
+ <p>Fully qualified class name</p>
498
+ </div>
499
+
500
+
501
+
502
+ <h5>Type:</h5>
503
+ <ul>
504
+ <li>
505
+
506
+ <span class="param-type">string</span>
507
+
508
+
509
+ </li>
510
+ </ul>
511
+
512
+
513
+
514
+
515
+
516
+ <dl class="details">
465
517
 
466
518
 
467
- </dt>
468
- <dd>
519
+
469
520
 
470
521
 
471
522
 
472
523
 
473
524
 
474
- <dl class="details">
525
+ <dt class="tag-overrides">Overrides:</dt>
526
+ <dd class="tag-overrides"><ul class="dummy"><li>
527
+ <a href="ProtoBuf.Reflect.T.html#className">ProtoBuf.Reflect.T#className</a>
528
+ </li></ul></dd>
475
529
 
476
530
 
477
531
 
@@ -493,7 +547,7 @@
493
547
 
494
548
  <dt class="tag-source">Source:</dt>
495
549
  <dd class="tag-source"><ul class="dummy"><li>
496
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1471">line 1471</a>
550
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1438">line 1438</a>
497
551
  </li></ul></dd>
498
552
 
499
553
 
@@ -505,40 +559,38 @@
505
559
  </dl>
506
560
 
507
561
 
508
-
509
562
 
510
-
511
- </dd>
563
+
564
+
512
565
 
513
566
 
514
567
 
515
- <dt>
516
- <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
568
+ <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
517
569
 
518
-
519
- </dt>
520
- <dd>
521
-
522
- <div class="description">
523
- <p>Object name in namespace.</p>
524
- </div>
525
-
526
570
 
527
-
528
- <h5>Type:</h5>
529
- <ul>
530
- <li>
531
-
571
+
572
+
573
+ <div class="description">
574
+ <p>Object name in namespace.</p>
575
+ </div>
576
+
577
+
578
+
579
+ <h5>Type:</h5>
580
+ <ul>
581
+ <li>
582
+
532
583
  <span class="param-type">string</span>
533
584
 
534
585
 
535
- </li>
536
- </ul>
537
-
586
+ </li>
587
+ </ul>
588
+
589
+
590
+
591
+
538
592
 
539
-
540
593
  <dl class="details">
541
-
542
594
 
543
595
 
544
596
 
@@ -548,7 +600,15 @@
548
600
  <dt class="inherited-from">Inherited From:</dt>
549
601
  <dd class="inherited-from"><ul class="dummy"><li>
550
602
  <a href="ProtoBuf.Reflect.T.html#name">ProtoBuf.Reflect.T#name</a>
551
- </li></dd>
603
+ </li></ul></dd>
604
+
605
+
606
+
607
+
608
+
609
+
610
+
611
+
552
612
 
553
613
 
554
614
 
@@ -564,7 +624,7 @@
564
624
 
565
625
  <dt class="tag-source">Source:</dt>
566
626
  <dd class="tag-source"><ul class="dummy"><li>
567
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1396">line 1396</a>
627
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1431">line 1431</a>
568
628
  </li></ul></dd>
569
629
 
570
630
 
@@ -576,39 +636,45 @@
576
636
  </dl>
577
637
 
578
638
 
579
-
580
639
 
581
-
582
- </dd>
640
+
641
+
583
642
 
584
643
 
585
644
 
586
- <dt>
587
- <h4 class="name" id="options"><span class="type-signature">(non-null) </span>options<span class="type-signature"> :Object.&lt;string, *></span></h4>
645
+ <h4 class="name" id="options"><span class="type-signature">(non-null) </span>options<span class="type-signature"> :Object.&lt;string, *></span></h4>
588
646
 
589
-
590
- </dt>
591
- <dd>
592
-
593
- <div class="description">
594
- <p>Options.</p>
595
- </div>
596
-
597
647
 
598
-
599
- <h5>Type:</h5>
600
- <ul>
601
- <li>
602
-
648
+
649
+
650
+ <div class="description">
651
+ <p>Options.</p>
652
+ </div>
653
+
654
+
655
+
656
+ <h5>Type:</h5>
657
+ <ul>
658
+ <li>
659
+
603
660
  <span class="param-type">Object.&lt;string, *></span>
604
661
 
605
662
 
606
- </li>
607
- </ul>
663
+ </li>
664
+ </ul>
665
+
666
+
667
+
668
+
669
+
670
+ <dl class="details">
671
+
608
672
 
609
673
 
610
674
 
611
- <dl class="details">
675
+
676
+
677
+
612
678
 
613
679
 
614
680
 
@@ -630,7 +696,7 @@
630
696
 
631
697
  <dt class="tag-source">Source:</dt>
632
698
  <dd class="tag-source"><ul class="dummy"><li>
633
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1483">line 1483</a>
699
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1518">line 1518</a>
634
700
  </li></ul></dd>
635
701
 
636
702
 
@@ -642,40 +708,38 @@
642
708
  </dl>
643
709
 
644
710
 
645
-
646
711
 
647
-
648
- </dd>
712
+
713
+
649
714
 
650
715
 
651
716
 
652
- <dt>
653
- <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>
717
+ <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>
654
718
 
655
-
656
- </dt>
657
- <dd>
658
-
659
- <div class="description">
660
- <p>Parent object.</p>
661
- </div>
662
-
663
719
 
664
-
665
- <h5>Type:</h5>
666
- <ul>
667
- <li>
668
-
720
+
721
+
722
+ <div class="description">
723
+ <p>Parent object.</p>
724
+ </div>
725
+
726
+
727
+
728
+ <h5>Type:</h5>
729
+ <ul>
730
+ <li>
731
+
669
732
  <span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
670
733
 
671
734
 
672
- </li>
673
- </ul>
674
-
735
+ </li>
736
+ </ul>
737
+
738
+
739
+
740
+
675
741
 
676
-
677
742
  <dl class="details">
678
-
679
743
 
680
744
 
681
745
 
@@ -685,7 +749,15 @@
685
749
  <dt class="inherited-from">Inherited From:</dt>
686
750
  <dd class="inherited-from"><ul class="dummy"><li>
687
751
  <a href="ProtoBuf.Reflect.T.html#parent">ProtoBuf.Reflect.T#parent</a>
688
- </li></dd>
752
+ </li></ul></dd>
753
+
754
+
755
+
756
+
757
+
758
+
759
+
760
+
689
761
 
690
762
 
691
763
 
@@ -701,7 +773,7 @@
701
773
 
702
774
  <dt class="tag-source">Source:</dt>
703
775
  <dd class="tag-source"><ul class="dummy"><li>
704
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1389">line 1389</a>
776
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1424">line 1424</a>
705
777
  </li></ul></dd>
706
778
 
707
779
 
@@ -713,39 +785,45 @@
713
785
  </dl>
714
786
 
715
787
 
716
-
717
788
 
718
-
719
- </dd>
789
+
790
+
720
791
 
721
792
 
722
793
 
723
- <dt>
724
- <h4 class="name" id="syntax"><span class="type-signature">(non-null) </span>syntax<span class="type-signature"> :string</span></h4>
794
+ <h4 class="name" id="syntax"><span class="type-signature">(non-null) </span>syntax<span class="type-signature"> :string</span></h4>
725
795
 
726
-
727
- </dt>
728
- <dd>
729
-
730
- <div class="description">
731
- <p>Syntax level (e.g., proto2 or proto3).</p>
732
- </div>
733
-
734
796
 
735
-
736
- <h5>Type:</h5>
737
- <ul>
738
- <li>
739
-
797
+
798
+
799
+ <div class="description">
800
+ <p>Syntax level (e.g., proto2 or proto3).</p>
801
+ </div>
802
+
803
+
804
+
805
+ <h5>Type:</h5>
806
+ <ul>
807
+ <li>
808
+
740
809
  <span class="param-type">string</span>
741
810
 
742
811
 
743
- </li>
744
- </ul>
812
+ </li>
813
+ </ul>
814
+
815
+
816
+
817
+
818
+
819
+ <dl class="details">
820
+
745
821
 
746
822
 
747
823
 
748
- <dl class="details">
824
+
825
+
826
+
749
827
 
750
828
 
751
829
 
@@ -767,7 +845,7 @@
767
845
 
768
846
  <dt class="tag-source">Source:</dt>
769
847
  <dd class="tag-source"><ul class="dummy"><li>
770
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1489">line 1489</a>
848
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1524">line 1524</a>
771
849
  </li></ul></dd>
772
850
 
773
851
 
@@ -779,39 +857,41 @@
779
857
  </dl>
780
858
 
781
859
 
782
-
783
860
 
784
-
785
- </dd>
786
861
 
787
- </dl>
862
+
863
+
864
+
788
865
 
789
866
 
790
867
 
791
868
  <h3 class="subsection-title">Methods</h3>
792
869
 
793
- <dl>
870
+
794
871
 
795
- <dt>
796
- <h4 class="name" id="addChild"><span class="type-signature"></span>addChild<span class="signature">(child)</span><span class="type-signature"></span></h4>
797
872
 
798
873
 
799
- </dt>
800
- <dd>
801
874
 
802
-
803
- <div class="description">
804
- <p>Adds a child to the namespace.</p>
805
- </div>
806
-
875
+ <h4 class="name" id="addChild"><span class="type-signature"></span>addChild<span class="signature">(child)</span><span class="type-signature"></span></h4>
807
876
 
808
877
 
809
878
 
810
-
811
879
 
880
+
881
+ <div class="description">
882
+ <p>Adds a child to the namespace.</p>
883
+ </div>
884
+
885
+
886
+
887
+
888
+
889
+
890
+
891
+
892
+
893
+ <h5>Parameters:</h5>
812
894
 
813
- <h5>Parameters:</h5>
814
-
815
895
 
816
896
  <table class="params">
817
897
  <thead>
@@ -857,10 +937,20 @@
857
937
 
858
938
  </tbody>
859
939
  </table>
940
+
941
+
942
+
943
+
944
+
945
+
946
+ <dl class="details">
947
+
860
948
 
861
949
 
862
950
 
863
- <dl class="details">
951
+
952
+
953
+
864
954
 
865
955
 
866
956
 
@@ -882,7 +972,7 @@
882
972
 
883
973
  <dt class="tag-source">Source:</dt>
884
974
  <dd class="tag-source"><ul class="dummy"><li>
885
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1521">line 1521</a>
975
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1556">line 1556</a>
886
976
  </li></ul></dd>
887
977
 
888
978
 
@@ -894,25 +984,26 @@
894
984
  </dl>
895
985
 
896
986
 
897
-
898
987
 
899
-
900
988
 
901
-
902
989
 
903
-
904
990
 
905
-
906
- <h5>Throws:</h5>
907
-
908
-
991
+
992
+
993
+
994
+
995
+
996
+ <h5>Throws:</h5>
997
+
998
+
909
999
 
910
1000
  <dl>
911
1001
  <dt>
912
1002
  <div class="param-desc">
913
- If the child cannot be added (duplicate)
1003
+ <p>If the child cannot be added (duplicate)</p>
914
1004
  </div>
915
1005
  </dt>
1006
+ <dd></dd>
916
1007
  <dt>
917
1008
  <dl>
918
1009
  <dt>
@@ -926,30 +1017,44 @@
926
1017
  </dd>
927
1018
  </dl>
928
1019
  </dt>
1020
+ <dd></dd>
929
1021
  </dl>
930
1022
 
931
1023
 
932
-
933
-
934
1024
 
935
1025
 
936
-
937
- </dd>
1026
+
1027
+
1028
+
938
1029
 
939
1030
 
940
1031
 
941
- <dt>
942
- <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"> &rarr; {Object.&lt;string, function(), Object>}</span></h4>
943
1032
 
944
1033
 
945
- </dt>
946
- <dd>
1034
+
1035
+ <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"> &rarr; {Object.&lt;string, (function()|Object)>}</span></h4>
947
1036
 
948
1037
 
949
- <div class="description">
950
- <p>Builds the namespace and returns the runtime counterpart.</p>
951
- </div>
952
-
1038
+
1039
+
1040
+
1041
+ <div class="description">
1042
+ <p>Builds the namespace and returns the runtime counterpart.</p>
1043
+ </div>
1044
+
1045
+
1046
+
1047
+
1048
+
1049
+
1050
+
1051
+
1052
+
1053
+
1054
+
1055
+
1056
+
1057
+ <dl class="details">
953
1058
 
954
1059
 
955
1060
 
@@ -958,7 +1063,10 @@
958
1063
 
959
1064
 
960
1065
 
961
- <dl class="details">
1066
+ <dt class="tag-overrides">Overrides:</dt>
1067
+ <dd class="tag-overrides"><ul class="dummy"><li>
1068
+ <a href="ProtoBuf.Reflect.T.html#build">ProtoBuf.Reflect.T#build</a>
1069
+ </li></ul></dd>
962
1070
 
963
1071
 
964
1072
 
@@ -980,7 +1088,7 @@
980
1088
 
981
1089
  <dt class="tag-source">Source:</dt>
982
1090
  <dd class="tag-source"><ul class="dummy"><li>
983
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1613">line 1613</a>
1091
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1648">line 1648</a>
984
1092
  </li></ul></dd>
985
1093
 
986
1094
 
@@ -992,20 +1100,20 @@
992
1100
  </dl>
993
1101
 
994
1102
 
995
-
996
1103
 
997
-
998
1104
 
999
-
1000
1105
 
1001
-
1002
1106
 
1003
-
1004
1107
 
1005
-
1006
- <h5>Returns:</h5>
1007
-
1008
-
1108
+
1109
+
1110
+
1111
+
1112
+
1113
+
1114
+ <h5>Returns:</h5>
1115
+
1116
+
1009
1117
  <div class="param-desc">
1010
1118
  <p>Runtime namespace</p>
1011
1119
  </div>
@@ -1018,40 +1126,51 @@
1018
1126
  </dt>
1019
1127
  <dd>
1020
1128
 
1021
- <span class="param-type">Object.&lt;string, function(), Object></span>
1129
+ <span class="param-type">Object.&lt;string, (function()|Object)></span>
1022
1130
 
1023
1131
 
1024
1132
  </dd>
1025
1133
  </dl>
1026
1134
 
1027
-
1028
-
1029
1135
 
1030
- </dd>
1136
+
1137
+
1031
1138
 
1032
1139
 
1033
1140
 
1034
- <dt>
1035
- <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>
1036
1141
 
1037
1142
 
1038
- </dt>
1039
- <dd>
1040
1143
 
1041
-
1042
- <div class="description">
1043
- <p>Builds the namespace's '$options' property.</p>
1044
- </div>
1045
-
1144
+ <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>
1046
1145
 
1047
1146
 
1048
1147
 
1148
+
1149
+
1150
+ <div class="description">
1151
+ <p>Builds the namespace's '$options' property.</p>
1152
+ </div>
1153
+
1154
+
1155
+
1156
+
1157
+
1158
+
1159
+
1160
+
1161
+
1162
+
1163
+
1164
+
1165
+
1166
+ <dl class="details">
1167
+
1049
1168
 
1050
1169
 
1051
1170
 
1052
1171
 
1053
1172
 
1054
- <dl class="details">
1173
+
1055
1174
 
1056
1175
 
1057
1176
 
@@ -1073,7 +1192,7 @@
1073
1192
 
1074
1193
  <dt class="tag-source">Source:</dt>
1075
1194
  <dd class="tag-source"><ul class="dummy"><li>
1076
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1631">line 1631</a>
1195
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1666">line 1666</a>
1077
1196
  </li></ul></dd>
1078
1197
 
1079
1198
 
@@ -1085,20 +1204,20 @@
1085
1204
  </dl>
1086
1205
 
1087
1206
 
1088
-
1089
1207
 
1090
-
1091
1208
 
1092
-
1093
1209
 
1094
-
1095
1210
 
1096
-
1097
1211
 
1098
-
1099
- <h5>Returns:</h5>
1100
-
1101
-
1212
+
1213
+
1214
+
1215
+
1216
+
1217
+
1218
+ <h5>Returns:</h5>
1219
+
1220
+
1102
1221
 
1103
1222
 
1104
1223
  <dl>
@@ -1113,35 +1232,38 @@
1113
1232
  </dd>
1114
1233
  </dl>
1115
1234
 
1116
-
1117
-
1118
1235
 
1119
- </dd>
1236
+
1237
+
1120
1238
 
1121
1239
 
1122
1240
 
1123
- <dt>
1124
- <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
1125
1241
 
1126
1242
 
1127
- </dt>
1128
- <dd>
1129
1243
 
1130
-
1131
- <div class="description">
1132
- <p>Returns the fully qualified name of this object.</p>
1133
- </div>
1134
-
1244
+ <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
1135
1245
 
1136
1246
 
1137
1247
 
1138
-
1139
1248
 
1140
-
1141
1249
 
1142
-
1250
+ <div class="description">
1251
+ <p>Returns the fully qualified name of this object.</p>
1252
+ </div>
1253
+
1254
+
1255
+
1256
+
1257
+
1258
+
1259
+
1260
+
1261
+
1262
+
1263
+
1264
+
1265
+
1143
1266
  <dl class="details">
1144
-
1145
1267
 
1146
1268
 
1147
1269
 
@@ -1151,7 +1273,15 @@
1151
1273
  <dt class="inherited-from">Inherited From:</dt>
1152
1274
  <dd class="inherited-from"><ul class="dummy"><li>
1153
1275
  <a href="ProtoBuf.Reflect.T.html#fqn">ProtoBuf.Reflect.T#fqn</a>
1154
- </li></dd>
1276
+ </li></ul></dd>
1277
+
1278
+
1279
+
1280
+
1281
+
1282
+
1283
+
1284
+
1155
1285
 
1156
1286
 
1157
1287
 
@@ -1167,7 +1297,7 @@
1167
1297
 
1168
1298
  <dt class="tag-source">Source:</dt>
1169
1299
  <dd class="tag-source"><ul class="dummy"><li>
1170
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1417">line 1417</a>
1300
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1452">line 1452</a>
1171
1301
  </li></ul></dd>
1172
1302
 
1173
1303
 
@@ -1179,20 +1309,20 @@
1179
1309
  </dl>
1180
1310
 
1181
1311
 
1182
-
1183
1312
 
1184
-
1185
1313
 
1186
-
1187
1314
 
1188
-
1189
1315
 
1190
-
1191
1316
 
1192
-
1193
- <h5>Returns:</h5>
1194
-
1195
-
1317
+
1318
+
1319
+
1320
+
1321
+
1322
+
1323
+ <h5>Returns:</h5>
1324
+
1325
+
1196
1326
  <div class="param-desc">
1197
1327
  <p>Fully qualified name as of &quot;.PATH.TO.THIS&quot;</p>
1198
1328
  </div>
@@ -1211,33 +1341,35 @@
1211
1341
  </dd>
1212
1342
  </dl>
1213
1343
 
1214
-
1215
-
1216
1344
 
1217
- </dd>
1345
+
1346
+
1218
1347
 
1219
1348
 
1220
1349
 
1221
- <dt>
1222
- <h4 class="name" id="getChild"><span class="type-signature"></span>getChild<span class="signature">(nameOrId)</span><span class="type-signature"> &rarr; (nullable) {<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>}</span></h4>
1223
1350
 
1224
1351
 
1225
- </dt>
1226
- <dd>
1227
1352
 
1228
-
1229
- <div class="description">
1230
- <p>Gets a child by its name or id.</p>
1231
- </div>
1232
-
1353
+ <h4 class="name" id="getChild"><span class="type-signature"></span>getChild<span class="signature">(nameOrId)</span><span class="type-signature"> &rarr; (nullable) {<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>}</span></h4>
1233
1354
 
1234
1355
 
1235
1356
 
1236
-
1237
1357
 
1358
+
1359
+ <div class="description">
1360
+ <p>Gets a child by its name or id.</p>
1361
+ </div>
1362
+
1363
+
1364
+
1365
+
1366
+
1367
+
1368
+
1369
+
1370
+
1371
+ <h5>Parameters:</h5>
1238
1372
 
1239
- <h5>Parameters:</h5>
1240
-
1241
1373
 
1242
1374
  <table class="params">
1243
1375
  <thead>
@@ -1286,10 +1418,20 @@
1286
1418
 
1287
1419
  </tbody>
1288
1420
  </table>
1421
+
1422
+
1423
+
1424
+
1425
+
1426
+
1427
+ <dl class="details">
1428
+
1289
1429
 
1290
1430
 
1291
1431
 
1292
- <dl class="details">
1432
+
1433
+
1434
+
1293
1435
 
1294
1436
 
1295
1437
 
@@ -1311,7 +1453,7 @@
1311
1453
 
1312
1454
  <dt class="tag-source">Source:</dt>
1313
1455
  <dd class="tag-source"><ul class="dummy"><li>
1314
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1541">line 1541</a>
1456
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1576">line 1576</a>
1315
1457
  </li></ul></dd>
1316
1458
 
1317
1459
 
@@ -1323,20 +1465,20 @@
1323
1465
  </dl>
1324
1466
 
1325
1467
 
1326
-
1327
1468
 
1328
-
1329
1469
 
1330
-
1331
1470
 
1332
-
1333
1471
 
1334
-
1335
1472
 
1336
-
1337
- <h5>Returns:</h5>
1338
-
1339
-
1473
+
1474
+
1475
+
1476
+
1477
+
1478
+
1479
+ <h5>Returns:</h5>
1480
+
1481
+
1340
1482
  <div class="param-desc">
1341
1483
  <p>The child or null if not found</p>
1342
1484
  </div>
@@ -1355,33 +1497,35 @@
1355
1497
  </dd>
1356
1498
  </dl>
1357
1499
 
1500
+
1501
+
1502
+
1503
+
1358
1504
 
1505
+
1359
1506
 
1360
1507
 
1361
- </dd>
1362
1508
 
1363
-
1364
-
1365
- <dt>
1366
1509
  <h4 class="name" id="getChildren"><span class="type-signature"></span>getChildren<span class="signature">(type<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Array.&lt;<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>>}</span></h4>
1367
1510
 
1368
1511
 
1369
- </dt>
1370
- <dd>
1371
1512
 
1372
-
1373
- <div class="description">
1374
- <p>Returns an array of the namespace's children.</p>
1375
- </div>
1376
-
1377
1513
 
1378
-
1379
1514
 
1380
-
1515
+ <div class="description">
1516
+ <p>Returns an array of the namespace's children.</p>
1517
+ </div>
1518
+
1519
+
1520
+
1521
+
1522
+
1523
+
1524
+
1525
+
1381
1526
 
1527
+ <h5>Parameters:</h5>
1382
1528
 
1383
- <h5>Parameters:</h5>
1384
-
1385
1529
 
1386
1530
  <table class="params">
1387
1531
  <thead>
@@ -1439,10 +1583,20 @@
1439
1583
 
1440
1584
  </tbody>
1441
1585
  </table>
1586
+
1587
+
1588
+
1589
+
1590
+
1591
+
1592
+ <dl class="details">
1593
+
1442
1594
 
1443
1595
 
1444
1596
 
1445
- <dl class="details">
1597
+
1598
+
1599
+
1446
1600
 
1447
1601
 
1448
1602
 
@@ -1464,7 +1618,7 @@
1464
1618
 
1465
1619
  <dt class="tag-source">Source:</dt>
1466
1620
  <dd class="tag-source"><ul class="dummy"><li>
1467
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1504">line 1504</a>
1621
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1539">line 1539</a>
1468
1622
  </li></ul></dd>
1469
1623
 
1470
1624
 
@@ -1476,20 +1630,20 @@
1476
1630
  </dl>
1477
1631
 
1478
1632
 
1479
-
1480
1633
 
1481
-
1482
1634
 
1483
-
1484
1635
 
1485
-
1486
1636
 
1487
-
1488
1637
 
1489
-
1490
- <h5>Returns:</h5>
1491
-
1492
-
1638
+
1639
+
1640
+
1641
+
1642
+
1643
+
1644
+ <h5>Returns:</h5>
1645
+
1646
+
1493
1647
 
1494
1648
 
1495
1649
  <dl>
@@ -1504,33 +1658,35 @@
1504
1658
  </dd>
1505
1659
  </dl>
1506
1660
 
1507
-
1508
-
1509
1661
 
1510
- </dd>
1662
+
1663
+
1511
1664
 
1512
1665
 
1513
1666
 
1514
- <dt>
1515
- <h4 class="name" id="getOption"><span class="type-signature"></span>getOption<span class="signature">(name<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {*|Object.&lt;string, *>}</span></h4>
1516
1667
 
1517
1668
 
1518
- </dt>
1519
- <dd>
1520
1669
 
1521
-
1522
- <div class="description">
1523
- <p>Gets the value assigned to the option with the specified name.</p>
1524
- </div>
1525
-
1670
+ <h4 class="name" id="getOption"><span class="type-signature"></span>getOption<span class="signature">(name<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {*|Object.&lt;string, *>}</span></h4>
1526
1671
 
1527
1672
 
1528
1673
 
1529
-
1530
1674
 
1675
+
1676
+ <div class="description">
1677
+ <p>Gets the value assigned to the option with the specified name.</p>
1678
+ </div>
1679
+
1680
+
1681
+
1682
+
1683
+
1684
+
1685
+
1686
+
1687
+
1688
+ <h5>Parameters:</h5>
1531
1689
 
1532
- <h5>Parameters:</h5>
1533
-
1534
1690
 
1535
1691
  <table class="params">
1536
1692
  <thead>
@@ -1588,10 +1744,20 @@
1588
1744
 
1589
1745
  </tbody>
1590
1746
  </table>
1747
+
1748
+
1749
+
1750
+
1751
+
1752
+
1753
+ <dl class="details">
1754
+
1591
1755
 
1592
1756
 
1593
1757
 
1594
- <dl class="details">
1758
+
1759
+
1760
+
1595
1761
 
1596
1762
 
1597
1763
 
@@ -1613,7 +1779,7 @@
1613
1779
 
1614
1780
  <dt class="tag-source">Source:</dt>
1615
1781
  <dd class="tag-source"><ul class="dummy"><li>
1616
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1652">line 1652</a>
1782
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1687">line 1687</a>
1617
1783
  </li></ul></dd>
1618
1784
 
1619
1785
 
@@ -1625,20 +1791,20 @@
1625
1791
  </dl>
1626
1792
 
1627
1793
 
1628
-
1629
1794
 
1630
-
1631
1795
 
1632
-
1633
1796
 
1634
-
1635
1797
 
1636
-
1637
1798
 
1638
-
1639
- <h5>Returns:</h5>
1640
-
1641
-
1799
+
1800
+
1801
+
1802
+
1803
+
1804
+
1805
+ <h5>Returns:</h5>
1806
+
1807
+
1642
1808
  <div class="param-desc">
1643
1809
  <p>null} Option value or NULL if there is no such option</p>
1644
1810
  </div>
@@ -1660,33 +1826,35 @@
1660
1826
  </dd>
1661
1827
  </dl>
1662
1828
 
1663
-
1664
-
1665
1829
 
1666
- </dd>
1830
+
1831
+
1667
1832
 
1668
1833
 
1669
1834
 
1670
- <dt>
1671
- <h4 class="name" id="qn"><span class="type-signature"></span>qn<span class="signature">(t<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {string}</span></h4>
1672
1835
 
1673
1836
 
1674
- </dt>
1675
- <dd>
1676
1837
 
1677
-
1678
- <div class="description">
1679
- <p>Determines the shortest qualified name of the specified type, if any, relative to this namespace.</p>
1680
- </div>
1681
-
1838
+ <h4 class="name" id="qn"><span class="type-signature"></span>qn<span class="signature">(t<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {string}</span></h4>
1682
1839
 
1683
1840
 
1684
1841
 
1685
-
1686
1842
 
1843
+
1844
+ <div class="description">
1845
+ <p>Determines the shortest qualified name of the specified type, if any, relative to this namespace.</p>
1846
+ </div>
1847
+
1848
+
1849
+
1850
+
1851
+
1852
+
1853
+
1854
+
1855
+
1856
+ <h5>Parameters:</h5>
1687
1857
 
1688
- <h5>Parameters:</h5>
1689
-
1690
1858
 
1691
1859
  <table class="params">
1692
1860
  <thead>
@@ -1732,10 +1900,20 @@
1732
1900
 
1733
1901
  </tbody>
1734
1902
  </table>
1903
+
1904
+
1905
+
1906
+
1907
+
1908
+
1909
+ <dl class="details">
1910
+
1735
1911
 
1736
1912
 
1737
1913
 
1738
- <dl class="details">
1914
+
1915
+
1916
+
1739
1917
 
1740
1918
 
1741
1919
 
@@ -1757,7 +1935,7 @@
1757
1935
 
1758
1936
  <dt class="tag-source">Source:</dt>
1759
1937
  <dd class="tag-source"><ul class="dummy"><li>
1760
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1594">line 1594</a>
1938
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1629">line 1629</a>
1761
1939
  </li></ul></dd>
1762
1940
 
1763
1941
 
@@ -1769,20 +1947,20 @@
1769
1947
  </dl>
1770
1948
 
1771
1949
 
1772
-
1773
1950
 
1774
-
1775
1951
 
1776
-
1777
1952
 
1778
-
1779
1953
 
1780
-
1781
1954
 
1782
-
1783
- <h5>Returns:</h5>
1784
-
1785
-
1955
+
1956
+
1957
+
1958
+
1959
+
1960
+
1961
+ <h5>Returns:</h5>
1962
+
1963
+
1786
1964
  <div class="param-desc">
1787
1965
  <p>The shortest qualified name or, if there is none, the fqn</p>
1788
1966
  </div>
@@ -1801,33 +1979,35 @@
1801
1979
  </dd>
1802
1980
  </dl>
1803
1981
 
1804
-
1805
-
1806
1982
 
1807
- </dd>
1983
+
1984
+
1808
1985
 
1809
1986
 
1810
1987
 
1811
- <dt>
1812
- <h4 class="name" id="resolve"><span class="type-signature"></span>resolve<span class="signature">(qn, excludeNonNamespace<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; (nullable) {<a href="ProtoBuf.Reflect.Namespace.html">ProtoBuf.Reflect.Namespace</a>}</span></h4>
1813
1988
 
1814
1989
 
1815
- </dt>
1816
- <dd>
1817
1990
 
1818
-
1819
- <div class="description">
1820
- <p>Resolves a reflect object inside of this namespace.</p>
1821
- </div>
1822
-
1991
+ <h4 class="name" id="resolve"><span class="type-signature"></span>resolve<span class="signature">(qn, excludeNonNamespace<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; (nullable) {<a href="ProtoBuf.Reflect.Namespace.html">ProtoBuf.Reflect.Namespace</a>}</span></h4>
1823
1992
 
1824
1993
 
1825
1994
 
1826
-
1827
1995
 
1996
+
1997
+ <div class="description">
1998
+ <p>Resolves a reflect object inside of this namespace.</p>
1999
+ </div>
2000
+
2001
+
2002
+
2003
+
2004
+
2005
+
2006
+
2007
+
2008
+
2009
+ <h5>Parameters:</h5>
1828
2010
 
1829
- <h5>Parameters:</h5>
1830
-
1831
2011
 
1832
2012
  <table class="params">
1833
2013
  <thead>
@@ -1919,10 +2099,20 @@
1919
2099
 
1920
2100
  </tbody>
1921
2101
  </table>
2102
+
2103
+
2104
+
2105
+
2106
+
2107
+
2108
+ <dl class="details">
2109
+
1922
2110
 
1923
2111
 
1924
2112
 
1925
- <dl class="details">
2113
+
2114
+
2115
+
1926
2116
 
1927
2117
 
1928
2118
 
@@ -1944,7 +2134,7 @@
1944
2134
 
1945
2135
  <dt class="tag-source">Source:</dt>
1946
2136
  <dd class="tag-source"><ul class="dummy"><li>
1947
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1556">line 1556</a>
2137
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1591">line 1591</a>
1948
2138
  </li></ul></dd>
1949
2139
 
1950
2140
 
@@ -1956,20 +2146,20 @@
1956
2146
  </dl>
1957
2147
 
1958
2148
 
1959
-
1960
2149
 
1961
-
1962
2150
 
1963
-
1964
2151
 
1965
-
1966
2152
 
1967
-
1968
2153
 
1969
-
1970
- <h5>Returns:</h5>
1971
-
1972
-
2154
+
2155
+
2156
+
2157
+
2158
+
2159
+
2160
+ <h5>Returns:</h5>
2161
+
2162
+
1973
2163
  <div class="param-desc">
1974
2164
  <p>The resolved type or null if not found</p>
1975
2165
  </div>
@@ -1988,33 +2178,35 @@
1988
2178
  </dd>
1989
2179
  </dl>
1990
2180
 
1991
-
1992
-
1993
2181
 
1994
- </dd>
2182
+
2183
+
1995
2184
 
1996
2185
 
1997
2186
 
1998
- <dt>
1999
- <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>
2000
2187
 
2001
2188
 
2002
- </dt>
2003
- <dd>
2004
2189
 
2005
-
2006
- <div class="description">
2007
- <p>Returns a string representation of this Reflect object (its fully qualified name).</p>
2008
- </div>
2009
-
2190
+ <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>
2010
2191
 
2011
2192
 
2012
2193
 
2013
-
2014
2194
 
2195
+
2196
+ <div class="description">
2197
+ <p>Returns a string representation of this Reflect object (its fully qualified name).</p>
2198
+ </div>
2199
+
2200
+
2201
+
2202
+
2203
+
2204
+
2205
+
2206
+
2207
+
2208
+ <h5>Parameters:</h5>
2015
2209
 
2016
- <h5>Parameters:</h5>
2017
-
2018
2210
 
2019
2211
  <table class="params">
2020
2212
  <thead>
@@ -2072,11 +2264,13 @@
2072
2264
 
2073
2265
  </tbody>
2074
2266
  </table>
2075
-
2076
2267
 
2077
-
2268
+
2269
+
2270
+
2271
+
2272
+
2078
2273
  <dl class="details">
2079
-
2080
2274
 
2081
2275
 
2082
2276
 
@@ -2086,7 +2280,15 @@
2086
2280
  <dt class="inherited-from">Inherited From:</dt>
2087
2281
  <dd class="inherited-from"><ul class="dummy"><li>
2088
2282
  <a href="ProtoBuf.Reflect.T.html#toString">ProtoBuf.Reflect.T#toString</a>
2089
- </li></dd>
2283
+ </li></ul></dd>
2284
+
2285
+
2286
+
2287
+
2288
+
2289
+
2290
+
2291
+
2090
2292
 
2091
2293
 
2092
2294
 
@@ -2102,7 +2304,7 @@
2102
2304
 
2103
2305
  <dt class="tag-source">Source:</dt>
2104
2306
  <dd class="tag-source"><ul class="dummy"><li>
2105
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1435">line 1435</a>
2307
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1470">line 1470</a>
2106
2308
  </li></ul></dd>
2107
2309
 
2108
2310
 
@@ -2114,32 +2316,31 @@
2114
2316
  </dl>
2115
2317
 
2116
2318
 
2117
-
2118
2319
 
2119
-
2120
2320
 
2121
-
2122
2321
 
2123
-
2124
2322
 
2125
-
2126
2323
 
2127
-
2128
- <h5>Returns:</h5>
2129
-
2130
-
2324
+
2325
+
2326
+
2327
+
2328
+
2329
+
2330
+ <h5>Returns:</h5>
2331
+
2332
+
2131
2333
  <div class="param-desc">
2132
2334
  <p>String representation</p>
2133
2335
  </div>
2134
2336
 
2135
2337
 
2136
2338
 
2137
-
2138
-
2139
2339
 
2140
- </dd>
2141
2340
 
2142
- </dl>
2341
+
2342
+
2343
+
2143
2344
 
2144
2345
 
2145
2346
 
@@ -2155,13 +2356,13 @@
2155
2356
  </div>
2156
2357
 
2157
2358
  <nav>
2158
- <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>
2359
+ <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>
2159
2360
  </nav>
2160
2361
 
2161
- <br clear="both">
2362
+ <br class="clear">
2162
2363
 
2163
2364
  <footer>
2164
- 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)
2365
+ 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)
2165
2366
  </footer>
2166
2367
 
2167
2368
  <script> prettyPrint(); </script>