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
- Service
33
- </h2>
31
+ <h2>
32
+ <span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.Reflect.html">.Reflect</a>.</span>
33
+
34
+ Service
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="Service"><span class="type-signature"></span>new Service<span class="signature">(builder<span class="signature-attributes">non-null</span>, root<span class="signature-attributes">non-null</span>, name, 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>Constructs a new Service.</p>
53
- </div>
54
-
55
51
 
56
-
57
52
 
58
-
53
+ <div class="description">
54
+ <p>Constructs a new Service.</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>
@@ -210,10 +214,20 @@
210
214
 
211
215
  </tbody>
212
216
  </table>
217
+
218
+
219
+
220
+
221
+
222
+
223
+ <dl class="details">
224
+
213
225
 
214
226
 
215
227
 
216
- <dl class="details">
228
+
229
+
230
+
217
231
 
218
232
 
219
233
 
@@ -235,7 +249,7 @@
235
249
 
236
250
  <dt class="tag-source">Source:</dt>
237
251
  <dd class="tag-source"><ul class="dummy"><li>
238
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3906">line 3906</a>
252
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3969">line 3969</a>
239
253
  </li></ul></dd>
240
254
 
241
255
 
@@ -247,20 +261,19 @@
247
261
  </dl>
248
262
 
249
263
 
250
-
251
264
 
252
-
253
265
 
254
-
255
266
 
256
-
257
267
 
258
-
259
268
 
260
-
261
269
 
262
-
263
- </dd>
270
+
271
+
272
+
273
+
274
+
275
+
276
+
264
277
 
265
278
 
266
279
  </div>
@@ -268,10 +281,13 @@
268
281
 
269
282
  <h3 class="subsection-title">Extends</h3>
270
283
 
271
- <ul>
272
- <li><a href="ProtoBuf.Reflect.Namespace.html">ProtoBuf.Reflect.Namespace</a></li>
273
- </ul>
274
-
284
+
285
+
286
+
287
+ <ul>
288
+ <li><a href="ProtoBuf.Reflect.Namespace.html">ProtoBuf.Reflect.Namespace</a></li>
289
+ </ul>
290
+
275
291
 
276
292
 
277
293
 
@@ -296,35 +312,34 @@
296
312
 
297
313
  <h3 class="subsection-title">Members</h3>
298
314
 
299
- <dl>
315
+
300
316
 
301
- <dt>
302
- <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>
317
+ <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>
303
318
 
304
-
305
- </dt>
306
- <dd>
307
-
308
- <div class="description">
309
- <p>Builder reference.</p>
310
- </div>
311
-
312
319
 
313
-
314
- <h5>Type:</h5>
315
- <ul>
316
- <li>
317
-
320
+
321
+
322
+ <div class="description">
323
+ <p>Builder reference.</p>
324
+ </div>
325
+
326
+
327
+
328
+ <h5>Type:</h5>
329
+ <ul>
330
+ <li>
331
+
318
332
  <span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
319
333
 
320
334
 
321
- </li>
322
- </ul>
323
-
335
+ </li>
336
+ </ul>
337
+
338
+
339
+
340
+
324
341
 
325
-
326
342
  <dl class="details">
327
-
328
343
 
329
344
 
330
345
 
@@ -334,7 +349,15 @@
334
349
  <dt class="inherited-from">Inherited From:</dt>
335
350
  <dd class="inherited-from"><ul class="dummy"><li>
336
351
  <a href="ProtoBuf.Reflect.T.html#builder">ProtoBuf.Reflect.T#builder</a>
337
- </li></dd>
352
+ </li></ul></dd>
353
+
354
+
355
+
356
+
357
+
358
+
359
+
360
+
338
361
 
339
362
 
340
363
 
@@ -350,7 +373,7 @@
350
373
 
351
374
  <dt class="tag-source">Source:</dt>
352
375
  <dd class="tag-source"><ul class="dummy"><li>
353
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1382">line 1382</a>
376
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1417">line 1417</a>
354
377
  </li></ul></dd>
355
378
 
356
379
 
@@ -362,40 +385,38 @@
362
385
  </dl>
363
386
 
364
387
 
365
-
366
388
 
367
-
368
- </dd>
389
+
390
+
369
391
 
370
392
 
371
393
 
372
- <dt>
373
- <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>
394
+ <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>
374
395
 
375
-
376
- </dt>
377
- <dd>
378
-
379
- <div class="description">
380
- <p>Children inside the namespace.</p>
381
- </div>
382
-
383
396
 
384
-
385
- <h5>Type:</h5>
386
- <ul>
387
- <li>
388
-
397
+
398
+
399
+ <div class="description">
400
+ <p>Children inside the namespace.</p>
401
+ </div>
402
+
403
+
404
+
405
+ <h5>Type:</h5>
406
+ <ul>
407
+ <li>
408
+
389
409
  <span class="param-type">Array.&lt;<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>></span>
390
410
 
391
411
 
392
- </li>
393
- </ul>
394
-
412
+ </li>
413
+ </ul>
414
+
415
+
416
+
417
+
395
418
 
396
-
397
419
  <dl class="details">
398
-
399
420
 
400
421
 
401
422
 
@@ -405,7 +426,15 @@
405
426
  <dt class="inherited-from">Inherited From:</dt>
406
427
  <dd class="inherited-from"><ul class="dummy"><li>
407
428
  <a href="ProtoBuf.Reflect.Namespace.html#children">ProtoBuf.Reflect.Namespace#children</a>
408
- </li></dd>
429
+ </li></ul></dd>
430
+
431
+
432
+
433
+
434
+
435
+
436
+
437
+
409
438
 
410
439
 
411
440
 
@@ -421,7 +450,7 @@
421
450
 
422
451
  <dt class="tag-source">Source:</dt>
423
452
  <dd class="tag-source"><ul class="dummy"><li>
424
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1477">line 1477</a>
453
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1512">line 1512</a>
425
454
  </li></ul></dd>
426
455
 
427
456
 
@@ -433,25 +462,50 @@
433
462
  </dl>
434
463
 
435
464
 
436
-
437
465
 
438
-
439
- </dd>
466
+
467
+
440
468
 
441
469
 
442
470
 
443
- <dt>
444
- <h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"></span></h4>
471
+ <h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"> :string</span></h4>
472
+
473
+
474
+
475
+
476
+ <div class="description">
477
+ <p>Fully qualified class name</p>
478
+ </div>
479
+
480
+
481
+
482
+ <h5>Type:</h5>
483
+ <ul>
484
+ <li>
485
+
486
+ <span class="param-type">string</span>
487
+
488
+
489
+ </li>
490
+ </ul>
491
+
492
+
493
+
494
+
495
+
496
+ <dl class="details">
445
497
 
446
498
 
447
- </dt>
448
- <dd>
499
+
449
500
 
450
501
 
451
502
 
452
503
 
453
504
 
454
- <dl class="details">
505
+ <dt class="tag-overrides">Overrides:</dt>
506
+ <dd class="tag-overrides"><ul class="dummy"><li>
507
+ <a href="ProtoBuf.Reflect.Namespace.html#className">ProtoBuf.Reflect.Namespace#className</a>
508
+ </li></ul></dd>
455
509
 
456
510
 
457
511
 
@@ -473,7 +527,7 @@
473
527
 
474
528
  <dt class="tag-source">Source:</dt>
475
529
  <dd class="tag-source"><ul class="dummy"><li>
476
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3912">line 3912</a>
530
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1438">line 1438</a>
477
531
  </li></ul></dd>
478
532
 
479
533
 
@@ -485,39 +539,45 @@
485
539
  </dl>
486
540
 
487
541
 
488
-
489
542
 
490
-
491
- </dd>
543
+
544
+
492
545
 
493
546
 
494
547
 
495
- <dt>
496
- <h4 class="name" id="clazz"><span class="type-signature">(nullable) </span>clazz<span class="type-signature"> :function</span></h4>
548
+ <h4 class="name" id="clazz"><span class="type-signature">(nullable) </span>clazz<span class="type-signature"> :function</span></h4>
497
549
 
498
-
499
- </dt>
500
- <dd>
501
-
502
- <div class="description">
503
- <p>Built runtime service class.</p>
504
- </div>
505
-
506
550
 
507
-
508
- <h5>Type:</h5>
509
- <ul>
510
- <li>
511
-
551
+
552
+
553
+ <div class="description">
554
+ <p>Built runtime service class.</p>
555
+ </div>
556
+
557
+
558
+
559
+ <h5>Type:</h5>
560
+ <ul>
561
+ <li>
562
+
512
563
  <span class="param-type">function</span>
513
564
 
514
565
 
515
- </li>
516
- </ul>
566
+ </li>
567
+ </ul>
568
+
569
+
570
+
571
+
572
+
573
+ <dl class="details">
574
+
517
575
 
518
576
 
519
577
 
520
- <dl class="details">
578
+
579
+
580
+
521
581
 
522
582
 
523
583
 
@@ -539,7 +599,7 @@
539
599
 
540
600
  <dt class="tag-source">Source:</dt>
541
601
  <dd class="tag-source"><ul class="dummy"><li>
542
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3918">line 3918</a>
602
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3981">line 3981</a>
543
603
  </li></ul></dd>
544
604
 
545
605
 
@@ -551,40 +611,38 @@
551
611
  </dl>
552
612
 
553
613
 
554
-
555
614
 
556
-
557
- </dd>
615
+
616
+
558
617
 
559
618
 
560
619
 
561
- <dt>
562
- <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
620
+ <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
563
621
 
564
-
565
- </dt>
566
- <dd>
567
-
568
- <div class="description">
569
- <p>Object name in namespace.</p>
570
- </div>
571
-
572
622
 
573
-
574
- <h5>Type:</h5>
575
- <ul>
576
- <li>
577
-
623
+
624
+
625
+ <div class="description">
626
+ <p>Object name in namespace.</p>
627
+ </div>
628
+
629
+
630
+
631
+ <h5>Type:</h5>
632
+ <ul>
633
+ <li>
634
+
578
635
  <span class="param-type">string</span>
579
636
 
580
637
 
581
- </li>
582
- </ul>
583
-
638
+ </li>
639
+ </ul>
640
+
641
+
642
+
643
+
584
644
 
585
-
586
645
  <dl class="details">
587
-
588
646
 
589
647
 
590
648
 
@@ -594,7 +652,15 @@
594
652
  <dt class="inherited-from">Inherited From:</dt>
595
653
  <dd class="inherited-from"><ul class="dummy"><li>
596
654
  <a href="ProtoBuf.Reflect.T.html#name">ProtoBuf.Reflect.T#name</a>
597
- </li></dd>
655
+ </li></ul></dd>
656
+
657
+
658
+
659
+
660
+
661
+
662
+
663
+
598
664
 
599
665
 
600
666
 
@@ -610,7 +676,7 @@
610
676
 
611
677
  <dt class="tag-source">Source:</dt>
612
678
  <dd class="tag-source"><ul class="dummy"><li>
613
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1396">line 1396</a>
679
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1431">line 1431</a>
614
680
  </li></ul></dd>
615
681
 
616
682
 
@@ -622,40 +688,38 @@
622
688
  </dl>
623
689
 
624
690
 
625
-
626
691
 
627
-
628
- </dd>
692
+
693
+
629
694
 
630
695
 
631
696
 
632
- <dt>
633
- <h4 class="name" id="options"><span class="type-signature">(non-null) </span>options<span class="type-signature"> :Object.&lt;string, *></span></h4>
697
+ <h4 class="name" id="options"><span class="type-signature">(non-null) </span>options<span class="type-signature"> :Object.&lt;string, *></span></h4>
634
698
 
635
-
636
- </dt>
637
- <dd>
638
-
639
- <div class="description">
640
- <p>Options.</p>
641
- </div>
642
-
643
699
 
644
-
645
- <h5>Type:</h5>
646
- <ul>
647
- <li>
648
-
700
+
701
+
702
+ <div class="description">
703
+ <p>Options.</p>
704
+ </div>
705
+
706
+
707
+
708
+ <h5>Type:</h5>
709
+ <ul>
710
+ <li>
711
+
649
712
  <span class="param-type">Object.&lt;string, *></span>
650
713
 
651
714
 
652
- </li>
653
- </ul>
654
-
715
+ </li>
716
+ </ul>
717
+
718
+
719
+
720
+
655
721
 
656
-
657
722
  <dl class="details">
658
-
659
723
 
660
724
 
661
725
 
@@ -665,7 +729,15 @@
665
729
  <dt class="inherited-from">Inherited From:</dt>
666
730
  <dd class="inherited-from"><ul class="dummy"><li>
667
731
  <a href="ProtoBuf.Reflect.Namespace.html#options">ProtoBuf.Reflect.Namespace#options</a>
668
- </li></dd>
732
+ </li></ul></dd>
733
+
734
+
735
+
736
+
737
+
738
+
739
+
740
+
669
741
 
670
742
 
671
743
 
@@ -681,7 +753,7 @@
681
753
 
682
754
  <dt class="tag-source">Source:</dt>
683
755
  <dd class="tag-source"><ul class="dummy"><li>
684
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1483">line 1483</a>
756
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1518">line 1518</a>
685
757
  </li></ul></dd>
686
758
 
687
759
 
@@ -693,40 +765,38 @@
693
765
  </dl>
694
766
 
695
767
 
696
-
697
768
 
698
-
699
- </dd>
769
+
770
+
700
771
 
701
772
 
702
773
 
703
- <dt>
704
- <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>
774
+ <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>
705
775
 
706
-
707
- </dt>
708
- <dd>
709
-
710
- <div class="description">
711
- <p>Parent object.</p>
712
- </div>
713
-
714
776
 
715
-
716
- <h5>Type:</h5>
717
- <ul>
718
- <li>
719
-
777
+
778
+
779
+ <div class="description">
780
+ <p>Parent object.</p>
781
+ </div>
782
+
783
+
784
+
785
+ <h5>Type:</h5>
786
+ <ul>
787
+ <li>
788
+
720
789
  <span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
721
790
 
722
791
 
723
- </li>
724
- </ul>
725
-
792
+ </li>
793
+ </ul>
794
+
795
+
796
+
797
+
726
798
 
727
-
728
799
  <dl class="details">
729
-
730
800
 
731
801
 
732
802
 
@@ -736,7 +806,15 @@
736
806
  <dt class="inherited-from">Inherited From:</dt>
737
807
  <dd class="inherited-from"><ul class="dummy"><li>
738
808
  <a href="ProtoBuf.Reflect.T.html#parent">ProtoBuf.Reflect.T#parent</a>
739
- </li></dd>
809
+ </li></ul></dd>
810
+
811
+
812
+
813
+
814
+
815
+
816
+
817
+
740
818
 
741
819
 
742
820
 
@@ -752,7 +830,7 @@
752
830
 
753
831
  <dt class="tag-source">Source:</dt>
754
832
  <dd class="tag-source"><ul class="dummy"><li>
755
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1389">line 1389</a>
833
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1424">line 1424</a>
756
834
  </li></ul></dd>
757
835
 
758
836
 
@@ -764,40 +842,38 @@
764
842
  </dl>
765
843
 
766
844
 
767
-
768
845
 
769
-
770
- </dd>
846
+
847
+
771
848
 
772
849
 
773
850
 
774
- <dt>
775
- <h4 class="name" id="syntax"><span class="type-signature">(non-null) </span>syntax<span class="type-signature"> :string</span></h4>
851
+ <h4 class="name" id="syntax"><span class="type-signature">(non-null) </span>syntax<span class="type-signature"> :string</span></h4>
776
852
 
777
-
778
- </dt>
779
- <dd>
780
-
781
- <div class="description">
782
- <p>Syntax level (e.g., proto2 or proto3).</p>
783
- </div>
784
-
785
853
 
786
-
787
- <h5>Type:</h5>
788
- <ul>
789
- <li>
790
-
854
+
855
+
856
+ <div class="description">
857
+ <p>Syntax level (e.g., proto2 or proto3).</p>
858
+ </div>
859
+
860
+
861
+
862
+ <h5>Type:</h5>
863
+ <ul>
864
+ <li>
865
+
791
866
  <span class="param-type">string</span>
792
867
 
793
868
 
794
- </li>
795
- </ul>
796
-
869
+ </li>
870
+ </ul>
871
+
872
+
873
+
874
+
797
875
 
798
-
799
876
  <dl class="details">
800
-
801
877
 
802
878
 
803
879
 
@@ -807,7 +883,15 @@
807
883
  <dt class="inherited-from">Inherited From:</dt>
808
884
  <dd class="inherited-from"><ul class="dummy"><li>
809
885
  <a href="ProtoBuf.Reflect.Namespace.html#syntax">ProtoBuf.Reflect.Namespace#syntax</a>
810
- </li></dd>
886
+ </li></ul></dd>
887
+
888
+
889
+
890
+
891
+
892
+
893
+
894
+
811
895
 
812
896
 
813
897
 
@@ -823,7 +907,7 @@
823
907
 
824
908
  <dt class="tag-source">Source:</dt>
825
909
  <dd class="tag-source"><ul class="dummy"><li>
826
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1489">line 1489</a>
910
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1524">line 1524</a>
827
911
  </li></ul></dd>
828
912
 
829
913
 
@@ -835,39 +919,41 @@
835
919
  </dl>
836
920
 
837
921
 
838
-
839
922
 
840
-
841
- </dd>
842
923
 
843
- </dl>
924
+
925
+
926
+
844
927
 
845
928
 
846
929
 
847
930
  <h3 class="subsection-title">Methods</h3>
848
931
 
849
- <dl>
932
+
850
933
 
851
- <dt>
852
- <h4 class="name" id="addChild"><span class="type-signature"></span>addChild<span class="signature">(child)</span><span class="type-signature"></span></h4>
853
934
 
854
935
 
855
- </dt>
856
- <dd>
857
936
 
858
-
859
- <div class="description">
860
- <p>Adds a child to the namespace.</p>
861
- </div>
862
-
937
+ <h4 class="name" id="addChild"><span class="type-signature"></span>addChild<span class="signature">(child)</span><span class="type-signature"></span></h4>
863
938
 
864
939
 
865
940
 
866
-
867
941
 
942
+
943
+ <div class="description">
944
+ <p>Adds a child to the namespace.</p>
945
+ </div>
946
+
947
+
948
+
949
+
950
+
951
+
952
+
953
+
954
+
955
+ <h5>Parameters:</h5>
868
956
 
869
- <h5>Parameters:</h5>
870
-
871
957
 
872
958
  <table class="params">
873
959
  <thead>
@@ -913,11 +999,13 @@
913
999
 
914
1000
  </tbody>
915
1001
  </table>
916
-
917
1002
 
918
-
1003
+
1004
+
1005
+
1006
+
1007
+
919
1008
  <dl class="details">
920
-
921
1009
 
922
1010
 
923
1011
 
@@ -927,7 +1015,15 @@
927
1015
  <dt class="inherited-from">Inherited From:</dt>
928
1016
  <dd class="inherited-from"><ul class="dummy"><li>
929
1017
  <a href="ProtoBuf.Reflect.Namespace.html#addChild">ProtoBuf.Reflect.Namespace#addChild</a>
930
- </li></dd>
1018
+ </li></ul></dd>
1019
+
1020
+
1021
+
1022
+
1023
+
1024
+
1025
+
1026
+
931
1027
 
932
1028
 
933
1029
 
@@ -943,7 +1039,7 @@
943
1039
 
944
1040
  <dt class="tag-source">Source:</dt>
945
1041
  <dd class="tag-source"><ul class="dummy"><li>
946
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1521">line 1521</a>
1042
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1556">line 1556</a>
947
1043
  </li></ul></dd>
948
1044
 
949
1045
 
@@ -955,25 +1051,26 @@
955
1051
  </dl>
956
1052
 
957
1053
 
958
-
959
1054
 
960
-
961
1055
 
962
-
963
1056
 
964
-
965
1057
 
966
-
967
- <h5>Throws:</h5>
968
-
969
-
1058
+
1059
+
1060
+
1061
+
1062
+
1063
+ <h5>Throws:</h5>
1064
+
1065
+
970
1066
 
971
1067
  <dl>
972
1068
  <dt>
973
1069
  <div class="param-desc">
974
- If the child cannot be added (duplicate)
1070
+ <p>If the child cannot be added (duplicate)</p>
975
1071
  </div>
976
1072
  </dt>
1073
+ <dd></dd>
977
1074
  <dt>
978
1075
  <dl>
979
1076
  <dt>
@@ -987,38 +1084,41 @@
987
1084
  </dd>
988
1085
  </dl>
989
1086
  </dt>
1087
+ <dd></dd>
990
1088
  </dl>
991
1089
 
992
1090
 
993
-
994
-
995
1091
 
996
1092
 
997
-
998
- </dd>
1093
+
1094
+
1095
+
999
1096
 
1000
1097
 
1001
1098
 
1002
- <dt>
1003
- <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">(rebuild<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {function}</span></h4>
1004
1099
 
1005
1100
 
1006
- </dt>
1007
- <dd>
1008
1101
 
1009
-
1010
- <div class="description">
1011
- <p>Builds the service and returns the runtime counterpart, which is a fully functional class.</p>
1012
- </div>
1013
-
1102
+ <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">(rebuild<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {function}</span></h4>
1014
1103
 
1015
1104
 
1016
1105
 
1017
-
1018
1106
 
1107
+
1108
+ <div class="description">
1109
+ <p>Builds the service and returns the runtime counterpart, which is a fully functional class.</p>
1110
+ </div>
1111
+
1112
+
1113
+
1114
+
1115
+
1116
+
1117
+
1118
+
1119
+
1120
+ <h5>Parameters:</h5>
1019
1121
 
1020
- <h5>Parameters:</h5>
1021
-
1022
1122
 
1023
1123
  <table class="params">
1024
1124
  <thead>
@@ -1076,10 +1176,25 @@
1076
1176
 
1077
1177
  </tbody>
1078
1178
  </table>
1179
+
1180
+
1181
+
1182
+
1183
+
1184
+
1185
+ <dl class="details">
1186
+
1079
1187
 
1080
1188
 
1081
1189
 
1082
- <dl class="details">
1190
+
1191
+
1192
+
1193
+
1194
+ <dt class="tag-overrides">Overrides:</dt>
1195
+ <dd class="tag-overrides"><ul class="dummy"><li>
1196
+ <a href="ProtoBuf.Reflect.Namespace.html#build">ProtoBuf.Reflect.Namespace#build</a>
1197
+ </li></ul></dd>
1083
1198
 
1084
1199
 
1085
1200
 
@@ -1101,7 +1216,7 @@
1101
1216
 
1102
1217
  <dt class="tag-source">Source:</dt>
1103
1218
  <dd class="tag-source"><ul class="dummy"><li>
1104
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3935">line 3935</a>
1219
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3998">line 3998</a>
1105
1220
  </li></ul></dd>
1106
1221
 
1107
1222
 
@@ -1120,25 +1235,26 @@
1120
1235
  </dl>
1121
1236
 
1122
1237
 
1123
-
1124
1238
 
1125
-
1126
1239
 
1127
-
1128
1240
 
1129
-
1130
1241
 
1131
-
1132
- <h5>Throws:</h5>
1133
-
1134
-
1242
+
1243
+
1244
+
1245
+
1246
+
1247
+ <h5>Throws:</h5>
1248
+
1249
+
1135
1250
 
1136
1251
  <dl>
1137
1252
  <dt>
1138
1253
  <div class="param-desc">
1139
- If the message cannot be built
1254
+ <p>If the message cannot be built</p>
1140
1255
  </div>
1141
1256
  </dt>
1257
+ <dd></dd>
1142
1258
  <dt>
1143
1259
  <dl>
1144
1260
  <dt>
@@ -1152,15 +1268,16 @@
1152
1268
  </dd>
1153
1269
  </dl>
1154
1270
  </dt>
1271
+ <dd></dd>
1155
1272
  </dl>
1156
1273
 
1157
1274
 
1158
-
1159
-
1160
-
1161
- <h5>Returns:</h5>
1162
1275
 
1163
-
1276
+
1277
+
1278
+ <h5>Returns:</h5>
1279
+
1280
+
1164
1281
  <div class="param-desc">
1165
1282
  <p>Service class</p>
1166
1283
  </div>
@@ -1179,35 +1296,38 @@
1179
1296
  </dd>
1180
1297
  </dl>
1181
1298
 
1182
-
1183
-
1184
1299
 
1185
- </dd>
1300
+
1301
+
1186
1302
 
1187
1303
 
1188
1304
 
1189
- <dt>
1190
- <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>
1191
1305
 
1192
1306
 
1193
- </dt>
1194
- <dd>
1195
1307
 
1196
-
1197
- <div class="description">
1198
- <p>Builds the namespace's '$options' property.</p>
1199
- </div>
1200
-
1308
+ <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>
1201
1309
 
1202
1310
 
1203
1311
 
1204
-
1205
1312
 
1206
-
1207
1313
 
1208
-
1314
+ <div class="description">
1315
+ <p>Builds the namespace's '$options' property.</p>
1316
+ </div>
1317
+
1318
+
1319
+
1320
+
1321
+
1322
+
1323
+
1324
+
1325
+
1326
+
1327
+
1328
+
1329
+
1209
1330
  <dl class="details">
1210
-
1211
1331
 
1212
1332
 
1213
1333
 
@@ -1217,7 +1337,15 @@
1217
1337
  <dt class="inherited-from">Inherited From:</dt>
1218
1338
  <dd class="inherited-from"><ul class="dummy"><li>
1219
1339
  <a href="ProtoBuf.Reflect.Namespace.html#buildOpt">ProtoBuf.Reflect.Namespace#buildOpt</a>
1220
- </li></dd>
1340
+ </li></ul></dd>
1341
+
1342
+
1343
+
1344
+
1345
+
1346
+
1347
+
1348
+
1221
1349
 
1222
1350
 
1223
1351
 
@@ -1233,7 +1361,7 @@
1233
1361
 
1234
1362
  <dt class="tag-source">Source:</dt>
1235
1363
  <dd class="tag-source"><ul class="dummy"><li>
1236
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1631">line 1631</a>
1364
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1666">line 1666</a>
1237
1365
  </li></ul></dd>
1238
1366
 
1239
1367
 
@@ -1245,20 +1373,20 @@
1245
1373
  </dl>
1246
1374
 
1247
1375
 
1248
-
1249
1376
 
1250
-
1251
1377
 
1252
-
1253
1378
 
1254
-
1255
1379
 
1256
-
1257
1380
 
1258
-
1259
- <h5>Returns:</h5>
1260
-
1261
-
1381
+
1382
+
1383
+
1384
+
1385
+
1386
+
1387
+ <h5>Returns:</h5>
1388
+
1389
+
1262
1390
 
1263
1391
 
1264
1392
  <dl>
@@ -1273,35 +1401,38 @@
1273
1401
  </dd>
1274
1402
  </dl>
1275
1403
 
1276
-
1277
-
1278
1404
 
1279
- </dd>
1405
+
1406
+
1280
1407
 
1281
1408
 
1282
1409
 
1283
- <dt>
1284
- <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
1285
1410
 
1286
1411
 
1287
- </dt>
1288
- <dd>
1289
1412
 
1290
-
1291
- <div class="description">
1292
- <p>Returns the fully qualified name of this object.</p>
1293
- </div>
1294
-
1413
+ <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
1295
1414
 
1296
1415
 
1297
1416
 
1298
-
1299
1417
 
1300
-
1301
1418
 
1302
-
1419
+ <div class="description">
1420
+ <p>Returns the fully qualified name of this object.</p>
1421
+ </div>
1422
+
1423
+
1424
+
1425
+
1426
+
1427
+
1428
+
1429
+
1430
+
1431
+
1432
+
1433
+
1434
+
1303
1435
  <dl class="details">
1304
-
1305
1436
 
1306
1437
 
1307
1438
 
@@ -1311,7 +1442,15 @@
1311
1442
  <dt class="inherited-from">Inherited From:</dt>
1312
1443
  <dd class="inherited-from"><ul class="dummy"><li>
1313
1444
  <a href="ProtoBuf.Reflect.T.html#fqn">ProtoBuf.Reflect.T#fqn</a>
1314
- </li></dd>
1445
+ </li></ul></dd>
1446
+
1447
+
1448
+
1449
+
1450
+
1451
+
1452
+
1453
+
1315
1454
 
1316
1455
 
1317
1456
 
@@ -1327,7 +1466,7 @@
1327
1466
 
1328
1467
  <dt class="tag-source">Source:</dt>
1329
1468
  <dd class="tag-source"><ul class="dummy"><li>
1330
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1417">line 1417</a>
1469
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1452">line 1452</a>
1331
1470
  </li></ul></dd>
1332
1471
 
1333
1472
 
@@ -1339,20 +1478,20 @@
1339
1478
  </dl>
1340
1479
 
1341
1480
 
1342
-
1343
1481
 
1344
-
1345
1482
 
1346
-
1347
1483
 
1348
-
1349
1484
 
1350
-
1351
1485
 
1352
-
1353
- <h5>Returns:</h5>
1354
-
1355
-
1486
+
1487
+
1488
+
1489
+
1490
+
1491
+
1492
+ <h5>Returns:</h5>
1493
+
1494
+
1356
1495
  <div class="param-desc">
1357
1496
  <p>Fully qualified name as of &quot;.PATH.TO.THIS&quot;</p>
1358
1497
  </div>
@@ -1371,33 +1510,35 @@
1371
1510
  </dd>
1372
1511
  </dl>
1373
1512
 
1374
-
1375
-
1376
1513
 
1377
- </dd>
1514
+
1515
+
1378
1516
 
1379
1517
 
1380
1518
 
1381
- <dt>
1382
- <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>
1383
1519
 
1384
1520
 
1385
- </dt>
1386
- <dd>
1387
1521
 
1388
-
1389
- <div class="description">
1390
- <p>Gets a child by its name or id.</p>
1391
- </div>
1392
-
1522
+ <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>
1393
1523
 
1394
1524
 
1395
1525
 
1396
-
1397
1526
 
1527
+
1528
+ <div class="description">
1529
+ <p>Gets a child by its name or id.</p>
1530
+ </div>
1531
+
1532
+
1533
+
1534
+
1535
+
1536
+
1537
+
1538
+
1539
+
1540
+ <h5>Parameters:</h5>
1398
1541
 
1399
- <h5>Parameters:</h5>
1400
-
1401
1542
 
1402
1543
  <table class="params">
1403
1544
  <thead>
@@ -1446,11 +1587,13 @@
1446
1587
 
1447
1588
  </tbody>
1448
1589
  </table>
1449
-
1450
1590
 
1451
-
1591
+
1592
+
1593
+
1594
+
1595
+
1452
1596
  <dl class="details">
1453
-
1454
1597
 
1455
1598
 
1456
1599
 
@@ -1460,7 +1603,15 @@
1460
1603
  <dt class="inherited-from">Inherited From:</dt>
1461
1604
  <dd class="inherited-from"><ul class="dummy"><li>
1462
1605
  <a href="ProtoBuf.Reflect.Namespace.html#getChild">ProtoBuf.Reflect.Namespace#getChild</a>
1463
- </li></dd>
1606
+ </li></ul></dd>
1607
+
1608
+
1609
+
1610
+
1611
+
1612
+
1613
+
1614
+
1464
1615
 
1465
1616
 
1466
1617
 
@@ -1476,7 +1627,7 @@
1476
1627
 
1477
1628
  <dt class="tag-source">Source:</dt>
1478
1629
  <dd class="tag-source"><ul class="dummy"><li>
1479
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1541">line 1541</a>
1630
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1576">line 1576</a>
1480
1631
  </li></ul></dd>
1481
1632
 
1482
1633
 
@@ -1488,20 +1639,20 @@
1488
1639
  </dl>
1489
1640
 
1490
1641
 
1491
-
1492
1642
 
1493
-
1494
1643
 
1495
-
1496
1644
 
1497
-
1498
1645
 
1499
-
1500
1646
 
1501
-
1502
- <h5>Returns:</h5>
1503
-
1504
-
1647
+
1648
+
1649
+
1650
+
1651
+
1652
+
1653
+ <h5>Returns:</h5>
1654
+
1655
+
1505
1656
  <div class="param-desc">
1506
1657
  <p>The child or null if not found</p>
1507
1658
  </div>
@@ -1520,33 +1671,35 @@
1520
1671
  </dd>
1521
1672
  </dl>
1522
1673
 
1523
-
1524
-
1525
1674
 
1526
- </dd>
1675
+
1676
+
1527
1677
 
1528
1678
 
1529
1679
 
1530
- <dt>
1531
- <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>
1532
1680
 
1533
1681
 
1534
- </dt>
1535
- <dd>
1536
1682
 
1537
-
1538
- <div class="description">
1539
- <p>Returns an array of the namespace's children.</p>
1540
- </div>
1541
-
1683
+ <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>
1542
1684
 
1543
1685
 
1544
1686
 
1545
-
1546
1687
 
1688
+
1689
+ <div class="description">
1690
+ <p>Returns an array of the namespace's children.</p>
1691
+ </div>
1692
+
1693
+
1694
+
1695
+
1696
+
1697
+
1698
+
1699
+
1700
+
1701
+ <h5>Parameters:</h5>
1547
1702
 
1548
- <h5>Parameters:</h5>
1549
-
1550
1703
 
1551
1704
  <table class="params">
1552
1705
  <thead>
@@ -1602,12 +1755,25 @@
1602
1755
  </tr>
1603
1756
 
1604
1757
 
1605
- </tbody>
1606
- </table>
1758
+ </tbody>
1759
+ </table>
1760
+
1761
+
1762
+
1763
+
1764
+
1765
+
1766
+ <dl class="details">
1767
+
1768
+
1769
+
1607
1770
 
1608
1771
 
1609
1772
 
1610
- <dl class="details">
1773
+ <dt class="inherited-from">Inherited From:</dt>
1774
+ <dd class="inherited-from"><ul class="dummy"><li>
1775
+ <a href="ProtoBuf.Reflect.Namespace.html#getChildren">ProtoBuf.Reflect.Namespace#getChildren</a>
1776
+ </li></ul></dd>
1611
1777
 
1612
1778
 
1613
1779
 
@@ -1615,10 +1781,7 @@
1615
1781
 
1616
1782
 
1617
1783
 
1618
- <dt class="inherited-from">Inherited From:</dt>
1619
- <dd class="inherited-from"><ul class="dummy"><li>
1620
- <a href="ProtoBuf.Reflect.Namespace.html#getChildren">ProtoBuf.Reflect.Namespace#getChildren</a>
1621
- </li></dd>
1784
+
1622
1785
 
1623
1786
 
1624
1787
 
@@ -1634,7 +1797,7 @@
1634
1797
 
1635
1798
  <dt class="tag-source">Source:</dt>
1636
1799
  <dd class="tag-source"><ul class="dummy"><li>
1637
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1504">line 1504</a>
1800
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1539">line 1539</a>
1638
1801
  </li></ul></dd>
1639
1802
 
1640
1803
 
@@ -1646,20 +1809,20 @@
1646
1809
  </dl>
1647
1810
 
1648
1811
 
1649
-
1650
1812
 
1651
-
1652
1813
 
1653
-
1654
1814
 
1655
-
1656
1815
 
1657
-
1658
1816
 
1659
-
1660
- <h5>Returns:</h5>
1661
-
1662
-
1817
+
1818
+
1819
+
1820
+
1821
+
1822
+
1823
+ <h5>Returns:</h5>
1824
+
1825
+
1663
1826
 
1664
1827
 
1665
1828
  <dl>
@@ -1674,33 +1837,35 @@
1674
1837
  </dd>
1675
1838
  </dl>
1676
1839
 
1677
-
1678
-
1679
1840
 
1680
- </dd>
1841
+
1842
+
1681
1843
 
1682
1844
 
1683
1845
 
1684
- <dt>
1685
- <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>
1686
1846
 
1687
1847
 
1688
- </dt>
1689
- <dd>
1690
1848
 
1691
-
1692
- <div class="description">
1693
- <p>Gets the value assigned to the option with the specified name.</p>
1694
- </div>
1695
-
1849
+ <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>
1696
1850
 
1697
1851
 
1698
1852
 
1699
-
1700
1853
 
1854
+
1855
+ <div class="description">
1856
+ <p>Gets the value assigned to the option with the specified name.</p>
1857
+ </div>
1858
+
1859
+
1860
+
1861
+
1862
+
1863
+
1864
+
1865
+
1866
+
1867
+ <h5>Parameters:</h5>
1701
1868
 
1702
- <h5>Parameters:</h5>
1703
-
1704
1869
 
1705
1870
  <table class="params">
1706
1871
  <thead>
@@ -1758,11 +1923,13 @@
1758
1923
 
1759
1924
  </tbody>
1760
1925
  </table>
1761
-
1762
1926
 
1763
-
1927
+
1928
+
1929
+
1930
+
1931
+
1764
1932
  <dl class="details">
1765
-
1766
1933
 
1767
1934
 
1768
1935
 
@@ -1772,7 +1939,15 @@
1772
1939
  <dt class="inherited-from">Inherited From:</dt>
1773
1940
  <dd class="inherited-from"><ul class="dummy"><li>
1774
1941
  <a href="ProtoBuf.Reflect.Namespace.html#getOption">ProtoBuf.Reflect.Namespace#getOption</a>
1775
- </li></dd>
1942
+ </li></ul></dd>
1943
+
1944
+
1945
+
1946
+
1947
+
1948
+
1949
+
1950
+
1776
1951
 
1777
1952
 
1778
1953
 
@@ -1788,7 +1963,7 @@
1788
1963
 
1789
1964
  <dt class="tag-source">Source:</dt>
1790
1965
  <dd class="tag-source"><ul class="dummy"><li>
1791
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1652">line 1652</a>
1966
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1687">line 1687</a>
1792
1967
  </li></ul></dd>
1793
1968
 
1794
1969
 
@@ -1800,20 +1975,20 @@
1800
1975
  </dl>
1801
1976
 
1802
1977
 
1803
-
1804
1978
 
1805
-
1806
1979
 
1807
-
1808
1980
 
1809
-
1810
1981
 
1811
-
1812
1982
 
1813
-
1814
- <h5>Returns:</h5>
1815
-
1816
-
1983
+
1984
+
1985
+
1986
+
1987
+
1988
+
1989
+ <h5>Returns:</h5>
1990
+
1991
+
1817
1992
  <div class="param-desc">
1818
1993
  <p>null} Option value or NULL if there is no such option</p>
