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,43 +23,47 @@
23
23
 
24
24
 
25
25
 
26
+
26
27
  <section>
27
28
 
28
29
  <header>
29
- <h2>
30
- <span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.Reflect.html">.Reflect</a><a href="ProtoBuf.Reflect.Message.html">.Message</a>.</span>
31
30
 
32
- OneOf
33
- </h2>
31
+ <h2>
32
+ <span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.Reflect.html">.Reflect</a><a href="ProtoBuf.Reflect.Message.html">.Message</a>.</span>
33
+
34
+ OneOf
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="OneOf"><span class="type-signature"></span>new OneOf<span class="signature">(builder<span class="signature-attributes">non-null</span>, message<span class="signature-attributes">non-null</span>, name)</span><span class="type-signature"></span></h4>
45
48
 
46
49
 
47
- </dt>
48
- <dd>
49
50
 
50
-
51
- <div class="description">
52
- <p>Constructs a new Message OneOf.</p>
53
- </div>
54
-
55
51
 
56
-
57
52
 
58
-
53
+ <div class="description">
54
+ <p>Constructs a new Message OneOf.</p>
55
+ </div>
59
56
 
57
+
58
+
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>
@@ -151,10 +155,20 @@
151
155
 
152
156
  </tbody>
153
157
  </table>
158
+
159
+
160
+
161
+
162
+
163
+
164
+ <dl class="details">
165
+
154
166
 
155
167
 
156
168
 
157
- <dl class="details">
169
+
170
+
171
+
158
172
 
159
173
 
160
174
 
@@ -176,7 +190,7 @@
176
190
 
177
191
  <dt class="tag-source">Source:</dt>
178
192
  <dd class="tag-source"><ul class="dummy"><li>
179
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3778">line 3778</a>
193
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3803">line 3803</a>
180
194
  </li></ul></dd>
181
195
 
182
196
 
@@ -188,20 +202,19 @@
188
202
  </dl>
189
203
 
190
204
 
191
-
192
205
 
193
-
194
206
 
195
-
196
207
 
197
-
198
208
 
199
-
200
209
 
201
-
202
210
 
203
-
204
- </dd>
211
+
212
+
213
+
214
+
215
+
216
+
217
+
205
218
 
206
219
 
207
220
  </div>
@@ -209,10 +222,13 @@
209
222
 
210
223
  <h3 class="subsection-title">Extends</h3>
211
224
 
212
- <ul>
213
- <li><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></li>
214
- </ul>
215
-
225
+
226
+
227
+
228
+ <ul>
229
+ <li><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></li>
230
+ </ul>
231
+
216
232
 
217
233
 
218
234
 
@@ -227,35 +243,34 @@
227
243
 
228
244
  <h3 class="subsection-title">Members</h3>
229
245
 
230
- <dl>
246
+
231
247
 
232
- <dt>
233
- <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>
248
+ <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>
234
249
 
235
-
236
- </dt>
237
- <dd>
238
-
239
- <div class="description">
240
- <p>Builder reference.</p>
241
- </div>
242
-
243
250
 
244
-
245
- <h5>Type:</h5>
246
- <ul>
247
- <li>
248
-
251
+
252
+
253
+ <div class="description">
254
+ <p>Builder reference.</p>
255
+ </div>
256
+
257
+
258
+
259
+ <h5>Type:</h5>
260
+ <ul>
261
+ <li>
262
+
249
263
  <span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
250
264
 
251
265
 
252
- </li>
253
- </ul>
254
-
266
+ </li>
267
+ </ul>
268
+
269
+
270
+
271
+
255
272
 
256
-
257
273
  <dl class="details">
258
-
259
274
 
260
275
 
261
276
 
@@ -265,7 +280,15 @@
265
280
  <dt class="inherited-from">Inherited From:</dt>
266
281
  <dd class="inherited-from"><ul class="dummy"><li>
267
282
  <a href="ProtoBuf.Reflect.T.html#builder">ProtoBuf.Reflect.T#builder</a>
268
- </li></dd>
283
+ </li></ul></dd>
284
+
285
+
286
+
287
+
288
+
289
+
290
+
291
+
269
292
 
270
293
 
271
294
 
@@ -281,7 +304,7 @@
281
304
 
