protobufjs 5.0.1 → 5.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (170) hide show
  1. package/.travis.yml +2 -1
  2. package/README.md +144 -22
  3. package/bin/pbjs +2 -2
  4. package/bower.json +2 -2
  5. package/cli/pbjs/targets/amd.js +1 -1
  6. package/cli/pbjs/targets/json.js +8 -0
  7. package/cli/pbjs/util.js +1 -1
  8. package/cli/pbjs.js +1 -1
  9. package/dist/protobuf-light.js +166 -128
  10. package/dist/protobuf-light.min.js +88 -81
  11. package/dist/protobuf-light.min.js.gz +0 -0
  12. package/dist/protobuf-light.min.map +4 -4
  13. package/dist/protobuf.js +171 -129
  14. package/dist/protobuf.min.js +106 -98
  15. package/dist/protobuf.min.js.gz +0 -0
  16. package/dist/protobuf.min.map +4 -4
  17. package/docs/ProtoBuf.Builder.Message.html +1408 -971
  18. package/docs/ProtoBuf.Builder.Service.html +266 -197
  19. package/docs/ProtoBuf.Builder.html +758 -542
  20. package/docs/ProtoBuf.DotProto.Parser.html +223 -161
  21. package/docs/ProtoBuf.DotProto.Tokenizer.html +344 -248
  22. package/docs/ProtoBuf.DotProto.html +20 -12
  23. package/docs/ProtoBuf.Element.html +554 -554
  24. package/docs/ProtoBuf.Map.html +158 -123
  25. package/docs/ProtoBuf.Reflect.Element.html +286 -143
  26. package/docs/ProtoBuf.Reflect.Enum.Value.html +329 -228
  27. package/docs/ProtoBuf.Reflect.Enum.html +757 -537
  28. package/docs/ProtoBuf.Reflect.Extension.html +73 -56
  29. package/docs/ProtoBuf.Reflect.Message.ExtensionField.html +1013 -740
  30. package/docs/ProtoBuf.Reflect.Message.Field.html +926 -649
  31. package/docs/ProtoBuf.Reflect.Message.OneOf.html +327 -245
  32. package/docs/ProtoBuf.Reflect.Message.html +915 -651
  33. package/docs/ProtoBuf.Reflect.Namespace.html +648 -447
  34. package/docs/ProtoBuf.Reflect.Service.Method.html +363 -251
  35. package/docs/ProtoBuf.Reflect.Service.RPCMethod.html +545 -397
  36. package/docs/ProtoBuf.Reflect.Service.html +721 -511
  37. package/docs/ProtoBuf.Reflect.T.html +268 -197
  38. package/docs/ProtoBuf.Reflect.html +20 -12
  39. package/docs/ProtoBuf.Util.html +169 -118
  40. package/docs/ProtoBuf.html +840 -628
  41. package/docs/ProtoBuf.js.html +177 -134
  42. package/docs/fonts/OpenSans-Bold-webfont.eot +0 -0
  43. package/docs/fonts/OpenSans-Bold-webfont.svg +1830 -0
  44. package/docs/fonts/OpenSans-Bold-webfont.woff +0 -0
  45. package/docs/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
  46. package/docs/fonts/OpenSans-BoldItalic-webfont.svg +1830 -0
  47. package/docs/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
  48. package/docs/fonts/OpenSans-Italic-webfont.eot +0 -0
  49. package/docs/fonts/OpenSans-Italic-webfont.svg +1830 -0
  50. package/docs/fonts/OpenSans-Italic-webfont.woff +0 -0
  51. package/docs/fonts/OpenSans-Light-webfont.eot +0 -0
  52. package/docs/fonts/OpenSans-Light-webfont.svg +1831 -0
  53. package/docs/fonts/OpenSans-Light-webfont.woff +0 -0
  54. package/docs/fonts/OpenSans-LightItalic-webfont.eot +0 -0
  55. package/docs/fonts/OpenSans-LightItalic-webfont.svg +1835 -0
  56. package/docs/fonts/OpenSans-LightItalic-webfont.woff +0 -0
  57. package/docs/fonts/OpenSans-Regular-webfont.eot +0 -0
  58. package/docs/fonts/OpenSans-Regular-webfont.svg +1831 -0
  59. package/docs/fonts/OpenSans-Regular-webfont.woff +0 -0
  60. package/docs/index.html +7 -5
  61. package/docs/styles/jsdoc-default.css +95 -75
  62. package/docs/styles/prettify-tomorrow.css +1 -1
  63. package/examples/protoify/json.js +123 -123
  64. package/examples/protoify/json.json +123 -123
  65. package/examples/websocket/server.js +4 -4
  66. package/externs/protobuf.js +1 -1
  67. package/jsdoc.json +1 -1
  68. package/package.json +2 -2
  69. package/scripts/build.js +53 -53
  70. package/src/ProtoBuf/Builder/Message.js +9 -5
  71. package/src/ProtoBuf/Builder.js +19 -2
  72. package/src/ProtoBuf/DotProto/Parser.js +5 -1
  73. package/src/ProtoBuf/Reflect/Element.js +13 -1
  74. package/src/ProtoBuf/Reflect/Message/Field.js +2 -2
  75. package/src/ProtoBuf/Reflect/Message.js +6 -1
  76. package/src/ProtoBuf/Util.js +116 -116
  77. package/src/bower.json +1 -1
  78. package/src/google/protobuf/descriptor.json +27 -1
  79. package/tests/bench.txt +373 -373
  80. package/tests/complex.json +8 -1
  81. package/tests/custom-options.json +169 -169
  82. package/tests/extend.json +71 -71
  83. package/tests/imports.json +83 -83
  84. package/tests/nodeunit-browser/nodeunit.css +70 -70
  85. package/tests/nodeunit-browser/nodeunit.js +2108 -2108
  86. package/tests/options.json +32 -32
  87. package/tests/proto2js/Bar.json +46 -46
  88. package/tests/suite.js +43 -1
  89. package/sandbox/gapi/googleapis/google/api/annotations.proto +0 -29
  90. package/sandbox/gapi/googleapis/google/api/http.proto +0 -245
  91. package/sandbox/gapi/googleapis/google/datastore/v1beta3/datastore.proto +0 -281
  92. package/sandbox/gapi/googleapis/google/datastore/v1beta3/entity.proto +0 -189
  93. package/sandbox/gapi/googleapis/google/datastore/v1beta3/query.proto +0 -281
  94. package/sandbox/gapi/googleapis/google/longrunning/operations.proto +0 -144
  95. package/sandbox/gapi/googleapis/google/protobuf/any.proto +0 -98
  96. package/sandbox/gapi/googleapis/google/protobuf/any_test.proto +0 -41
  97. package/sandbox/gapi/googleapis/google/protobuf/api.proto +0 -201
  98. package/sandbox/gapi/googleapis/google/protobuf/descriptor.proto +0 -773
  99. package/sandbox/gapi/googleapis/google/protobuf/duration.proto +0 -95
  100. package/sandbox/gapi/googleapis/google/protobuf/empty.proto +0 -50
  101. package/sandbox/gapi/googleapis/google/protobuf/field_mask.proto +0 -167
  102. package/sandbox/gapi/googleapis/google/protobuf/map_lite_unittest.proto +0 -130
  103. package/sandbox/gapi/googleapis/google/protobuf/map_proto2_unittest.proto +0 -60
  104. package/sandbox/gapi/googleapis/google/protobuf/map_unittest.proto +0 -129
  105. package/sandbox/gapi/googleapis/google/protobuf/map_unittest_proto3.proto +0 -120
  106. package/sandbox/gapi/googleapis/google/protobuf/source_context.proto +0 -47
  107. package/sandbox/gapi/googleapis/google/protobuf/struct.proto +0 -94
  108. package/sandbox/gapi/googleapis/google/protobuf/timestamp.proto +0 -107
  109. package/sandbox/gapi/googleapis/google/protobuf/type.proto +0 -176
  110. package/sandbox/gapi/googleapis/google/protobuf/unittest.proto +0 -878
  111. package/sandbox/gapi/googleapis/google/protobuf/unittest_arena.proto +0 -46
  112. package/sandbox/gapi/googleapis/google/protobuf/unittest_custom_options.proto +0 -394
  113. package/sandbox/gapi/googleapis/google/protobuf/unittest_drop_unknown_fields.proto +0 -58
  114. package/sandbox/gapi/googleapis/google/protobuf/unittest_embed_optimize_for.proto +0 -51
  115. package/sandbox/gapi/googleapis/google/protobuf/unittest_empty.proto +0 -38
  116. package/sandbox/gapi/googleapis/google/protobuf/unittest_enormous_descriptor.proto +0 -1048
  117. package/sandbox/gapi/googleapis/google/protobuf/unittest_import.proto +0 -66
  118. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_lite.proto +0 -52
  119. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_proto3.proto +0 -68
  120. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public.proto +0 -41
  121. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_lite.proto +0 -43
  122. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_proto3.proto +0 -42
  123. package/sandbox/gapi/googleapis/google/protobuf/unittest_lite.proto +0 -385
  124. package/sandbox/gapi/googleapis/google/protobuf/unittest_lite_imports_nonlite.proto +0 -44
  125. package/sandbox/gapi/googleapis/google/protobuf/unittest_mset.proto +0 -82
  126. package/sandbox/gapi/googleapis/google/protobuf/unittest_mset_wire_format.proto +0 -52
  127. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena.proto +0 -202
  128. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_import.proto +0 -37
  129. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_lite.proto +0 -42
  130. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_field_presence.proto +0 -138
  131. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_generic_services.proto +0 -54
  132. package/sandbox/gapi/googleapis/google/protobuf/unittest_optimize_for.proto +0 -67
  133. package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum.proto +0 -71
  134. package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum2.proto +0 -50
  135. package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3.proto +0 -388
  136. package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3_arena.proto +0 -206
  137. package/sandbox/gapi/googleapis/google/protobuf/unittest_well_known_types.proto +0 -112
  138. package/sandbox/gapi/googleapis/google/protobuf/unknown_enum_test.proto +0 -62
  139. package/sandbox/gapi/googleapis/google/protobuf/wrappers.proto +0 -117
  140. package/sandbox/gapi/googleapis/google/rpc/code.proto +0 -190
  141. package/sandbox/gapi/googleapis/google/rpc/error_details.proto +0 -157
  142. package/sandbox/gapi/googleapis/google/rpc/status.proto +0 -90
  143. package/sandbox/gapi/googleapis/google/type/color.proto +0 -163
  144. package/sandbox/gapi/googleapis/google/type/date.proto +0 -43
  145. package/sandbox/gapi/googleapis/google/type/dayofweek.proto +0 -50
  146. package/sandbox/gapi/googleapis/google/type/latlng.proto +0 -36
  147. package/sandbox/gapi/googleapis/google/type/money.proto +0 -40
  148. package/sandbox/gapi/googleapis/google/type/timeofday.proto +0 -42
  149. package/sandbox/gapi/test.js +0 -17
  150. package/sandbox/gapi/test.proto +0 -12
  151. package/sandbox/issue146/MyOptions.proto +0 -28
  152. package/sandbox/issue146/Sample.proto +0 -21
  153. package/sandbox/issue146/main.js +0 -3
  154. package/sandbox/issue147/enum.proto +0 -8
  155. package/sandbox/issue147/main.js +0 -3
  156. package/sandbox/issue182/commands.proto +0 -10
  157. package/sandbox/issue182/execute.js +0 -22
  158. package/sandbox/issue182/session_commands.proto +0 -14
  159. package/sandbox/issue289/A.proto +0 -8
  160. package/sandbox/issue289/B.proto +0 -8
  161. package/sandbox/issue289/common.proto +0 -5
  162. package/sandbox/issue289/main.js +0 -7
  163. package/sandbox/issue300/IAuth.proto +0 -14
  164. package/sandbox/issue300/Request.proto +0 -14
  165. package/sandbox/issue300/main.js +0 -26
  166. package/sandbox/issue347/index.js +0 -27
  167. package/sandbox/issue355/main.proto +0 -15
  168. package/sandbox/issue42/innerextend.proto +0 -18
  169. package/sandbox/issue42/main.js +0 -8
  170. package/sandbox/issue42/outerextend.proto +0 -17