1819
1994
  </div>
@@ -1835,33 +2010,35 @@
1835
2010
  </dd>
1836
2011
  </dl>
1837
2012
 
1838
-
1839
-
1840
2013
 
1841
- </dd>
2014
+
2015
+
1842
2016
 
1843
2017
 
1844
2018
 
1845
- <dt>
1846
- <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>
1847
2019
 
1848
2020
 
1849
- </dt>
1850
- <dd>
1851
2021
 
1852
-
1853
- <div class="description">
1854
- <p>Determines the shortest qualified name of the specified type, if any, relative to this namespace.</p>
1855
- </div>
1856
-
2022
+ <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>
1857
2023
 
1858
2024
 
1859
2025
 
1860
-
1861
2026
 
2027
+
2028
+ <div class="description">
2029
+ <p>Determines the shortest qualified name of the specified type, if any, relative to this namespace.</p>
2030
+ </div>
2031
+
2032
+
2033
+
2034
+
2035
+
2036
+
2037
+
2038
+
2039
+
2040
+ <h5>Parameters:</h5>
1862
2041
 
1863
- <h5>Parameters:</h5>
1864
-
1865
2042
 
1866
2043
  <table class="params">
1867
2044
  <thead>
@@ -1907,11 +2084,13 @@
1907
2084
 
