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,28 +23,31 @@
|
|
|
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>.</span>
|
|
31
|
-
|
|
32
|
-
Builder
|
|
33
|
-
</h2>
|
|
34
30
|
|
|
35
|
-
<
|
|
31
|
+
<h2>
|
|
32
|
+
<span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a>.</span>
|
|
33
|
+
|
|
34
|
+
Builder
|
|
35
|
+
</h2>
|
|
36
|
+
|
|
37
|
+
<div class="class-description"><p>Provides the functionality to build protocol messages.</p></div>
|
|
38
|
+
|
|
36
39
|
|
|
37
40
|
</header>
|
|
38
41
|
|
|
39
42
|
<article>
|
|
40
43
|
<div class="container-overview">
|
|
41
44
|
|
|
42
|
-
|
|
43
|
-
|
|
44
45
|
|
|
45
46
|
<dt>
|
|
46
|
-
|
|
47
|
+
|
|
48
|
+
<h4 class="name" id="Builder"><span class="type-signature"></span>new Builder<span class="signature">(options<span class="signature-attributes">opt</span>)</span><span class="type-signature"></span></h4>
|
|
47
49
|
|
|
50
|
+
|
|
48
51
|
|
|
49
52
|
</dt>
|
|
50
53
|
<dd>
|
|
@@ -62,7 +65,76 @@
|
|
|
62
65
|
|
|
63
66
|
|
|
64
67
|
|
|
68
|
+
<h5>Parameters:</h5>
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
<table class="params">
|
|
72
|
+
<thead>
|
|
73
|
+
<tr>
|
|
74
|
+
|
|
75
|
+
<th>Name</th>
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
<th>Type</th>
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
<th>Attributes</th>
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
<th class="last">Description</th>
|
|
87
|
+
</tr>
|
|
88
|
+
</thead>
|
|
89
|
+
|
|
90
|
+
<tbody>
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
<tr>
|
|
94
|
+
|
|
95
|
+
<td class="name"><code>options</code></td>
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
<td class="type">
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
<span class="param-type"><a href="Object.html">Object</a>.<string, *></span>
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
</td>
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
<td class="attributes">
|
|
109
|
+
|
|
110
|
+
<optional><br>
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
</td>
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
<td class="description last"><p>Options</p></td>
|
|
122
|
+
</tr>
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
</tbody>
|
|
126
|
+
</table>
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
|
|
65
132
|
<dl class="details">
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
|
|
66
138
|
|
|
67
139
|
|
|
68
140
|
|
|
@@ -84,7 +156,7 @@
|
|
|
84
156
|
|
|
85
157
|
<dt class="tag-source">Source:</dt>
|
|
86
158
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
87
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
159
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3598">line 3598</a>
|
|
88
160
|
</li></ul></dd>
|
|
89
161
|
|
|
90
162
|
|
|
@@ -119,8 +191,6 @@
|
|
|
119
191
|
|
|
120
192
|
|
|
121
193
|
|
|
122
|
-
|
|
123
|
-
|
|
124
194
|
<h3 class="subsection-title">Classes</h3>
|
|
125
195
|
|
|
126
196
|
<dl>
|
|
@@ -166,7 +236,14 @@
|
|
|
166
236
|
|
|
167
237
|
|
|
168
238
|
|
|
239
|
+
|
|
240
|
+
|
|
169
241
|
<dl class="details">
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
|
|
170
247
|
|
|
171
248
|
|
|
172
249
|
|
|
@@ -188,7 +265,7 @@
|
|
|
188
265
|
|
|
189
266
|
<dt class="tag-source">Source:</dt>
|
|
190
267
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
191
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
268
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3633">line 3633</a>
|
|
192
269
|
</li></ul></dd>
|
|
193
270
|
|
|
194
271
|
|
|
@@ -232,7 +309,14 @@
|
|
|
232
309
|
|
|
233
310
|
|
|
234
311
|
|
|
312
|
+
|
|
313
|
+
|
|
235
314
|
<dl class="details">
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
|
|
236
320
|
|
|
237
321
|
|
|
238
322
|
|
|
@@ -254,7 +338,7 @@
|
|
|
254
338
|
|
|
255
339
|
<dt class="tag-source">Source:</dt>
|
|
256
340
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
257
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
341
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3640">line 3640</a>
|
|
258
342
|
</li></ul></dd>
|
|
259
343
|
|
|
260
344
|
|
|
@@ -298,7 +382,87 @@
|
|
|
298
382
|
|
|
299
383
|
|
|
300
384
|
|
|
385
|
+
|
|
386
|
+
|
|
301
387
|
<dl class="details">
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
<dt class="tag-source">Source:</dt>
|
|
413
|
+
<dd class="tag-source"><ul class="dummy"><li>
|
|
414
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3605">line 3605</a>
|
|
415
|
+
</li></ul></dd>
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
</dl>
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
</dd>
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
<dt>
|
|
434
|
+
<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>
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
</dt>
|
|
438
|
+
<dd>
|
|
439
|
+
|
|
440
|
+
<div class="description">
|
|
441
|
+
<p>Options.</p>
|
|
442
|
+
</div>
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
<h5>Type:</h5>
|
|
447
|
+
<ul>
|
|
448
|
+
<li>
|
|
449
|
+
|
|
450
|
+
<span class="param-type"><a href="Object.html">Object</a>.<string, *></span>
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
</li>
|
|
454
|
+
</ul>
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
<dl class="details">
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
|
|
302
466
|
|
|
303
467
|
|
|
304
468
|
|
|
@@ -320,7 +484,7 @@
|
|
|
320
484
|
|
|
321
485
|
<dt class="tag-source">Source:</dt>
|
|
322
486
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
323
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
487
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3647">line 3647</a>
|
|
324
488
|
</li></ul></dd>
|
|
325
489
|
|
|
326
490
|
|
|
@@ -364,7 +528,14 @@
|
|
|
364
528
|
|
|
365
529
|
|
|
366
530
|
|
|
531
|
+
|
|
532
|
+
|
|
367
533
|
<dl class="details">
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
|
|
368
539
|
|
|
369
540
|
|
|
370
541
|
|
|
@@ -386,7 +557,7 @@
|
|
|
386
557
|
|
|
387
558
|
<dt class="tag-source">Source:</dt>
|
|
388
559
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
389
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
560
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3612">line 3612</a>
|
|
390
561
|
</li></ul></dd>
|
|
391
562
|
|
|
392
563
|
|
|
@@ -430,7 +601,14 @@
|
|
|
430
601
|
|
|
431
602
|
|
|
432
603
|
|
|
604
|
+
|
|
605
|
+
|
|
433
606
|
<dl class="details">
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
|
|
434
612
|
|
|
435
613
|
|
|
436
614
|
|
|
@@ -452,7 +630,7 @@
|
|
|
452
630
|
|
|
453
631
|
<dt class="tag-source">Source:</dt>
|
|
454
632
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
455
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
633
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3619">line 3619</a>
|
|
456
634
|
</li></ul></dd>
|
|
457
635
|
|
|
458
636
|
|
|
@@ -499,7 +677,14 @@
|
|
|
499
677
|
|
|
500
678
|
|
|
501
679
|
|
|
680
|
+
|
|
681
|
+
|
|
502
682
|
<dl class="details">
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
|
|
687
|
+
|
|
503
688
|
|
|
504
689
|
|
|
505
690
|
|
|
@@ -521,7 +706,7 @@
|
|
|
521
706
|
|
|
522
707
|
<dt class="tag-source">Source:</dt>
|
|
523
708
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
524
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
709
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3626">line 3626</a>
|
|
525
710
|
</li></ul></dd>
|
|
526
711
|
|
|
527
712
|
|
|
@@ -547,8 +732,10 @@
|
|
|
547
732
|
<dl>
|
|
548
733
|
|
|
549
734
|
<dt>
|
|
550
|
-
|
|
735
|
+
|
|
736
|
+
<h4 class="name" id="isValidEnum"><span class="type-signature">(static) </span>isValidEnum<span class="signature">(def)</span><span class="type-signature"> → {boolean}</span></h4>
|
|
551
737
|
|
|
738
|
+
|
|
552
739
|
|
|
553
740
|
</dt>
|
|
554
741
|
<dd>
|
|
@@ -564,6 +751,8 @@
|
|
|
564
751
|
|
|
565
752
|
|
|
566
753
|
|
|
754
|
+
|
|
755
|
+
|
|
567
756
|
<h5>Parameters:</h5>
|
|
568
757
|
|
|
569
758
|
|
|
@@ -614,7 +803,14 @@
|
|
|
614
803
|
|
|
615
804
|
|
|
616
805
|
|
|
806
|
+
|
|
807
|
+
|
|
617
808
|
<dl class="details">
|
|
809
|
+
|
|
810
|
+
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
|
|
618
814
|
|
|
619
815
|
|
|
620
816
|
|
|
@@ -636,7 +832,7 @@
|
|
|
636
832
|
|
|
637
833
|
<dt class="tag-source">Source:</dt>
|
|
638
834
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
639
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
835
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3767">line 3767</a>
|
|
640
836
|
</li></ul></dd>
|
|
641
837
|
|
|
642
838
|
|
|
@@ -688,8 +884,10 @@
|
|
|
688
884
|
|
|
689
885
|
|
|
690
886
|
<dt>
|
|
691
|
-
|
|
887
|
+
|
|
888
|
+
<h4 class="name" id="isValidExtend"><span class="type-signature">(static) </span>isValidExtend<span class="signature">(def)</span><span class="type-signature"> → {boolean}</span></h4>
|
|
692
889
|
|
|
890
|
+
|
|
693
891
|
|
|
694
892
|
</dt>
|
|
695
893
|
<dd>
|
|
@@ -705,6 +903,8 @@
|
|
|
705
903
|
|
|
706
904
|
|
|
707
905
|
|
|
906
|
+
|
|
907
|
+
|
|
708
908
|
<h5>Parameters:</h5>
|
|
709
909
|
|
|
710
910
|
|
|
@@ -755,7 +955,14 @@
|
|
|
755
955
|
|
|
756
956
|
|
|
757
957
|
|
|
958
|
+
|
|
959
|
+
|
|
758
960
|
<dl class="details">
|
|
961
|
+
|
|
962
|
+
|
|
963
|
+
|
|
964
|
+
|
|
965
|
+
|
|
759
966
|
|
|
760
967
|
|
|
761
968
|
|
|
@@ -777,7 +984,7 @@
|
|
|
777
984
|
|
|
778
985
|
<dt class="tag-source">Source:</dt>
|
|
779
986
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
780
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
987
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4042">line 4042</a>
|
|
781
988
|
</li></ul></dd>
|
|
782
989
|
|
|
783
990
|
|
|
@@ -829,8 +1036,10 @@
|
|
|
829
1036
|
|
|
830
1037
|
|
|
831
1038
|
<dt>
|
|
832
|
-
|
|
1039
|
+
|
|
1040
|
+
<h4 class="name" id="isValidMessage"><span class="type-signature">(static) </span>isValidMessage<span class="signature">(def)</span><span class="type-signature"> → {boolean}</span></h4>
|
|
833
1041
|
|
|
1042
|
+
|
|
834
1043
|
|
|
835
1044
|
</dt>
|
|
836
1045
|
<dd>
|
|
@@ -846,6 +1055,8 @@
|
|
|
846
1055
|
|
|
847
1056
|
|
|
848
1057
|
|
|
1058
|
+
|
|
1059
|
+
|
|
849
1060
|
<h5>Parameters:</h5>
|
|
850
1061
|
|
|
851
1062
|
|
|
@@ -896,7 +1107,14 @@
|
|
|
896
1107
|
|
|
897
1108
|
|
|
898
1109
|
|
|
1110
|
+
|
|
1111
|
+
|
|
899
1112
|
<dl class="details">
|
|
1113
|
+
|
|
1114
|
+
|
|
1115
|
+
|
|
1116
|
+
|
|
1117
|
+
|
|
900
1118
|
|
|
901
1119
|
|
|
902
1120
|
|
|
@@ -918,7 +1136,7 @@
|
|
|
918
1136
|
|
|
919
1137
|
<dt class="tag-source">Source:</dt>
|
|
920
1138
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
921
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1139
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3693">line 3693</a>
|
|
922
1140
|
</li></ul></dd>
|
|
923
1141
|
|
|
924
1142
|
|
|
@@ -970,8 +1188,10 @@
|
|
|
970
1188
|
|
|
971
1189
|
|
|
972
1190
|
<dt>
|
|
973
|
-
|
|
1191
|
+
|
|
1192
|
+
<h4 class="name" id="isValidMessageField"><span class="type-signature">(static) </span>isValidMessageField<span class="signature">(def)</span><span class="type-signature"> → {boolean}</span></h4>
|
|
974
1193
|
|
|
1194
|
+
|
|
975
1195
|
|
|
976
1196
|
</dt>
|
|
977
1197
|
<dd>
|
|
@@ -987,6 +1207,8 @@
|
|
|
987
1207
|
|
|
988
1208
|
|
|
989
1209
|
|
|
1210
|
+
|
|
1211
|
+
|
|
990
1212
|
<h5>Parameters:</h5>
|
|
991
1213
|
|
|
992
1214
|
|
|
@@ -1037,7 +1259,14 @@
|
|
|
1037
1259
|
|
|
1038
1260
|
|
|
1039
1261
|
|
|
1262
|
+
|
|
1263
|
+
|
|
1040
1264
|
<dl class="details">
|
|
1265
|
+
|
|
1266
|
+
|
|
1267
|
+
|
|
1268
|
+
|
|
1269
|
+
|
|
1041
1270
|
|
|
1042
1271
|
|
|
1043
1272
|
|
|
@@ -1059,7 +1288,7 @@
|
|
|
1059
1288
|
|
|
1060
1289
|
<dt class="tag-source">Source:</dt>
|
|
1061
1290
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1062
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1291
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3742">line 3742</a>
|
|
1063
1292
|
</li></ul></dd>
|
|
1064
1293
|
|
|
1065
1294
|
|
|
@@ -1111,8 +1340,10 @@
|
|
|
1111
1340
|
|
|
1112
1341
|
|
|
1113
1342
|
<dt>
|
|
1114
|
-
|
|
1343
|
+
|
|
1344
|
+
<h4 class="name" id="isValidService"><span class="type-signature">(static) </span>isValidService<span class="signature">(def)</span><span class="type-signature"> → {boolean}</span></h4>
|
|
1115
1345
|
|
|
1346
|
+
|
|
1116
1347
|
|
|
1117
1348
|
</dt>
|
|
1118
1349
|
<dd>
|
|
@@ -1128,6 +1359,8 @@
|
|
|
1128
1359
|
|
|
1129
1360
|
|
|
1130
1361
|
|
|
1362
|
+
|
|
1363
|
+
|
|
1131
1364
|
<h5>Parameters:</h5>
|
|
1132
1365
|
|
|
1133
1366
|
|
|
@@ -1178,7 +1411,14 @@
|
|
|
1178
1411
|
|
|
1179
1412
|
|
|
1180
1413
|
|
|
1414
|
+
|
|
1415
|
+
|
|
1181
1416
|
<dl class="details">
|
|
1417
|
+
|
|
1418
|
+
|
|
1419
|
+
|
|
1420
|
+
|
|
1421
|
+
|
|
1182
1422
|
|
|
1183
1423
|
|
|
1184
1424
|
|
|
@@ -1200,7 +1440,7 @@
|
|
|
1200
1440
|
|
|
1201
1441
|
<dt class="tag-source">Source:</dt>
|
|
1202
1442
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1203
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1443
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4031">line 4031</a>
|
|
1204
1444
|
</li></ul></dd>
|
|
1205
1445
|
|
|
1206
1446
|
|
|
@@ -1252,8 +1492,10 @@
|
|
|
1252
1492
|
|
|
1253
1493
|
|
|
1254
1494
|
<dt>
|
|
1255
|
-
|
|
1495
|
+
|
|
1496
|
+
<h4 class="name" id="%22import%22%5D"><span class="type-signature"></span>"import"]<span class="signature">(json, filename<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a>}</span></h4>
|
|
1256
1497
|
|
|
1498
|
+
|
|
1257
1499
|
|
|
1258
1500
|
</dt>
|
|
1259
1501
|
<dd>
|
|
@@ -1269,6 +1511,8 @@
|
|
|
1269
1511
|
|
|
1270
1512
|
|
|
1271
1513
|
|
|
1514
|
+
|
|
1515
|
+
|
|
1272
1516
|
<h5>Parameters:</h5>
|
|
1273
1517
|
|
|
1274
1518
|
|
|
@@ -1365,7 +1609,14 @@
|
|
|
1365
1609
|
|
|
1366
1610
|
|
|
1367
1611
|
|
|
1612
|
+
|
|
1613
|
+
|
|
1368
1614
|
<dl class="details">
|
|
1615
|
+
|
|
1616
|
+
|
|
1617
|
+
|
|
1618
|
+
|
|
1619
|
+
|
|
1369
1620
|
|
|
1370
1621
|
|
|
1371
1622
|
|
|
@@ -1387,7 +1638,7 @@
|
|
|
1387
1638
|
|
|
1388
1639
|
<dt class="tag-source">Source:</dt>
|
|
1389
1640
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1390
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1641
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3934">line 3934</a>
|
|
1391
1642
|
</li></ul></dd>
|
|
1392
1643
|
|
|
1393
1644
|
|
|
@@ -1466,8 +1717,10 @@
|
|
|
1466
1717
|
|
|
1467
1718
|
|
|
1468
1719
|
<dt>
|
|
1469
|
-
|
|
1720
|
+
|
|
1721
|
+
<h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">(path<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {<a href="ProtoBuf.Builder.Message.html">ProtoBuf.Builder.Message</a>|<a href="Object.html">Object</a>.<string, *>}</span></h4>
|
|
1470
1722
|
|
|
1723
|
+
|
|
1471
1724
|
|
|
1472
1725
|
</dt>
|
|
1473
1726
|
<dd>
|
|
@@ -1484,6 +1737,8 @@ return the built package.</p>
|
|
|
1484
1737
|
|
|
1485
1738
|
|
|
1486
1739
|
|
|
1740
|
+
|
|
1741
|
+
|
|
1487
1742
|
<h5>Parameters:</h5>
|
|
1488
1743
|
|
|
1489
1744
|
|
|
@@ -1546,7 +1801,14 @@ return the built package.</p>
|
|
|
1546
1801
|
|
|
1547
1802
|
|
|
1548
1803
|
|
|
1804
|
+
|
|
1805
|
+
|
|
1549
1806
|
<dl class="details">
|
|
1807
|
+
|
|
1808
|
+
|
|
1809
|
+
|
|
1810
|
+
|
|
1811
|
+
|
|
1550
1812
|
|
|
1551
1813
|
|
|
1552
1814
|
|
|
@@ -1568,7 +1830,7 @@ return the built package.</p>
|
|
|
1568
1830
|
|
|
1569
1831
|
<dt class="tag-source">Source:</dt>
|
|
1570
1832
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1571
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1833
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4124">line 4124</a>
|
|
1572
1834
|
</li></ul></dd>
|
|
1573
1835
|
|
|
1574
1836
|
|
|
@@ -1646,8 +1908,10 @@ return the built package.</p>
|
|
|
1646
1908
|
|
|
1647
1909
|
|
|
1648
1910
|
<dt>
|
|
1649
|
-
|
|
1911
|
+
|
|
1912
|
+
<h4 class="name" id="create"><span class="type-signature"></span>create<span class="signature">(defs)</span><span class="type-signature"> → {<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a>}</span></h4>
|
|
1650
1913
|
|
|
1914
|
+
|
|
1651
1915
|
|
|
1652
1916
|
</dt>
|
|
1653
1917
|
<dd>
|
|
@@ -1663,6 +1927,8 @@ return the built package.</p>
|
|
|
1663
1927
|
|
|
1664
1928
|
|
|
1665
1929
|
|
|
1930
|
+
|
|
1931
|
+
|
|
1666
1932
|
<h5>Parameters:</h5>
|
|
1667
1933
|
|
|
1668
1934
|
|
|
@@ -1713,7 +1979,14 @@ return the built package.</p>
|
|
|
1713
1979
|
|
|
1714
1980
|
|
|
1715
1981
|
|
|
1982
|
+
|
|
1983
|
+
|
|
1716
1984
|
<dl class="details">
|
|
1985
|
+
|
|
1986
|
+
|
|
1987
|
+
|
|
1988
|
+
|
|
1989
|
+
|
|
1717
1990
|
|
|
1718
1991
|
|
|
1719
1992
|
|
|
@@ -1735,7 +2008,7 @@ return the built package.</p>
|
|
|
1735
2008
|
|
|
1736
2009
|
<dt class="tag-source">Source:</dt>
|
|
1737
2010
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1738
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2011
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3795">line 3795</a>
|
|
1739
2012
|
</li></ul></dd>
|
|
1740
2013
|
|
|
1741
2014
|
|
|
@@ -1814,8 +2087,10 @@ return the built package.</p>
|
|
|
1814
2087
|
|
|
1815
2088
|
|
|
1816
2089
|
<dt>
|
|
1817
|
-
|
|
2090
|
+
|
|
2091
|
+
<h4 class="name" id="define"><span class="type-signature"></span>define<span class="signature">(pkg, options<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a>}</span></h4>
|
|
1818
2092
|
|
|
2093
|
+
|
|
1819
2094
|
|
|
1820
2095
|
</dt>
|
|
1821
2096
|
<dd>
|
|
@@ -1831,6 +2106,8 @@ return the built package.</p>
|
|
|
1831
2106
|
|
|
1832
2107
|
|
|
1833
2108
|
|
|
2109
|
+
|
|
2110
|
+
|
|
1834
2111
|
<h5>Parameters:</h5>
|
|
1835
2112
|
|
|
1836
2113
|
|
|
@@ -1924,7 +2201,14 @@ return the built package.</p>
|
|
|
1924
2201
|
|
|
1925
2202
|
|
|
1926
2203
|
|
|
2204
|
+
|
|
2205
|
+
|
|
1927
2206
|
<dl class="details">
|
|
2207
|
+
|
|
2208
|
+
|
|
2209
|
+
|
|
2210
|
+
|
|
2211
|
+
|
|
1928
2212
|
|
|
1929
2213
|
|
|
1930
2214
|
|
|
@@ -1946,7 +2230,7 @@ return the built package.</p>
|
|
|
1946
2230
|
|
|
1947
2231
|
<dt class="tag-source">Source:</dt>
|
|
1948
2232
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1949
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2233
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3672">line 3672</a>
|
|
1950
2234
|
</li></ul></dd>
|
|
1951
2235
|
|
|
1952
2236
|
|
|
@@ -2025,8 +2309,10 @@ return the built package.</p>
|
|
|
2025
2309
|
|
|
2026
2310
|
|
|
2027
2311
|
<dt>
|
|
2028
|
-
|
|
2312
|
+
|
|
2313
|
+
<h4 class="name" id="lookup"><span class="type-signature"></span>lookup<span class="signature">(path<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>}</span></h4>
|
|
2029
2314
|
|
|
2315
|
+
|
|
2030
2316
|
|
|
2031
2317
|
</dt>
|
|
2032
2318
|
<dd>
|
|
@@ -2042,6 +2328,8 @@ return the built package.</p>
|
|
|
2042
2328
|
|
|
2043
2329
|
|
|
2044
2330
|
|
|
2331
|
+
|
|
2332
|
+
|
|
2045
2333
|
<h5>Parameters:</h5>
|
|
2046
2334
|
|
|
2047
2335
|
|
|
@@ -2104,7 +2392,14 @@ return the built package.</p>
|
|
|
2104
2392
|
|
|
2105
2393
|
|
|
2106
2394
|
|
|
2395
|
+
|
|
2396
|
+
|
|
2107
2397
|
<dl class="details">
|
|
2398
|
+
|
|
2399
|
+
|
|
2400
|
+
|
|
2401
|
+
|
|
2402
|
+
|
|
2108
2403
|
|
|
2109
2404
|
|
|
2110
2405
|
|
|
@@ -2126,7 +2421,7 @@ return the built package.</p>
|
|
|
2126
2421
|
|
|
2127
2422
|
<dt class="tag-source">Source:</dt>
|
|
2128
2423
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2129
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2424
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4153">line 4153</a>
|
|
2130
2425
|
</li></ul></dd>
|
|
2131
2426
|
|
|
2132
2427
|
|
|
@@ -2178,8 +2473,10 @@ return the built package.</p>
|
|
|
2178
2473
|
|
|
2179
2474
|
|
|
2180
2475
|
<dt>
|
|
2181
|
-
|
|
2476
|
+
|
|
2477
|
+
<h4 class="name" id="reset"><span class="type-signature"></span>reset<span class="signature">()</span><span class="type-signature"></span></h4>
|
|
2182
2478
|
|
|
2479
|
+
|
|
2183
2480
|
|
|
2184
2481
|
</dt>
|
|
2185
2482
|
<dd>
|
|
@@ -2197,7 +2494,16 @@ return the built package.</p>
|
|
|
2197
2494
|
|
|
2198
2495
|
|
|
2199
2496
|
|
|
2497
|
+
|
|
2498
|
+
|
|
2499
|
+
|
|
2500
|
+
|
|
2200
2501
|
<dl class="details">
|
|
2502
|
+
|
|
2503
|
+
|
|
2504
|
+
|
|
2505
|
+
|
|
2506
|
+
|
|
2201
2507
|
|
|
2202
2508
|
|
|
2203
2509
|
|
|
@@ -2219,7 +2525,7 @@ return the built package.</p>
|
|
|
2219
2525
|
|
|
2220
2526
|
<dt class="tag-source">Source:</dt>
|
|
2221
2527
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2222
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2528
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3660">line 3660</a>
|
|
2223
2529
|
</li></ul></dd>
|
|
2224
2530
|
|
|
2225
2531
|
|
|
@@ -2249,8 +2555,10 @@ return the built package.</p>
|
|
|
2249
2555
|
|
|
2250
2556
|
|
|
2251
2557
|
<dt>
|
|
2252
|
-
|
|
2558
|
+
|
|
2559
|
+
<h4 class="name" id="resolveAll"><span class="type-signature"></span>resolveAll<span class="signature">()</span><span class="type-signature"></span></h4>
|
|
2253
2560
|
|
|
2561
|
+
|
|
2254
2562
|
|
|
2255
2563
|
</dt>
|
|
2256
2564
|
<dd>
|
|
@@ -2268,7 +2576,16 @@ return the built package.</p>
|
|
|
2268
2576
|
|
|
2269
2577
|
|
|
2270
2578
|
|
|
2579
|
+
|
|
2580
|
+
|
|
2581
|
+
|
|
2582
|
+
|
|
2271
2583
|
<dl class="details">
|
|
2584
|
+
|
|
2585
|
+
|
|
2586
|
+
|
|
2587
|
+
|
|
2588
|
+
|
|
2272
2589
|
|
|
2273
2590
|
|
|
2274
2591
|
|
|
@@ -2290,7 +2607,7 @@ return the built package.</p>
|
|
|
2290
2607
|
|
|
2291
2608
|
<dt class="tag-source">Source:</dt>
|
|
2292
2609
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2293
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2610
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4068">line 4068</a>
|
|
2294
2611
|
</li></ul></dd>
|
|
2295
2612
|
|
|
2296
2613
|
|
|
@@ -2347,8 +2664,10 @@ return the built package.</p>
|
|
|
2347
2664
|
|
|
2348
2665
|
|
|
2349
2666
|
<dt>
|
|
2350
|
-
|
|
2667
|
+
|
|
2668
|
+
<h4 class="name" id="toString"><span class="type-signature"></span>toString<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
2351
2669
|
|
|
2670
|
+
|
|
2352
2671
|
|
|
2353
2672
|
</dt>
|
|
2354
2673
|
<dd>
|
|
@@ -2366,7 +2685,16 @@ return the built package.</p>
|
|
|
2366
2685
|
|
|
2367
2686
|
|
|
2368
2687
|
|
|
2688
|
+
|
|
2689
|
+
|
|
2690
|
+
|
|
2691
|
+
|
|
2369
2692
|
<dl class="details">
|
|
2693
|
+
|
|
2694
|
+
|
|
2695
|
+
|
|
2696
|
+
|
|
2697
|
+
|
|
2370
2698
|
|
|
2371
2699
|
|
|
2372
2700
|
|
|
@@ -2388,7 +2716,7 @@ return the built package.</p>
|
|
|
2388
2716
|
|
|
2389
2717
|
<dt class="tag-source">Source:</dt>
|
|
2390
2718
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2391
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
2719
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line4162">line 4162</a>
|
|
2392
2720
|
</li></ul></dd>
|
|
2393
2721
|
|
|
2394
2722
|
|
|
@@ -2453,13 +2781,13 @@ return the built package.</p>
|
|
|
2453
2781
|
</div>
|
|
2454
2782
|
|
|
2455
2783
|
<nav>
|
|
2456
|
-
<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>
|
|
2784
|
+
<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>
|
|
2457
2785
|
</nav>
|
|
2458
2786
|
|
|
2459
2787
|
<br clear="both">
|
|
2460
2788
|
|
|
2461
2789
|
<footer>
|
|
2462
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-
|
|
2790
|
+
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)
|
|
2463
2791
|
</footer>
|
|
2464
2792
|
|
|
2465
2793
|
<script> prettyPrint(); </script>
|