282
305
  <dt class="tag-source">Source:</dt>
283
306
  <dd class="tag-source"><ul class="dummy"><li>
284
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1413">line 1413</a>
307
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1417">line 1417</a>
285
308
  </li></ul></dd>
286
309
 
287
310
 
@@ -293,40 +316,38 @@
293
316
  </dl>
294
317
 
295
318
 
296
-
297
319
 
298
-
299
- </dd>
320
+
321
+
300
322
 
301
323
 
302
324
 
303
- <dt>
304
- <h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"> :string</span></h4>
325
+ <h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"> :string</span></h4>
305
326
 
306
-
307
- </dt>
308
- <dd>
309
-
310
- <div class="description">
311
- <p>Fully qualified class name</p>
312
- </div>
313
-
314
327
 
315
-
316
- <h5>Type:</h5>
317
- <ul>
318
- <li>
319
-
328
+
329
+
330
+ <div class="description">
331
+ <p>Fully qualified class name</p>
332
+ </div>
333
+
334
+
335
+
336
+ <h5>Type:</h5>
337
+ <ul>
338
+ <li>
339
+
320
340
  <span class="param-type">string</span>
321
341
 
322
342
 
323
- </li>
324
- </ul>
325
-
343
+ </li>
344
+ </ul>
345
+
346
+
347
+
348
+
326
349
 
327
-
328
350
  <dl class="details">
329
-
330
351
 
331
352
 
332
353
 
@@ -336,7 +357,15 @@
336
357
  <dt class="inherited-from">Inherited From:</dt>
337
358
  <dd class="inherited-from"><ul class="dummy"><li>
338
359
  <a href="ProtoBuf.Reflect.T.html#className">ProtoBuf.Reflect.T#className</a>
339
- </li></dd>
360
+ </li></ul></dd>
361
+
362
+
363
+
364
+
365
+
366
+
367
+
368
+
340
369
 
341
370
 
342
371
 
@@ -352,7 +381,7 @@
352
381
 
353
382
  <dt class="tag-source">Source:</dt>
354
383
  <dd class="tag-source"><ul class="dummy"><li>
355
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1434">line 1434</a>
384
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1438">line 1438</a>
356
385
  </li></ul></dd>
357
386
 
358
387
 
@@ -364,39 +393,45 @@
364
393
  </dl>
365
394
 
366
395
 
367
-
368
396
 
369
-
370
- </dd>
397
+
398
+
371
399
 
372
400
 
373
401
 
374
- <dt>
375
- <h4 class="name" id="fields"><span class="type-signature">(non-null) </span>fields<span class="type-signature"> :Array.&lt;<a href="ProtoBuf.Reflect.Message.Field.html">ProtoBuf.Reflect.Message.Field</a>></span></h4>
402
+ <h4 class="name" id="fields"><span class="type-signature">(non-null) </span>fields<span class="type-signature"> :Array.&lt;!<a href="ProtoBuf.Reflect.Message.Field.html">ProtoBuf.Reflect.Message.Field</a>></span></h4>
403
+
404
+
405
+
406
+
407
+ <div class="description">
408
+ <p>Enclosed fields.</p>
409
+ </div>
410
+
411
+
412
+
413
+ <h5>Type:</h5>
414
+ <ul>
415
+ <li>
416
+
417
+ <span class="param-type">Array.&lt;!<a href="ProtoBuf.Reflect.Message.Field.html">ProtoBuf.Reflect.Message.Field</a>></span>
418
+
419
+
420
+ </li>
421
+ </ul>
376
422
 
377
-
378
- </dt>
379
- <dd>
380
-
381
- <div class="description">
382
- <p>Enclosed fields.</p>
383
- </div>
384
-
385
423
 
386
-
387
- <h5>Type:</h5>
388
- <ul>
389
- <li>
390
-
391
- <span class="param-type">Array.&lt;<a href="ProtoBuf.Reflect.Message.Field.html">ProtoBuf.Reflect.Message.Field</a>></span>
392
424
 
393
425
 
394
- </li>
395
- </ul>
426
+
427
+ <dl class="details">
428
+
396
429
 
397
430
 
398
431
 
399
- <dl class="details">
432
+
433
+
434
+
400
435
 
401
436
 