1908
2085
  </tbody>
1909
2086
  </table>
1910
-
1911
2087
 
1912
-
2088
+
2089
+
2090
+
2091
+
2092
+
1913
2093
  <dl class="details">
1914
-
1915
2094
 
1916
2095
 
1917
2096
 
@@ -1921,7 +2100,15 @@
1921
2100
  <dt class="inherited-from">Inherited From:</dt>
1922
2101
  <dd class="inherited-from"><ul class="dummy"><li>
1923
2102
  <a href="ProtoBuf.Reflect.Namespace.html#qn">ProtoBuf.Reflect.Namespace#qn</a>
1924
- </li></dd>
2103
+ </li></ul></dd>
2104
+
2105
+
2106
+
2107
+
2108
+
2109
+
2110
+
2111
+
1925
2112
 
1926
2113
 
1927
2114
 
@@ -1937,7 +2124,7 @@
1937
2124
 
1938
2125
  <dt class="tag-source">Source:</dt>
1939
2126
  <dd class="tag-source"><ul class="dummy"><li>
1940
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1594">line 1594</a>
2127
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1629">line 1629</a>
1941
2128
  </li></ul></dd>
1942
2129
 
1943
2130
 
@@ -1949,20 +2136,20 @@
1949
2136
  </dl>
1950
2137
 