@@ -23,45 +23,51 @@
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>.</span>
31
-
32
- Builder
33
- </h2>
34
30
 
35
- <div class="class-description"><p>Provides the functionality to build protocol messages.</p></div>
31
+ <h2>
32
+ <span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a>.</span>
33
+
34
+ Builder
35
+ </h2>
36
+
37
+ <div class="class-description"><p>Provides the functionality to build protocol messages.</p></div>
38
+
36
39
 
37
40
  </header>
38
41
 
39
42
  <article>
40
43
  <div class="container-overview">
41
44
 
45
+
42
46
 
43
47
 
44
-
45
- <dt>
48
+ <h2>Constructor</h2>
49
+
50
+
46
51
  <h4 class="name" id="Builder"><span class="type-signature"></span>new Builder<span class="signature">(options<span class="signature-attributes">opt</span>)</span><span class="type-signature"></span></h4>
47
52
 
48
53
 
49
- </dt>
50
- <dd>
51
54
 
52
-
53
- <div class="description">
54
- <p>Constructs a new Builder.</p>
55
- </div>
56
-
57
55
 
58
-
59
56
 
60
-
57
+ <div class="description">
58
+ <p>Constructs a new Builder.</p>
59
+ </div>
60
+
61
+
62
+
63
+
61
64
 
65
+
66
+
67
+
68
+
69
+ <h5>Parameters:</h5>
62
70
 
63
- <h5>Parameters:</h5>
64
-
65
71
 
66
72
  <table class="params">
67
73
  <thead>
@@ -119,10 +125,20 @@
119
125
 
120
126
  </tbody>
121
127
  </table>
128
+
129
+
130
+
131
+
132
+
133
+
134
+ <dl class="details">
135
+
122
136
 
123
137
 
124
138
 
125
- <dl class="details">
139
+
140
+
141
+
126
142
 
127
143
 
128
144
 
@@ -144,7 +160,7 @@
144
160
 
145
161
  <dt class="tag-source">Source:</dt>
146
162
  <dd class="tag-source"><ul class="dummy"><li>
147
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4270">line 4270</a>
163
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4295">line 4295</a>
148
164
  </li></ul></dd>
149
165
 
150
166
 
@@ -156,25 +172,22 @@
156
172
  </dl>
157
173
 
158
174
 
159
-
160
175
 
161
-
162
176
 
163
-
164
177
 
165
-
166
178
 
167
-
168
179
 
169
-
170
180
 
171
-
172
- </dd>
173
181
 
174
-
175
- </div>
182
+
183
+
184
+
185
+
186
+
187
+
176
188
 
177
189
 
190
+ </div>
178
191
 
179
192
 
180
193
 
@@ -199,34 +212,41 @@
199
212
 
200
213
  <h3 class="subsection-title">Members</h3>
201
214
 
202
- <dl>
215
+
203
216
 
204
- <dt>
205
- <h4 class="name" id="files"><span class="type-signature"></span>files<span class="type-signature"> :Array.&lt;string></span></h4>
217
+ <h4 class="name" id="files"><span class="type-signature"></span>files<span class="type-signature"> :Array.&lt;string></span></h4>
206
218
 
207
-
208
- </dt>
209
- <dd>
210
-
211
- <div class="description">
212
- <p>Imported files.</p>
213
- </div>
214
-
215
219
 
216
-
217
- <h5>Type:</h5>
218
- <ul>
219
- <li>
220
-
220
+
221
+
222
+ <div class="description">
223
+ <p>Imported files.</p>
224
+ </div>
225
+
226
+
227
+
228
+ <h5>Type:</h5>
229
+ <ul>
230
+ <li>
231
+
221
232
  <span class="param-type">Array.&lt;string></span>
222
233
 
223
234
 
224
- </li>
225
- </ul>
235
+ </li>
236
+ </ul>
237
+
238
+
239
+
240
+
241
+
242
+ <dl class="details">
243
+
226
244
 
227
245
 
228
246
 
229
- <dl class="details">
247
+
248
+
249
+
230
250
 
231
251
 
232
252
 
@@ -248,7 +268,7 @@
248
268
 
249
269
  <dt class="tag-source">Source:</dt>
250
270
  <dd class="tag-source"><ul class="dummy"><li>
251
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4305">line 4305</a>
271
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4330">line 4330</a>
252
272
  </li></ul></dd>
253
273
 
254
274
 
@@ -260,39 +280,45 @@
260
280
  </dl>
261
281
 
262
282
 
263
-
264
283
 
265
-
266
- </dd>
284
+
285
+
267
286
 
