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
|
+
Service
|
|
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="Service"><span class="type-signature"></span>new Service<span class="signature">(builder<span class="signature-attributes">non-null</span>, root<span class="signature-attributes">non-null</span>, name, options<span class="signature-attributes">opt</span>)</span><span class="type-signature"></span></h4>
|
|
45
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>root</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#line3334">line 3334</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
|
|
|
@@ -268,7 +314,85 @@
|
|
|
268
314
|
<dl>
|
|
269
315
|
|
|
270
316
|
<dt>
|
|
271
|
-
<h4 class="name" id="
|
|
317
|
+
<h4 class="name" id="builder"><span class="type-signature">(non-null) </span>builder<span class="type-signature"> :<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span></h4>
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
</dt>
|
|
321
|
+
<dd>
|
|
322
|
+
|
|
323
|
+
<div class="description">
|
|
324
|
+
<p>Builder reference.</p>
|
|
325
|
+
</div>
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
<h5>Type:</h5>
|
|
330
|
+
<ul>
|
|
331
|
+
<li>
|
|
332
|
+
|
|
333
|
+
<span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
</li>
|
|
337
|
+
</ul>
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
<dl class="details">
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
<dt class="inherited-from">Inherited From:</dt>
|
|
351
|
+
<dd class="inherited-from"><ul class="dummy"><li>
|
|
352
|
+
<a href="ProtoBuf.Reflect.T.html#builder">ProtoBuf.Reflect.T#builder</a>
|
|
353
|
+
</li></dd>
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
<dt class="tag-source">Source:</dt>
|
|
374
|
+
<dd class="tag-source"><ul class="dummy"><li>
|
|
375
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1352">line 1352</a>
|
|
376
|
+
</li></ul></dd>
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
</dl>
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
</dd>
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
<dt>
|
|
395
|
+
<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>
|
|
272
396
|
|
|
273
397
|
|
|
274
398
|
</dt>
|
|
@@ -292,8 +416,9 @@
|
|
|
292
416
|
|
|
293
417
|
|
|
294
418
|
|
|
419
|
+
|
|
420
|
+
|
|
295
421
|
<dl class="details">
|
|
296
|
-
|
|
297
422
|
|
|
298
423
|
|
|
299
424
|
|
|
@@ -317,9 +442,15 @@
|
|
|
317
442
|
|
|
318
443
|
|
|
319
444
|
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
|
|
320
451
|
<dt class="tag-source">Source:</dt>
|
|
321
452
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
322
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
453
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1446">line 1446</a>
|
|
323
454
|
</li></ul></dd>
|
|
324
455
|
|
|
325
456
|
|
|
@@ -349,7 +480,14 @@
|
|
|
349
480
|
|
|
350
481
|
|
|
351
482
|
|
|
483
|
+
|
|
484
|
+
|
|
352
485
|
<dl class="details">
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
|
|
353
491
|
|
|
354
492
|
|
|
355
493
|
|
|
@@ -371,7 +509,7 @@
|
|
|
371
509
|
|
|
372
510
|
<dt class="tag-source">Source:</dt>
|
|
373
511
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
374
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
512
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3340">line 3340</a>
|
|
375
513
|
</li></ul></dd>
|
|
376
514
|
|
|
377
515
|
|
|
@@ -415,7 +553,14 @@
|
|
|
415
553
|
|
|
416
554
|
|
|
417
555
|
|
|
556
|
+
|
|
557
|
+
|
|
418
558
|
<dl class="details">
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
|
|
419
564
|
|
|
420
565
|
|
|
421
566
|
|
|
@@ -437,7 +582,7 @@
|
|
|
437
582
|
|
|
438
583
|
<dt class="tag-source">Source:</dt>
|
|
439
584
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
440
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
585
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3346">line 3346</a>
|
|
441
586
|
</li></ul></dd>
|
|
442
587
|
|
|
443
588
|
|
|
@@ -481,8 +626,9 @@
|
|
|
481
626
|
|
|
482
627
|
|
|
483
628
|
|
|
629
|
+
|
|
630
|
+
|
|
484
631
|
<dl class="details">
|
|
485
|
-
|
|
486
632
|
|
|
487
633
|
|
|
488
634
|
|
|
@@ -506,9 +652,15 @@
|
|
|
506
652
|
|
|
507
653
|
|
|
508
654
|
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
|
|
659
|
+
|
|
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#line1366">line 1366</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">(rebuild<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {function}</span></h4>
|
|
834
1009
|
|
|
1010
|
+
|
|
835
1011
|
|
|
836
1012
|
</dt>
|
|
837
1013
|
<dd>
|
|
@@ -847,6 +1023,8 @@
|
|
|
847
1023
|
|
|
848
1024
|
|
|
849
1025
|
|
|
1026
|
+
|
|
1027
|
+
|
|
850
1028
|
<h5>Parameters:</h5>
|
|
851
1029
|
|
|
852
1030
|
|
|
@@ -909,7 +1087,14 @@
|
|
|
909
1087
|
|
|
910
1088
|
|
|
911
1089
|
|
|
1090
|
+
|
|
1091
|
+
|
|
912
1092
|
<dl class="details">
|
|
1093
|
+
|
|
1094
|
+
|
|
1095
|
+
|
|
1096
|
+
|
|
1097
|
+
|
|
913
1098
|
|
|
914
1099
|
|
|
915
1100
|
|
|
@@ -931,7 +1116,7 @@
|
|
|
931
1116
|
|
|
932
1117
|
<dt class="tag-source">Source:</dt>
|
|
933
1118
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
934
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1119
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3363">line 3363</a>
|
|
935
1120
|
</li></ul></dd>
|
|
936
1121
|
|
|
937
1122
|
|
|
@@ -1017,8 +1202,10 @@
|
|
|
1017
1202
|
|
|
1018
1203
|
|
|
1019
1204
|
<dt>
|
|
1020
|
-
|
|
1205
|
+
|
|
1206
|
+
<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>
|
|
1021
1207
|
|
|
1208
|
+
|
|
1022
1209
|
|
|
1023
1210
|
</dt>
|
|
1024
1211
|
<dd>
|
|
@@ -1036,9 +1223,12 @@
|
|
|
1036
1223
|
|
|
1037
1224
|
|
|
1038
1225
|
|
|
1039
|
-
|
|
1226
|
+
|
|
1040
1227
|
|
|
1041
1228
|
|
|
1229
|
+
|
|
1230
|
+
<dl class="details">
|
|
1231
|
+
|
|
1042
1232
|
|
|
1043
1233
|
|
|
1044
1234
|
|
|
@@ -1061,9 +1251,15 @@
|
|
|
1061
1251
|
|
|
1062
1252
|
|
|
1063
1253
|
|
|
1254
|
+
|
|
1255
|
+
|
|
1256
|
+
|
|
1257
|
+
|
|
1258
|
+
|
|
1259
|
+
|
|
1064
1260
|
<dt class="tag-source">Source:</dt>
|
|
1065
1261
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1066
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1262
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1571">line 1571</a>
|
|
1067
1263
|
</li></ul></dd>
|
|
1068
1264
|
|
|
1069
1265
|
|
|
@@ -1111,8 +1307,10 @@
|
|
|
1111
1307
|
|
|
1112
1308
|
|
|
1113
1309
|
<dt>
|
|
1114
|
-
|
|
1310
|
+
|
|
1311
|
+
<h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
1115
1312
|
|
|
1313
|
+
|
|
1116
1314
|
|
|
1117
1315
|
</dt>
|
|
1118
1316
|
<dd>
|
|
@@ -1130,9 +1328,12 @@
|
|
|
1130
1328
|
|
|
1131
1329
|
|
|
1132
1330
|
|
|
1133
|
-
|
|
1331
|
+
|
|
1134
1332
|
|
|
1135
1333
|
|
|
1334
|
+
|
|
1335
|
+
<dl class="details">
|
|
1336
|
+
|
|
1136
1337
|
|
|
1137
1338
|
|
|
1138
1339
|
|
|
@@ -1155,9 +1356,15 @@
|
|
|
1155
1356
|
|
|
1156
1357
|
|
|
1157
1358
|
|
|
1359
|
+
|
|
1360
|
+
|
|
1361
|
+
|
|
1362
|
+
|
|
1363
|
+
|
|
1364
|
+
|
|
1158
1365
|
<dt class="tag-source">Source:</dt>
|
|
1159
1366
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1160
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1367
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1387">line 1387</a>
|
|
1161
1368
|
</li></ul></dd>
|
|
1162
1369
|
|
|
1163
1370
|
|
|
@@ -1209,8 +1416,10 @@
|
|
|
1209
1416
|
|
|
1210
1417
|
|
|
1211
1418
|
<dt>
|
|
1212
|
-
|
|
1419
|
+
|
|
1420
|
+
<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>
|
|
1213
1421
|
|
|
1422
|
+
|
|
1214
1423
|
|
|
1215
1424
|
</dt>
|
|
1216
1425
|
<dd>
|
|
@@ -1226,6 +1435,8 @@
|
|
|
1226
1435
|
|
|
1227
1436
|
|
|
1228
1437
|
|
|
1438
|
+
|
|
1439
|
+
|
|
1229
1440
|
<h5>Parameters:</h5>
|
|
1230
1441
|
|
|
1231
1442
|
|
|
@@ -1279,8 +1490,9 @@
|
|
|
1279
1490
|
|
|
1280
1491
|
|
|
1281
1492
|
|
|
1493
|
+
|
|
1494
|
+
|
|
1282
1495
|
<dl class="details">
|
|
1283
|
-
|
|
1284
1496
|
|
|
1285
1497
|
|
|
1286
1498
|
|
|
@@ -1304,9 +1516,15 @@
|
|
|
1304
1516
|
|
|
1305
1517
|
|
|
1306
1518
|
|
|
1519
|
+
|
|
1520
|
+
|
|
1521
|
+
|
|
1522
|
+
|
|
1523
|
+
|
|
1524
|
+
|
|
1307
1525
|
<dt class="tag-source">Source:</dt>
|
|
1308
1526
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1309
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1527
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1504">line 1504</a>
|
|
1310
1528
|
</li></ul></dd>
|
|
1311
1529
|
|
|
1312
1530
|
|
|
@@ -1358,8 +1576,10 @@
|
|
|
1358
1576
|
|
|
1359
1577
|
|
|
1360
1578
|
<dt>
|
|
1361
|
-
|
|
1579
|
+
|
|
1580
|
+
<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>
|
|
1362
1581
|
|
|
1582
|
+
|
|
1363
1583
|
|
|
1364
1584
|
</dt>
|
|
1365
1585
|
<dd>
|
|
@@ -1375,6 +1595,8 @@
|
|
|
1375
1595
|
|
|
1376
1596
|
|
|
1377
1597
|
|
|
1598
|
+
|
|
1599
|
+
|
|
1378
1600
|
<h5>Parameters:</h5>
|
|
1379
1601
|
|
|
1380
1602
|
|
|
@@ -1437,8 +1659,9 @@
|
|
|
1437
1659
|
|
|
1438
1660
|
|
|
1439
1661
|
|
|
1662
|
+
|
|
1663
|
+
|
|
1440
1664
|
<dl class="details">
|
|
1441
|
-
|
|
1442
1665
|
|
|
1443
1666
|
|
|
1444
1667
|
|
|
@@ -1462,9 +1685,15 @@
|
|
|
1462
1685
|
|
|
1463
1686
|
|
|
1464
1687
|
|
|
1688
|
+
|
|
1689
|
+
|
|
1690
|
+
|
|
1691
|
+
|
|
1692
|
+
|
|
1693
|
+
|
|
1465
1694
|
<dt class="tag-source">Source:</dt>
|
|
1466
1695
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1467
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1696
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1467">line 1467</a>
|
|
1468
1697
|
</li></ul></dd>
|
|
1469
1698
|
|
|
1470
1699
|
|
|
@@ -1512,8 +1741,10 @@
|
|
|
1512
1741
|
|
|
1513
1742
|
|
|
1514
1743
|
<dt>
|
|
1515
|
-
|
|
1744
|
+
|
|
1745
|
+
<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>
|
|
1516
1746
|
|
|
1747
|
+
|
|
1517
1748
|
|
|
1518
1749
|
</dt>
|
|
1519
1750
|
<dd>
|
|
@@ -1529,6 +1760,8 @@
|
|
|
1529
1760
|
|
|
1530
1761
|
|
|
1531
1762
|
|
|
1763
|
+
|
|
1764
|
+
|
|
1532
1765
|
<h5>Parameters:</h5>
|
|
1533
1766
|
|
|
1534
1767
|
|
|
@@ -1591,8 +1824,9 @@
|
|
|
1591
1824
|
|
|
1592
1825
|
|
|
1593
1826
|
|
|
1827
|
+
|
|
1828
|
+
|
|
1594
1829
|
<dl class="details">
|
|
1595
|
-
|
|
1596
1830
|
|
|
1597
1831
|
|
|
1598
1832
|
|
|
@@ -1616,9 +1850,15 @@
|
|
|
1616
1850
|
|
|
1617
1851
|
|
|
1618
1852
|
|
|
1853
|
+
|
|
1854
|
+
|
|
1855
|
+
|
|
1856
|
+
|
|
1857
|
+
|
|
1858
|
+
|
|
1619
1859
|
<dt class="tag-source">Source:</dt>
|
|
1620
1860
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1621
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1861
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1592">line 1592</a>
|
|
1622
1862
|
</li></ul></dd>
|
|
1623
1863
|
|
|
1624
1864
|
|
|
@@ -1673,8 +1913,10 @@
|
|
|
1673
1913
|
|
|
1674
1914
|
|
|
1675
1915
|
<dt>
|
|
1676
|
-
|
|
1916
|
+
|
|
1917
|
+
<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>
|
|
1677
1918
|
|
|
1919
|
+
|
|
1678
1920
|
|
|
1679
1921
|
</dt>
|
|
1680
1922
|
<dd>
|
|
@@ -1690,6 +1932,8 @@
|
|
|
1690
1932
|
|
|
1691
1933
|
|
|
1692
1934
|
|
|
1935
|
+
|
|
1936
|
+
|
|
1693
1937
|
<h5>Parameters:</h5>
|
|
1694
1938
|
|
|
1695
1939
|
|
|
@@ -1783,8 +2027,9 @@
|
|
|
1783
2027
|
|
|
1784
2028
|
|
|
1785
2029
|
|
|
2030
|
+
|
|
2031
|
+
|
|
1786
2032
|
<dl class="details">
|
|
1787
|
-
|
|
1788
2033
|
|
|
1789
2034
|
|
|
1790
2035
|
|
|
@@ -1808,9 +2053,15 @@
|
|
|
1808
2053
|
|
|
1809
2054
|
|
|
1810
2055
|
|
|
2056
|
+
|
|
2057
|
+
|
|
2058
|
+
|
|
2059
|
+
|
|
2060
|
+
|
|
2061
|
+
|
|
1811
2062
|
<dt class="tag-source">Source:</dt>
|
|
1812
2063
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1813
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2064
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1519">line 1519</a>
|
|
1814
2065
|
</li></ul></dd>
|
|
1815
2066
|
|
|
1816
2067
|
|
|
@@ -1862,8 +2113,10 @@
|
|
|
1862
2113
|
|
|
1863
2114
|
|
|
1864
2115
|
<dt>
|
|
1865
|
-
|
|
2116
|
+
|
|
2117
|
+
<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>
|
|
1866
2118
|
|
|
2119
|
+
|
|
1867
2120
|
|
|
1868
2121
|
</dt>
|
|
1869
2122
|
<dd>
|
|
@@ -1879,6 +2132,8 @@
|
|
|
1879
2132
|
|
|
1880
2133
|
|
|
1881
2134
|
|
|
2135
|
+
|
|
2136
|
+
|
|
1882
2137
|
<h5>Parameters:</h5>
|
|
1883
2138
|
|
|
1884
2139
|
|
|
@@ -1941,8 +2196,9 @@
|
|
|
1941
2196
|
|
|
1942
2197
|
|
|
1943
2198
|
|
|
2199
|
+
|
|
2200
|
+
|
|
1944
2201
|
<dl class="details">
|
|
1945
|
-
|
|
1946
2202
|
|
|
1947
2203
|
|
|
1948
2204
|
|
|
@@ -1966,9 +2222,15 @@
|
|
|
1966
2222
|
|
|
1967
2223
|
|
|
1968
2224
|
|
|
2225
|
+
|
|
2226
|
+
|
|
2227
|
+
|
|
2228
|
+
|
|
2229
|
+
|
|
2230
|
+
|
|
1969
2231
|
<dt class="tag-source">Source:</dt>
|
|
1970
2232
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1971
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2233
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1405">line 1405</a>
|
|
1972
2234
|
</li></ul></dd>
|
|
1973
2235
|
|
|
1974
2236
|
|
|
@@ -2021,13 +2283,13 @@
|
|
|
2021
2283
|
</div>
|
|
2022
2284
|
|
|
2023
2285
|
<nav>
|
|
2024
|
-
<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>
|
|
2286
|
+
<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>
|
|
2025
2287
|
</nav>
|
|
2026
2288
|
|
|
2027
2289
|
<br clear="both">
|
|
2028
2290
|
|
|
2029
2291
|
<footer>
|
|
2030
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-
|
|
2292
|
+
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)
|
|
2031
2293
|
</footer>
|
|
2032
2294
|
|
|
2033
2295
|
<script> prettyPrint(); </script>
|