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><a href="ProtoBuf.Reflect.Message.html">.Message</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><a href="ProtoBuf.Reflect.Message.html">.Message</a>.</span>
|
|
33
|
+
|
|
34
|
+
Field
|
|
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="Field"><span class="type-signature"></span>new Field<span class="signature">(builder<span class="signature-attributes">non-null</span>, message<span class="signature-attributes">non-null</span>, rule, type, name, id, options<span class="signature-attributes">opt</span>, oneof<span class="signature-attributes">opt, non-null</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>message</code></td>
|
|
@@ -270,12 +306,52 @@
|
|
|
270
306
|
</tr>
|
|
271
307
|
|
|
272
308
|
|
|
309
|
+
|
|
310
|
+
<tr>
|
|
311
|
+
|
|
312
|
+
<td class="name"><code>oneof</code></td>
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
<td class="type">
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
<span class="param-type"><a href="ProtoBuf.Reflect.Message.OneOf.html">ProtoBuf.Reflect.Message.OneOf</a></span>
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
</td>
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
<td class="attributes">
|
|
326
|
+
|
|
327
|
+
<optional><br>
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
</td>
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
<td class="description last"><p>Enclosing OneOf</p></td>
|
|
339
|
+
</tr>
|
|
340
|
+
|
|
341
|
+
|
|
273
342
|
</tbody>
|
|
274
343
|
</table>
|
|
275
344
|
|
|
276
345
|
|
|
277
346
|
|
|
347
|
+
|
|
348
|
+
|
|
278
349
|
<dl class="details">
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
279
355
|
|
|
280
356
|
|
|
281
357
|
|
|
@@ -297,7 +373,7 @@
|
|
|
297
373
|
|
|
298
374
|
<dt class="tag-source">Source:</dt>
|
|
299
375
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
300
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
376
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2505">line 2505</a>
|
|
301
377
|
</li></ul></dd>
|
|
302
378
|
|
|
303
379
|
|
|
@@ -330,10 +406,13 @@
|
|
|
330
406
|
|
|
331
407
|
<h3 class="subsection-title">Extends</h3>
|
|
332
408
|
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
<ul>
|
|
413
|
+
<li><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></li>
|
|
414
|
+
</ul>
|
|
415
|
+
|
|
337
416
|
|
|
338
417
|
|
|
339
418
|
|
|
@@ -350,6 +429,84 @@
|
|
|
350
429
|
|
|
351
430
|
<dl>
|
|
352
431
|
|
|
432
|
+
<dt>
|
|
433
|
+
<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>
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
</dt>
|
|
437
|
+
<dd>
|
|
438
|
+
|
|
439
|
+
<div class="description">
|
|
440
|
+
<p>Builder reference.</p>
|
|
441
|
+
</div>
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
<h5>Type:</h5>
|
|
446
|
+
<ul>
|
|
447
|
+
<li>
|
|
448
|
+
|
|
449
|
+
<span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
</li>
|
|
453
|
+
</ul>
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
<dl class="details">
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
<dt class="inherited-from">Inherited From:</dt>
|
|
467
|
+
<dd class="inherited-from"><ul class="dummy"><li>
|
|
468
|
+
<a href="ProtoBuf.Reflect.T.html#builder">ProtoBuf.Reflect.T#builder</a>
|
|
469
|
+
</li></dd>
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
<dt class="tag-source">Source:</dt>
|
|
490
|
+
<dd class="tag-source"><ul class="dummy"><li>
|
|
491
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1352">line 1352</a>
|
|
492
|
+
</li></ul></dd>
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
</dl>
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
</dd>
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
|
|
353
510
|
<dt>
|
|
354
511
|
<h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"></span></h4>
|
|
355
512
|
|
|
@@ -361,7 +518,14 @@
|
|
|
361
518
|
|
|
362
519
|
|
|
363
520
|
|
|
521
|
+
|
|
522
|
+
|
|
364
523
|
<dl class="details">
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
|
|
365
529
|
|
|
366
530
|
|
|
367
531
|
|
|
@@ -383,7 +547,7 @@
|
|
|
383
547
|
|
|
384
548
|
<dt class="tag-source">Source:</dt>
|
|
385
549
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
386
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
550
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2511">line 2511</a>
|
|
387
551
|
</li></ul></dd>
|
|
388
552
|
|
|
389
553
|
|
|
@@ -427,7 +591,14 @@
|
|
|
427
591
|
|
|
428
592
|
|
|
429
593
|
|
|
594
|
+
|
|
595
|
+
|
|
430
596
|
<dl class="details">
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
|
|
601
|
+
|
|
431
602
|
|
|
432
603
|
|
|
433
604
|
|
|
@@ -449,7 +620,7 @@
|
|
|
449
620
|
|
|
450
621
|
<dt class="tag-source">Source:</dt>
|
|
451
622
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
452
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
623
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2561">line 2561</a>
|
|
453
624
|
</li></ul></dd>
|
|
454
625
|
|
|
455
626
|
|
|
@@ -493,7 +664,14 @@
|
|
|
493
664
|
|
|
494
665
|
|
|
495
666
|
|
|
667
|
+
|
|
668
|
+
|
|
496
669
|
<dl class="details">
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
|
|
497
675
|
|
|
498
676
|
|
|
499
677
|
|
|
@@ -515,7 +693,7 @@
|
|
|
515
693
|
|
|
516
694
|
<dt class="tag-source">Source:</dt>
|
|
517
695
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
518
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
696
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2546">line 2546</a>
|
|
519
697
|
</li></ul></dd>
|
|
520
698
|
|
|
521
699
|
|
|
@@ -559,8 +737,9 @@
|
|
|
559
737
|
|
|
560
738
|
|
|
561
739
|
|
|
740
|
+
|
|
741
|
+
|
|
562
742
|
<dl class="details">
|
|
563
|
-
|
|
564
743
|
|
|
565
744
|
|
|
566
745
|
|
|
@@ -580,13 +759,92 @@
|
|
|
580
759
|
|
|
581
760
|
|
|
582
761
|
|
|
762
|
+
|
|
763
|
+
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
|
|
772
|
+
<dt class="tag-source">Source:</dt>
|
|
773
|
+
<dd class="tag-source"><ul class="dummy"><li>
|
|
774
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1366">line 1366</a>
|
|
775
|
+
</li></ul></dd>
|
|
776
|
+
|
|
777
|
+
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
</dl>
|
|
784
|
+
|
|
785
|
+
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
|
|
789
|
+
</dd>
|
|
790
|
+
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
<dt>
|
|
794
|
+
<h4 class="name" id="oneof"><span class="type-signature">(nullable) </span>oneof<span class="type-signature"> :<a href="ProtoBuf.Reflect.Message.OneOf.html">ProtoBuf.Reflect.Message.OneOf</a></span></h4>
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
</dt>
|
|
798
|
+
<dd>
|
|
799
|
+
|
|
800
|
+
<div class="description">
|
|
801
|
+
<p>Enclosing OneOf.</p>
|
|
802
|
+
</div>
|
|
803
|
+
|
|
804
|
+
|
|
805
|
+
|
|
806
|
+
<h5>Type:</h5>
|
|
807
|
+
<ul>
|
|
808
|
+
<li>
|
|
809
|
+
|
|
810
|
+
<span class="param-type"><a href="ProtoBuf.Reflect.Message.OneOf.html">ProtoBuf.Reflect.Message.OneOf</a></span>
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
</li>
|
|
814
|
+
</ul>
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
|
|
819
|
+
|
|
820
|
+
<dl class="details">
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
|
|
838
|
+
|
|
839
|
+
|
|
840
|
+
|
|
583
841
|
|
|
584
842
|
|
|
585
843
|
|
|
586
844
|
|
|
587
845
|
<dt class="tag-source">Source:</dt>
|
|
588
846
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
589
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
847
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2568">line 2568</a>
|
|
590
848
|
</li></ul></dd>
|
|
591
849
|
|
|
592
850
|
|
|
@@ -630,7 +888,14 @@
|
|
|
630
888
|
|
|
631
889
|
|
|
632
890
|
|
|
891
|
+
|
|
892
|
+
|
|
633
893
|
<dl class="details">
|
|
894
|
+
|
|
895
|
+
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
|
|
634
899
|
|
|
635
900
|
|
|
636
901
|
|
|
@@ -652,7 +917,7 @@
|
|
|
652
917
|
|
|
653
918
|
<dt class="tag-source">Source:</dt>
|
|
654
919
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
655
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
920
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2554">line 2554</a>
|
|
656
921
|
</li></ul></dd>
|
|
657
922
|
|
|
658
923
|
|
|
@@ -696,7 +961,14 @@
|
|
|
696
961
|
|
|
697
962
|
|
|
698
963
|
|
|
964
|
+
|
|
965
|
+
|
|
699
966
|
<dl class="details">
|
|
967
|
+
|
|
968
|
+
|
|
969
|
+
|
|
970
|
+
|
|
971
|
+
|
|
700
972
|
|
|
701
973
|
|
|
702
974
|
|
|
@@ -718,7 +990,7 @@
|
|
|
718
990
|
|
|
719
991
|
<dt class="tag-source">Source:</dt>
|
|
720
992
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
721
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
993
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2575">line 2575</a>
|
|
722
994
|
</li></ul></dd>
|
|
723
995
|
|
|
724
996
|
|
|
@@ -738,7 +1010,7 @@
|
|
|
738
1010
|
|
|
739
1011
|
|
|
740
1012
|
<dt>
|
|
741
|
-
<h4 class="name" id="parent"><span class="type-signature"
|
|
1013
|
+
<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>
|
|
742
1014
|
|
|
743
1015
|
|
|
744
1016
|
</dt>
|
|
@@ -755,9 +1027,6 @@
|
|
|
755
1027
|
<li>
|
|
756
1028
|
|
|
757
1029
|
<span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
|
|
758
|
-
|
|
|
759
|
-
|
|
760
|
-
<span class="param-type">null</span>
|
|
761
1030
|
|
|
762
1031
|
|
|
763
1032
|
</li>
|
|
@@ -765,8 +1034,9 @@
|
|
|
765
1034
|
|
|
766
1035
|
|
|
767
1036
|
|
|
1037
|
+
|
|
1038
|
+
|
|
768
1039
|
<dl class="details">
|
|
769
|
-
|
|
770
1040
|
|
|
771
1041
|
|
|
772
1042
|
|
|
@@ -790,9 +1060,15 @@
|
|
|
790
1060
|
|
|
791
1061
|
|
|
792
1062
|
|
|
1063
|
+
|
|
1064
|
+
|
|
1065
|
+
|
|
1066
|
+
|
|
1067
|
+
|
|
1068
|
+
|
|
793
1069
|
<dt class="tag-source">Source:</dt>
|
|
794
1070
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
795
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1071
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1359">line 1359</a>
|
|
796
1072
|
</li></ul></dd>
|
|
797
1073
|
|
|
798
1074
|
|
|
@@ -836,7 +1112,14 @@
|
|
|
836
1112
|
|
|
837
1113
|
|
|
838
1114
|
|
|
1115
|
+
|
|
1116
|
+
|
|
839
1117
|
<dl class="details">
|
|
1118
|
+
|
|
1119
|
+
|
|
1120
|
+
|
|
1121
|
+
|
|
1122
|
+
|
|
840
1123
|
|
|
841
1124
|
|
|
842
1125
|
|
|
@@ -858,7 +1141,7 @@
|
|
|
858
1141
|
|
|
859
1142
|
<dt class="tag-source">Source:</dt>
|
|
860
1143
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
861
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1144
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2525">line 2525</a>
|
|
862
1145
|
</li></ul></dd>
|
|
863
1146
|
|
|
864
1147
|
|
|
@@ -902,7 +1185,14 @@
|
|
|
902
1185
|
|
|
903
1186
|
|
|
904
1187
|
|
|
1188
|
+
|
|
1189
|
+
|
|
905
1190
|
<dl class="details">
|
|
1191
|
+
|
|
1192
|
+
|
|
1193
|
+
|
|
1194
|
+
|
|
1195
|
+
|
|
906
1196
|
|
|
907
1197
|
|
|
908
1198
|
|
|
@@ -924,7 +1214,7 @@
|
|
|
924
1214
|
|
|
925
1215
|
<dt class="tag-source">Source:</dt>
|
|
926
1216
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
927
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1217
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2518">line 2518</a>
|
|
928
1218
|
</li></ul></dd>
|
|
929
1219
|
|
|
930
1220
|
|
|
@@ -971,7 +1261,14 @@
|
|
|
971
1261
|
|
|
972
1262
|
|
|
973
1263
|
|
|
1264
|
+
|
|
1265
|
+
|
|
974
1266
|
<dl class="details">
|
|
1267
|
+
|
|
1268
|
+
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
|
|
975
1272
|
|
|
976
1273
|
|
|
977
1274
|
|
|
@@ -993,7 +1290,7 @@
|
|
|
993
1290
|
|
|
994
1291
|
<dt class="tag-source">Source:</dt>
|
|
995
1292
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
996
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1293
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2539">line 2539</a>
|
|
997
1294
|
</li></ul></dd>
|
|
998
1295
|
|
|
999
1296
|
|
|
@@ -1040,7 +1337,14 @@
|
|
|
1040
1337
|
|
|
1041
1338
|
|
|
1042
1339
|
|
|
1340
|
+
|
|
1341
|
+
|
|
1043
1342
|
<dl class="details">
|
|
1343
|
+
|
|
1344
|
+
|
|
1345
|
+
|
|
1346
|
+
|
|
1347
|
+
|
|
1044
1348
|
|
|
1045
1349
|
|
|
1046
1350
|
|
|
@@ -1062,7 +1366,7 @@
|
|
|
1062
1366
|
|
|
1063
1367
|
<dt class="tag-source">Source:</dt>
|
|
1064
1368
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1065
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1369
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2532">line 2532</a>
|
|
1066
1370
|
</li></ul></dd>
|
|
1067
1371
|
|
|
1068
1372
|
|
|
@@ -1088,8 +1392,10 @@
|
|
|
1088
1392
|
<dl>
|
|
1089
1393
|
|
|
1090
1394
|
<dt>
|
|
1091
|
-
|
|
1395
|
+
|
|
1396
|
+
<h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
|
|
1092
1397
|
|
|
1398
|
+
|
|
1093
1399
|
|
|
1094
1400
|
</dt>
|
|
1095
1401
|
<dd>
|
|
@@ -1107,7 +1413,16 @@
|
|
|
1107
1413
|
|
|
1108
1414
|
|
|
1109
1415
|
|
|
1416
|
+
|
|
1417
|
+
|
|
1418
|
+
|
|
1419
|
+
|
|
1110
1420
|
<dl class="details">
|
|
1421
|
+
|
|
1422
|
+
|
|
1423
|
+
|
|
1424
|
+
|
|
1425
|
+
|
|
1111
1426
|
|
|
1112
1427
|
|
|
1113
1428
|
|
|
@@ -1129,7 +1444,7 @@
|
|
|
1129
1444
|
|
|
1130
1445
|
<dt class="tag-source">Source:</dt>
|
|
1131
1446
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1132
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1447
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2605">line 2605</a>
|
|
1133
1448
|
</li></ul></dd>
|
|
1134
1449
|
|
|
1135
1450
|
|
|
@@ -1159,8 +1474,10 @@
|
|
|
1159
1474
|
|
|
1160
1475
|
|
|
1161
1476
|
<dt>
|
|
1162
|
-
|
|
1477
|
+
|
|
1478
|
+
<h4 class="name" id="calculate"><span class="type-signature"></span>calculate<span class="signature">(value)</span><span class="type-signature"> → {number}</span></h4>
|
|
1163
1479
|
|
|
1480
|
+
|
|
1164
1481
|
|
|
1165
1482
|
</dt>
|
|
1166
1483
|
<dd>
|
|
@@ -1176,6 +1493,8 @@
|
|
|
1176
1493
|
|
|
1177
1494
|
|
|
1178
1495
|
|
|
1496
|
+
|
|
1497
|
+
|
|
1179
1498
|
<h5>Parameters:</h5>
|
|
1180
1499
|
|
|
1181
1500
|
|
|
@@ -1226,7 +1545,14 @@
|
|
|
1226
1545
|
|
|
1227
1546
|
|
|
1228
1547
|
|
|
1548
|
+
|
|
1549
|
+
|
|
1229
1550
|
<dl class="details">
|
|
1551
|
+
|
|
1552
|
+
|
|
1553
|
+
|
|
1554
|
+
|
|
1555
|
+
|
|
1230
1556
|
|
|
1231
1557
|
|
|
1232
1558
|
|
|
@@ -1248,7 +1574,7 @@
|
|
|
1248
1574
|
|
|
1249
1575
|
<dt class="tag-source">Source:</dt>
|
|
1250
1576
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1251
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1577
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2945">line 2945</a>
|
|
1252
1578
|
</li></ul></dd>
|
|
1253
1579
|
|
|
1254
1580
|
|
|
@@ -1300,8 +1626,10 @@
|
|
|
1300
1626
|
|
|
1301
1627
|
|
|
1302
1628
|
<dt>
|
|
1303
|
-
|
|
1629
|
+
|
|
1630
|
+
<h4 class="name" id="calculateValue"><span class="type-signature"></span>calculateValue<span class="signature">(value)</span><span class="type-signature"> → {number}</span></h4>
|
|
1304
1631
|
|
|
1632
|
+
|
|
1305
1633
|
|
|
1306
1634
|
</dt>
|
|
1307
1635
|
<dd>
|
|
@@ -1317,6 +1645,8 @@
|
|
|
1317
1645
|
|
|
1318
1646
|
|
|
1319
1647
|
|
|
1648
|
+
|
|
1649
|
+
|
|
1320
1650
|
<h5>Parameters:</h5>
|
|
1321
1651
|
|
|
1322
1652
|
|
|
@@ -1367,7 +1697,14 @@
|
|
|
1367
1697
|
|
|
1368
1698
|
|
|
1369
1699
|
|
|
1700
|
+
|
|
1701
|
+
|
|
1370
1702
|
<dl class="details">
|
|
1703
|
+
|
|
1704
|
+
|
|
1705
|
+
|
|
1706
|
+
|
|
1707
|
+
|
|
1371
1708
|
|
|
1372
1709
|
|
|
1373
1710
|
|
|
@@ -1389,7 +1726,7 @@
|
|
|
1389
1726
|
|
|
1390
1727
|
<dt class="tag-source">Source:</dt>
|
|
1391
1728
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1392
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1729
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2984">line 2984</a>
|
|
1393
1730
|
</li></ul></dd>
|
|
1394
1731
|
|
|
1395
1732
|
|
|
@@ -1468,8 +1805,10 @@
|
|
|
1468
1805
|
|
|
1469
1806
|
|
|
1470
1807
|
<dt>
|
|
1471
|
-
|
|
1808
|
+
|
|
1809
|
+
<h4 class="name" id="decode"><span class="type-signature"></span>decode<span class="signature">(wireType, buffer, skipRepeated<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {*}</span></h4>
|
|
1472
1810
|
|
|
1811
|
+
|
|
1473
1812
|
|
|
1474
1813
|
</dt>
|
|
1475
1814
|
<dd>
|
|
@@ -1485,6 +1824,8 @@
|
|
|
1485
1824
|
|
|
1486
1825
|
|
|
1487
1826
|
|
|
1827
|
+
|
|
1828
|
+
|
|
1488
1829
|
<h5>Parameters:</h5>
|
|
1489
1830
|
|
|
1490
1831
|
|
|
@@ -1609,7 +1950,14 @@
|
|
|
1609
1950
|
|
|
1610
1951
|
|
|
1611
1952
|
|
|
1953
|
+
|
|
1954
|
+
|
|
1612
1955
|
<dl class="details">
|
|
1956
|
+
|
|
1957
|
+
|
|
1958
|
+
|
|
1959
|
+
|
|
1960
|
+
|
|
1613
1961
|
|
|
1614
1962
|
|
|
1615
1963
|
|
|
@@ -1631,7 +1979,7 @@
|
|
|
1631
1979
|
|
|
1632
1980
|
<dt class="tag-source">Source:</dt>
|
|
1633
1981
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1634
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1982
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3040">line 3040</a>
|
|
1635
1983
|
</li></ul></dd>
|
|
1636
1984
|
|
|
1637
1985
|
|
|
@@ -1710,8 +2058,10 @@
|
|
|
1710
2058
|
|
|
1711
2059
|
|
|
1712
2060
|
<dt>
|
|
1713
|
-
|
|
2061
|
+
|
|
2062
|
+
<h4 class="name" id="encode"><span class="type-signature"></span>encode<span class="signature">(value, buffer)</span><span class="type-signature"> → {ByteBuffer}</span></h4>
|
|
1714
2063
|
|
|
2064
|
+
|
|
1715
2065
|
|
|
1716
2066
|
</dt>
|
|
1717
2067
|
<dd>
|
|
@@ -1727,6 +2077,8 @@
|
|
|
1727
2077
|
|
|
1728
2078
|
|
|
1729
2079
|
|
|
2080
|
+
|
|
2081
|
+
|
|
1730
2082
|
<h5>Parameters:</h5>
|
|
1731
2083
|
|
|
1732
2084
|
|
|
@@ -1800,7 +2152,14 @@
|
|
|
1800
2152
|
|
|
1801
2153
|
|
|
1802
2154
|
|
|
2155
|
+
|
|
2156
|
+
|
|
1803
2157
|
<dl class="details">
|
|
2158
|
+
|
|
2159
|
+
|
|
2160
|
+
|
|
2161
|
+
|
|
2162
|
+
|
|
1804
2163
|
|
|
1805
2164
|
|
|
1806
2165
|
|
|
@@ -1822,7 +2181,7 @@
|
|
|
1822
2181
|
|
|
1823
2182
|
<dt class="tag-source">Source:</dt>
|
|
1824
2183
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1825
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2184
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2772">line 2772</a>
|
|
1826
2185
|
</li></ul></dd>
|
|
1827
2186
|
|
|
1828
2187
|
|
|
@@ -1901,8 +2260,10 @@
|
|
|
1901
2260
|
|
|
1902
2261
|
|
|
1903
2262
|
<dt>
|
|
1904
|
-
|
|
2263
|
+
|
|
2264
|
+
<h4 class="name" id="encodeValue"><span class="type-signature"></span>encodeValue<span class="signature">(value, buffer)</span><span class="type-signature"> → {ByteBuffer}</span></h4>
|
|
1905
2265
|
|
|
2266
|
+
|
|
1906
2267
|
|
|
1907
2268
|
</dt>
|
|
1908
2269
|
<dd>
|
|
@@ -1918,6 +2279,8 @@
|
|
|
1918
2279
|
|
|
1919
2280
|
|
|
1920
2281
|
|
|
2282
|
+
|
|
2283
|
+
|
|
1921
2284
|
<h5>Parameters:</h5>
|
|
1922
2285
|
|
|
1923
2286
|
|
|
@@ -1991,7 +2354,14 @@
|
|
|
1991
2354
|
|
|
1992
2355
|
|
|
1993
2356
|
|
|
2357
|
+
|
|
2358
|
+
|
|
1994
2359
|
<dl class="details">
|
|
2360
|
+
|
|
2361
|
+
|
|
2362
|
+
|
|
2363
|
+
|
|
2364
|
+
|
|
1995
2365
|
|
|
1996
2366
|
|
|
1997
2367
|
|
|
@@ -2013,7 +2383,7 @@
|
|
|
2013
2383
|
|
|
2014
2384
|
<dt class="tag-source">Source:</dt>
|
|
2015
2385
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2016
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2386
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2824">line 2824</a>
|
|
2017
2387
|
</li></ul></dd>
|
|
2018
2388
|
|
|
2019
2389
|
|
|
@@ -2092,8 +2462,10 @@
|
|
|
2092
2462
|
|
|
2093
2463
|
|
|
2094
2464
|
<dt>
|
|
2095
|
-
|
|
2465
|
+
|
|
2466
|
+
<h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
2096
2467
|
|
|
2468
|
+
|
|
2097
2469
|
|
|
2098
2470
|
</dt>
|
|
2099
2471
|
<dd>
|
|
@@ -2111,9 +2483,12 @@
|
|
|
2111
2483
|
|
|
2112
2484
|
|
|
2113
2485
|
|
|
2114
|
-
|
|
2486
|
+
|
|
2115
2487
|
|
|
2116
2488
|
|
|
2489
|
+
|
|
2490
|
+
<dl class="details">
|
|
2491
|
+
|
|
2117
2492
|
|
|
2118
2493
|
|
|
2119
2494
|
|
|
@@ -2136,9 +2511,15 @@
|
|
|
2136
2511
|
|
|
2137
2512
|
|
|
2138
2513
|
|
|
2514
|
+
|
|
2515
|
+
|
|
2516
|
+
|
|
2517
|
+
|
|
2518
|
+
|
|
2519
|
+
|
|
2139
2520
|
<dt class="tag-source">Source:</dt>
|
|
2140
2521
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2141
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2522
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1387">line 1387</a>
|
|
2142
2523
|
</li></ul></dd>
|
|
2143
2524
|
|
|
2144
2525
|
|
|
@@ -2190,8 +2571,10 @@
|
|
|
2190
2571
|
|
|
2191
2572
|
|
|
2192
2573
|
<dt>
|
|
2193
|
-
|
|
2574
|
+
|
|
2575
|
+
<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>
|
|
2194
2576
|
|
|
2577
|
+
|
|
2195
2578
|
|
|
2196
2579
|
</dt>
|
|
2197
2580
|
<dd>
|
|
@@ -2207,6 +2590,8 @@
|
|
|
2207
2590
|
|
|
2208
2591
|
|
|
2209
2592
|
|
|
2593
|
+
|
|
2594
|
+
|
|
2210
2595
|
<h5>Parameters:</h5>
|
|
2211
2596
|
|
|
2212
2597
|
|
|
@@ -2269,8 +2654,9 @@
|
|
|
2269
2654
|
|
|
2270
2655
|
|
|
2271
2656
|
|
|
2657
|
+
|
|
2658
|
+
|
|
2272
2659
|
<dl class="details">
|
|
2273
|
-
|
|
2274
2660
|
|
|
2275
2661
|
|
|
2276
2662
|
|
|
@@ -2294,9 +2680,15 @@
|
|
|
2294
2680
|
|
|
2295
2681
|
|
|
2296
2682
|
|
|
2683
|
+
|
|
2684
|
+
|
|
2685
|
+
|
|
2686
|
+
|
|
2687
|
+
|
|
2688
|
+
|
|
2297
2689
|
<dt class="tag-source">Source:</dt>
|
|
2298
2690
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2299
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2691
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1405">line 1405</a>
|
|
2300
2692
|
</li></ul></dd>
|
|
2301
2693
|
|
|
2302
2694
|
|
|
@@ -2336,8 +2728,10 @@
|
|
|
2336
2728
|
|
|
2337
2729
|
|
|
2338
2730
|
<dt>
|
|
2339
|
-
|
|
2731
|
+
|
|
2732
|
+
<h4 class="name" id="verifyValue"><span class="type-signature"></span>verifyValue<span class="signature">(value, skipRepeated<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {*}</span></h4>
|
|
2340
2733
|
|
|
2734
|
+
|
|
2341
2735
|
|
|
2342
2736
|
</dt>
|
|
2343
2737
|
<dd>
|
|
@@ -2353,6 +2747,8 @@
|
|
|
2353
2747
|
|
|
2354
2748
|
|
|
2355
2749
|
|
|
2750
|
+
|
|
2751
|
+
|
|
2356
2752
|
<h5>Parameters:</h5>
|
|
2357
2753
|
|
|
2358
2754
|
|
|
@@ -2446,7 +2842,14 @@
|
|
|
2446
2842
|
|
|
2447
2843
|
|
|
2448
2844
|
|
|
2845
|
+
|
|
2846
|
+
|
|
2449
2847
|
<dl class="details">
|
|
2848
|
+
|
|
2849
|
+
|
|
2850
|
+
|
|
2851
|
+
|
|
2852
|
+
|
|
2450
2853
|
|
|
2451
2854
|
|
|
2452
2855
|
|
|
@@ -2468,7 +2871,7 @@
|
|
|
2468
2871
|
|
|
2469
2872
|
<dt class="tag-source">Source:</dt>
|
|
2470
2873
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2471
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2874
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2638">line 2638</a>
|
|
2472
2875
|
</li></ul></dd>
|
|
2473
2876
|
|
|
2474
2877
|
|
|
@@ -2560,13 +2963,13 @@
|
|
|
2560
2963
|
</div>
|
|
2561
2964
|
|
|
2562
2965
|
<nav>
|
|
2563
|
-
<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>
|
|
2966
|
+
<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>
|
|
2564
2967
|
</nav>
|
|
2565
2968
|
|
|
2566
2969
|
<br clear="both">
|
|
2567
2970
|
|
|
2568
2971
|
<footer>
|
|
2569
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-
|
|
2972
|
+
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)
|
|
2570
2973
|
</footer>
|
|
2571
2974
|
|
|
2572
2975
|
<script> prettyPrint(); </script>
|