268
287
 
269
288
 
270
- <dt>
271
- <h4 class="name" id="importRoot"><span class="type-signature">(nullable) </span>importRoot<span class="type-signature"> :string</span></h4>
289
+ <h4 class="name" id="importRoot"><span class="type-signature">(nullable) </span>importRoot<span class="type-signature"> :string</span></h4>
272
290
 
273
-
274
- </dt>
275
- <dd>
276
-
277
- <div class="description">
278
- <p>Import root override.</p>
279
- </div>
280
-
281
291
 
282
-
283
- <h5>Type:</h5>
284
- <ul>
285
- <li>
286
-
292
+
293
+
294
+ <div class="description">
295
+ <p>Import root override.</p>
296
+ </div>
297
+
298
+
299
+
300
+ <h5>Type:</h5>
301
+ <ul>
302
+ <li>
303
+
287
304
  <span class="param-type">string</span>
288
305
 
289
306
 
290
- </li>
291
- </ul>
307
+ </li>
308
+ </ul>
309
+
310
+
311
+
312
+
313
+
314
+ <dl class="details">
315
+
292
316
 
293
317
 
294
318
 
295
- <dl class="details">
319
+
320
+
321
+
296
322
 
297
323
 
298
324
 
@@ -314,7 +340,7 @@
314
340
 
315
341
  <dt class="tag-source">Source:</dt>
316
342
  <dd class="tag-source"><ul class="dummy"><li>
317
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4312">line 4312</a>
343
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4337">line 4337</a>
318
344
  </li></ul></dd>
319
345
 
320
346
 
@@ -326,39 +352,45 @@
326
352
  </dl>
327
353
 
328
354
 
329
-
330
355
 
331
-
332
- </dd>
356
+
357
+
333
358
 
334
359
 
335
360
 
336
- <dt>
337
- <h4 class="name" id="ns"><span class="type-signature"></span>ns<span class="type-signature"> :<a href="ProtoBuf.Reflect.Namespace.html">ProtoBuf.Reflect.Namespace</a></span></h4>
361
+ <h4 class="name" id="ns"><span class="type-signature"></span>ns<span class="type-signature"> :<a href="ProtoBuf.Reflect.Namespace.html">ProtoBuf.Reflect.Namespace</a></span></h4>
338
362
 
339
-
340
- </dt>
341
- <dd>
342
-
343
- <div class="description">
344
- <p>Namespace.</p>
345
- </div>
346
-
347
363
 
348
-
349
- <h5>Type:</h5>
350
- <ul>
351
- <li>
352
-
364
+
365
+
366
+ <div class="description">
367
+ <p>Namespace.</p>
368
+ </div>
369
+
370
+
371
+
372
+ <h5>Type:</h5>
373
+ <ul>
374
+ <li>
375
+
353
376
  <span class="param-type"><a href="ProtoBuf.Reflect.Namespace.html">ProtoBuf.Reflect.Namespace</a></span>
354
377
 
355
378
 
356
- </li>
357
- </ul>
379
+ </li>
380
+ </ul>
381
+
382
+
383
+
384
+
385
+
386
+ <dl class="details">
387
+
358
388
 
359
389
 
360
390
 
361
- <dl class="details">
391
+
392
+
393
+
362
394
 
363
395
 
364
396
 
@@ -380,7 +412,7 @@
380
412
 
381
413
  <dt class="tag-source">Source:</dt>
382
414
  <dd class="tag-source"><ul class="dummy"><li>
383
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4277">line 4277</a>
415
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4302">line 4302</a>
384
416
  </li></ul></dd>
385
417
 
386
418
 
@@ -392,39 +424,45 @@
392
424
  </dl>
393
425
 
394
426
 
395
-
396
427
 
397
-
398
- </dd>
428
+
429
+
399
430
 
400
431
 
401
432
 
402
- <dt>
403
- <h4 class="name" id="options"><span class="type-signature">(non-null) </span>options<span class="type-signature"> :Object.&lt;string, *></span></h4>
433
+ <h4 class="name" id="options"><span class="type-signature">(non-null) </span>options<span class="type-signature"> :Object.&lt;string, *></span></h4>
404
434
 
405
-
406
- </dt>
407
- <dd>
408
-
409
- <div class="description">
410
- <p>Options.</p>
411
- </div>
412
-
413
435
 
414
-
415
- <h5>Type:</h5>
416
- <ul>
417
- <li>
418
-
436
+
437
+
438
+ <div class="description">
439
+ <p>Options.</p>
440
+ </div>
441
+
442
+
443
+
444
+ <h5>Type:</h5>
445
+ <ul>
446
+ <li>
447
+
419
448
  <span class="param-type">Object.&lt;string, *></span>
420
449
 
421
450
 
422
- </li>
423
- </ul>
451
+ </li>
452
+ </ul>
453
+
454
+
455
+
456
+
457
+
458
+ <dl class="details">
459
+
424
460
 
425
461
 
426
462
 
427
- <dl class="details">
463
+
464
+
465
+
428
466
 
429
467
 
430
468
 
@@ -446,7 +484,7 @@
446
484
 
447
485
  <dt class="tag-source">Source:</dt>
448
486
  <dd class="tag-source"><ul class="dummy"><li>
449
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4319">line 4319</a>
487
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4344">line 4344</a>
450
488
  </li></ul></dd>
451
489
 
452
490
 
@@ -458,39 +496,45 @@
458
496
  </dl>
459
497
 
460
498
 
461
-
462
499
 
463
-
464
- </dd>
500
+
501
+
465
502
 
466
503
 
467
504
 
468
- <dt>
469
- <h4 class="name" id="ptr"><span class="type-signature"></span>ptr<span class="type-signature"> :<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span></h4>
505
+ <h4 class="name" id="ptr"><span class="type-signature"></span>ptr<span class="type-signature"> :<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span></h4>
470
506
 
471
-
472
- </dt>
473
- <dd>
474
-
475
- <div class="description">
476
- <p>Namespace pointer.</p>
477
- </div>
478
-
479
507
 
480
-
481
- <h5>Type:</h5>
482
- <ul>
483
- <li>
484
-
508
+
509
+
510
+ <div class="description">
511
+ <p>Namespace pointer.</p>
512
+ </div>
513
+
514
+
515
+
516
+ <h5>Type:</h5>
517
+ <ul>
518
+ <li>
519
+
485
520
  <span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
486
521
 
487
522
 
488
- </li>
489
- </ul>
523
+ </li>
524
+ </ul>
525
+
526
+
527
+
528
+
529
+
530
+ <dl class="details">
531
+
490
532
 
491
533
 
492
534
 
493
- <dl class="details">
535
+
536
+
537
+
494
538
 
495
539
 
496
540
 
@@ -512,7 +556,7 @@
512
556
 
513
557
  <dt class="tag-source">Source:</dt>
514
558
  <dd class="tag-source"><ul class="dummy"><li>
515
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4284">line 4284</a>
559
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4309">line 4309</a>
516
560
  </li></ul></dd>
517
561
 
518
562
 
@@ -524,39 +568,45 @@
524
568
  </dl>
525
569
 
526
570
 
527
-
528
571
 
529
-
530
- </dd>
572
+
573
+
531
574
 
532
575
 
533
576
 
534
- <dt>
535
- <h4 class="name" id="resolved"><span class="type-signature"></span>resolved<span class="type-signature"> :boolean</span></h4>
577
+ <h4 class="name" id="resolved"><span class="type-signature"></span>resolved<span class="type-signature"> :boolean</span></h4>
536
578
 
537
-
538
- </dt>
539
- <dd>
540
-
541
- <div class="description">
542
- <p>Resolved flag.</p>
543
- </div>
544
-
545
579
 
546
-
547
- <h5>Type:</h5>
548
- <ul>
549
- <li>
550
-
580
+
581
+
582
+ <div class="description">
583
+ <p>Resolved flag.</p>
584
+ </div>
585
+
586
+
587
+
588
+ <h5>Type:</h5>
589
+ <ul>
590
+ <li>
591
+
551
592
  <span class="param-type">boolean</span>
552
593
 
553
594
 
554
- </li>
555
- </ul>
595
+ </li>
596
+ </ul>
597
+
598
+
599
+
600
+
601
+
602
+ <dl class="details">
603
+
556
604
 
557
605
 
558
606
 
559
- <dl class="details">
607
+
608
+
609
+
560
610
 
561
611
 
562
612
 
