protobufjs 3.6.0 → 3.8.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.
- package/bin/proto2js +16 -4
- package/bower.json +1 -1
- package/dist/ProtoBuf.js +645 -441
- package/dist/ProtoBuf.min.js +96 -96
- package/dist/ProtoBuf.min.js.gz +0 -0
- package/dist/ProtoBuf.min.map +2 -2
- package/dist/ProtoBuf.noparse.js +520 -357
- package/dist/ProtoBuf.noparse.min.js +68 -66
- package/dist/ProtoBuf.noparse.min.js.gz +0 -0
- package/dist/ProtoBuf.noparse.min.map +3 -3
- package/docs/ProtoBuf.Builder.Message.html +673 -135
- package/docs/ProtoBuf.Builder.Service.html +58 -19
- package/docs/ProtoBuf.Builder.html +374 -46
- package/docs/ProtoBuf.DotProto.Parser.html +58 -19
- package/docs/ProtoBuf.DotProto.Tokenizer.html +104 -19
- package/docs/ProtoBuf.DotProto.html +16 -10
- package/docs/ProtoBuf.Reflect.Enum.Value.html +207 -33
- package/docs/ProtoBuf.Reflect.Enum.html +318 -56
- package/docs/ProtoBuf.Reflect.Extension.html +53 -13
- package/docs/ProtoBuf.Reflect.Message.ExtensionField.html +450 -68
- package/docs/ProtoBuf.Reflect.Message.Field.html +454 -51
- package/docs/ProtoBuf.Reflect.Message.OneOf.html +1044 -0
- package/docs/ProtoBuf.Reflect.Message.html +378 -64
- package/docs/ProtoBuf.Reflect.Namespace.html +333 -51
- package/docs/ProtoBuf.Reflect.Service.Method.html +228 -35
- package/docs/ProtoBuf.Reflect.Service.RPCMethod.html +262 -41
- package/docs/ProtoBuf.Reflect.Service.html +318 -56
- package/docs/ProtoBuf.Reflect.T.html +210 -25
- package/docs/ProtoBuf.Reflect.html +17 -11
- package/docs/ProtoBuf.Util.html +59 -13
- package/docs/ProtoBuf.html +235 -67
- package/docs/ProtoBuf.js.html +648 -443
- package/docs/index.html +4 -2
- package/docs/styles/jsdoc-default.css +2 -2
- package/examples/protoify/.npmignore +2 -0
- package/examples/protoify/README.md +28 -0
- package/examples/protoify/index.js +147 -0
- package/examples/protoify/json.js +123 -0
- package/examples/protoify/json.json +123 -0
- package/examples/protoify/json.proto +30 -0
- package/examples/protoify/package.json +15 -0
- package/examples/protoify/test.js +56 -0
- package/examples/websocket/README.md +1 -0
- package/examples/websocket/package.json +1 -1
- package/externs/ProtoBuf.js +922 -922
- package/package.json +3 -3
- package/scripts/build.js +58 -58
- package/src/ProtoBuf/Builder/Message.js +107 -77
- package/src/ProtoBuf/Builder/Service.js +8 -5
- package/src/ProtoBuf/Builder.js +71 -37
- package/src/ProtoBuf/DotProto/Parser.js +108 -72
- package/src/ProtoBuf/DotProto/Tokenizer.js +17 -11
- package/src/ProtoBuf/Lang.js +1 -1
- package/src/ProtoBuf/Reflect/Enum/Value.js +3 -2
- package/src/ProtoBuf/Reflect/Enum.js +9 -5
- package/src/ProtoBuf/Reflect/Extension.js +4 -3
- package/src/ProtoBuf/Reflect/Message/ExtensionField.js +4 -3
- package/src/ProtoBuf/Reflect/Message/Field.js +45 -26
- package/src/ProtoBuf/Reflect/Message/OneOf.js +19 -0
- package/src/ProtoBuf/Reflect/Message.js +36 -19
- package/src/ProtoBuf/Reflect/Namespace.js +19 -15
- package/src/ProtoBuf/Reflect/Service/Method.js +9 -5
- package/src/ProtoBuf/Reflect/Service/RPCMethod.js +3 -2
- package/src/ProtoBuf/Reflect/Service.js +9 -5
- package/src/ProtoBuf/Reflect/T.js +20 -6
- package/src/ProtoBuf/Reflect.js +9 -0
- package/src/ProtoBuf/Util.js +132 -132
- package/src/ProtoBuf.js +15 -17
- package/src/google/protobuf/descriptor.json +33 -13
- package/tests/bench.txt +373 -373
- package/tests/complex.json +8 -4
- package/tests/custom-options.json +169 -169
- package/tests/extend.json +71 -71
- package/tests/nodeunit-browser/nodeunit.css +70 -70
- package/tests/nodeunit-browser/nodeunit.js +2108 -2108
- package/tests/oneof.proto +6 -0
- package/tests/options.json +32 -32
- package/tests/options.proto +2 -0
- package/tests/proto2js/Bar.json +46 -46
- package/tests/suite.js +83 -12
- package/.idea/.name +0 -1
- package/.idea/ProtoBuf.iml +0 -9
- package/.idea/dictionaries/Daniel.xml +0 -7
- package/.idea/encodings.xml +0 -5
- package/.idea/misc.xml +0 -5
- package/.idea/modules.xml +0 -9
- package/.idea/scopes/scope_settings.xml +0 -5
- package/.idea/vcs.xml +0 -7
- package/.idea/workspace.xml +0 -551
- package/NOTICE +0 -2
- package/sandbox/issue146/MyOptions.proto +0 -28
- package/sandbox/issue146/Sample.proto +0 -21
- package/sandbox/issue146/main.js +0 -3
- package/sandbox/issue147/enum.proto +0 -8
- package/sandbox/issue147/main.js +0 -3
- package/sandbox/issue42/innerextend.proto +0 -18
- package/sandbox/issue42/main.js +0 -8
- package/sandbox/issue42/outerextend.proto +0 -17
- package/v8.log +0 -3828
|
@@ -23,26 +23,29 @@
|
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
|
|
26
|
+
|
|
26
27
|
<section>
|
|
27
28
|
|
|
28
29
|
<header>
|
|
29
|
-
<h2>
|
|
30
|
-
<span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.Reflect.html">.Reflect</a>.</span>
|
|
31
30
|
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
<h2>
|
|
32
|
+
<span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.Reflect.html">.Reflect</a>.</span>
|
|
33
|
+
|
|
34
|
+
Enum
|
|
35
|
+
</h2>
|
|
36
|
+
|
|
34
37
|
|
|
35
38
|
</header>
|
|
36
39
|
|
|
37
40
|
<article>
|
|
38
41
|
<div class="container-overview">
|
|
39
42
|
|
|
40
|
-
|
|
41
|
-
|
|
42
43
|
|
|
43
44
|
<dt>
|
|
44
|
-
|
|
45
|
+
|
|
46
|
+
<h4 class="name" id="Enum"><span class="type-signature"></span>new Enum<span class="signature">(builder<span class="signature-attributes">non-null</span>, parent<span class="signature-attributes">non-null</span>, name, options<span class="signature-attributes">opt</span>)</span><span class="type-signature"></span></h4>
|
|
45
47
|
|
|
48
|
+
|
|
46
49
|
|
|
47
50
|
</dt>
|
|
48
51
|
<dd>
|
|
@@ -58,6 +61,8 @@
|
|
|
58
61
|
|
|
59
62
|
|
|
60
63
|
|
|
64
|
+
|
|
65
|
+
|
|
61
66
|
<h5>Parameters:</h5>
|
|
62
67
|
|
|
63
68
|
|
|
@@ -83,6 +88,37 @@
|
|
|
83
88
|
<tbody>
|
|
84
89
|
|
|
85
90
|
|
|
91
|
+
<tr>
|
|
92
|
+
|
|
93
|
+
<td class="name"><code>builder</code></td>
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
<td class="type">
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
<span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
</td>
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
<td class="attributes">
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
</td>
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
<td class="description last"><p>Builder reference</p></td>
|
|
118
|
+
</tr>
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
86
122
|
<tr>
|
|
87
123
|
|
|
88
124
|
<td class="name"><code>parent</code></td>
|
|
@@ -182,7 +218,14 @@
|
|
|
182
218
|
|
|
183
219
|
|
|
184
220
|
|
|
221
|
+
|
|
222
|
+
|
|
185
223
|
<dl class="details">
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
186
229
|
|
|
187
230
|
|
|
188
231
|
|
|
@@ -204,7 +247,7 @@
|
|
|
204
247
|
|
|
205
248
|
<dt class="tag-source">Source:</dt>
|
|
206
249
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
207
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
250
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3217">line 3217</a>
|
|
208
251
|
</li></ul></dd>
|
|
209
252
|
|
|
210
253
|
|
|
@@ -237,10 +280,13 @@
|
|
|
237
280
|
|
|
238
281
|
<h3 class="subsection-title">Extends</h3>
|
|
239
282
|
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
<ul>
|
|
287
|
+
<li><a href="ProtoBuf.Reflect.Namespace.html">ProtoBuf.Reflect.Namespace</a></li>
|
|
288
|
+
</ul>
|
|
289
|
+
|
|
244
290
|
|
|
245
291
|
|
|
246
292
|
|
|
@@ -265,7 +311,85 @@
|
|
|
265
311
|
<dl>
|
|
266
312
|
|
|
267
313
|
<dt>
|
|
268
|
-
<h4 class="name" id="
|
|
314
|
+
<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>
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
</dt>
|
|
318
|
+
<dd>
|
|
319
|
+
|
|
320
|
+
<div class="description">
|
|
321
|
+
<p>Builder reference.</p>
|
|
322
|
+
</div>
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
<h5>Type:</h5>
|
|
327
|
+
<ul>
|
|
328
|
+
<li>
|
|
329
|
+
|
|
330
|
+
<span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
</li>
|
|
334
|
+
</ul>
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
<dl class="details">
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
<dt class="inherited-from">Inherited From:</dt>
|
|
348
|
+
<dd class="inherited-from"><ul class="dummy"><li>
|
|
349
|
+
<a href="ProtoBuf.Reflect.T.html#builder">ProtoBuf.Reflect.T#builder</a>
|
|
350
|
+
</li></dd>
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
<dt class="tag-source">Source:</dt>
|
|
371
|
+
<dd class="tag-source"><ul class="dummy"><li>
|
|
372
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1352">line 1352</a>
|
|
373
|
+
</li></ul></dd>
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
</dl>
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
</dd>
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
<dt>
|
|
392
|
+
<h4 class="name" id="children"><span class="type-signature">(non-null) </span>children<span class="type-signature"> :Array.<<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>></span></h4>
|
|
269
393
|
|
|
270
394
|
|
|
271
395
|
</dt>
|
|
@@ -289,8 +413,9 @@
|
|
|
289
413
|
|
|
290
414
|
|
|
291
415
|
|
|
416
|
+
|
|
417
|
+
|
|
292
418
|
<dl class="details">
|
|
293
|
-
|
|
294
419
|
|
|
295
420
|
|
|
296
421
|
|
|
@@ -314,9 +439,15 @@
|
|
|
314
439
|
|
|
315
440
|
|
|
316
441
|
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
|
|
317
448
|
<dt class="tag-source">Source:</dt>
|
|
318
449
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
319
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
450
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1446">line 1446</a>
|
|
320
451
|
</li></ul></dd>
|
|
321
452
|
|
|
322
453
|
|
|
@@ -346,7 +477,14 @@
|
|
|
346
477
|
|
|
347
478
|
|
|
348
479
|
|
|
480
|
+
|
|
481
|
+
|
|
349
482
|
<dl class="details">
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
|
|
350
488
|
|
|
351
489
|
|
|
352
490
|
|
|
@@ -368,7 +506,7 @@
|
|
|
368
506
|
|
|
369
507
|
<dt class="tag-source">Source:</dt>
|
|
370
508
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
371
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
509
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3223">line 3223</a>
|
|
372
510
|
</li></ul></dd>
|
|
373
511
|
|
|
374
512
|
|
|
@@ -412,8 +550,9 @@
|
|
|
412
550
|
|
|
413
551
|
|
|
414
552
|
|
|
553
|
+
|
|
554
|
+
|
|
415
555
|
<dl class="details">
|
|
416
|
-
|
|
417
556
|
|
|
418
557
|
|
|
419
558
|
|
|
@@ -437,9 +576,15 @@
|
|
|
437
576
|
|
|
438
577
|
|
|
439
578
|
|
|
579
|
+
|
|
580
|
+
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
|
|
440
585
|
<dt class="tag-source">Source:</dt>
|
|
441
586
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
442
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
587
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1366">line 1366</a>
|
|
443
588
|
</li></ul></dd>
|
|
444
589
|
|
|
445
590
|
|
|
@@ -486,7 +631,14 @@
|
|
|
486
631
|
|
|
487
632
|
|
|
488
633
|
|
|
634
|
+
|
|
635
|
+
|
|
489
636
|
<dl class="details">
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
|
|
490
642
|
|
|
491
643
|
|
|
492
644
|
|
|
@@ -508,7 +660,7 @@
|
|
|
508
660
|
|
|
509
661
|
<dt class="tag-source">Source:</dt>
|
|
510
662
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
511
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
663
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3230">line 3230</a>
|
|
512
664
|
</li></ul></dd>
|
|
513
665
|
|
|
514
666
|
|
|
@@ -528,7 +680,7 @@
|
|
|
528
680
|
|
|
529
681
|
|
|
530
682
|
<dt>
|
|
531
|
-
<h4 class="name" id="options"><span class="type-signature"
|
|
683
|
+
<h4 class="name" id="options"><span class="type-signature">(non-null) </span>options<span class="type-signature"> :<a href="Object.html">Object</a>.<string, *></span></h4>
|
|
532
684
|
|
|
533
685
|
|
|
534
686
|
</dt>
|
|
@@ -552,8 +704,9 @@
|
|
|
552
704
|
|
|
553
705
|
|
|
554
706
|
|
|
707
|
+
|
|
708
|
+
|
|
555
709
|
<dl class="details">
|
|
556
|
-
|
|
557
710
|
|
|
558
711
|
|
|
559
712
|
|
|
@@ -577,9 +730,15 @@
|
|
|
577
730
|
|
|
578
731
|
|
|
579
732
|
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
|
|
738
|
+
|
|
580
739
|
<dt class="tag-source">Source:</dt>
|
|
581
740
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
582
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
741
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1452">line 1452</a>
|
|
583
742
|
</li></ul></dd>
|
|
584
743
|
|
|
585
744
|
|
|
@@ -599,7 +758,7 @@
|
|
|
599
758
|
|
|
600
759
|
|
|
601
760
|
<dt>
|
|
602
|
-
<h4 class="name" id="parent"><span class="type-signature"
|
|
761
|
+
<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>
|
|
603
762
|
|
|
604
763
|
|
|
605
764
|
</dt>
|
|
@@ -616,9 +775,6 @@
|
|
|
616
775
|
<li>
|
|
617
776
|
|
|
618
777
|
<span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
|
|
619
|
-
|
|
|
620
|
-
|
|
621
|
-
<span class="param-type">null</span>
|
|
622
778
|
|
|
623
779
|
|
|
624
780
|
</li>
|
|
@@ -626,8 +782,9 @@
|
|
|
626
782
|
|
|
627
783
|
|
|
628
784
|
|
|
785
|
+
|
|
786
|
+
|
|
629
787
|
<dl class="details">
|
|
630
|
-
|
|
631
788
|
|
|
632
789
|
|
|
633
790
|
|
|
@@ -651,9 +808,15 @@
|
|
|
651
808
|
|
|
652
809
|
|
|
653
810
|
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
|
|
815
|
+
|
|
816
|
+
|
|
654
817
|
<dt class="tag-source">Source:</dt>
|
|
655
818
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
656
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
819
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1359">line 1359</a>
|
|
657
820
|
</li></ul></dd>
|
|
658
821
|
|
|
659
822
|
|
|
@@ -679,8 +842,10 @@
|
|
|
679
842
|
<dl>
|
|
680
843
|
|
|
681
844
|
<dt>
|
|
682
|
-
|
|
845
|
+
|
|
846
|
+
<h4 class="name" id="addChild"><span class="type-signature"></span>addChild<span class="signature">(child)</span><span class="type-signature"></span></h4>
|
|
683
847
|
|
|
848
|
+
|
|
684
849
|
|
|
685
850
|
</dt>
|
|
686
851
|
<dd>
|
|
@@ -696,6 +861,8 @@
|
|
|
696
861
|
|
|
697
862
|
|
|
698
863
|
|
|
864
|
+
|
|
865
|
+
|
|
699
866
|
<h5>Parameters:</h5>
|
|
700
867
|
|
|
701
868
|
|
|
@@ -746,8 +913,9 @@
|
|
|
746
913
|
|
|
747
914
|
|
|
748
915
|
|
|
916
|
+
|
|
917
|
+
|
|
749
918
|
<dl class="details">
|
|
750
|
-
|
|
751
919
|
|
|
752
920
|
|
|
753
921
|
|
|
@@ -771,9 +939,15 @@
|
|
|
771
939
|
|
|
772
940
|
|
|
773
941
|
|
|
942
|
+
|
|
943
|
+
|
|
944
|
+
|
|
945
|
+
|
|
946
|
+
|
|
947
|
+
|
|
774
948
|
<dt class="tag-source">Source:</dt>
|
|
775
949
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
776
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
950
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1484">line 1484</a>
|
|
777
951
|
</li></ul></dd>
|
|
778
952
|
|
|
779
953
|
|
|
@@ -830,8 +1004,10 @@
|
|
|
830
1004
|
|
|
831
1005
|
|
|
832
1006
|
<dt>
|
|
833
|
-
|
|
1007
|
+
|
|
1008
|
+
<h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"> → {<a href="Object.html">Object</a>.<string, *>}</span></h4>
|
|
834
1009
|
|
|
1010
|
+
|
|
835
1011
|
|
|
836
1012
|
</dt>
|
|
837
1013
|
<dd>
|
|
@@ -849,7 +1025,16 @@
|
|
|
849
1025
|
|
|
850
1026
|
|
|
851
1027
|
|
|
1028
|
+
|
|
1029
|
+
|
|
1030
|
+
|
|
1031
|
+
|
|
852
1032
|
<dl class="details">
|
|
1033
|
+
|
|
1034
|
+
|
|
1035
|
+
|
|
1036
|
+
|
|
1037
|
+
|
|
853
1038
|
|
|
854
1039
|
|
|
855
1040
|
|
|
@@ -871,7 +1056,7 @@
|
|
|
871
1056
|
|
|
872
1057
|
<dt class="tag-source">Source:</dt>
|
|
873
1058
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
874
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1059
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3244">line 3244</a>
|
|
875
1060
|
</li></ul></dd>
|
|
876
1061
|
|
|
877
1062
|
|
|
@@ -919,8 +1104,10 @@
|
|
|
919
1104
|
|
|
920
1105
|
|
|
921
1106
|
<dt>
|
|
922
|
-
|
|
1107
|
+
|
|
1108
|
+
<h4 class="name" id="buildOpt"><span class="type-signature"></span>buildOpt<span class="signature">()</span><span class="type-signature"> → {<a href="Object.html">Object</a>.<string, *>}</span></h4>
|
|
923
1109
|
|
|
1110
|
+
|
|
924
1111
|
|
|
925
1112
|
</dt>
|
|
926
1113
|
<dd>
|
|
@@ -938,9 +1125,12 @@
|
|
|
938
1125
|
|
|
939
1126
|
|
|
940
1127
|
|
|
941
|
-
|
|
1128
|
+
|
|
942
1129
|
|
|
943
1130
|
|
|
1131
|
+
|
|
1132
|
+
<dl class="details">
|
|
1133
|
+
|
|
944
1134
|
|
|
945
1135
|
|
|
946
1136
|
|
|
@@ -963,9 +1153,15 @@
|
|
|
963
1153
|
|
|
964
1154
|
|
|
965
1155
|
|
|
1156
|
+
|
|
1157
|
+
|
|
1158
|
+
|
|
1159
|
+
|
|
1160
|
+
|
|
1161
|
+
|
|
966
1162
|
<dt class="tag-source">Source:</dt>
|
|
967
1163
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
968
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1164
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1571">line 1571</a>
|
|
969
1165
|
</li></ul></dd>
|
|
970
1166
|
|
|
971
1167
|
|
|
@@ -1013,8 +1209,10 @@
|
|
|
1013
1209
|
|
|
1014
1210
|
|
|
1015
1211
|
<dt>
|
|
1016
|
-
|
|
1212
|
+
|
|
1213
|
+
<h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
1017
1214
|
|
|
1215
|
+
|
|
1018
1216
|
|
|
1019
1217
|
</dt>
|
|
1020
1218
|
<dd>
|
|
@@ -1032,9 +1230,12 @@
|
|
|
1032
1230
|
|
|
1033
1231
|
|
|
1034
1232
|
|
|
1035
|
-
|
|
1233
|
+
|
|
1036
1234
|
|
|
1037
1235
|
|
|
1236
|
+
|
|
1237
|
+
<dl class="details">
|
|
1238
|
+
|
|
1038
1239
|
|
|
1039
1240
|
|
|
1040
1241
|
|
|
@@ -1057,9 +1258,15 @@
|
|
|
1057
1258
|
|
|
1058
1259
|
|
|
1059
1260
|
|
|
1261
|
+
|
|
1262
|
+
|
|
1263
|
+
|
|
1264
|
+
|
|
1265
|
+
|
|
1266
|
+
|
|
1060
1267
|
<dt class="tag-source">Source:</dt>
|
|
1061
1268
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1062
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1269
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1387">line 1387</a>
|
|
1063
1270
|
</li></ul></dd>
|
|
1064
1271
|
|
|
1065
1272
|
|
|
@@ -1111,8 +1318,10 @@
|
|
|
1111
1318
|
|
|
1112
1319
|
|
|
1113
1320
|
<dt>
|
|
1114
|
-
|
|
1321
|
+
|
|
1322
|
+
<h4 class="name" id="getChild"><span class="type-signature"></span>getChild<span class="signature">(nameOrId)</span><span class="type-signature"> → (nullable) {<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>}</span></h4>
|
|
1115
1323
|
|
|
1324
|
+
|
|
1116
1325
|
|
|
1117
1326
|
</dt>
|
|
1118
1327
|
<dd>
|
|
@@ -1128,6 +1337,8 @@
|
|
|
1128
1337
|
|
|
1129
1338
|
|
|
1130
1339
|
|
|
1340
|
+
|
|
1341
|
+
|
|
1131
1342
|
<h5>Parameters:</h5>
|
|
1132
1343
|
|
|
1133
1344
|
|
|
@@ -1181,8 +1392,9 @@
|
|
|
1181
1392
|
|
|
1182
1393
|
|
|
1183
1394
|
|
|
1395
|
+
|
|
1396
|
+
|
|
1184
1397
|
<dl class="details">
|
|
1185
|
-
|
|
1186
1398
|
|
|
1187
1399
|
|
|
1188
1400
|
|
|
@@ -1206,9 +1418,15 @@
|
|
|
1206
1418
|
|
|
1207
1419
|
|
|
1208
1420
|
|
|
1421
|
+
|
|
1422
|
+
|
|
1423
|
+
|
|
1424
|
+
|
|
1425
|
+
|
|
1426
|
+
|
|
1209
1427
|
<dt class="tag-source">Source:</dt>
|
|
1210
1428
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1211
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1429
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1504">line 1504</a>
|
|
1212
1430
|
</li></ul></dd>
|
|
1213
1431
|
|
|
1214
1432
|
|
|
@@ -1260,8 +1478,10 @@
|
|
|
1260
1478
|
|
|
1261
1479
|
|
|
1262
1480
|
<dt>
|
|
1263
|
-
|
|
1481
|
+
|
|
1482
|
+
<h4 class="name" id="getChildren"><span class="type-signature"></span>getChildren<span class="signature">(type<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {Array.<<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>>}</span></h4>
|
|
1264
1483
|
|
|
1484
|
+
|
|
1265
1485
|
|
|
1266
1486
|
</dt>
|
|
1267
1487
|
<dd>
|
|
@@ -1277,6 +1497,8 @@
|
|
|
1277
1497
|
|
|
1278
1498
|
|
|
1279
1499
|
|
|
1500
|
+
|
|
1501
|
+
|
|
1280
1502
|
<h5>Parameters:</h5>
|
|
1281
1503
|
|
|
1282
1504
|
|
|
@@ -1339,8 +1561,9 @@
|
|
|
1339
1561
|
|
|
1340
1562
|
|
|
1341
1563
|
|
|
1564
|
+
|
|
1565
|
+
|
|
1342
1566
|
<dl class="details">
|
|
1343
|
-
|
|
1344
1567
|
|
|
1345
1568
|
|
|
1346
1569
|
|
|
@@ -1364,9 +1587,15 @@
|
|
|
1364
1587
|
|
|
1365
1588
|
|
|
1366
1589
|
|
|
1590
|
+
|
|
1591
|
+
|
|
1592
|
+
|
|
1593
|
+
|
|
1594
|
+
|
|
1595
|
+
|
|
1367
1596
|
<dt class="tag-source">Source:</dt>
|
|
1368
1597
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1369
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1598
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1467">line 1467</a>
|
|
1370
1599
|
</li></ul></dd>
|
|
1371
1600
|
|
|
1372
1601
|
|
|
@@ -1414,8 +1643,10 @@
|
|
|
1414
1643
|
|
|
1415
1644
|
|
|
1416
1645
|
<dt>
|
|
1417
|
-
|
|
1646
|
+
|
|
1647
|
+
<h4 class="name" id="getOption"><span class="type-signature"></span>getOption<span class="signature">(name<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {*|<a href="Object.html">Object</a>.<string, *>}</span></h4>
|
|
1418
1648
|
|
|
1649
|
+
|
|
1419
1650
|
|
|
1420
1651
|
</dt>
|
|
1421
1652
|
<dd>
|
|
@@ -1431,6 +1662,8 @@
|
|
|
1431
1662
|
|
|
1432
1663
|
|
|
1433
1664
|
|
|
1665
|
+
|
|
1666
|
+
|
|
1434
1667
|
<h5>Parameters:</h5>
|
|
1435
1668
|
|
|
1436
1669
|
|
|
@@ -1493,8 +1726,9 @@
|
|
|
1493
1726
|
|
|
1494
1727
|
|
|
1495
1728
|
|
|
1729
|
+
|
|
1730
|
+
|
|
1496
1731
|
<dl class="details">
|
|
1497
|
-
|
|
1498
1732
|
|
|
1499
1733
|
|
|
1500
1734
|
|
|
@@ -1518,9 +1752,15 @@
|
|
|
1518
1752
|
|
|
1519
1753
|
|
|
1520
1754
|
|
|
1755
|
+
|
|
1756
|
+
|
|
1757
|
+
|
|
1758
|
+
|
|
1759
|
+
|
|
1760
|
+
|
|
1521
1761
|
<dt class="tag-source">Source:</dt>
|
|
1522
1762
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1523
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1763
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1592">line 1592</a>
|
|
1524
1764
|
</li></ul></dd>
|
|
1525
1765
|
|
|
1526
1766
|
|
|
@@ -1575,8 +1815,10 @@
|
|
|
1575
1815
|
|
|
1576
1816
|
|
|
1577
1817
|
<dt>
|
|
1578
|
-
|
|
1818
|
+
|
|
1819
|
+
<h4 class="name" id="resolve"><span class="type-signature"></span>resolve<span class="signature">(qn, excludeFields<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → (nullable) {<a href="ProtoBuf.Reflect.Namespace.html">ProtoBuf.Reflect.Namespace</a>}</span></h4>
|
|
1579
1820
|
|
|
1821
|
+
|
|
1580
1822
|
|
|
1581
1823
|
</dt>
|
|
1582
1824
|
<dd>
|
|
@@ -1592,6 +1834,8 @@
|
|
|
1592
1834
|
|
|
1593
1835
|
|
|
1594
1836
|
|
|
1837
|
+
|
|
1838
|
+
|
|
1595
1839
|
<h5>Parameters:</h5>
|
|
1596
1840
|
|
|
1597
1841
|
|
|
@@ -1685,8 +1929,9 @@
|
|
|
1685
1929
|
|
|
1686
1930
|
|
|
1687
1931
|
|
|
1932
|
+
|
|
1933
|
+
|
|
1688
1934
|
<dl class="details">
|
|
1689
|
-
|
|
1690
1935
|
|
|
1691
1936
|
|
|
1692
1937
|
|
|
@@ -1710,9 +1955,15 @@
|
|
|
1710
1955
|
|
|
1711
1956
|
|
|
1712
1957
|
|
|
1958
|
+
|
|
1959
|
+
|
|
1960
|
+
|
|
1961
|
+
|
|
1962
|
+
|
|
1963
|
+
|
|
1713
1964
|
<dt class="tag-source">Source:</dt>
|
|
1714
1965
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1715
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1966
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1519">line 1519</a>
|
|
1716
1967
|
</li></ul></dd>
|
|
1717
1968
|
|
|
1718
1969
|
|
|
@@ -1764,8 +2015,10 @@
|
|
|
1764
2015
|
|
|
1765
2016
|
|
|
1766
2017
|
<dt>
|
|
1767
|
-
|
|
2018
|
+
|
|
2019
|
+
<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>
|
|
1768
2020
|
|
|
2021
|
+
|
|
1769
2022
|
|
|
1770
2023
|
</dt>
|
|
1771
2024
|
<dd>
|
|
@@ -1781,6 +2034,8 @@
|
|
|
1781
2034
|
|
|
1782
2035
|
|
|
1783
2036
|
|
|
2037
|
+
|
|
2038
|
+
|
|
1784
2039
|
<h5>Parameters:</h5>
|
|
1785
2040
|
|
|
1786
2041
|
|
|
@@ -1843,8 +2098,9 @@
|
|
|
1843
2098
|
|
|
1844
2099
|
|
|
1845
2100
|
|
|
2101
|
+
|
|
2102
|
+
|
|
1846
2103
|
<dl class="details">
|
|
1847
|
-
|
|
1848
2104
|
|
|
1849
2105
|
|
|
1850
2106
|
|
|
@@ -1868,9 +2124,15 @@
|
|
|
1868
2124
|
|
|
1869
2125
|
|
|
1870
2126
|
|
|
2127
|
+
|
|
2128
|
+
|
|
2129
|
+
|
|
2130
|
+
|
|
2131
|
+
|
|
2132
|
+
|
|
1871
2133
|
<dt class="tag-source">Source:</dt>
|
|
1872
2134
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1873
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2135
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1405">line 1405</a>
|
|
1874
2136
|
</li></ul></dd>
|
|
1875
2137
|
|
|
1876
2138
|
|
|
@@ -1923,13 +2185,13 @@
|
|
|
1923
2185
|
</div>
|
|
1924
2186
|
|
|
1925
2187
|
<nav>
|
|
1926
|
-
<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.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.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>
|
|
2188
|
+
<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.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>
|
|
1927
2189
|
</nav>
|
|
1928
2190
|
|
|
1929
2191
|
<br clear="both">
|
|
1930
2192
|
|
|
1931
2193
|
<footer>
|
|
1932
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-
|
|
2194
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-alpha10</a> on Mon Nov 24 2014 18:08:27 GMT+0100 (Mitteleuropäische Zeit)
|
|
1933
2195
|
</footer>
|
|
1934
2196
|
|
|
1935
2197
|
<script> prettyPrint(); </script>
|