402
437
 
@@ -418,7 +453,7 @@
418
453
 
419
454
  <dt class="tag-source">Source:</dt>
420
455
  <dd class="tag-source"><ul class="dummy"><li>
421
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3786">line 3786</a>
456
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3811">line 3811</a>
422
457
  </li></ul></dd>
423
458
 
424
459
 
@@ -430,40 +465,38 @@
430
465
  </dl>
431
466
 
432
467
 
433
-
434
468
 
435
-
436
- </dd>
469
+
470
+
437
471
 
438
472
 
439
473
 
440
- <dt>
441
- <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
474
+ <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
442
475
 
443
-
444
- </dt>
445
- <dd>
446
-
447
- <div class="description">
448
- <p>Object name in namespace.</p>
449
- </div>
450
-
451
476
 
452
-
453
- <h5>Type:</h5>
454
- <ul>
455
- <li>
456
-
477
+
478
+
479
+ <div class="description">
480
+ <p>Object name in namespace.</p>
481
+ </div>
482
+
483
+
484
+
485
+ <h5>Type:</h5>
486
+ <ul>
487
+ <li>
488
+
457
489
  <span class="param-type">string</span>
458
490
 
459
491
 
460
- </li>
461
- </ul>
462
-
492
+ </li>
493
+ </ul>
494
+
495
+
496
+
497
+
463
498
 
464
-
465
499
  <dl class="details">
466
-
467
500
 
468
501
 
469
502
 
@@ -473,7 +506,15 @@
473
506
  <dt class="inherited-from">Inherited From:</dt>
474
507
  <dd class="inherited-from"><ul class="dummy"><li>
475
508
  <a href="ProtoBuf.Reflect.T.html#name">ProtoBuf.Reflect.T#name</a>
476
- </li></dd>
509
+ </li></ul></dd>
510
+
511
+
512
+
513
+
514
+
515
+
516
+
517
+
477
518
 
478
519
 
479
520
 
@@ -489,7 +530,7 @@
489
530
 
490
531
  <dt class="tag-source">Source:</dt>
491
532
  <dd class="tag-source"><ul class="dummy"><li>
492
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1427">line 1427</a>
533
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1431">line 1431</a>
493
534
  </li></ul></dd>
494
535
 
495
536
 
@@ -501,40 +542,38 @@
501
542
  </dl>
502
543
 
503
544
 
504
-
505
545
 
506
-
507
- </dd>
546
+
547
+
508
548
 
509
549
 
510
550
 
511
- <dt>
512
- <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>
551
+ <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>
513
552
 
514
-
515
- </dt>
516
- <dd>
517
-
518
- <div class="description">
519
- <p>Parent object.</p>
520
- </div>
521
-
522
553
 
523
-
524
- <h5>Type:</h5>
525
- <ul>
526
- <li>
527
-
554
+
555
+
556
+ <div class="description">
557
+ <p>Parent object.</p>
558
+ </div>
559
+
560
+
561
+
562
+ <h5>Type:</h5>
563
+ <ul>
564
+ <li>
565
+
528
566
  <span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
529
567
 
530
568
 
531
- </li>
532
- </ul>
533
-
569
+ </li>
570
+ </ul>
571
+
572
+
573
+
574
+
534
575
 
535
-
536
576
  <dl class="details">
537
-
538
577
 
539
578
 
540
579
 
@@ -544,7 +583,15 @@
544
583
  <dt class="inherited-from">Inherited From:</dt>
545
584
  <dd class="inherited-from"><ul class="dummy"><li>
546
585
  <a href="ProtoBuf.Reflect.T.html#parent">ProtoBuf.Reflect.T#parent</a>
547
- </li></dd>
586
+ </li></ul></dd>
587
+
588
+
589
+
590
+
591
+
592
+
593
+
594
+
548
595
 
549
596
 
550
597
 
@@ -560,7 +607,7 @@
560
607
 
561
608
  <dt class="tag-source">Source:</dt>
562
609
  <dd class="tag-source"><ul class="dummy"><li>
563
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1420">line 1420</a>
610
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1424">line 1424</a>
564
611
  </li></ul></dd>
565
612
 
566
613
 
@@ -572,41 +619,44 @@
572
619
  </dl>