1951
2138
 
1952
-
1953
2139
 
1954
-
1955
2140
 
1956
-
1957
2141
 
1958
-
1959
2142
 
1960
-
1961
2143
 
1962
-
1963
- <h5>Returns:</h5>
1964
-
1965
-
2144
+
2145
+
2146
+
2147
+
2148
+
2149
+
2150
+ <h5>Returns:</h5>
2151
+
2152
+
1966
2153
  <div class="param-desc">
1967
2154
  <p>The shortest qualified name or, if there is none, the fqn</p>
1968
2155
  </div>
@@ -1981,33 +2168,35 @@
1981
2168
  </dd>
1982
2169
  </dl>
1983
2170
 
1984
-
1985
-
1986
2171
 
1987
- </dd>
2172
+
2173
+
1988
2174
 
1989
2175
 
1990
2176
 
1991
- <dt>
1992
- <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>
1993
2177
 
1994
2178
 
1995
- </dt>
1996
- <dd>
1997
2179
 
1998
-
1999
- <div class="description">
2000
- <p>Resolves a reflect object inside of this namespace.</p>
2001
- </div>
2002
-
2180
+ <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>
2003
2181
 
2004
2182
 
2005
2183
 
2006
-
2007
2184
 
2185
+
2186
+ <div class="description">
2187
+ <p>Resolves a reflect object inside of this namespace.</p>
2188
+ </div>
2189
+
2190
+
2191
+
2192
+
2193
+
2194
+
2195
+
2196
+
2197
+
2198
+ <h5>Parameters:</h5>
2008
2199
 