@@ -578,7 +628,7 @@
578
628
 
579
629
  <dt class="tag-source">Source:</dt>
580
630
  <dd class="tag-source"><ul class="dummy"><li>
581
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4291">line 4291</a>
631
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4316">line 4316</a>
582
632
  </li></ul></dd>
583
633
 
584
634
 
@@ -590,42 +640,48 @@
590
640
  </dl>
591
641
 
592
642
 
593
-
594
643
 
595
-
596
- </dd>
644
+
645
+
597
646
 
598
647
 
599
648
 
600
- <dt>
601
- <h4 class="name" id="result"><span class="type-signature"></span>result<span class="type-signature"> :Object.&lt;string, (<a href="ProtoBuf.Builder.Message.html">ProtoBuf.Builder.Message</a>|Object)>|null</span></h4>
649
+ <h4 class="name" id="result"><span class="type-signature"></span>result<span class="type-signature"> :Object.&lt;string, (<a href="ProtoBuf.Builder.Message.html">ProtoBuf.Builder.Message</a>|Object)>|null</span></h4>
602
650
 
603
-
604
- </dt>
605
- <dd>
606
-
607
- <div class="description">
608
- <p>The current building result.</p>
609
- </div>
610
-
611
651
 
612
-
613
- <h5>Type:</h5>
614
- <ul>
615
- <li>
616
-
652
+
653
+
654
+ <div class="description">
655
+ <p>The current building result.</p>
656
+ </div>
657
+
658
+
659
+
660
+ <h5>Type:</h5>
661
+ <ul>
662
+ <li>
663
+
617
664
  <span class="param-type">Object.&lt;string, (<a href="ProtoBuf.Builder.Message.html">ProtoBuf.Builder.Message</a>|Object)></span>
618
665
  |
619
666
 
620
667
  <span class="param-type">null</span>
621
668
 
622
669
 
623
- </li>
624
- </ul>
670
+ </li>
671
+ </ul>
672
+
673
+
674
+
675
+
676
+
677
+ <dl class="details">
678
+
625
679
 
626
680
 
627
681
 
628
- <dl class="details">
682
+
683
+
684
+
629
685
 
630
686
 
631
687
 
@@ -647,7 +703,7 @@
647
703
 
648
704
  <dt class="tag-source">Source:</dt>
649
705
  <dd class="tag-source"><ul class="dummy"><li>
650
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4298">line 4298</a>
706
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4323">line 4323</a>
651
707
  </li></ul></dd>
652
708
 
653
709
 
@@ -659,39 +715,41 @@
659
715
  </dl>
660
716
 
661
717
 
662
-
663
718
 
664
-
665
- </dd>
666
719
 
667
- </dl>
720
+
721
+
722
+
668
723
 
669
724
 
670
725
 
671
726
  <h3 class="subsection-title">Methods</h3>
672
727
 
673
- <dl>
728
+
674
729
 