573
620
 
574
621
 
575
-
576
622
 
577
-
578
- </dd>
579
623
 
580
- </dl>
624
+
625
+
626
+
581
627
 
582
628
 
583
629
 
584
630
  <h3 class="subsection-title">Methods</h3>
585
631
 
586
- <dl>
632
+
587
633
 
588
- <dt>
589
- <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
590
634
 
591
635
 
592
- </dt>
593
- <dd>
594
636
 
595
-
596
- <div class="description">
597
- <p>Builds this type.</p>
598
- </div>
599
-
637
+ <h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
600
638
 
601
639
 
602
640
 
603
-
604
641
 
605
-
606
642
 
607
-
643
+ <div class="description">
644
+ <p>Builds this type.</p>
645
+ </div>
646
+
647
+
648
+
649
+
650
+
651
+
652
+
653
+
654
+
655
+
656
+
657
+
658
+
608
659
  <dl class="details">
609
-
610
660
 
611
661
 
612
662
 
@@ -616,7 +666,15 @@
616
666
  <dt class="inherited-from">Inherited From:</dt>
617
667
  <dd class="inherited-from"><ul class="dummy"><li>
618
668
  <a href="ProtoBuf.Reflect.T.html#build">ProtoBuf.Reflect.T#build</a>
619
- </li></dd>
669
+ </li></ul></dd>
670
+
671
+
672
+
673
+
674
+
675
+
676
+
677
+
620
678
 
621
679
 
622
680
 
@@ -632,7 +690,7 @@
632
690
 
633
691
  <dt class="tag-source">Source:</dt>
634
692
  <dd class="tag-source"><ul class="dummy"><li>
635
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1475">line 1475</a>
693
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1479">line 1479</a>
636
694
  </li></ul></dd>
637
695
 
638
696
 
@@ -644,25 +702,26 @@
644
702
  </dl>
645
703
 
646
704
 
647
-
648
705
 
649
-
650
706
 
651
-
652
707
 
653
-
654
708
 
655
-
656
- <h5>Throws:</h5>
657
-
658
-
709
+
710
+
711
+
712
+
713
+
714
+ <h5>Throws:</h5>
715
+
716
+
659
717
 
660
718
  <dl>
661
719
  <dt>
662
720
  <div class="param-desc">
663
- If this type cannot be built directly
721
+ <p>If this type cannot be built directly</p>
664
722
  </div>
665
723
  </dt>
724
+ <dd></dd>
666
725
  <dt>
667
726
  <dl>
668
727
  <dt>
@@ -676,40 +735,44 @@
676
735
  </dd>
677
736
  </dl>
678
737
  </dt>
738
+ <dd></dd>
679
739
  </dl>
680
740
 
681
741
 
682
-
683
-
684
742
 
685
743
 
686
-
687
- </dd>
744
+
745
+
746
+
688
747
 
689
748
 
690
749
 
691
- <dt>
692
- <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
693
750
 
694
751
 
695
- </dt>
696
- <dd>
697
752
 
698
-
699
- <div class="description">
700
- <p>Returns the fully qualified name of this object.</p>
701
- </div>
702
-
753
+ <h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> &rarr; {string}</span></h4>
703
754
 
704
755
 
705
756
 
706
-
707
757
 
708
-
709
758
 
710
-
759
+ <div class="description">
760
+ <p>Returns the fully qualified name of this object.</p>
761
+ </div>
762
+
763
+
764
+
765
+
766
+
767
+
768
+
769
+
770
+
771
+
772
+
773
+
774
+
711
775
  <dl class="details">
712
-
713
776
 
714
777
 
715
778
 
@@ -719,7 +782,15 @@
719
782
  <dt class="inherited-from">Inherited From:</dt>
720
783
  <dd class="inherited-from"><ul class="dummy"><li>
721
784
  <a href="ProtoBuf.Reflect.T.html#fqn">ProtoBuf.Reflect.T#fqn</a>
722
- </li></dd>
785
+ </li></ul></dd>
786
+
787
+
788
+
789
+
790
+
791
+
792
+
793
+
723
794
 
724
795
 
725
796
 
@@ -735,7 +806,7 @@
735
806
 
736
807
  <dt class="tag-source">Source:</dt>