2009
- <h5>Parameters:</h5>
2010
-
2011
2200
 
2012
2201
  <table class="params">
2013
2202
  <thead>
@@ -2099,11 +2288,13 @@
2099
2288
 
2100
2289
  </tbody>
2101
2290
  </table>
2102
-
2103
2291
 
2104
-
2292
+
2293
+
2294
+
2295
+
2296
+
2105
2297
  <dl class="details">
2106
-
2107
2298
 
2108
2299
 
2109
2300
 
@@ -2113,7 +2304,15 @@
2113
2304
  <dt class="inherited-from">Inherited From:</dt>
2114
2305
  <dd class="inherited-from"><ul class="dummy"><li>
2115
2306
  <a href="ProtoBuf.Reflect.Namespace.html#resolve">ProtoBuf.Reflect.Namespace#resolve</a>
2116
- </li></dd>
2307
+ </li></ul></dd>
2308
+
2309
+
2310
+
2311
+
2312
+
2313
+
2314
+
2315
+
2117
2316
 
2118
2317
 
2119
2318
 
@@ -2129,7 +2328,7 @@
2129
2328
 
2130
2329
  <dt class="tag-source">Source:</dt>
2131
2330
  <dd class="tag-source"><ul class="dummy"><li>
2132
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1556">line 1556</a>
2331
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1591">line 1591</a>
2133
2332
  </li></ul></dd>
