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
|
+
ExtensionField
|
|
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="ExtensionField"><span class="type-signature"></span>new ExtensionField<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>)</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>
|
|
@@ -275,7 +311,14 @@
|
|
|
275
311
|
|
|
276
312
|
|
|
277
313
|
|
|
314
|
+
|
|
315
|
+
|
|
278
316
|
<dl class="details">
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
|
|
279
322
|
|
|
280
323
|
|
|
281
324
|
|
|
@@ -297,7 +340,7 @@
|
|
|
297
340
|
|
|
298
341
|
<dt class="tag-source">Source:</dt>
|
|
299
342
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
300
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
343
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3161">line 3161</a>
|
|
301
344
|
</li></ul></dd>
|
|
302
345
|
|
|
303
346
|
|
|
@@ -330,10 +373,13 @@
|
|
|
330
373
|
|
|
331
374
|
<h3 class="subsection-title">Extends</h3>
|
|
332
375
|
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
<ul>
|
|
380
|
+
<li><a href="ProtoBuf.Reflect.Message.Field.html">ProtoBuf.Reflect.Message.Field</a></li>
|
|
381
|
+
</ul>
|
|
382
|
+
|
|
337
383
|
|
|
338
384
|
|
|
339
385
|
|
|
@@ -351,18 +397,97 @@
|
|
|
351
397
|
<dl>
|
|
352
398
|
|
|
353
399
|
<dt>
|
|
354
|
-
<h4 class="name" id="
|
|
400
|
+
<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>
|
|
355
401
|
|
|
356
402
|
|
|
357
403
|
</dt>
|
|
358
404
|
<dd>
|
|
359
405
|
|
|
406
|
+
<div class="description">
|
|
407
|
+
<p>Builder reference.</p>
|
|
408
|
+
</div>
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
<h5>Type:</h5>
|
|
413
|
+
<ul>
|
|
414
|
+
<li>
|
|
415
|
+
|
|
416
|
+
<span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
|
|
417
|
+
|
|
360
418
|
|
|
419
|
+
</li>
|
|
420
|
+
</ul>
|
|
361
421
|
|
|
362
422
|
|
|
363
423
|
|
|
424
|
+
|
|
425
|
+
|
|
364
426
|
<dl class="details">
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
<dt class="inherited-from">Inherited From:</dt>
|
|
434
|
+
<dd class="inherited-from"><ul class="dummy"><li>
|
|
435
|
+
<a href="ProtoBuf.Reflect.T.html#builder">ProtoBuf.Reflect.T#builder</a>
|
|
436
|
+
</li></dd>
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
<dt class="tag-source">Source:</dt>
|
|
457
|
+
<dd class="tag-source"><ul class="dummy"><li>
|
|
458
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1352">line 1352</a>
|
|
459
|
+
</li></ul></dd>
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
</dl>
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
|
|
365
472
|
|
|
473
|
+
</dd>
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
<dt>
|
|
478
|
+
<h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"></span></h4>
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
</dt>
|
|
482
|
+
<dd>
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
<dl class="details">
|
|
366
491
|
|
|
367
492
|
|
|
368
493
|
|
|
@@ -386,9 +511,15 @@
|
|
|
386
511
|
|
|
387
512
|
|
|
388
513
|
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
|
|
389
520
|
<dt class="tag-source">Source:</dt>
|
|
390
521
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
391
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
522
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2511">line 2511</a>
|
|
392
523
|
</li></ul></dd>
|
|
393
524
|
|
|
394
525
|
|
|
@@ -432,8 +563,9 @@
|
|
|
432
563
|
|
|
433
564
|
|
|
434
565
|
|
|
566
|
+
|
|
567
|
+
|
|
435
568
|
<dl class="details">
|
|
436
|
-
|
|
437
569
|
|
|
438
570
|
|
|
439
571
|
|
|
@@ -457,9 +589,15 @@
|
|
|
457
589
|
|
|
458
590
|
|
|
459
591
|
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
|
|
460
598
|
<dt class="tag-source">Source:</dt>
|
|
461
599
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
462
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
600
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2561">line 2561</a>
|
|
463
601
|
</li></ul></dd>
|
|
464
602
|
|
|
465
603
|
|
|
@@ -503,7 +641,14 @@
|
|
|
503
641
|
|
|
504
642
|
|
|
505
643
|
|
|
644
|
+
|
|
645
|
+
|
|
506
646
|
<dl class="details">
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
|
|
507
652
|
|
|
508
653
|
|
|
509
654
|
|
|
@@ -525,7 +670,7 @@
|
|
|
525
670
|
|
|
526
671
|
<dt class="tag-source">Source:</dt>
|
|
527
672
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
528
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
673
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3169">line 3169</a>
|
|
529
674
|
</li></ul></dd>
|
|
530
675
|
|
|
531
676
|
|
|
@@ -569,8 +714,9 @@
|
|
|
569
714
|
|
|
570
715
|
|
|
571
716
|
|
|
717
|
+
|
|
718
|
+
|
|
572
719
|
<dl class="details">
|
|
573
|
-
|
|
574
720
|
|
|
575
721
|
|
|
576
722
|
|
|
@@ -594,9 +740,15 @@
|
|
|
594
740
|
|
|
595
741
|
|
|
596
742
|
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
|
|
746
|
+
|
|
747
|
+
|
|
748
|
+
|
|
597
749
|
<dt class="tag-source">Source:</dt>
|
|
598
750
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
599
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
751
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2546">line 2546</a>
|
|
600
752
|
</li></ul></dd>
|
|
601
753
|
|
|
602
754
|
|
|
@@ -640,8 +792,9 @@
|
|
|
640
792
|
|
|
641
793
|
|
|
642
794
|
|
|
795
|
+
|
|
796
|
+
|
|
643
797
|
<dl class="details">
|
|
644
|
-
|
|
645
798
|
|
|
646
799
|
|
|
647
800
|
|
|
@@ -665,9 +818,93 @@
|
|
|
665
818
|
|
|
666
819
|
|
|
667
820
|
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
|
|
825
|
+
|
|
826
|
+
|
|
668
827
|
<dt class="tag-source">Source:</dt>
|
|
669
828
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
670
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
829
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1366">line 1366</a>
|
|
830
|
+
</li></ul></dd>
|
|
831
|
+
|
|
832
|
+
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
|
|
838
|
+
</dl>
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
</dd>
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
<dt>
|
|
849
|
+
<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>
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
</dt>
|
|
853
|
+
<dd>
|
|
854
|
+
|
|
855
|
+
<div class="description">
|
|
856
|
+
<p>Enclosing OneOf.</p>
|
|
857
|
+
</div>
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
|
|
861
|
+
<h5>Type:</h5>
|
|
862
|
+
<ul>
|
|
863
|
+
<li>
|
|
864
|
+
|
|
865
|
+
<span class="param-type"><a href="ProtoBuf.Reflect.Message.OneOf.html">ProtoBuf.Reflect.Message.OneOf</a></span>
|
|
866
|
+
|
|
867
|
+
|
|
868
|
+
</li>
|
|
869
|
+
</ul>
|
|
870
|
+
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
<dl class="details">
|
|
876
|
+
|
|
877
|
+
|
|
878
|
+
|
|
879
|
+
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
<dt class="inherited-from">Inherited From:</dt>
|
|
883
|
+
<dd class="inherited-from"><ul class="dummy"><li>
|
|
884
|
+
<a href="ProtoBuf.Reflect.Message.Field.html#oneof">ProtoBuf.Reflect.Message.Field#oneof</a>
|
|
885
|
+
</li></dd>
|
|
886
|
+
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
|
|
895
|
+
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
|
|
903
|
+
|
|
904
|
+
|
|
905
|
+
<dt class="tag-source">Source:</dt>
|
|
906
|
+
<dd class="tag-source"><ul class="dummy"><li>
|
|
907
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2568">line 2568</a>
|
|
671
908
|
</li></ul></dd>
|
|
672
909
|
|
|
673
910
|
|
|
@@ -711,8 +948,9 @@
|
|
|
711
948
|
|
|
712
949
|
|
|
713
950
|
|
|
951
|
+
|
|
952
|
+
|
|
714
953
|
<dl class="details">
|
|
715
|
-
|
|
716
954
|
|
|
717
955
|
|
|
718
956
|
|
|
@@ -736,9 +974,15 @@
|
|
|
736
974
|
|
|
737
975
|
|
|
738
976
|
|
|
977
|
+
|
|
978
|
+
|
|
979
|
+
|
|
980
|
+
|
|
981
|
+
|
|
982
|
+
|
|
739
983
|
<dt class="tag-source">Source:</dt>
|
|
740
984
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
741
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
985
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2554">line 2554</a>
|
|
742
986
|
</li></ul></dd>
|
|
743
987
|
|
|
744
988
|
|
|
@@ -782,8 +1026,9 @@
|
|
|
782
1026
|
|
|
783
1027
|
|
|
784
1028
|
|
|
1029
|
+
|
|
1030
|
+
|
|
785
1031
|
<dl class="details">
|
|
786
|
-
|
|
787
1032
|
|
|
788
1033
|
|
|
789
1034
|
|
|
@@ -807,9 +1052,15 @@
|
|
|
807
1052
|
|
|
808
1053
|
|
|
809
1054
|
|
|
1055
|
+
|
|
1056
|
+
|
|
1057
|
+
|
|
1058
|
+
|
|
1059
|
+
|
|
1060
|
+
|
|
810
1061
|
<dt class="tag-source">Source:</dt>
|
|
811
1062
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
812
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1063
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2575">line 2575</a>
|
|
813
1064
|
</li></ul></dd>
|
|
814
1065
|
|
|
815
1066
|
|
|
@@ -829,7 +1080,7 @@
|
|
|
829
1080
|
|
|
830
1081
|
|
|
831
1082
|
<dt>
|
|
832
|
-
<h4 class="name" id="parent"><span class="type-signature"
|
|
1083
|
+
<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>
|
|
833
1084
|
|
|
834
1085
|
|
|
835
1086
|
</dt>
|
|
@@ -846,9 +1097,6 @@
|
|
|
846
1097
|
<li>
|
|
847
1098
|
|
|
848
1099
|
<span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
|
|
849
|
-
|
|
|
850
|
-
|
|
851
|
-
<span class="param-type">null</span>
|
|
852
1100
|
|
|
853
1101
|
|
|
854
1102
|
</li>
|
|
@@ -856,8 +1104,9 @@
|
|
|
856
1104
|
|
|
857
1105
|
|
|
858
1106
|
|
|
1107
|
+
|
|
1108
|
+
|
|
859
1109
|
<dl class="details">
|
|
860
|
-
|
|
861
1110
|
|
|
862
1111
|
|
|
863
1112
|
|
|
@@ -881,9 +1130,15 @@
|
|
|
881
1130
|
|
|
882
1131
|
|
|
883
1132
|
|
|
1133
|
+
|
|
1134
|
+
|
|
1135
|
+
|
|
1136
|
+
|
|
1137
|
+
|
|
1138
|
+
|
|
884
1139
|
<dt class="tag-source">Source:</dt>
|
|
885
1140
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
886
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1141
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1359">line 1359</a>
|
|
887
1142
|
</li></ul></dd>
|
|
888
1143
|
|
|
889
1144
|
|
|
@@ -927,8 +1182,9 @@
|
|
|
927
1182
|
|
|
928
1183
|
|
|
929
1184
|
|
|
1185
|
+
|
|
1186
|
+
|
|
930
1187
|
<dl class="details">
|
|
931
|
-
|
|
932
1188
|
|
|
933
1189
|
|
|
934
1190
|
|
|
@@ -952,9 +1208,15 @@
|
|
|
952
1208
|
|
|
953
1209
|
|
|
954
1210
|
|
|
1211
|
+
|
|
1212
|
+
|
|
1213
|
+
|
|
1214
|
+
|
|
1215
|
+
|
|
1216
|
+
|
|
955
1217
|
<dt class="tag-source">Source:</dt>
|
|
956
1218
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
957
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1219
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2525">line 2525</a>
|
|
958
1220
|
</li></ul></dd>
|
|
959
1221
|
|
|
960
1222
|
|
|
@@ -998,8 +1260,9 @@
|
|
|
998
1260
|
|
|
999
1261
|
|
|
1000
1262
|
|
|
1263
|
+
|
|
1264
|
+
|
|
1001
1265
|
<dl class="details">
|
|
1002
|
-
|
|
1003
1266
|
|
|
1004
1267
|
|
|
1005
1268
|
|
|
@@ -1023,9 +1286,15 @@
|
|
|
1023
1286
|
|
|
1024
1287
|
|
|
1025
1288
|
|
|
1289
|
+
|
|
1290
|
+
|
|
1291
|
+
|
|
1292
|
+
|
|
1293
|
+
|
|
1294
|
+
|
|
1026
1295
|
<dt class="tag-source">Source:</dt>
|
|
1027
1296
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1028
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1297
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2518">line 2518</a>
|
|
1029
1298
|
</li></ul></dd>
|
|
1030
1299
|
|
|
1031
1300
|
|
|
@@ -1072,8 +1341,9 @@
|
|
|
1072
1341
|
|
|
1073
1342
|
|
|
1074
1343
|
|
|
1344
|
+
|
|
1345
|
+
|
|
1075
1346
|
<dl class="details">
|
|
1076
|
-
|
|
1077
1347
|
|
|
1078
1348
|
|
|
1079
1349
|
|
|
@@ -1097,9 +1367,15 @@
|
|
|
1097
1367
|
|
|
1098
1368
|
|
|
1099
1369
|
|
|
1370
|
+
|
|
1371
|
+
|
|
1372
|
+
|
|
1373
|
+
|
|
1374
|
+
|
|
1375
|
+
|
|
1100
1376
|
<dt class="tag-source">Source:</dt>
|
|
1101
1377
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1102
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1378
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2539">line 2539</a>
|
|
1103
1379
|
</li></ul></dd>
|
|
1104
1380
|
|
|
1105
1381
|
|
|
@@ -1146,8 +1422,9 @@
|
|
|
1146
1422
|
|
|
1147
1423
|
|
|
1148
1424
|
|
|
1425
|
+
|
|
1426
|
+
|
|
1149
1427
|
<dl class="details">
|
|
1150
|
-
|
|
1151
1428
|
|
|
1152
1429
|
|
|
1153
1430
|
|
|
@@ -1171,9 +1448,15 @@
|
|
|
1171
1448
|
|
|
1172
1449
|
|
|
1173
1450
|
|
|
1451
|
+
|
|
1452
|
+
|
|
1453
|
+
|
|
1454
|
+
|
|
1455
|
+
|
|
1456
|
+
|
|
1174
1457
|
<dt class="tag-source">Source:</dt>
|
|
1175
1458
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1176
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1459
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2532">line 2532</a>
|
|
1177
1460
|
</li></ul></dd>
|
|
1178
1461
|
|
|
1179
1462
|
|
|
@@ -1199,8 +1482,10 @@
|
|
|
1199
1482
|
<dl>
|
|
1200
1483
|
|
|
1201
1484
|
<dt>
|
|
1202
|
-
|
|
1485
|
+
|
|
1486
|
+
<h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
|
|
1203
1487
|
|
|
1488
|
+
|
|
1204
1489
|
|
|
1205
1490
|
</dt>
|
|
1206
1491
|
<dd>
|
|
@@ -1218,9 +1503,12 @@
|
|
|
1218
1503
|
|
|
1219
1504
|
|
|
1220
1505
|
|
|
1221
|
-
|
|
1506
|
+
|
|
1222
1507
|
|
|
1223
1508
|
|
|
1509
|
+
|
|
1510
|
+
<dl class="details">
|
|
1511
|
+
|
|
1224
1512
|
|
|
1225
1513
|
|
|
1226
1514
|
|
|
@@ -1243,9 +1531,15 @@
|
|
|
1243
1531
|
|
|
1244
1532
|
|
|
1245
1533
|
|
|
1534
|
+
|
|
1535
|
+
|
|
1536
|
+
|
|
1537
|
+
|
|
1538
|
+
|
|
1539
|
+
|
|
1246
1540
|
<dt class="tag-source">Source:</dt>
|
|
1247
1541
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1248
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1542
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2605">line 2605</a>
|
|
1249
1543
|
</li></ul></dd>
|
|
1250
1544
|
|
|
1251
1545
|
|
|
@@ -1275,8 +1569,10 @@
|
|
|
1275
1569
|
|
|
1276
1570
|
|
|
1277
1571
|
<dt>
|
|
1278
|
-
|
|
1572
|
+
|
|
1573
|
+
<h4 class="name" id="calculate"><span class="type-signature"></span>calculate<span class="signature">(value)</span><span class="type-signature"> → {number}</span></h4>
|
|
1279
1574
|
|
|
1575
|
+
|
|
1280
1576
|
|
|
1281
1577
|
</dt>
|
|
1282
1578
|
<dd>
|
|
@@ -1292,6 +1588,8 @@
|
|
|
1292
1588
|
|
|
1293
1589
|
|
|
1294
1590
|
|
|
1591
|
+
|
|
1592
|
+
|
|
1295
1593
|
<h5>Parameters:</h5>
|
|
1296
1594
|
|
|
1297
1595
|
|
|
@@ -1342,8 +1640,9 @@
|
|
|
1342
1640
|
|
|
1343
1641
|
|
|
1344
1642
|
|
|
1643
|
+
|
|
1644
|
+
|
|
1345
1645
|
<dl class="details">
|
|
1346
|
-
|
|
1347
1646
|
|
|
1348
1647
|
|
|
1349
1648
|
|
|
@@ -1367,9 +1666,15 @@
|
|
|
1367
1666
|
|
|
1368
1667
|
|
|
1369
1668
|
|
|
1669
|
+
|
|
1670
|
+
|
|
1671
|
+
|
|
1672
|
+
|
|
1673
|
+
|
|
1674
|
+
|
|
1370
1675
|
<dt class="tag-source">Source:</dt>
|
|
1371
1676
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1372
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1677
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2945">line 2945</a>
|
|
1373
1678
|
</li></ul></dd>
|
|
1374
1679
|
|
|
1375
1680
|
|
|
@@ -1421,8 +1726,10 @@
|
|
|
1421
1726
|
|
|
1422
1727
|
|
|
1423
1728
|
<dt>
|
|
1424
|
-
|
|
1729
|
+
|
|
1730
|
+
<h4 class="name" id="calculateValue"><span class="type-signature"></span>calculateValue<span class="signature">(value)</span><span class="type-signature"> → {number}</span></h4>
|
|
1425
1731
|
|
|
1732
|
+
|
|
1426
1733
|
|
|
1427
1734
|
</dt>
|
|
1428
1735
|
<dd>
|
|
@@ -1438,6 +1745,8 @@
|
|
|
1438
1745
|
|
|
1439
1746
|
|
|
1440
1747
|
|
|
1748
|
+
|
|
1749
|
+
|
|
1441
1750
|
<h5>Parameters:</h5>
|
|
1442
1751
|
|
|
1443
1752
|
|
|
@@ -1488,8 +1797,9 @@
|
|
|
1488
1797
|
|
|
1489
1798
|
|
|
1490
1799
|
|
|
1800
|
+
|
|
1801
|
+
|
|
1491
1802
|
<dl class="details">
|
|
1492
|
-
|
|
1493
1803
|
|
|
1494
1804
|
|
|
1495
1805
|
|
|
@@ -1513,9 +1823,15 @@
|
|
|
1513
1823
|
|
|
1514
1824
|
|
|
1515
1825
|
|
|
1826
|
+
|
|
1827
|
+
|
|
1828
|
+
|
|
1829
|
+
|
|
1830
|
+
|
|
1831
|
+
|
|
1516
1832
|
<dt class="tag-source">Source:</dt>
|
|
1517
1833
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1518
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1834
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2984">line 2984</a>
|
|
1519
1835
|
</li></ul></dd>
|
|
1520
1836
|
|
|
1521
1837
|
|
|
@@ -1594,8 +1910,10 @@
|
|
|
1594
1910
|
|
|
1595
1911
|
|
|
1596
1912
|
<dt>
|
|
1597
|
-
|
|
1913
|
+
|
|
1914
|
+
<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>
|
|
1598
1915
|
|
|
1916
|
+
|
|
1599
1917
|
|
|
1600
1918
|
</dt>
|
|
1601
1919
|
<dd>
|
|
@@ -1611,6 +1929,8 @@
|
|
|
1611
1929
|
|
|
1612
1930
|
|
|
1613
1931
|
|
|
1932
|
+
|
|
1933
|
+
|
|
1614
1934
|
<h5>Parameters:</h5>
|
|
1615
1935
|
|
|
1616
1936
|
|
|
@@ -1735,8 +2055,9 @@
|
|
|
1735
2055
|
|
|
1736
2056
|
|
|
1737
2057
|
|
|
2058
|
+
|
|
2059
|
+
|
|
1738
2060
|
<dl class="details">
|
|
1739
|
-
|
|
1740
2061
|
|
|
1741
2062
|
|
|
1742
2063
|
|
|
@@ -1760,9 +2081,15 @@
|
|
|
1760
2081
|
|
|
1761
2082
|
|
|
1762
2083
|
|
|
2084
|
+
|
|
2085
|
+
|
|
2086
|
+
|
|
2087
|
+
|
|
2088
|
+
|
|
2089
|
+
|
|
1763
2090
|
<dt class="tag-source">Source:</dt>
|
|
1764
2091
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1765
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2092
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3040">line 3040</a>
|
|
1766
2093
|
</li></ul></dd>
|
|
1767
2094
|
|
|
1768
2095
|
|
|
@@ -1841,8 +2168,10 @@
|
|
|
1841
2168
|
|
|
1842
2169
|
|
|
1843
2170
|
<dt>
|
|
1844
|
-
|
|
2171
|
+
|
|
2172
|
+
<h4 class="name" id="encode"><span class="type-signature"></span>encode<span class="signature">(value, buffer)</span><span class="type-signature"> → {ByteBuffer}</span></h4>
|
|
1845
2173
|
|
|
2174
|
+
|
|
1846
2175
|
|
|
1847
2176
|
</dt>
|
|
1848
2177
|
<dd>
|
|
@@ -1858,6 +2187,8 @@
|
|
|
1858
2187
|
|
|
1859
2188
|
|
|
1860
2189
|
|
|
2190
|
+
|
|
2191
|
+
|
|
1861
2192
|
<h5>Parameters:</h5>
|
|
1862
2193
|
|
|
1863
2194
|
|
|
@@ -1931,8 +2262,9 @@
|
|
|
1931
2262
|
|
|
1932
2263
|
|
|
1933
2264
|
|
|
2265
|
+
|
|
2266
|
+
|
|
1934
2267
|
<dl class="details">
|
|
1935
|
-
|
|
1936
2268
|
|
|
1937
2269
|
|
|
1938
2270
|
|
|
@@ -1956,9 +2288,15 @@
|
|
|
1956
2288
|
|
|
1957
2289
|
|
|
1958
2290
|
|
|
2291
|
+
|
|
2292
|
+
|
|
2293
|
+
|
|
2294
|
+
|
|
2295
|
+
|
|
2296
|
+
|
|
1959
2297
|
<dt class="tag-source">Source:</dt>
|
|
1960
2298
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1961
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2299
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2772">line 2772</a>
|
|
1962
2300
|
</li></ul></dd>
|
|
1963
2301
|
|
|
1964
2302
|
|
|
@@ -2037,8 +2375,10 @@
|
|
|
2037
2375
|
|
|
2038
2376
|
|
|
2039
2377
|
<dt>
|
|
2040
|
-
|
|
2378
|
+
|
|
2379
|
+
<h4 class="name" id="encodeValue"><span class="type-signature"></span>encodeValue<span class="signature">(value, buffer)</span><span class="type-signature"> → {ByteBuffer}</span></h4>
|
|
2041
2380
|
|
|
2381
|
+
|
|
2042
2382
|
|
|
2043
2383
|
</dt>
|
|
2044
2384
|
<dd>
|
|
@@ -2054,6 +2394,8 @@
|
|
|
2054
2394
|
|
|
2055
2395
|
|
|
2056
2396
|
|
|
2397
|
+
|
|
2398
|
+
|
|
2057
2399
|
<h5>Parameters:</h5>
|
|
2058
2400
|
|
|
2059
2401
|
|
|
@@ -2127,8 +2469,9 @@
|
|
|
2127
2469
|
|
|
2128
2470
|
|
|
2129
2471
|
|
|
2472
|
+
|
|
2473
|
+
|
|
2130
2474
|
<dl class="details">
|
|
2131
|
-
|
|
2132
2475
|
|
|
2133
2476
|
|
|
2134
2477
|
|
|
@@ -2152,9 +2495,15 @@
|
|
|
2152
2495
|
|
|
2153
2496
|
|
|
2154
2497
|
|
|
2498
|
+
|
|
2499
|
+
|
|
2500
|
+
|
|
2501
|
+
|
|
2502
|
+
|
|
2503
|
+
|
|
2155
2504
|
<dt class="tag-source">Source:</dt>
|
|
2156
2505
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2157
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2506
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2824">line 2824</a>
|
|
2158
2507
|
</li></ul></dd>
|
|
2159
2508
|
|
|
2160
2509
|
|
|
@@ -2233,8 +2582,10 @@
|
|
|
2233
2582
|
|
|
2234
2583
|
|
|
2235
2584
|
<dt>
|
|
2236
|
-
|
|
2585
|
+
|
|
2586
|
+
<h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
2237
2587
|
|
|
2588
|
+
|
|
2238
2589
|
|
|
2239
2590
|
</dt>
|
|
2240
2591
|
<dd>
|
|
@@ -2252,9 +2603,12 @@
|
|
|
2252
2603
|
|
|
2253
2604
|
|
|
2254
2605
|
|
|
2255
|
-
|
|
2606
|
+
|
|
2256
2607
|
|
|
2257
2608
|
|
|
2609
|
+
|
|
2610
|
+
<dl class="details">
|
|
2611
|
+
|
|
2258
2612
|
|
|
2259
2613
|
|
|
2260
2614
|
|
|
@@ -2277,9 +2631,15 @@
|
|
|
2277
2631
|
|
|
2278
2632
|
|
|
2279
2633
|
|
|
2634
|
+
|
|
2635
|
+
|
|
2636
|
+
|
|
2637
|
+
|
|
2638
|
+
|
|
2639
|
+
|
|
2280
2640
|
<dt class="tag-source">Source:</dt>
|
|
2281
2641
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2282
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2642
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1387">line 1387</a>
|
|
2283
2643
|
</li></ul></dd>
|
|
2284
2644
|
|
|
2285
2645
|
|
|
@@ -2331,8 +2691,10 @@
|
|
|
2331
2691
|
|
|
2332
2692
|
|
|
2333
2693
|
<dt>
|
|
2334
|
-
|
|
2694
|
+
|
|
2695
|
+
<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>
|
|
2335
2696
|
|
|
2697
|
+
|
|
2336
2698
|
|
|
2337
2699
|
</dt>
|
|
2338
2700
|
<dd>
|
|
@@ -2348,6 +2710,8 @@
|
|
|
2348
2710
|
|
|
2349
2711
|
|
|
2350
2712
|
|
|
2713
|
+
|
|
2714
|
+
|
|
2351
2715
|
<h5>Parameters:</h5>
|
|
2352
2716
|
|
|
2353
2717
|
|
|
@@ -2410,8 +2774,9 @@
|
|
|
2410
2774
|
|
|
2411
2775
|
|
|
2412
2776
|
|
|
2777
|
+
|
|
2778
|
+
|
|
2413
2779
|
<dl class="details">
|
|
2414
|
-
|
|
2415
2780
|
|
|
2416
2781
|
|
|
2417
2782
|
|
|
@@ -2435,9 +2800,15 @@
|
|
|
2435
2800
|
|
|
2436
2801
|
|
|
2437
2802
|
|
|
2803
|
+
|
|
2804
|
+
|
|
2805
|
+
|
|
2806
|
+
|
|
2807
|
+
|
|
2808
|
+
|
|
2438
2809
|
<dt class="tag-source">Source:</dt>
|
|
2439
2810
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2440
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2811
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1405">line 1405</a>
|
|
2441
2812
|
</li></ul></dd>
|
|
2442
2813
|
|
|
2443
2814
|
|
|
@@ -2477,8 +2848,10 @@
|
|
|
2477
2848
|
|
|
2478
2849
|
|
|
2479
2850
|
<dt>
|
|
2480
|
-
|
|
2851
|
+
|
|
2852
|
+
<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>
|
|
2481
2853
|
|
|
2854
|
+
|
|
2482
2855
|
|
|
2483
2856
|
</dt>
|
|
2484
2857
|
<dd>
|
|
@@ -2494,6 +2867,8 @@
|
|
|
2494
2867
|
|
|
2495
2868
|
|
|
2496
2869
|
|
|
2870
|
+
|
|
2871
|
+
|
|
2497
2872
|
<h5>Parameters:</h5>
|
|
2498
2873
|
|
|
2499
2874
|
|
|
@@ -2587,8 +2962,9 @@
|
|
|
2587
2962
|
|
|
2588
2963
|
|
|
2589
2964
|
|
|
2965
|
+
|
|
2966
|
+
|
|
2590
2967
|
<dl class="details">
|
|
2591
|
-
|
|
2592
2968
|
|
|
2593
2969
|
|
|
2594
2970
|
|
|
@@ -2612,9 +2988,15 @@
|
|
|
2612
2988
|
|
|
2613
2989
|
|
|
2614
2990
|
|
|
2991
|
+
|
|
2992
|
+
|
|
2993
|
+
|
|
2994
|
+
|
|
2995
|
+
|
|
2996
|
+
|
|
2615
2997
|
<dt class="tag-source">Source:</dt>
|
|
2616
2998
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2617
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2999
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2638">line 2638</a>
|
|
2618
3000
|
</li></ul></dd>
|
|
2619
3001
|
|
|
2620
3002
|
|
|
@@ -2706,13 +3088,13 @@
|
|
|
2706
3088
|
</div>
|
|
2707
3089
|
|
|
2708
3090
|
<nav>
|
|
2709
|
-
<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>
|
|
3091
|
+
<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>
|
|
2710
3092
|
</nav>
|
|
2711
3093
|
|
|
2712
3094
|
<br clear="both">
|
|
2713
3095
|
|
|
2714
3096
|
<footer>
|
|
2715
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-
|
|
3097
|
+
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)
|
|
2716
3098
|
</footer>
|
|
2717
3099
|
|
|
2718
3100
|
<script> prettyPrint(); </script>
|