737
808
  <dd class="tag-source"><ul class="dummy"><li>
738
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1448">line 1448</a>
809
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1452">line 1452</a>
739
810
  </li></ul></dd>
740
811
 
741
812
 
@@ -747,20 +818,20 @@
747
818
  </dl>
748
819
 
749
820
 
750
-
751
821
 
752
-
753
822
 
754
-
755
823
 
756
-
757
824
 
758
-
759
825
 
760
-
761
- <h5>Returns:</h5>
762
-
763
-
826
+
827
+
828
+
829
+
830
+
831
+
832
+ <h5>Returns:</h5>
833
+
834
+
764
835
  <div class="param-desc">
765
836
  <p>Fully qualified name as of &quot;.PATH.TO.THIS&quot;</p>
766
837
  </div>
@@ -779,33 +850,35 @@
779
850
  </dd>
780
851
  </dl>
781
852
 
782
-
783
-
784
853
 
785
- </dd>
854
+
855
+
786
856
 
787
857
 
788
858
 
789
- <dt>
790
- <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>
791
859
 
792
860
 
793
- </dt>
794
- <dd>
795
861
 
796
-
797
- <div class="description">
798
- <p>Returns a string representation of this Reflect object (its fully qualified name).</p>
799
- </div>
800
-
862
+ <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>
801
863
 
802
864
 
803
865
 
804
-
805
866
 
867
+
868
+ <div class="description">
869
+ <p>Returns a string representation of this Reflect object (its fully qualified name).</p>
870
+ </div>
871
+
872
+
873
+
874
+
875
+
876
+
877
+
878
+
879
+
880
+ <h5>Parameters:</h5>
806
881
 
807
- <h5>Parameters:</h5>
808
-
809
882
 
810
883
  <table class="params">
811
884
  <thead>
@@ -863,11 +936,13 @@
863
936
 
864
937
  </tbody>
865
938
  </table>
866
-
867
939
 
868
-
940
+
941
+
942
+
943
+
944
+
869
945
  <dl class="details">
870
-
871
946
 
872
947
 
873
948
 
@@ -877,7 +952,15 @@
877
952
  <dt class="inherited-from">Inherited From:</dt>
878
953
  <dd class="inherited-from"><ul class="dummy"><li>
879
954
  <a href="ProtoBuf.Reflect.T.html#toString">ProtoBuf.Reflect.T#toString</a>
880
- </li></dd>
955
+ </li></ul></dd>
956
+
957
+
958
+
959
+
960
+
961
+
962
+
963
+
881
964
 
882
965
 
883
966
 
@@ -893,7 +976,7 @@
893
976
 
894
977
  <dt class="tag-source">Source:</dt>
895
978
  <dd class="tag-source"><ul class="dummy"><li>
896
- <a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1466">line 1466</a>
979
+ <a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1470">line 1470</a>
897
980
  </li></ul></dd>
898
981
 
899
982
 
@@ -905,32 +988,31 @@
905
988
  </dl>
906
989
 
907
990
 
908
-
909
991
 
910
-
911
992
 
912
-
913
993
 
914
-
915
994
 
916
-
917
995
 
918
-
919
- <h5>Returns:</h5>
920
-
921
-
996
+
997
+
998
+
999
+
1000
+
1001
+
1002
+ <h5>Returns:</h5>
1003
+
1004
+
922
1005
  <div class="param-desc">
923
1006
  <p>String representation</p>
924
1007
  </div>
925
1008
 
926
1009
 
927
1010
 
928
-
929
-
930
1011
 
931
- </dd>
932
1012
 
933
- </dl>
1013
+
1014
+
1015
+
934
1016
 
935
1017
 
936
1018
 
@@ -946,13 +1028,13 @@
946
1028
  </div>
947
1029
 
948
1030
  <nav>
949
- <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>
1031
+ <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>
950
1032
  </nav>
951
1033
 
952
- <br clear="both">
1034
+ <br class="clear">
953
1035
 
954
1036
  <footer>
955
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-alpha9</a> on Wed Jan 06 2016 01:34:59 GMT+0100 (Mitteleuropäische Zeit)
1037
+ 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)
956
1038
  </footer>
957
1039
 
958
1040
  <script> prettyPrint(); </script>