2134
2333
 
2135
2334
 
@@ -2141,20 +2340,20 @@
2141
2340
  </dl>
2142
2341
 
2143
2342
 
2144
-
2145
2343
 
2146
-
2147
2344
 
2148
-
2149
2345
 
2150
-
2151
2346
 
2152
-
2153
2347
 
2154
-
2155
- <h5>Returns:</h5>
2156
-
2157
-
2348
+
2349
+
2350
+
2351
+
2352
+
2353
+
2354
+ <h5>Returns:</h5>
2355
+
2356
+
2158
2357
  <div class="param-desc">
2159
2358
  <p>The resolved type or null if not found</p>
2160
2359
  </div>
@@ -2173,33 +2372,35 @@
2173
2372
  </dd>
2174
2373
  </dl>
2175
2374
 
2176
-
2177
-
2178
2375
 
2179
- </dd>
2376
+
2377
+
2180
2378
 
2181
2379
 
2182
2380
 
2183
- <dt>
2184
- <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>
2185
2381
 
2186
2382
 
2187
- </dt>
2188
- <dd>
2189
2383
 
2190
-
2191
- <div class="description">
2192
- <p>Returns a string representation of this Reflect object (its fully qualified name).</p>
2193
- </div>
2194
-
2384
+ <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>
2195
2385
 