675
- <dt>
676
- <h4 class="name" id="isEnum"><span class="type-signature">(static) </span>isEnum<span class="signature">(def<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
677
730
 
678
731
 
679
- </dt>
680
- <dd>
681
732
 
682
-
683
- <div class="description">
684
- <p>Tests if a definition most likely describes an enum.</p>
685
- </div>
686
-
733
+ <h4 class="name" id=".isEnum"><span class="type-signature">(static) </span>isEnum<span class="signature">(def<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
687
734
 
688
735
 
689
736
 
690
-
691
737
 
738
+
739
+ <div class="description">
740
+ <p>Tests if a definition most likely describes an enum.</p>
741
+ </div>
742
+
743
+
744
+
745
+
746
+
747
+
748
+
749
+
750
+
751
+ <h5>Parameters:</h5>
692
752
 
693
- <h5>Parameters:</h5>
694
-
695
753
 
696
754
  <table class="params">
697
755
  <thead>
@@ -737,10 +795,20 @@
737
795
 
738
796
  </tbody>
739
797
  </table>
798
+
799
+
800
+
801
+
802
+
803
+
804
+ <dl class="details">
805
+
740
806
 
741
807
 
742
808
 
743
- <dl class="details">
809
+
810
+
811
+
744
812
 
745
813
 
746
814
 
@@ -762,7 +830,7 @@
762
830
 
763
831
  <dt class="tag-source">Source:</dt>
764
832
  <dd class="tag-source"><ul class="dummy"><li>
765
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4365">line 4365</a>
833
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4390">line 4390</a>
766
834
  </li></ul></dd>
767
835
 
768
836
 
@@ -774,20 +842,20 @@
774
842
  </dl>
775
843
 
776
844
 
777
-
778
845
 
779
-
780
846
 
781
-
782
847
 
783
-
784
848
 
785
-
786
849
 
787
-
788
- <h5>Returns:</h5>
789
-
790
-
850
+
851
+
852
+
853
+
854
+
855
+
856
+ <h5>Returns:</h5>
857
+
858
+
791
859
 
792
860
 
793
861
  <dl>
@@ -802,33 +870,35 @@
802
870
  </dd>
803
871
  </dl>
804
872
 
805
-
806
-
807
873
 
808
- </dd>
874
+
875
+
809
876
 
810
877
 
811
878
 
812
- <dt>
813
- <h4 class="name" id="isExtend"><span class="type-signature">(static) </span>isExtend<span class="signature">(def<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
814
879
 
815
880
 
816
- </dt>
817
- <dd>
818
881
 
819
-
820
- <div class="description">
821
- <p>Tests if a definition most likely describes an extended message</p>
822
- </div>
823
-
882
+ <h4 class="name" id=".isExtend"><span class="type-signature">(static) </span>isExtend<span class="signature">(def<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
824
883
 
825
884
 
826
885
 
827
-
828
886
 
887
+
888
+ <div class="description">
889
+ <p>Tests if a definition most likely describes an extended message</p>
890
+ </div>
891
+
892
+
893
+
894
+
895
+
896
+
897
+
898
+
899
+
900
+ <h5>Parameters:</h5>
829
901
 
830
- <h5>Parameters:</h5>
831
-
832
902
 
833
903
  <table class="params">
834
904
  <thead>
@@ -874,10 +944,20 @@
874
944
 
875
945
  </tbody>
876
946
  </table>
947
+
948
+
949
+
950
+
951
+
952
+
953
+ <dl class="details">
954
+
877
955
 
878
956
 
879
957
 
880
- <dl class="details">
958
+
959
+
960
+
881
961
 
882
962
 
883
963
 
@@ -899,7 +979,7 @@
899
979
 
900
980
  <dt class="tag-source">Source:</dt>
901
981
  <dd class="tag-source"><ul class="dummy"><li>
902
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4394">line 4394</a>
982
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4419">line 4419</a>
903
983
  </li></ul></dd>
904
984
 
905
985
 
@@ -911,20 +991,20 @@
911
991
  </dl>
912
992
 
913
993
 
914
-
915
994
 
916
-
917
995
 
918
-
919
996
 
920
-
921
997
 
922
-
923
998
 
924
-
925
- <h5>Returns:</h5>
926
-
927
-
999
+
1000
+
1001
+
1002
+
1003
+
1004
+
1005
+ <h5>Returns:</h5>
1006
+
1007
+
928
1008
 
929
1009
 
930
1010
  <dl>
@@ -939,33 +1019,35 @@
939
1019
  </dd>
940
1020
  </dl>
941
1021
 
942
-
943
-
944
1022
 
945
- </dd>
1023
+
1024
+
946
1025
 
947
1026
 
948
1027
 
949
- <dt>
950
- <h4 class="name" id="isMessage"><span class="type-signature">(static) </span>isMessage<span class="signature">(def<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
951
1028
 
952
1029
 
953
- </dt>
954
- <dd>
955
1030
 
956
-
957
- <div class="description">
958
- <p>Tests if a definition most likely describes a message.</p>
959
- </div>
960
-
1031
+ <h4 class="name" id=".isMessage"><span class="type-signature">(static) </span>isMessage<span class="signature">(def<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
961
1032
 
962
1033
 
963
1034
 
964
-
965
1035
 
1036
+
1037
+ <div class="description">
1038
+ <p>Tests if a definition most likely describes a message.</p>
1039
+ </div>
1040
+
1041
+
1042
+
1043
+
1044
+
1045
+
1046
+
1047
+
1048
+
1049
+ <h5>Parameters:</h5>
966
1050
 
967
- <h5>Parameters:</h5>
968
-
969
1051
 
970
1052
  <table class="params">
971
1053
  <thead>
@@ -1011,10 +1093,20 @@
1011
1093
 
1012
1094
  </tbody>
1013
1095
  </table>
1096
+
1097
+
1098
+
1099
+
1100
+
1101
+
1102
+ <dl class="details">
1103
+
1014
1104
 
1015
1105
 
1016
1106
 
1017
- <dl class="details">
1107
+
1108
+
1109
+
1018
1110
 
1019
1111
 
1020
1112
 
@@ -1036,7 +1128,7 @@
1036
1128
 
1037
1129
  <dt class="tag-source">Source:</dt>
1038
1130
  <dd class="tag-source"><ul class="dummy"><li>
1039
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4336">line 4336</a>
1131
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4361">line 4361</a>
1040
1132
  </li></ul></dd>
1041
1133
 
1042
1134
 
@@ -1048,20 +1140,20 @@
1048
1140
  </dl>
1049
1141
 
1050
1142
 
1051
-
1052
1143
 
1053
-
1054
1144
 
1055
-
1056
1145
 
1057
-
1058
1146
 
1059
-
1060
1147
 
1061
-
1062
- <h5>Returns:</h5>
1063
-
1064
-
1148
+
1149
+
1150
+
1151
+
1152
+
1153
+
1154
+ <h5>Returns:</h5>
1155
+
1156
+
1065
1157
 
1066
1158
 
1067
1159
  <dl>
@@ -1076,33 +1168,35 @@
1076
1168
  </dd>
1077
1169
  </dl>
1078
1170
 
1079
-
1080
-
1081
1171
 
1082
- </dd>
1172
+
1173
+
1083
1174
 
1084
1175
 
1085
1176
 
1086
- <dt>
1087
- <h4 class="name" id="isMessageField"><span class="type-signature">(static) </span>isMessageField<span class="signature">(def<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
1088
1177
 
1089
1178
 
1090
- </dt>
1091
- <dd>
1092
1179
 
1093
-
1094
- <div class="description">
1095
- <p>Tests if a definition most likely describes a message field.</p>
1096
- </div>
1097
-
1180
+ <h4 class="name" id=".isMessageField"><span class="type-signature">(static) </span>isMessageField<span class="signature">(def<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
1098
1181
 
1099
1182
 
1100
1183
 
1101
-
1102
1184
 
1185
+
1186
+ <div class="description">
1187
+ <p>Tests if a definition most likely describes a message field.</p>
1188
+ </div>
1189
+
1190
+
1191
+
1192
+
1193
+
1194
+
1195
+
1196
+
1197
+
1198
+ <h5>Parameters:</h5>
1103
1199
 
1104
- <h5>Parameters:</h5>
1105
-
1106
1200
 
1107
1201
  <table class="params">
1108
1202
  <thead>
@@ -1148,10 +1242,20 @@
1148
1242
 
1149
1243
  </tbody>
1150
1244
  </table>
1245
+
1246
+
1247
+
1248
+
1249
+
1250
+
1251
+ <dl class="details">
1252
+
1151
1253
 
1152
1254
 
1153
1255
 
1154
- <dl class="details">
1256
+
1257
+
1258
+
1155
1259
 
1156
1260
 
1157
1261
 
@@ -1173,7 +1277,7 @@
1173
1277
 
1174
1278
  <dt class="tag-source">Source:</dt>
1175
1279
  <dd class="tag-source"><ul class="dummy"><li>
1176
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4352">line 4352</a>
1280
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4377">line 4377</a>
1177
1281
  </li></ul></dd>
1178
1282
 
1179
1283
 
@@ -1185,20 +1289,20 @@
1185
1289
  </dl>
1186
1290
 
1187
1291
 
1188
-
1189
1292
 
1190
-
1191
1293
 
1192
-
1193
1294
 
1194
-
1195
1295
 
1196
-
1197
1296
 
1198
-
1199
- <h5>Returns:</h5>
1200
-
1201
-
1297
+
1298
+
1299
+
1300
+
1301
+
1302
+
1303
+ <h5>Returns:</h5>
1304
+
1305
+
1202
1306
 
1203
1307
 
1204
1308
  <dl>
@@ -1213,33 +1317,35 @@
1213
1317
  </dd>
1214
1318
  </dl>
1215
1319
 
1216
-
1217
-
1218
1320
 
1219
- </dd>
1321
+
1322
+
1220
1323
 
1221
1324
 
1222
1325
 
1223
- <dt>
1224
- <h4 class="name" id="isService"><span class="type-signature">(static) </span>isService<span class="signature">(def<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
1225
1326
 
1226
1327
 
1227
- </dt>
1228
- <dd>
1229
1328
 
1230
-
1231
- <div class="description">
1232
- <p>Tests if a definition most likely describes a service.</p>
1233
- </div>
1234
-
1329
+ <h4 class="name" id=".isService"><span class="type-signature">(static) </span>isService<span class="signature">(def<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
1235
1330
 
1236
1331
 
1237
1332
 
1238
-
1239
1333
 
1334
+
1335
+ <div class="description">
1336
+ <p>Tests if a definition most likely describes a service.</p>
1337
+ </div>
1338
+
1339
+
1340
+
1341
+
1342
+
1343
+
1344
+
1345
+
1346
+
1347
+ <h5>Parameters:</h5>
1240
1348
 
1241
- <h5>Parameters:</h5>
1242
-
1243
1349
 
1244
1350
  <table class="params">
1245
1351
  <thead>
@@ -1285,10 +1391,20 @@
1285
1391
 
1286
1392
  </tbody>
1287
1393
  </table>
1394
+
1395
+
1396
+
1397
+
1398
+
1399
+
1400
+ <dl class="details">
1401
+
1288
1402
 
1289
1403
 
1290
1404
 
1291
- <dl class="details">
1405
+
1406
+
1407
+
1292
1408
 
1293
1409
 
1294
1410
 
@@ -1310,7 +1426,7 @@
1310
1426
 
1311
1427
  <dt class="tag-source">Source:</dt>
1312
1428
  <dd class="tag-source"><ul class="dummy"><li>
1313
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4381">line 4381</a>
1429
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4406">line 4406</a>
1314
1430
  </li></ul></dd>
1315
1431
 
1316
1432
 
@@ -1322,20 +1438,20 @@
1322
1438
  </dl>
1323
1439
 
1324
1440
 
1325
-
1326
1441
 
1327
-
1328
1442
 
1329
-
1330
1443
 
1331
-
1332
1444
 
1333
-
1334
1445
 
1335
-
1336
- <h5>Returns:</h5>
1337
-
1338
-
1446
+
1447
+
1448
+
1449
+
1450
+
1451
+
1452
+ <h5>Returns:</h5>
1453
+
1454
+
1339
1455
 
1340
1456
 
1341
1457
  <dl>
@@ -1350,33 +1466,35 @@
1350
1466
  </dd>
1351
1467
  </dl>
1352
1468
 
1353
-
1354
-
1355
1469
 
1356
- </dd>
1470
+
1471
+
1357
1472
 
1358
1473
 
1359
1474
 
1360
- <dt>
1361
- <h4 class="name" id=""import"]"><span class="type-signature"></span>"import"]<span class="signature">(json, filename<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; (non-null) {<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a>}</span></h4>
1362
1475
 
1363
1476
 
1364
- </dt>
1365
- <dd>
1366
1477
 
1367
-
1368
- <div class="description">
1369
- <p>Imports another definition into this builder.</p>
1370
- </div>
1371
-
1478
+ <h4 class="name" id="%22import%22%5D"><span class="type-signature"></span>"import"]<span class="signature">(json, filename<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; (non-null) {<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a>}</span></h4>
1372
1479
 
1373
1480
 
1374
1481
 
1375
-
1376
1482
 
1483
+
1484
+ <div class="description">
1485
+ <p>Imports another definition into this builder.</p>
1486
+ </div>
1487
+
1488
+
1489
+
1490
+
1491
+
1492
+
1493
+
1494
+
1495
+
1496
+ <h5>Parameters:</h5>
1377
1497
 
1378
- <h5>Parameters:</h5>
1379
-
1380
1498
 
1381
1499
  <table class="params">
1382
1500
  <thead>
@@ -1468,10 +1586,20 @@
1468
1586
 
1469
1587
  </tbody>
1470
1588
  </table>
1589
+
1590
+
1591
+
1592
+
1593
+
1594
+
1595
+ <dl class="details">
1596
+
1471
1597
 
1472
1598
 
1473
1599
 
1474
- <dl class="details">
1600
+
1601
+
1602
+
1475
1603
 
1476
1604
 
1477
1605
 
@@ -1493,7 +1621,7 @@
1493
1621
 
1494
1622
  <dt class="tag-source">Source:</dt>
1495
1623
  <dd class="tag-source"><ul class="dummy"><li>
1496
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4615">line 4615</a>
1624
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4640">line 4640</a>
1497
1625
  </li></ul></dd>
1498
1626
 
1499
1627
 
@@ -1505,25 +1633,26 @@
1505
1633
  </dl>
1506
1634
 
1507
1635
 
1508
-
1509
1636
 
1510
-
1511
1637
 
1512
-
1513
1638
 
1514
-
1515
1639
 
1516
-
1517
- <h5>Throws:</h5>
1518
-
1519
-
1640
+
1641
+
1642
+
1643
+
1644
+
1645
+ <h5>Throws:</h5>
1646
+
1647
+
1520
1648
 
1521
1649
  <dl>
1522
1650
  <dt>
1523
1651
  <div class="param-desc">
1524
- If the definition or file cannot be imported
1652
+ <p>If the definition or file cannot be imported</p>
1525
1653
  </div>
1526
1654
  </dt>
1655
+ <dd></dd>
1527
1656
  <dt>
1528
1657
  <dl>
1529
1658
  <dt>
@@ -1537,15 +1666,16 @@
1537
1666
  </dd>
1538
1667
  </dl>
1539
1668
  </dt>
1669
+ <dd></dd>
1540
1670
  </dl>
1541
1671
 
1542
1672
 
1543
-
1544
-
1545
-
1546
- <h5>Returns:</h5>
1547
1673
 
1548
-
1674
+
1675
+
1676
+ <h5>Returns:</h5>
1677
+
1678
+
1549
1679
  <div class="param-desc">
1550
1680
  <p>this</p>
1551
1681
  </div>
@@ -1564,34 +1694,36 @@
1564
1694
  </dd>
1565
1695
  </dl>
1566
1696
 
1567
-
1568
-
1569
1697
 
1570
- </dd>
1698
+
1699
+
1571
1700
 
1572
1701
 
1573
1702
 
1574
- <dt>
1575
- <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">(path<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {<a href="ProtoBuf.Builder.Message.html">ProtoBuf.Builder.Message</a>|!Object.&lt;string, *>}</span></h4>
1576
1703
 
1577
1704
 
1578
- </dt>
1579
- <dd>
1705
+
1706
+ <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">(path<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {<a href="ProtoBuf.Builder.Message.html">ProtoBuf.Builder.Message</a>|!Object.&lt;string, *>}</span></h4>
1580
1707
 
1581
1708
 
1582
- <div class="description">
1583
- <p>Builds the protocol. This will first try to resolve all definitions and, if this has been successful,
1709
+
1710
+
1711
+
1712
+ <div class="description">
1713
+ <p>Builds the protocol. This will first try to resolve all definitions and, if this has been successful,
1584
1714
  return the built package.</p>
1585
- </div>
1586
-
1715
+ </div>
1587
1716
 
1588
-
1589
1717
 
1590
-
1591
1718
 
1719
+
1720
+
1721
+
1722
+
1723
+
1724
+
1725
+ <h5>Parameters:</h5>
1592
1726
 
1593
- <h5>Parameters:</h5>
1594
-
1595
1727
 
1596
1728
  <table class="params">
1597
1729
  <thead>
@@ -1652,10 +1784,20 @@ return the built package.</p>
1652
1784
 
1653
1785
  </tbody>
1654
1786
  </table>
1787
+
1788
+
1789
+
1790
+
1791
+
1792
+
1793
+ <dl class="details">
1794
+
1655
1795
 
1656
1796
 
1657
1797
 
1658
- <dl class="details">
1798
+
1799
+
1800
+
1659
1801
 
1660
1802
 
1661
1803
 
@@ -1677,7 +1819,7 @@ return the built package.</p>
1677
1819
 
1678
1820
  <dt class="tag-source">Source:</dt>
1679
1821
  <dd class="tag-source"><ul class="dummy"><li>
1680
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4811">line 4811</a>
1822
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4853">line 4853</a>
1681
1823
  </li></ul></dd>
1682
1824
 
1683
1825
 
@@ -1689,25 +1831,26 @@ return the built package.</p>
1689
1831
  </dl>
1690
1832
 
1691
1833
 
1692
-
1693
1834
 
1694
-
1695
1835
 
1696
-
1697
1836
 
1698
-
1699
1837
 
1700
-
1701
- <h5>Throws:</h5>
1702
-
1703
-
1838
+
1839
+
1840
+
1841
+
1842
+
1843
+ <h5>Throws:</h5>
1844
+
1845
+
1704
1846
 
1705
1847
  <dl>
1706
1848
  <dt>
1707
1849
  <div class="param-desc">
1708
- If a type could not be resolved
1850
+ <p>If a type could not be resolved</p>
1709
1851
  </div>
1710
1852
  </dt>
1853
+ <dd></dd>
1711
1854
  <dt>
1712
1855
  <dl>
1713
1856
  <dt>
@@ -1721,15 +1864,16 @@ return the built package.</p>
1721
1864
  </dd>
1722
1865
  </dl>
1723
1866
  </dt>
1867
+ <dd></dd>
1724
1868
  </dl>
1725
1869
 
1726
1870
 
1727
-
1728
-
1729
-
1730
- <h5>Returns:</h5>
1731
1871
 
1732
-
1872
+
1873
+
1874
+ <h5>Returns:</h5>
1875
+
1876
+
1733
1877
 
1734
1878
 
1735
1879
  <dl>
@@ -1747,33 +1891,35 @@ return the built package.</p>
1747
1891
  </dd>
1748
1892
  </dl>
1749
1893
 
1750
-
1751
-
1752
1894
 
1753
- </dd>
1895
+
1896
+
1754
1897
 
1755
1898
 
1756
1899
 
1757
- <dt>
1758
- <h4 class="name" id="create"><span class="type-signature"></span>create<span class="signature">(defs<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; (non-null) {<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a>}</span></h4>
1759
1900
 
1760
1901
 
1761
- </dt>
1762
- <dd>
1763
1902
 
1764
-
1765
- <div class="description">
1766
- <p>Creates the specified definitions at the current pointer position.</p>
1767
- </div>
1768
-
1903
+ <h4 class="name" id="create"><span class="type-signature"></span>create<span class="signature">(defs<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> &rarr; (non-null) {<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a>}</span></h4>
1769
1904
 
1770
1905
 
1771
1906
 
1772
-
1773
1907
 
1908
+
1909
+ <div class="description">
1910
+ <p>Creates the specified definitions at the current pointer position.</p>
1911
+ </div>
1912
+
1913
+
1914
+
1915
+
1916
+
1917
+
1918
+
1919
+
1920
+
1921
+ <h5>Parameters:</h5>
1774
1922
 
1775
- <h5>Parameters:</h5>
1776
-
1777
1923
 
1778
1924
  <table class="params">
1779
1925
  <thead>
@@ -1803,7 +1949,7 @@ return the built package.</p>
1803
1949
  <td class="type">
1804
1950
 
1805
1951
 
1806
- <span class="param-type">Array.&lt;Object></span>
1952
+ <span class="param-type">Array.&lt;!Object></span>
1807
1953
 
1808
1954
 
1809
1955
 
@@ -1819,10 +1965,20 @@ return the built package.</p>
1819
1965
 
1820
1966
  </tbody>
1821
1967
  </table>
1968
+
1969
+
1970
+
1971
+
1972
+
1973
+
1974
+ <dl class="details">
1975
+
1822
1976
 
1823
1977
 
1824
1978
 
1825
- <dl class="details">
1979
+
1980
+
1981
+
1826
1982
 
1827
1983
 
1828
1984
 
@@ -1844,7 +2000,7 @@ return the built package.</p>
1844
2000
 
1845
2001
  <dt class="tag-source">Source:</dt>
1846
2002
  <dd class="tag-source"><ul class="dummy"><li>
1847
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4438">line 4438</a>
2003
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4463">line 4463</a>
1848
2004
  </li></ul></dd>
1849
2005
 
1850
2006
 
@@ -1856,25 +2012,26 @@ return the built package.</p>
1856
2012
  </dl>
1857
2013
 
1858
2014
 
1859
-
1860
2015
 
1861
-
1862
2016
 
1863
-
1864
2017
 
1865
-
1866
2018
 
1867
-
1868
- <h5>Throws:</h5>
1869
-
1870
-
2019
+
2020
+
2021
+
2022
+
2023
+
2024
+ <h5>Throws:</h5>
2025
+
2026
+
1871
2027
 
1872
2028
  <dl>
1873
2029
  <dt>
1874
2030
  <div class="param-desc">
1875
- If a message definition is invalid
2031
+ <p>If a message definition is invalid</p>
1876
2032
  </div>
1877
2033
  </dt>
2034
+ <dd></dd>
1878
2035
  <dt>
1879
2036
  <dl>
1880
2037
  <dt>
@@ -1888,15 +2045,16 @@ return the built package.</p>
1888
2045
  </dd>
1889
2046
  </dl>
1890
2047
  </dt>
2048
+ <dd></dd>
1891
2049
  </dl>
1892
2050
 
1893
2051
 
1894
-
1895
-
1896
-
1897
- <h5>Returns:</h5>
1898
2052
 
1899
-
2053
+
2054
+
2055
+ <h5>Returns:</h5>
2056
+
2057
+
1900
2058
  <div class="param-desc">
1901
2059
  <p>this</p>
1902
2060
  </div>
@@ -1915,33 +2073,35 @@ return the built package.</p>
1915
2073
  </dd>
1916
2074
  </dl>
1917
2075
 
1918
-
1919
-
1920
2076
 
1921
- </dd>
2077
+
2078
+
1922
2079
 
1923
2080
 
1924
2081
 
1925
- <dt>
1926
- <h4 class="name" id="define"><span class="type-signature"></span>define<span class="signature">(namespace)</span><span class="type-signature"> &rarr; (non-null) {<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a>}</span></h4>
1927
2082
 
1928
2083
 
1929
- </dt>
1930
- <dd>
1931
2084
 
1932
-
1933
- <div class="description">
1934
- <p>Defines a namespace on top of the current pointer position and places the pointer on it.</p>
1935
- </div>
1936
-
2085
+ <h4 class="name" id="define"><span class="type-signature"></span>define<span class="signature">(namespace)</span><span class="type-signature"> &rarr; (non-null) {<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a>}</span></h4>
1937
2086
 
1938
2087
 
1939
2088
 
1940
-
1941
2089
 
2090
+
2091
+ <div class="description">
2092
+ <p>Defines a namespace on top of the current pointer position and places the pointer on it.</p>
2093
+ </div>
2094
+
2095
+
2096
+
2097
+
2098
+
2099
+
2100
+
2101
+
2102
+
2103
+ <h5>Parameters:</h5>
1942
2104
 
1943
- <h5>Parameters:</h5>
1944
-
1945
2105
 
1946
2106
  <table class="params">
1947
2107
  <thead>
@@ -1987,10 +2147,20 @@ return the built package.</p>
1987
2147
 
1988
2148
  </tbody>
1989
2149
  </table>
2150
+
2151
+
2152
+
2153
+
2154
+
2155
+
2156
+ <dl class="details">
2157
+
1990
2158
 
1991
2159
 
1992
2160
 
1993
- <dl class="details">
2161
+
2162
+
2163
+
1994
2164
 
1995
2165
 
1996
2166
 
@@ -2012,7 +2182,7 @@ return the built package.</p>
2012
2182
 
2013
2183
  <dt class="tag-source">Source:</dt>
2014
2184
  <dd class="tag-source"><ul class="dummy"><li>
2015
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4419">line 4419</a>
2185
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4444">line 4444</a>
2016
2186
  </li></ul></dd>
2017
2187
 
2018
2188
 
@@ -2024,20 +2194,20 @@ return the built package.</p>
2024
2194
  </dl>
2025
2195
 
2026
2196
 
2027
-
2028
2197
 
2029
-
2030
2198
 
2031
-
2032
2199
 
2033
-
2034
2200
 
2035
-
2036
2201
 
2037
-
2038
- <h5>Returns:</h5>
2039
-
2040
-
2202
+
2203
+
2204
+
2205
+
2206
+
2207
+
2208
+ <h5>Returns:</h5>
2209
+
2210
+
2041
2211
  <div class="param-desc">
2042
2212
  <p>this</p>
2043
2213
  </div>
@@ -2056,33 +2226,35 @@ return the built package.</p>
2056
2226
  </dd>
2057
2227
  </dl>
2058
2228
 
2059
-
2060
-
2061
2229
 
2062
- </dd>
2230
+
2231
+
2063
2232
 
2064
2233
 
2065
2234
 
2066
- <dt>
2067
- <h4 class="name" id="lookup"><span class="type-signature"></span>lookup<span class="signature">(path<span class="signature-attributes">opt</span>, excludeNonNamespace<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; (nullable) {<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>}</span></h4>
2068
2235
 
2069
2236
 
2070
- </dt>
2071
- <dd>
2072
2237
 
2073
-
2074
- <div class="description">
2075
- <p>Similar to <a href="ProtoBuf.Builder.html#build">ProtoBuf.Builder#build</a>, but looks up the internal reflection descriptor.</p>
2076
- </div>
2077
-
2238
+ <h4 class="name" id="lookup"><span class="type-signature"></span>lookup<span class="signature">(path<span class="signature-attributes">opt</span>, excludeNonNamespace<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; (nullable) {<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>}</span></h4>
2078
2239
 
2079
2240
 
2080
2241
 
2081
-
2082
2242
 
2243
+
2244
+ <div class="description">
2245
+ <p>Similar to <a href="ProtoBuf.Builder.html#build">ProtoBuf.Builder#build</a>, but looks up the internal reflection descriptor.</p>
2246
+ </div>
2247
+
2248
+
2249
+
2250
+
2251
+
2252
+
2253
+
2254
+
2255
+
2256
+ <h5>Parameters:</h5>
2083
2257
 
2084
- <h5>Parameters:</h5>
2085
-
2086
2258
 
2087
2259
  <table class="params">
2088
2260
  <thead>
@@ -2173,10 +2345,20 @@ return the built package.</p>
2173
2345
 
2174
2346
  </tbody>
2175
2347
  </table>
2348
+
2349
+
2350
+
2351
+
2352
+
2353
+
2354
+ <dl class="details">
2355
+
2176
2356
 
2177
2357
 
2178
2358
 
2179
- <dl class="details">
2359
+
2360
+
2361
+
2180
2362
 
2181
2363
 
2182
2364
 
@@ -2198,7 +2380,7 @@ return the built package.</p>
2198
2380
 
2199
2381
  <dt class="tag-source">Source:</dt>
2200
2382
  <dd class="tag-source"><ul class="dummy"><li>
2201
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4839">line 4839</a>
2383
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4881">line 4881</a>
2202
2384
  </li></ul></dd>
2203
2385
 
2204
2386
 
@@ -2210,20 +2392,20 @@ return the built package.</p>
2210
2392
  </dl>
2211
2393
 
2212
2394
 
2213
-
2214
2395
 
2215
-
2216
2396
 
2217
-
2218
2397
 
2219
-
2220
2398
 
2221
-
2222
2399
 
2223
-
2224
- <h5>Returns:</h5>
2225
-
2226
-
2400
+
2401
+
2402
+
2403
+
2404
+
2405
+
2406
+ <h5>Returns:</h5>
2407
+
2408
+
2227
2409
  <div class="param-desc">
2228
2410
  <p>Reflection descriptor or <code>null</code> if not found</p>
2229
2411
  </div>
@@ -2242,34 +2424,45 @@ return the built package.</p>
2242
2424
  </dd>
2243
2425
  </dl>
2244
2426
 
2245
-
2246
-
2247
2427
 
2248
- </dd>
2428
+
2429
+
2249
2430
 
2250
2431
 
2251
2432
 
2252
- <dt>
2253
- <h4 class="name" id="reset"><span class="type-signature"></span>reset<span class="signature">()</span><span class="type-signature"> &rarr; (non-null) {<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a>}</span></h4>
2254
2433
 
2255
2434
 
2256
- </dt>
2257
- <dd>
2258
2435
 
2259
-
2260
- <div class="description">
2261
- <p>Resets the pointer to the root namespace.</p>
2262
- </div>
2263
-
2436
+ <h4 class="name" id="reset"><span class="type-signature"></span>reset<span class="signature">()</span><span class="type-signature"> &rarr; (non-null) {<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a>}</span></h4>
2264
2437
 
2265
2438
 
2266
2439
 
2440
+
2441
+
2442
+ <div class="description">
2443
+ <p>Resets the pointer to the root namespace.</p>
2444
+ </div>
2445
+
2446
+
2447
+
2448
+
2449
+
2450
+
2451
+
2452
+
2453
+
2454
+
2455
+
2456
+
2457
+
2458
+ <dl class="details">
2459
+
2267
2460
 
2268
2461
 
2269
2462
 
2270
2463
 
2271
2464
 
2272
- <dl class="details">
2465
+
2273
2466
 
2274
2467
 
2275
2468
 
@@ -2291,7 +2484,7 @@ return the built package.</p>
2291
2484
 
2292
2485
  <dt class="tag-source">Source:</dt>
2293
2486
  <dd class="tag-source"><ul class="dummy"><li>
2294
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4408">line 4408</a>
2487
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4433">line 4433</a>
2295
2488
  </li></ul></dd>
2296
2489
 
2297
2490
 
@@ -2303,20 +2496,20 @@ return the built package.</p>
2303
2496
  </dl>
2304
2497
 
2305
2498
 
2306
-
2307
2499
 
2308
-
2309
2500
 
2310
-
2311
2501
 
2312
-
2313
2502
 
2314
-
2315
2503
 
2316
-
2317
- <h5>Returns:</h5>
2318
-
2319
-
2504
+
2505
+
2506
+
2507
+
2508
+
2509
+
2510
+ <h5>Returns:</h5>
2511
+
2512
+
2320
2513
  <div class="param-desc">
2321
2514
  <p>this</p>
2322
2515
  </div>
@@ -2335,34 +2528,45 @@ return the built package.</p>
2335
2528
  </dd>
2336
2529
  </dl>
2337
2530
 
2338
-
2339
-
2340
2531
 
2341
- </dd>
2532
+
2533
+
2342
2534
 
2343
2535
 
2344
2536
 
2345
- <dt>
2346
- <h4 class="name" id="resolveAll"><span class="type-signature"></span>resolveAll<span class="signature">()</span><span class="type-signature"> &rarr; (non-null) {<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a>}</span></h4>
2347
2537
 
2348
2538
 
2349
- </dt>
2350
- <dd>
2351
2539
 
2352
-
2353
- <div class="description">
2354
- <p>Resolves all namespace objects.</p>
2355
- </div>
2356
-
2540
+ <h4 class="name" id="resolveAll"><span class="type-signature"></span>resolveAll<span class="signature">()</span><span class="type-signature"> &rarr; (non-null) {<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a>}</span></h4>
2357
2541
 
2358
2542
 
2359
2543
 
2544
+
2545
+
2546
+ <div class="description">
2547
+ <p>Resolves all namespace objects.</p>
2548
+ </div>
2549
+
2550
+
2551
+
2552
+
2553
+
2554
+
2555
+
2556
+
2557
+
2558
+
2559
+
2560
+
2561
+
2562
+ <dl class="details">
2563
+
2360
2564
 
2361
2565
 
2362
2566
 
2363
2567
 
2364
2568
 
2365
- <dl class="details">
2569
+
2366
2570
 
2367
2571
 
2368
2572
 
@@ -2384,7 +2588,7 @@ return the built package.</p>
2384
2588
 
2385
2589
  <dt class="tag-source">Source:</dt>
2386
2590
  <dd class="tag-source"><ul class="dummy"><li>
2387
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4737">line 4737</a>
2591
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4769">line 4769</a>
2388
2592
  </li></ul></dd>
2389
2593
 
2390
2594
 
@@ -2396,25 +2600,26 @@ return the built package.</p>
2396
2600
  </dl>
2397
2601
 
2398
2602
 
2399
-
2400
2603
 
2401
-
2402
2604
 
2403
-
2404
2605
 
2405
-
2406
2606
 
2407
-
2408
- <h5>Throws:</h5>
2409
-
2410
-
2607
+
2608
+
2609
+
2610
+
2611
+
2612
+ <h5>Throws:</h5>
2613
+
2614
+
2411
2615
 
2412
2616
  <dl>
2413
2617
  <dt>
2414
2618
  <div class="param-desc">
2415
- If a type cannot be resolved
2619
+ <p>If a type cannot be resolved</p>
2416
2620
  </div>
2417
2621
  </dt>
2622
+ <dd></dd>
2418
2623
  <dt>
2419
2624
  <dl>
2420
2625
  <dt>
@@ -2428,15 +2633,16 @@ return the built package.</p>
2428
2633
  </dd>
2429
2634
  </dl>
2430
2635
  </dt>
2636
+ <dd></dd>
2431
2637
  </dl>
2432
2638
 
2433
2639
 
2434
-
2435
-
2436
-
2437
- <h5>Returns:</h5>
2438
2640
 
2439
-
2641
+
2642
+
2643
+ <h5>Returns:</h5>
2644
+
2645
+
2440
2646
  <div class="param-desc">
2441
2647
  <p>this</p>
2442
2648
  </div>
@@ -2455,34 +2661,45 @@ return the built package.</p>
2455
2661
  </dd>
2456
2662
  </dl>
2457
2663
 
2458
-
2459
-
2460
2664
 
2461
- </dd>
2665
+
2666
+
2462
2667
 
2463
2668
 
2464
2669
 
2465
- <dt>
2466
- <h4 class="name" id="toString"><span class="type-signature"></span>toString<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
2467
2670
 
2468
2671
 
2469
- </dt>
2470
- <dd>
2471
2672
 
2472
-
2473
- <div class="description">
2474
- <p>Returns a string representation of this object.</p>
2475
- </div>
2476
-
2673
+ <h4 class="name" id="toString"><span class="type-signature"></span>toString<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
2477
2674
 
2478
2675
 
2479
2676
 
2677
+
2678
+
2679
+ <div class="description">
2680
+ <p>Returns a string representation of this object.</p>
2681
+ </div>
2682
+
2683
+
2684
+
2685
+
2686
+
2687
+
2688
+
2689
+
2690
+
2691
+
2692
+
2693
+
2694
+
2695
+ <dl class="details">
2696
+
2480
2697
 
2481
2698
 
2482
2699
 
2483
2700
 
2484
2701
 
2485
- <dl class="details">
2702
+
2486
2703
 
2487
2704
 
2488
2705
 
@@ -2504,7 +2721,7 @@ return the built package.</p>
2504
2721
 
2505
2722
  <dt class="tag-source">Source:</dt>
2506
2723
  <dd class="tag-source"><ul class="dummy"><li>
2507
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4848">line 4848</a>
2724
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line4890">line 4890</a>
2508
2725
  </li></ul></dd>
2509
2726
 
2510
2727
 
@@ -2516,20 +2733,20 @@ return the built package.</p>
2516
2733
  </dl>
2517
2734
 
2518
2735
 
2519
-
2520
2736
 
2521
-
2522
2737
 
2523
-
2524
2738
 
2525
-
2526
2739
 
2527
-
2528
2740
 
2529
-
2530
- <h5>Returns:</h5>
2531
-
2532
-
2741
+
2742
+
2743
+
2744
+
2745
+
2746
+
2747
+ <h5>Returns:</h5>
2748
+
2749
+
2533
2750
  <div class="param-desc">
2534
2751
  <p>String representation as of &quot;Builder&quot;</p>
2535
2752
  </div>
@@ -2548,12 +2765,11 @@ return the built package.</p>
2548
2765
  </dd>
2549
2766
  </dl>
2550
2767
 
2551
-
2552
-
2553
2768
 
2554
- </dd>
2555
2769
 
2556
- </dl>
2770
+
2771
+
2772
+
2557
2773
 
2558
2774
 
2559
2775
 
@@ -2569,13 +2785,13 @@ return the built package.</p>
2569
2785
  </div>
2570
2786
 
2571
2787
  <nav>
2572
- <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>
2788
+ <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>
2573
2789
  </nav>
2574
2790
 
2575
- <br clear="both">
2791
+ <br class="clear">
2576
2792
 
2577
2793
  <footer>
2578
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-alpha9</a> on Wed Jan 06 2016 01:34:58 GMT+0100 (Mitteleuropäische Zeit)
2794
+ 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)
2579
2795
  </footer>
2580
2796
 
2581
2797
  <script> prettyPrint(); </script>