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
|
+
Message
|
|
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="Message"><span class="type-signature"></span>new Message<span class="signature">(builder<span class="signature-attributes">non-null</span>, parent<span class="signature-attributes">non-null</span>, name, options<span class="signature-attributes">opt</span>, isGroup<span class="signature-attributes">opt</span>)</span><span class="type-signature"></span></h4>
|
|
45
47
|
|
|
48
|
+
|
|
46
49
|
|
|
47
50
|
</dt>
|
|
48
51
|
<dd>
|
|
@@ -58,6 +61,8 @@
|
|
|
58
61
|
|
|
59
62
|
|
|
60
63
|
|
|
64
|
+
|
|
65
|
+
|
|
61
66
|
<h5>Parameters:</h5>
|
|
62
67
|
|
|
63
68
|
|
|
@@ -83,6 +88,37 @@
|
|
|
83
88
|
<tbody>
|
|
84
89
|
|
|
85
90
|
|
|
91
|
+
<tr>
|
|
92
|
+
|
|
93
|
+
<td class="name"><code>builder</code></td>
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
<td class="type">
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
<span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
</td>
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
<td class="attributes">
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
</td>
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
<td class="description last"><p>Builder reference</p></td>
|
|
118
|
+
</tr>
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
86
122
|
<tr>
|
|
87
123
|
|
|
88
124
|
<td class="name"><code>parent</code></td>
|
|
@@ -162,6 +198,8 @@
|
|
|
162
198
|
|
|
163
199
|
<td class="attributes">
|
|
164
200
|
|
|
201
|
+
<optional><br>
|
|
202
|
+
|
|
165
203
|
|
|
166
204
|
|
|
167
205
|
|
|
@@ -213,7 +251,14 @@
|
|
|
213
251
|
|
|
214
252
|
|
|
215
253
|
|
|
254
|
+
|
|
255
|
+
|
|
216
256
|
<dl class="details">
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
|
|
217
262
|
|
|
218
263
|
|
|
219
264
|
|
|
@@ -235,7 +280,7 @@
|
|
|
235
280
|
|
|
236
281
|
<dt class="tag-source">Source:</dt>
|
|
237
282
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
238
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
283
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1615">line 1615</a>
|
|
239
284
|
</li></ul></dd>
|
|
240
285
|
|
|
241
286
|
|
|
@@ -268,10 +313,13 @@
|
|
|
268
313
|
|
|
269
314
|
<h3 class="subsection-title">Extends</h3>
|
|
270
315
|
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
<ul>
|
|
320
|
+
<li><a href="ProtoBuf.Reflect.Namespace.html">ProtoBuf.Reflect.Namespace</a></li>
|
|
321
|
+
</ul>
|
|
322
|
+
|
|
275
323
|
|
|
276
324
|
|
|
277
325
|
|
|
@@ -286,6 +334,9 @@
|
|
|
286
334
|
|
|
287
335
|
<dt><a href="ProtoBuf.Reflect.Message.Field.html">Field</a></dt>
|
|
288
336
|
<dd></dd>
|
|
337
|
+
|
|
338
|
+
<dt><a href="ProtoBuf.Reflect.Message.OneOf.html">OneOf</a></dt>
|
|
339
|
+
<dd></dd>
|
|
289
340
|
</dl>
|
|
290
341
|
|
|
291
342
|
|
|
@@ -299,7 +350,85 @@
|
|
|
299
350
|
<dl>
|
|
300
351
|
|
|
301
352
|
<dt>
|
|
302
|
-
<h4 class="name" id="
|
|
353
|
+
<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>
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
</dt>
|
|
357
|
+
<dd>
|
|
358
|
+
|
|
359
|
+
<div class="description">
|
|
360
|
+
<p>Builder reference.</p>
|
|
361
|
+
</div>
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
<h5>Type:</h5>
|
|
366
|
+
<ul>
|
|
367
|
+
<li>
|
|
368
|
+
|
|
369
|
+
<span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
</li>
|
|
373
|
+
</ul>
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
<dl class="details">
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
<dt class="inherited-from">Inherited From:</dt>
|
|
387
|
+
<dd class="inherited-from"><ul class="dummy"><li>
|
|
388
|
+
<a href="ProtoBuf.Reflect.T.html#builder">ProtoBuf.Reflect.T#builder</a>
|
|
389
|
+
</li></dd>
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
<dt class="tag-source">Source:</dt>
|
|
410
|
+
<dd class="tag-source"><ul class="dummy"><li>
|
|
411
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1352">line 1352</a>
|
|
412
|
+
</li></ul></dd>
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
</dl>
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
</dd>
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
<dt>
|
|
431
|
+
<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>
|
|
303
432
|
|
|
304
433
|
|
|
305
434
|
</dt>
|
|
@@ -323,8 +452,9 @@
|
|
|
323
452
|
|
|
324
453
|
|
|
325
454
|
|
|
455
|
+
|
|
456
|
+
|
|
326
457
|
<dl class="details">
|
|
327
|
-
|
|
328
458
|
|
|
329
459
|
|
|
330
460
|
|
|
@@ -348,9 +478,15 @@
|
|
|
348
478
|
|
|
349
479
|
|
|
350
480
|
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
|
|
351
487
|
<dt class="tag-source">Source:</dt>
|
|
352
488
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
353
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
489
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1446">line 1446</a>
|
|
354
490
|
</li></ul></dd>
|
|
355
491
|
|
|
356
492
|
|
|
@@ -380,7 +516,14 @@
|
|
|
380
516
|
|
|
381
517
|
|
|
382
518
|
|
|
519
|
+
|
|
520
|
+
|
|
383
521
|
<dl class="details">
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
|
|
384
527
|
|
|
385
528
|
|
|
386
529
|
|
|
@@ -402,7 +545,7 @@
|
|
|
402
545
|
|
|
403
546
|
<dt class="tag-source">Source:</dt>
|
|
404
547
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
405
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
548
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1621">line 1621</a>
|
|
406
549
|
</li></ul></dd>
|
|
407
550
|
|
|
408
551
|
|
|
@@ -446,7 +589,14 @@
|
|
|
446
589
|
|
|
447
590
|
|
|
448
591
|
|
|
592
|
+
|
|
593
|
+
|
|
449
594
|
<dl class="details">
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
|
|
450
600
|
|
|
451
601
|
|
|
452
602
|
|
|
@@ -468,7 +618,7 @@
|
|
|
468
618
|
|
|
469
619
|
<dt class="tag-source">Source:</dt>
|
|
470
620
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
471
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
621
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1635">line 1635</a>
|
|
472
622
|
</li></ul></dd>
|
|
473
623
|
|
|
474
624
|
|
|
@@ -512,7 +662,14 @@
|
|
|
512
662
|
|
|
513
663
|
|
|
514
664
|
|
|
665
|
+
|
|
666
|
+
|
|
515
667
|
<dl class="details">
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
|
|
516
673
|
|
|
517
674
|
|
|
518
675
|
|
|
@@ -534,7 +691,7 @@
|
|
|
534
691
|
|
|
535
692
|
<dt class="tag-source">Source:</dt>
|
|
536
693
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
537
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
694
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1628">line 1628</a>
|
|
538
695
|
</li></ul></dd>
|
|
539
696
|
|
|
540
697
|
|
|
@@ -578,7 +735,14 @@
|
|
|
578
735
|
|
|
579
736
|
|
|
580
737
|
|
|
738
|
+
|
|
739
|
+
|
|
581
740
|
<dl class="details">
|
|
741
|
+
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
|
|
582
746
|
|
|
583
747
|
|
|
584
748
|
|
|
@@ -600,7 +764,7 @@
|
|
|
600
764
|
|
|
601
765
|
<dt class="tag-source">Source:</dt>
|
|
602
766
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
603
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
767
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1642">line 1642</a>
|
|
604
768
|
</li></ul></dd>
|
|
605
769
|
|
|
606
770
|
|
|
@@ -644,8 +808,9 @@
|
|
|
644
808
|
|
|
645
809
|
|
|
646
810
|
|
|
811
|
+
|
|
812
|
+
|
|
647
813
|
<dl class="details">
|
|
648
|
-
|
|
649
814
|
|
|
650
815
|
|
|
651
816
|
|
|
@@ -669,9 +834,15 @@
|
|
|
669
834
|
|
|
670
835
|
|
|
671
836
|
|
|
837
|
+
|
|
838
|
+
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
|
|
672
843
|
<dt class="tag-source">Source:</dt>
|
|
673
844
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
674
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
845
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1366">line 1366</a>
|
|
675
846
|
</li></ul></dd>
|
|
676
847
|
|
|
677
848
|
|
|
@@ -691,7 +862,7 @@
|
|
|
691
862
|
|
|
692
863
|
|
|
693
864
|
<dt>
|
|
694
|
-
<h4 class="name" id="options"><span class="type-signature"
|
|
865
|
+
<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>
|
|
695
866
|
|
|
696
867
|
|
|
697
868
|
</dt>
|
|
@@ -715,8 +886,9 @@
|
|
|
715
886
|
|
|
716
887
|
|
|
717
888
|
|
|
889
|
+
|
|
890
|
+
|
|
718
891
|
<dl class="details">
|
|
719
|
-
|
|
720
892
|
|
|
721
893
|
|
|
722
894
|
|
|
@@ -740,9 +912,15 @@
|
|
|
740
912
|
|
|
741
913
|
|
|
742
914
|
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
|
|
920
|
+
|
|
743
921
|
<dt class="tag-source">Source:</dt>
|
|
744
922
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
745
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
923
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1452">line 1452</a>
|
|
746
924
|
</li></ul></dd>
|
|
747
925
|
|
|
748
926
|
|
|
@@ -762,7 +940,7 @@
|
|
|
762
940
|
|
|
763
941
|
|
|
764
942
|
<dt>
|
|
765
|
-
<h4 class="name" id="parent"><span class="type-signature"
|
|
943
|
+
<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>
|
|
766
944
|
|
|
767
945
|
|
|
768
946
|
</dt>
|
|
@@ -779,9 +957,6 @@
|
|
|
779
957
|
<li>
|
|
780
958
|
|
|
781
959
|
<span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
|
|
782
|
-
|
|
|
783
|
-
|
|
784
|
-
<span class="param-type">null</span>
|
|
785
960
|
|
|
786
961
|
|
|
787
962
|
</li>
|
|
@@ -789,8 +964,9 @@
|
|
|
789
964
|
|
|
790
965
|
|
|
791
966
|
|
|
967
|
+
|
|
968
|
+
|
|
792
969
|
<dl class="details">
|
|
793
|
-
|
|
794
970
|
|
|
795
971
|
|
|
796
972
|
|
|
@@ -814,9 +990,15 @@
|
|
|
814
990
|
|
|
815
991
|
|
|
816
992
|
|
|
993
|
+
|
|
994
|
+
|
|
995
|
+
|
|
996
|
+
|
|
997
|
+
|
|
998
|
+
|
|
817
999
|
<dt class="tag-source">Source:</dt>
|
|
818
1000
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
819
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1001
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1359">line 1359</a>
|
|
820
1002
|
</li></ul></dd>
|
|
821
1003
|
|
|
822
1004
|
|
|
@@ -842,8 +1024,10 @@
|
|
|
842
1024
|
<dl>
|
|
843
1025
|
|
|
844
1026
|
<dt>
|
|
845
|
-
|
|
1027
|
+
|
|
1028
|
+
<h4 class="name" id="addChild"><span class="type-signature"></span>addChild<span class="signature">(child)</span><span class="type-signature"></span></h4>
|
|
846
1029
|
|
|
1030
|
+
|
|
847
1031
|
|
|
848
1032
|
</dt>
|
|
849
1033
|
<dd>
|
|
@@ -859,6 +1043,8 @@
|
|
|
859
1043
|
|
|
860
1044
|
|
|
861
1045
|
|
|
1046
|
+
|
|
1047
|
+
|
|
862
1048
|
<h5>Parameters:</h5>
|
|
863
1049
|
|
|
864
1050
|
|
|
@@ -909,8 +1095,9 @@
|
|
|
909
1095
|
|
|
910
1096
|
|
|
911
1097
|
|
|
1098
|
+
|
|
1099
|
+
|
|
912
1100
|
<dl class="details">
|
|
913
|
-
|
|
914
1101
|
|
|
915
1102
|
|
|
916
1103
|
|
|
@@ -934,9 +1121,15 @@
|
|
|
934
1121
|
|
|
935
1122
|
|
|
936
1123
|
|
|
1124
|
+
|
|
1125
|
+
|
|
1126
|
+
|
|
1127
|
+
|
|
1128
|
+
|
|
1129
|
+
|
|
937
1130
|
<dt class="tag-source">Source:</dt>
|
|
938
1131
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
939
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1132
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1484">line 1484</a>
|
|
940
1133
|
</li></ul></dd>
|
|
941
1134
|
|
|
942
1135
|
|
|
@@ -993,8 +1186,10 @@
|
|
|
993
1186
|
|
|
994
1187
|
|
|
995
1188
|
<dt>
|
|
996
|
-
|
|
1189
|
+
|
|
1190
|
+
<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"> → {<a href="ProtoBuf.Reflect.Message.html">ProtoBuf.Reflect.Message</a>}</span></h4>
|
|
997
1191
|
|
|
1192
|
+
|
|
998
1193
|
|
|
999
1194
|
</dt>
|
|
1000
1195
|
<dd>
|
|
@@ -1010,6 +1205,8 @@
|
|
|
1010
1205
|
|
|
1011
1206
|
|
|
1012
1207
|
|
|
1208
|
+
|
|
1209
|
+
|
|
1013
1210
|
<h5>Parameters:</h5>
|
|
1014
1211
|
|
|
1015
1212
|
|
|
@@ -1072,7 +1269,14 @@
|
|
|
1072
1269
|
|
|
1073
1270
|
|
|
1074
1271
|
|
|
1272
|
+
|
|
1273
|
+
|
|
1075
1274
|
<dl class="details">
|
|
1275
|
+
|
|
1276
|
+
|
|
1277
|
+
|
|
1278
|
+
|
|
1279
|
+
|
|
1076
1280
|
|
|
1077
1281
|
|
|
1078
1282
|
|
|
@@ -1094,7 +1298,7 @@
|
|
|
1094
1298
|
|
|
1095
1299
|
<dt class="tag-source">Source:</dt>
|
|
1096
1300
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1097
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1301
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1682">line 1682</a>
|
|
1098
1302
|
</li></ul></dd>
|
|
1099
1303
|
|
|
1100
1304
|
|
|
@@ -1180,8 +1384,10 @@
|
|
|
1180
1384
|
|
|
1181
1385
|
|
|
1182
1386
|
<dt>
|
|
1183
|
-
|
|
1387
|
+
|
|
1388
|
+
<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>
|
|
1184
1389
|
|
|
1390
|
+
|
|
1185
1391
|
|
|
1186
1392
|
</dt>
|
|
1187
1393
|
<dd>
|
|
@@ -1199,9 +1405,12 @@
|
|
|
1199
1405
|
|
|
1200
1406
|
|
|
1201
1407
|
|
|
1202
|
-
|
|
1408
|
+
|
|
1203
1409
|
|
|
1204
1410
|
|
|
1411
|
+
|
|
1412
|
+
<dl class="details">
|
|
1413
|
+
|
|
1205
1414
|
|
|
1206
1415
|
|
|
1207
1416
|
|
|
@@ -1224,9 +1433,15 @@
|
|
|
1224
1433
|
|
|
1225
1434
|
|
|
1226
1435
|
|
|
1436
|
+
|
|
1437
|
+
|
|
1438
|
+
|
|
1439
|
+
|
|
1440
|
+
|
|
1441
|
+
|
|
1227
1442
|
<dt class="tag-source">Source:</dt>
|
|
1228
1443
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1229
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1444
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1571">line 1571</a>
|
|
1230
1445
|
</li></ul></dd>
|
|
1231
1446
|
|
|
1232
1447
|
|
|
@@ -1274,8 +1489,10 @@
|
|
|
1274
1489
|
|
|
1275
1490
|
|
|
1276
1491
|
<dt>
|
|
1277
|
-
|
|
1492
|
+
|
|
1493
|
+
<h4 class="name" id="calculate"><span class="type-signature"></span>calculate<span class="signature">(message<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> → {number}</span></h4>
|
|
1278
1494
|
|
|
1495
|
+
|
|
1279
1496
|
|
|
1280
1497
|
</dt>
|
|
1281
1498
|
<dd>
|
|
@@ -1291,6 +1508,8 @@
|
|
|
1291
1508
|
|
|
1292
1509
|
|
|
1293
1510
|
|
|
1511
|
+
|
|
1512
|
+
|
|
1294
1513
|
<h5>Parameters:</h5>
|
|
1295
1514
|
|
|
1296
1515
|
|
|
@@ -1341,7 +1560,14 @@
|
|
|
1341
1560
|
|
|
1342
1561
|
|
|
1343
1562
|
|
|
1563
|
+
|
|
1564
|
+
|
|
1344
1565
|
<dl class="details">
|
|
1566
|
+
|
|
1567
|
+
|
|
1568
|
+
|
|
1569
|
+
|
|
1570
|
+
|
|
1345
1571
|
|
|
1346
1572
|
|
|
1347
1573
|
|
|
@@ -1363,7 +1589,7 @@
|
|
|
1363
1589
|
|
|
1364
1590
|
<dt class="tag-source">Source:</dt>
|
|
1365
1591
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1366
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1592
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2359">line 2359</a>
|
|
1367
1593
|
</li></ul></dd>
|
|
1368
1594
|
|
|
1369
1595
|
|
|
@@ -1442,8 +1668,10 @@
|
|
|
1442
1668
|
|
|
1443
1669
|
|
|
1444
1670
|
<dt>
|
|
1445
|
-
|
|
1671
|
+
|
|
1672
|
+
<h4 class="name" id="decode"><span class="type-signature"></span>decode<span class="signature">(buffer, length<span class="signature-attributes">opt</span>, expectedGroupEndId<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {<a href="ProtoBuf.Builder.Message.html">ProtoBuf.Builder.Message</a>}</span></h4>
|
|
1446
1673
|
|
|
1674
|
+
|
|
1447
1675
|
|
|
1448
1676
|
</dt>
|
|
1449
1677
|
<dd>
|
|
@@ -1459,6 +1687,8 @@
|
|
|
1459
1687
|
|
|
1460
1688
|
|
|
1461
1689
|
|
|
1690
|
+
|
|
1691
|
+
|
|
1462
1692
|
<h5>Parameters:</h5>
|
|
1463
1693
|
|
|
1464
1694
|
|
|
@@ -1585,7 +1815,14 @@
|
|
|
1585
1815
|
|
|
1586
1816
|
|
|
1587
1817
|
|
|
1818
|
+
|
|
1819
|
+
|
|
1588
1820
|
<dl class="details">
|
|
1821
|
+
|
|
1822
|
+
|
|
1823
|
+
|
|
1824
|
+
|
|
1825
|
+
|
|
1589
1826
|
|
|
1590
1827
|
|
|
1591
1828
|
|
|
@@ -1607,7 +1844,7 @@
|
|
|
1607
1844
|
|
|
1608
1845
|
<dt class="tag-source">Source:</dt>
|
|
1609
1846
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1610
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1847
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2421">line 2421</a>
|
|
1611
1848
|
</li></ul></dd>
|
|
1612
1849
|
|
|
1613
1850
|
|
|
@@ -1686,8 +1923,10 @@
|
|
|
1686
1923
|
|
|
1687
1924
|
|
|
1688
1925
|
<dt>
|
|
1689
|
-
|
|
1926
|
+
|
|
1927
|
+
<h4 class="name" id="encode"><span class="type-signature"></span>encode<span class="signature">(message<span class="signature-attributes">non-null</span>, buffer, noVerify<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {ByteBuffer}</span></h4>
|
|
1690
1928
|
|
|
1929
|
+
|
|
1691
1930
|
|
|
1692
1931
|
</dt>
|
|
1693
1932
|
<dd>
|
|
@@ -1703,6 +1942,8 @@
|
|
|
1703
1942
|
|
|
1704
1943
|
|
|
1705
1944
|
|
|
1945
|
+
|
|
1946
|
+
|
|
1706
1947
|
<h5>Parameters:</h5>
|
|
1707
1948
|
|
|
1708
1949
|
|
|
@@ -1827,7 +2068,14 @@
|
|
|
1827
2068
|
|
|
1828
2069
|
|
|
1829
2070
|
|
|
2071
|
+
|
|
2072
|
+
|
|
1830
2073
|
<dl class="details">
|
|
2074
|
+
|
|
2075
|
+
|
|
2076
|
+
|
|
2077
|
+
|
|
2078
|
+
|
|
1831
2079
|
|
|
1832
2080
|
|
|
1833
2081
|
|
|
@@ -1849,7 +2097,7 @@
|
|
|
1849
2097
|
|
|
1850
2098
|
<dt class="tag-source">Source:</dt>
|
|
1851
2099
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1852
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2100
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line2332">line 2332</a>
|
|
1853
2101
|
</li></ul></dd>
|
|
1854
2102
|
|
|
1855
2103
|
|
|
@@ -1928,8 +2176,10 @@
|
|
|
1928
2176
|
|
|
1929
2177
|
|
|
1930
2178
|
<dt>
|
|
1931
|
-
|
|
2179
|
+
|
|
2180
|
+
<h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
1932
2181
|
|
|
2182
|
+
|
|
1933
2183
|
|
|
1934
2184
|
</dt>
|
|
1935
2185
|
<dd>
|
|
@@ -1947,9 +2197,12 @@
|
|
|
1947
2197
|
|
|
1948
2198
|
|
|
1949
2199
|
|
|
1950
|
-
|
|
2200
|
+
|
|
1951
2201
|
|
|
1952
2202
|
|
|
2203
|
+
|
|
2204
|
+
<dl class="details">
|
|
2205
|
+
|
|
1953
2206
|
|
|
1954
2207
|
|
|
1955
2208
|
|
|
@@ -1972,9 +2225,15 @@
|
|
|
1972
2225
|
|
|
1973
2226
|
|
|
1974
2227
|
|
|
2228
|
+
|
|
2229
|
+
|
|
2230
|
+
|
|
2231
|
+
|
|
2232
|
+
|
|
2233
|
+
|
|
1975
2234
|
<dt class="tag-source">Source:</dt>
|
|
1976
2235
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1977
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2236
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1387">line 1387</a>
|
|
1978
2237
|
</li></ul></dd>
|
|
1979
2238
|
|
|
1980
2239
|
|
|
@@ -2026,8 +2285,10 @@
|
|
|
2026
2285
|
|
|
2027
2286
|
|
|
2028
2287
|
<dt>
|
|
2029
|
-
|
|
2288
|
+
|
|
2289
|
+
<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>
|
|
2030
2290
|
|
|
2291
|
+
|
|
2031
2292
|
|
|
2032
2293
|
</dt>
|
|
2033
2294
|
<dd>
|
|
@@ -2043,6 +2304,8 @@
|
|
|
2043
2304
|
|
|
2044
2305
|
|
|
2045
2306
|
|
|
2307
|
+
|
|
2308
|
+
|
|
2046
2309
|
<h5>Parameters:</h5>
|
|
2047
2310
|
|
|
2048
2311
|
|
|
@@ -2096,8 +2359,9 @@
|
|
|
2096
2359
|
|
|
2097
2360
|
|
|
2098
2361
|
|
|
2362
|
+
|
|
2363
|
+
|
|
2099
2364
|
<dl class="details">
|
|
2100
|
-
|
|
2101
2365
|
|
|
2102
2366
|
|
|
2103
2367
|
|
|
@@ -2121,9 +2385,15 @@
|
|
|
2121
2385
|
|
|
2122
2386
|
|
|
2123
2387
|
|
|
2388
|
+
|
|
2389
|
+
|
|
2390
|
+
|
|
2391
|
+
|
|
2392
|
+
|
|
2393
|
+
|
|
2124
2394
|
<dt class="tag-source">Source:</dt>
|
|
2125
2395
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2126
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2396
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1504">line 1504</a>
|
|
2127
2397
|
</li></ul></dd>
|
|
2128
2398
|
|
|
2129
2399
|
|
|
@@ -2175,8 +2445,10 @@
|
|
|
2175
2445
|
|
|
2176
2446
|
|
|
2177
2447
|
<dt>
|
|
2178
|
-
|
|
2448
|
+
|
|
2449
|
+
<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>
|
|
2179
2450
|
|
|
2451
|
+
|
|
2180
2452
|
|
|
2181
2453
|
</dt>
|
|
2182
2454
|
<dd>
|
|
@@ -2192,6 +2464,8 @@
|
|
|
2192
2464
|
|
|
2193
2465
|
|
|
2194
2466
|
|
|
2467
|
+
|
|
2468
|
+
|
|
2195
2469
|
<h5>Parameters:</h5>
|
|
2196
2470
|
|
|
2197
2471
|
|
|
@@ -2254,8 +2528,9 @@
|
|
|
2254
2528
|
|
|
2255
2529
|
|
|
2256
2530
|
|
|
2531
|
+
|
|
2532
|
+
|
|
2257
2533
|
<dl class="details">
|
|
2258
|
-
|
|
2259
2534
|
|
|
2260
2535
|
|
|
2261
2536
|
|
|
@@ -2279,9 +2554,15 @@
|
|
|
2279
2554
|
|
|
2280
2555
|
|
|
2281
2556
|
|
|
2557
|
+
|
|
2558
|
+
|
|
2559
|
+
|
|
2560
|
+
|
|
2561
|
+
|
|
2562
|
+
|
|
2282
2563
|
<dt class="tag-source">Source:</dt>
|
|
2283
2564
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2284
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2565
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1467">line 1467</a>
|
|
2285
2566
|
</li></ul></dd>
|
|
2286
2567
|
|
|
2287
2568
|
|
|
@@ -2329,8 +2610,10 @@
|
|
|
2329
2610
|
|
|
2330
2611
|
|
|
2331
2612
|
<dt>
|
|
2332
|
-
|
|
2613
|
+
|
|
2614
|
+
<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>
|
|
2333
2615
|
|
|
2616
|
+
|
|
2334
2617
|
|
|
2335
2618
|
</dt>
|
|
2336
2619
|
<dd>
|
|
@@ -2346,6 +2629,8 @@
|
|
|
2346
2629
|
|
|
2347
2630
|
|
|
2348
2631
|
|
|
2632
|
+
|
|
2633
|
+
|
|
2349
2634
|
<h5>Parameters:</h5>
|
|
2350
2635
|
|
|
2351
2636
|
|
|
@@ -2408,8 +2693,9 @@
|
|
|
2408
2693
|
|
|
2409
2694
|
|
|
2410
2695
|
|
|
2696
|
+
|
|
2697
|
+
|
|
2411
2698
|
<dl class="details">
|
|
2412
|
-
|
|
2413
2699
|
|
|
2414
2700
|
|
|
2415
2701
|
|
|
@@ -2433,9 +2719,15 @@
|
|
|
2433
2719
|
|
|
2434
2720
|
|
|
2435
2721
|
|
|
2722
|
+
|
|
2723
|
+
|
|
2724
|
+
|
|
2725
|
+
|
|
2726
|
+
|
|
2727
|
+
|
|
2436
2728
|
<dt class="tag-source">Source:</dt>
|
|
2437
2729
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2438
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2730
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1592">line 1592</a>
|
|
2439
2731
|
</li></ul></dd>
|
|
2440
2732
|
|
|
2441
2733
|
|
|
@@ -2490,8 +2782,10 @@
|
|
|
2490
2782
|
|
|
2491
2783
|
|
|
2492
2784
|
<dt>
|
|
2493
|
-
|
|
2785
|
+
|
|
2786
|
+
<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>
|
|
2494
2787
|
|
|
2788
|
+
|
|
2495
2789
|
|
|
2496
2790
|
</dt>
|
|
2497
2791
|
<dd>
|
|
@@ -2507,6 +2801,8 @@
|
|
|
2507
2801
|
|
|
2508
2802
|
|
|
2509
2803
|
|
|
2804
|
+
|
|
2805
|
+
|
|
2510
2806
|
<h5>Parameters:</h5>
|
|
2511
2807
|
|
|
2512
2808
|
|
|
@@ -2600,8 +2896,9 @@
|
|
|
2600
2896
|
|
|
2601
2897
|
|
|
2602
2898
|
|
|
2899
|
+
|
|
2900
|
+
|
|
2603
2901
|
<dl class="details">
|
|
2604
|
-
|
|
2605
2902
|
|
|
2606
2903
|
|
|
2607
2904
|
|
|
@@ -2625,9 +2922,15 @@
|
|
|
2625
2922
|
|
|
2626
2923
|
|
|
2627
2924
|
|
|
2925
|
+
|
|
2926
|
+
|
|
2927
|
+
|
|
2928
|
+
|
|
2929
|
+
|
|
2930
|
+
|
|
2628
2931
|
<dt class="tag-source">Source:</dt>
|
|
2629
2932
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2630
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2933
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1519">line 1519</a>
|
|
2631
2934
|
</li></ul></dd>
|
|
2632
2935
|
|
|
2633
2936
|
|
|
@@ -2679,8 +2982,10 @@
|
|
|
2679
2982
|
|
|
2680
2983
|
|
|
2681
2984
|
<dt>
|
|
2682
|
-
|
|
2985
|
+
|
|
2986
|
+
<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>
|
|
2683
2987
|
|
|
2988
|
+
|
|
2684
2989
|
|
|
2685
2990
|
</dt>
|
|
2686
2991
|
<dd>
|
|
@@ -2696,6 +3001,8 @@
|
|
|
2696
3001
|
|
|
2697
3002
|
|
|
2698
3003
|
|
|
3004
|
+
|
|
3005
|
+
|
|
2699
3006
|
<h5>Parameters:</h5>
|
|
2700
3007
|
|
|
2701
3008
|
|
|
@@ -2758,8 +3065,9 @@
|
|
|
2758
3065
|
|
|
2759
3066
|
|
|
2760
3067
|
|
|
3068
|
+
|
|
3069
|
+
|
|
2761
3070
|
<dl class="details">
|
|
2762
|
-
|
|
2763
3071
|
|
|
2764
3072
|
|
|
2765
3073
|
|
|
@@ -2783,9 +3091,15 @@
|
|
|
2783
3091
|
|
|
2784
3092
|
|
|
2785
3093
|
|
|
3094
|
+
|
|
3095
|
+
|
|
3096
|
+
|
|
3097
|
+
|
|
3098
|
+
|
|
3099
|
+
|
|
2786
3100
|
<dt class="tag-source">Source:</dt>
|
|
2787
3101
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2788
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
3102
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1405">line 1405</a>
|
|
2789
3103
|
</li></ul></dd>
|
|
2790
3104
|
|
|
2791
3105
|
|
|
@@ -2838,13 +3152,13 @@
|
|
|
2838
3152
|
</div>
|
|
2839
3153
|
|
|
2840
3154
|
<nav>
|
|
2841
|
-
<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>
|
|
3155
|
+
<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>
|
|
2842
3156
|
</nav>
|
|
2843
3157
|
|
|
2844
3158
|
<br clear="both">
|
|
2845
3159
|
|
|
2846
3160
|
<footer>
|
|
2847
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-
|
|
3161
|
+
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)
|
|
2848
3162
|
</footer>
|
|
2849
3163
|
|
|
2850
3164
|
<script> prettyPrint(); </script>
|