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.Service.html">.Service</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.Service.html">.Service</a>.</span>
|
|
33
|
+
|
|
34
|
+
RPCMethod
|
|
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="RPCMethod"><span class="type-signature"></span>new RPCMethod<span class="signature">(builder<span class="signature-attributes">non-null</span>, svc<span class="signature-attributes">non-null</span>, name, request, response, 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>svc</code></td>
|
|
@@ -244,7 +280,14 @@
|
|
|
244
280
|
|
|
245
281
|
|
|
246
282
|
|
|
283
|
+
|
|
284
|
+
|
|
247
285
|
<dl class="details">
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
|
|
248
291
|
|
|
249
292
|
|
|
250
293
|
|
|
@@ -266,7 +309,7 @@
|
|
|
266
309
|
|
|
267
310
|
<dt class="tag-source">Source:</dt>
|
|
268
311
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
269
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
312
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3534">line 3534</a>
|
|
270
313
|
</li></ul></dd>
|
|
271
314
|
|
|
272
315
|
|
|
@@ -299,10 +342,13 @@
|
|
|
299
342
|
|
|
300
343
|
<h3 class="subsection-title">Extends</h3>
|
|
301
344
|
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
<ul>
|
|
349
|
+
<li><a href="ProtoBuf.Reflect.Service.Method.html">ProtoBuf.Reflect.Service.Method</a></li>
|
|
350
|
+
</ul>
|
|
351
|
+
|
|
306
352
|
|
|
307
353
|
|
|
308
354
|
|
|
@@ -319,6 +365,84 @@
|
|
|
319
365
|
|
|
320
366
|
<dl>
|
|
321
367
|
|
|
368
|
+
<dt>
|
|
369
|
+
<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>
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
</dt>
|
|
373
|
+
<dd>
|
|
374
|
+
|
|
375
|
+
<div class="description">
|
|
376
|
+
<p>Builder reference.</p>
|
|
377
|
+
</div>
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
<h5>Type:</h5>
|
|
382
|
+
<ul>
|
|
383
|
+
<li>
|
|
384
|
+
|
|
385
|
+
<span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
</li>
|
|
389
|
+
</ul>
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
<dl class="details">
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
<dt class="inherited-from">Inherited From:</dt>
|
|
403
|
+
<dd class="inherited-from"><ul class="dummy"><li>
|
|
404
|
+
<a href="ProtoBuf.Reflect.T.html#builder">ProtoBuf.Reflect.T#builder</a>
|
|
405
|
+
</li></dd>
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
<dt class="tag-source">Source:</dt>
|
|
426
|
+
<dd class="tag-source"><ul class="dummy"><li>
|
|
427
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1352">line 1352</a>
|
|
428
|
+
</li></ul></dd>
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
</dl>
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
</dd>
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|
|
322
446
|
<dt>
|
|
323
447
|
<h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"></span></h4>
|
|
324
448
|
|
|
@@ -330,7 +454,14 @@
|
|
|
330
454
|
|
|
331
455
|
|
|
332
456
|
|
|
457
|
+
|
|
458
|
+
|
|
333
459
|
<dl class="details">
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
|
|
334
465
|
|
|
335
466
|
|
|
336
467
|
|
|
@@ -352,7 +483,7 @@
|
|
|
352
483
|
|
|
353
484
|
<dt class="tag-source">Source:</dt>
|
|
354
485
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
355
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
486
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3540">line 3540</a>
|
|
356
487
|
</li></ul></dd>
|
|
357
488
|
|
|
358
489
|
|
|
@@ -396,8 +527,9 @@
|
|
|
396
527
|
|
|
397
528
|
|
|
398
529
|
|
|
530
|
+
|
|
531
|
+
|
|
399
532
|
<dl class="details">
|
|
400
|
-
|
|
401
533
|
|
|
402
534
|
|
|
403
535
|
|
|
@@ -421,9 +553,15 @@
|
|
|
421
553
|
|
|
422
554
|
|
|
423
555
|
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
|
|
424
562
|
<dt class="tag-source">Source:</dt>
|
|
425
563
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
426
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
564
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1366">line 1366</a>
|
|
427
565
|
</li></ul></dd>
|
|
428
566
|
|
|
429
567
|
|
|
@@ -467,8 +605,9 @@
|
|
|
467
605
|
|
|
468
606
|
|
|
469
607
|
|
|
608
|
+
|
|
609
|
+
|
|
470
610
|
<dl class="details">
|
|
471
|
-
|
|
472
611
|
|
|
473
612
|
|
|
474
613
|
|
|
@@ -492,9 +631,15 @@
|
|
|
492
631
|
|
|
493
632
|
|
|
494
633
|
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
|
|
495
640
|
<dt class="tag-source">Source:</dt>
|
|
496
641
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
497
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
642
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3499">line 3499</a>
|
|
498
643
|
</li></ul></dd>
|
|
499
644
|
|
|
500
645
|
|
|
@@ -514,7 +659,7 @@
|
|
|
514
659
|
|
|
515
660
|
|
|
516
661
|
<dt>
|
|
517
|
-
<h4 class="name" id="parent"><span class="type-signature"
|
|
662
|
+
<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>
|
|
518
663
|
|
|
519
664
|
|
|
520
665
|
</dt>
|
|
@@ -531,9 +676,6 @@
|
|
|
531
676
|
<li>
|
|
532
677
|
|
|
533
678
|
<span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
|
|
534
|
-
|
|
|
535
|
-
|
|
536
|
-
<span class="param-type">null</span>
|
|
537
679
|
|
|
538
680
|
|
|
539
681
|
</li>
|
|
@@ -541,8 +683,9 @@
|
|
|
541
683
|
|
|
542
684
|
|
|
543
685
|
|
|
686
|
+
|
|
687
|
+
|
|
544
688
|
<dl class="details">
|
|
545
|
-
|
|
546
689
|
|
|
547
690
|
|
|
548
691
|
|
|
@@ -566,9 +709,15 @@
|
|
|
566
709
|
|
|
567
710
|
|
|
568
711
|
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
|
|
569
718
|
<dt class="tag-source">Source:</dt>
|
|
570
719
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
571
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
720
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1359">line 1359</a>
|
|
572
721
|
</li></ul></dd>
|
|
573
722
|
|
|
574
723
|
|
|
@@ -612,7 +761,14 @@
|
|
|
612
761
|
|
|
613
762
|
|
|
614
763
|
|
|
764
|
+
|
|
765
|
+
|
|
615
766
|
<dl class="details">
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
|
|
616
772
|
|
|
617
773
|
|
|
618
774
|
|
|
@@ -634,7 +790,7 @@
|
|
|
634
790
|
|
|
635
791
|
<dt class="tag-source">Source:</dt>
|
|
636
792
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
637
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
793
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3547">line 3547</a>
|
|
638
794
|
</li></ul></dd>
|
|
639
795
|
|
|
640
796
|
|
|
@@ -678,7 +834,14 @@
|
|
|
678
834
|
|
|
679
835
|
|
|
680
836
|
|
|
837
|
+
|
|
838
|
+
|
|
681
839
|
<dl class="details">
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
|
|
682
845
|
|
|
683
846
|
|
|
684
847
|
|
|
@@ -700,7 +863,7 @@
|
|
|
700
863
|
|
|
701
864
|
<dt class="tag-source">Source:</dt>
|
|
702
865
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
703
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
866
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3561">line 3561</a>
|
|
704
867
|
</li></ul></dd>
|
|
705
868
|
|
|
706
869
|
|
|
@@ -744,7 +907,14 @@
|
|
|
744
907
|
|
|
745
908
|
|
|
746
909
|
|
|
910
|
+
|
|
911
|
+
|
|
747
912
|
<dl class="details">
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
|
|
748
918
|
|
|
749
919
|
|
|
750
920
|
|
|
@@ -766,7 +936,7 @@
|
|
|
766
936
|
|
|
767
937
|
<dt class="tag-source">Source:</dt>
|
|
768
938
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
769
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
939
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3568">line 3568</a>
|
|
770
940
|
</li></ul></dd>
|
|
771
941
|
|
|
772
942
|
|
|
@@ -810,7 +980,14 @@
|
|
|
810
980
|
|
|
811
981
|
|
|
812
982
|
|
|
983
|
+
|
|
984
|
+
|
|
813
985
|
<dl class="details">
|
|
986
|
+
|
|
987
|
+
|
|
988
|
+
|
|
989
|
+
|
|
990
|
+
|
|
814
991
|
|
|
815
992
|
|
|
816
993
|
|
|
@@ -832,7 +1009,7 @@
|
|
|
832
1009
|
|
|
833
1010
|
<dt class="tag-source">Source:</dt>
|
|
834
1011
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
835
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1012
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3554">line 3554</a>
|
|
836
1013
|
</li></ul></dd>
|
|
837
1014
|
|
|
838
1015
|
|
|
@@ -858,8 +1035,10 @@
|
|
|
858
1035
|
<dl>
|
|
859
1036
|
|
|
860
1037
|
<dt>
|
|
861
|
-
|
|
1038
|
+
|
|
1039
|
+
<h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
|
|
862
1040
|
|
|
1041
|
+
|
|
863
1042
|
|
|
864
1043
|
</dt>
|
|
865
1044
|
<dd>
|
|
@@ -877,9 +1056,12 @@
|
|
|
877
1056
|
|
|
878
1057
|
|
|
879
1058
|
|
|
880
|
-
|
|
1059
|
+
|
|
881
1060
|
|
|
882
1061
|
|
|
1062
|
+
|
|
1063
|
+
<dl class="details">
|
|
1064
|
+
|
|
883
1065
|
|
|
884
1066
|
|
|
885
1067
|
|
|
@@ -902,9 +1084,15 @@
|
|
|
902
1084
|
|
|
903
1085
|
|
|
904
1086
|
|
|
1087
|
+
|
|
1088
|
+
|
|
1089
|
+
|
|
1090
|
+
|
|
1091
|
+
|
|
1092
|
+
|
|
905
1093
|
<dt class="tag-source">Source:</dt>
|
|
906
1094
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
907
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1095
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1414">line 1414</a>
|
|
908
1096
|
</li></ul></dd>
|
|
909
1097
|
|
|
910
1098
|
|
|
@@ -961,8 +1149,10 @@
|
|
|
961
1149
|
|
|
962
1150
|
|
|
963
1151
|
<dt>
|
|
964
|
-
|
|
1152
|
+
|
|
1153
|
+
<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>
|
|
965
1154
|
|
|
1155
|
+
|
|
966
1156
|
|
|
967
1157
|
</dt>
|
|
968
1158
|
<dd>
|
|
@@ -980,9 +1170,12 @@
|
|
|
980
1170
|
|
|
981
1171
|
|
|
982
1172
|
|
|
983
|
-
|
|
1173
|
+
|
|
984
1174
|
|
|
985
1175
|
|
|
1176
|
+
|
|
1177
|
+
<dl class="details">
|
|
1178
|
+
|
|
986
1179
|
|
|
987
1180
|
|
|
988
1181
|
|
|
@@ -1005,9 +1198,15 @@
|
|
|
1005
1198
|
|
|
1006
1199
|
|
|
1007
1200
|
|
|
1201
|
+
|
|
1202
|
+
|
|
1203
|
+
|
|
1204
|
+
|
|
1205
|
+
|
|
1206
|
+
|
|
1008
1207
|
<dt class="tag-source">Source:</dt>
|
|
1009
1208
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1010
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1209
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3508">line 3508</a>
|
|
1011
1210
|
</li></ul></dd>
|
|
1012
1211
|
|
|
1013
1212
|
|
|
@@ -1055,8 +1254,10 @@
|
|
|
1055
1254
|
|
|
1056
1255
|
|
|
1057
1256
|
<dt>
|
|
1058
|
-
|
|
1257
|
+
|
|
1258
|
+
<h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
1059
1259
|
|
|
1260
|
+
|
|
1060
1261
|
|
|
1061
1262
|
</dt>
|
|
1062
1263
|
<dd>
|
|
@@ -1074,9 +1275,12 @@
|
|
|
1074
1275
|
|
|
1075
1276
|
|
|
1076
1277
|
|
|
1077
|
-
|
|
1278
|
+
|
|
1078
1279
|
|
|
1079
1280
|
|
|
1281
|
+
|
|
1282
|
+
<dl class="details">
|
|
1283
|
+
|
|
1080
1284
|
|
|
1081
1285
|
|
|
1082
1286
|
|
|
@@ -1099,9 +1303,15 @@
|
|
|
1099
1303
|
|
|
1100
1304
|
|
|
1101
1305
|
|
|
1306
|
+
|
|
1307
|
+
|
|
1308
|
+
|
|
1309
|
+
|
|
1310
|
+
|
|
1311
|
+
|
|
1102
1312
|
<dt class="tag-source">Source:</dt>
|
|
1103
1313
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1104
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1314
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1387">line 1387</a>
|
|
1105
1315
|
</li></ul></dd>
|
|
1106
1316
|
|
|
1107
1317
|
|
|
@@ -1153,8 +1363,10 @@
|
|
|
1153
1363
|
|
|
1154
1364
|
|
|
1155
1365
|
<dt>
|
|
1156
|
-
|
|
1366
|
+
|
|
1367
|
+
<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>
|
|
1157
1368
|
|
|
1369
|
+
|
|
1158
1370
|
|
|
1159
1371
|
</dt>
|
|
1160
1372
|
<dd>
|
|
@@ -1170,6 +1382,8 @@
|
|
|
1170
1382
|
|
|
1171
1383
|
|
|
1172
1384
|
|
|
1385
|
+
|
|
1386
|
+
|
|
1173
1387
|
<h5>Parameters:</h5>
|
|
1174
1388
|
|
|
1175
1389
|
|
|
@@ -1232,8 +1446,9 @@
|
|
|
1232
1446
|
|
|
1233
1447
|
|
|
1234
1448
|
|
|
1449
|
+
|
|
1450
|
+
|
|
1235
1451
|
<dl class="details">
|
|
1236
|
-
|
|
1237
1452
|
|
|
1238
1453
|
|
|
1239
1454
|
|
|
@@ -1257,9 +1472,15 @@
|
|
|
1257
1472
|
|
|
1258
1473
|
|
|
1259
1474
|
|
|
1475
|
+
|
|
1476
|
+
|
|
1477
|
+
|
|
1478
|
+
|
|
1479
|
+
|
|
1480
|
+
|
|
1260
1481
|
<dt class="tag-source">Source:</dt>
|
|
1261
1482
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1262
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1483
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1405">line 1405</a>
|
|
1263
1484
|
</li></ul></dd>
|
|
1264
1485
|
|
|
1265
1486
|
|
|
@@ -1312,13 +1533,13 @@
|
|
|
1312
1533
|
</div>
|
|
1313
1534
|
|
|
1314
1535
|
<nav>
|
|
1315
|
-
<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>
|
|
1536
|
+
<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>
|
|
1316
1537
|
</nav>
|
|
1317
1538
|
|
|
1318
1539
|
<br clear="both">
|
|
1319
1540
|
|
|
1320
1541
|
<footer>
|
|
1321
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-
|
|
1542
|
+
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)
|
|
1322
1543
|
</footer>
|
|
1323
1544
|
|
|
1324
1545
|
<script> prettyPrint(); </script>
|