2196
2386
 
2197
2387
 
2198
-
2199
2388
 
2389
+
2390
+ <div class="description">
2391
+ <p>Returns a string representation of this Reflect object (its fully qualified name).</p>
2392
+ </div>
2393
+
2394
+
2395
+
2396
+
2397
+
2398
+
2399
+
2400
+
2401
+
2402
+ <h5>Parameters:</h5>
2200
2403
 
2201
- <h5>Parameters:</h5>
2202
-
2203
2404
 
2204
2405
  <table class="params">
2205
2406
  <thead>
@@ -2257,11 +2458,13 @@
2257
2458
 
2258
2459
  </tbody>
2259
2460
  </table>
2260
-
2261
2461
 
2262
-
2462
+
2463
+
2464
+
2465
+
2466
+
2263
2467
  <dl class="details">
2264
-
2265
2468
 
2266
2469
 
2267
2470
 
@@ -2271,7 +2474,15 @@
2271
2474
  <dt class="inherited-from">Inherited From:</dt>
2272
2475
  <dd class="inherited-from"><ul class="dummy"><li>
2273
2476
  <a href="ProtoBuf.Reflect.T.html#toString">ProtoBuf.Reflect.T#toString</a>
2274
- </li></dd>
2477
+ </li></ul></dd>
2478
+
2479
+
2480
+
2481
+
2482
+
2483
+
2484
+
2485
+
2275
2486
 
2276
2487
 
2277
2488
 
@@ -2287,7 +2498,7 @@
2287
2498
 
2288
2499
  <dt class="tag-source">Source:</dt>
2289
2500
  <dd class="tag-source"><ul class="dummy"><li>
2290
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1435">line 1435</a>
2501
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1470">line 1470</a>
2291
2502
  </li></ul></dd>
2292
2503
 
2293
2504
 
@@ -2299,32 +2510,31 @@
2299
2510
  </dl>
2300
2511
 
2301
2512
 
2302
-
2303
2513
 
2304
-
2305
2514
 
2306
-
2307
2515
 
2308
-
2309
2516
 
2310
-
2311
2517
 
2312
-
2313
- <h5>Returns:</h5>
2314
-
2315
-
2518
+
2519
+
2520
+
2521
+
2522
+
2523
+
2524
+ <h5>Returns:</h5>
2525
+
2526
+
2316
2527
  <div class="param-desc">
2317
2528
  <p>String representation</p>
2318
2529
  </div>
2319
2530
 
2320
2531
 
2321
2532
 
2322
-
2323
-
2324
2533
 
2325
- </dd>
2326
2534
 
2327
- </dl>
2535
+
2536
+
2537
+
2328
2538
 
2329
2539
 
2330
2540
 
@@ -2340,13 +2550,13 @@
2340
2550
  </div>
2341
2551
 
2342
2552
  <nav>
2343
- <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>
2553
+ <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>
2344
2554
  </nav>
2345
2555
 
2346
- <br clear="both">
2556
+ <br class="clear">
2347
2557
 
2348
2558
  <footer>
2349
- 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)
2559
+ 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)
2350
2560
  </footer>
2351
2561
 
2352
2562
  <script> prettyPrint(); </script>