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
|
+
Method
|
|
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="Method"><span class="type-signature"></span>new Method<span class="signature">(builder<span class="signature-attributes">non-null</span>, svc<span class="signature-attributes">non-null</span>, name, 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>
|
|
@@ -182,7 +218,14 @@
|
|
|
182
218
|
|
|
183
219
|
|
|
184
220
|
|
|
221
|
+
|
|
222
|
+
|
|
185
223
|
<dl class="details">
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
186
229
|
|
|
187
230
|
|
|
188
231
|
|
|
@@ -204,7 +247,7 @@
|
|
|
204
247
|
|
|
205
248
|
<dt class="tag-source">Source:</dt>
|
|
206
249
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
207
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
250
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3486">line 3486</a>
|
|
208
251
|
</li></ul></dd>
|
|
209
252
|
|
|
210
253
|
|
|
@@ -237,10 +280,13 @@
|
|
|
237
280
|
|
|
238
281
|
<h3 class="subsection-title">Extends</h3>
|
|
239
282
|
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
<ul>
|
|
287
|
+
<li><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></li>
|
|
288
|
+
</ul>
|
|
289
|
+
|
|
244
290
|
|
|
245
291
|
|
|
246
292
|
|
|
@@ -257,6 +303,84 @@
|
|
|
257
303
|
|
|
258
304
|
<dl>
|
|
259
305
|
|
|
306
|
+
<dt>
|
|
307
|
+
<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>
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
</dt>
|
|
311
|
+
<dd>
|
|
312
|
+
|
|
313
|
+
<div class="description">
|
|
314
|
+
<p>Builder reference.</p>
|
|
315
|
+
</div>
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
<h5>Type:</h5>
|
|
320
|
+
<ul>
|
|
321
|
+
<li>
|
|
322
|
+
|
|
323
|
+
<span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
</li>
|
|
327
|
+
</ul>
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
<dl class="details">
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
<dt class="inherited-from">Inherited From:</dt>
|
|
341
|
+
<dd class="inherited-from"><ul class="dummy"><li>
|
|
342
|
+
<a href="ProtoBuf.Reflect.T.html#builder">ProtoBuf.Reflect.T#builder</a>
|
|
343
|
+
</li></dd>
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
<dt class="tag-source">Source:</dt>
|
|
364
|
+
<dd class="tag-source"><ul class="dummy"><li>
|
|
365
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1352">line 1352</a>
|
|
366
|
+
</li></ul></dd>
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
</dl>
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
</dd>
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
|
|
260
384
|
<dt>
|
|
261
385
|
<h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"></span></h4>
|
|
262
386
|
|
|
@@ -268,7 +392,14 @@
|
|
|
268
392
|
|
|
269
393
|
|
|
270
394
|
|
|
395
|
+
|
|
396
|
+
|
|
271
397
|
<dl class="details">
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
272
403
|
|
|
273
404
|
|
|
274
405
|
|
|
@@ -290,7 +421,7 @@
|
|
|
290
421
|
|
|
291
422
|
<dt class="tag-source">Source:</dt>
|
|
292
423
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
293
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
424
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3492">line 3492</a>
|
|
294
425
|
</li></ul></dd>
|
|
295
426
|
|
|
296
427
|
|
|
@@ -334,8 +465,9 @@
|
|
|
334
465
|
|
|
335
466
|
|
|
336
467
|
|
|
468
|
+
|
|
469
|
+
|
|
337
470
|
<dl class="details">
|
|
338
|
-
|
|
339
471
|
|
|
340
472
|
|
|
341
473
|
|
|
@@ -359,9 +491,15 @@
|
|
|
359
491
|
|
|
360
492
|
|
|
361
493
|
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
|
|
362
500
|
<dt class="tag-source">Source:</dt>
|
|
363
501
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
364
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
502
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1366">line 1366</a>
|
|
365
503
|
</li></ul></dd>
|
|
366
504
|
|
|
367
505
|
|
|
@@ -405,7 +543,14 @@
|
|
|
405
543
|
|
|
406
544
|
|
|
407
545
|
|
|
546
|
+
|
|
547
|
+
|
|
408
548
|
<dl class="details">
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
|
|
409
554
|
|
|
410
555
|
|
|
411
556
|
|
|
@@ -427,7 +572,7 @@
|
|
|
427
572
|
|
|
428
573
|
<dt class="tag-source">Source:</dt>
|
|
429
574
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
430
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
575
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line3499">line 3499</a>
|
|
431
576
|
</li></ul></dd>
|
|
432
577
|
|
|
433
578
|
|
|
@@ -447,7 +592,7 @@
|
|
|
447
592
|
|
|
448
593
|
|
|
449
594
|
<dt>
|
|
450
|
-
<h4 class="name" id="parent"><span class="type-signature"
|
|
595
|
+
<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>
|
|
451
596
|
|
|
452
597
|
|
|
453
598
|
</dt>
|
|
@@ -464,9 +609,6 @@
|
|
|
464
609
|
<li>
|
|
465
610
|
|
|
466
611
|
<span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
|
|
467
|
-
|
|
|
468
|
-
|
|
469
|
-
<span class="param-type">null</span>
|
|
470
612
|
|
|
471
613
|
|
|
472
614
|
</li>
|
|
@@ -474,8 +616,9 @@
|
|
|
474
616
|
|
|
475
617
|
|
|
476
618
|
|
|
619
|
+
|
|
620
|
+
|
|
477
621
|
<dl class="details">
|
|
478
|
-
|
|
479
622
|
|
|
480
623
|
|
|
481
624
|
|
|
@@ -499,9 +642,15 @@
|
|
|
499
642
|
|
|
500
643
|
|
|
501
644
|
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
|
|
502
651
|
<dt class="tag-source">Source:</dt>
|
|
503
652
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
504
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
653
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1359">line 1359</a>
|
|
505
654
|
</li></ul></dd>
|
|
506
655
|
|
|
507
656
|
|
|
@@ -527,8 +676,10 @@
|
|
|
527
676
|
<dl>
|
|
528
677
|
|
|
529
678
|
<dt>
|
|
530
|
-
|
|
679
|
+
|
|
680
|
+
<h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
|
|
531
681
|
|
|
682
|
+
|
|
532
683
|
|
|
533
684
|
</dt>
|
|
534
685
|
<dd>
|
|
@@ -546,9 +697,12 @@
|
|
|
546
697
|
|
|
547
698
|
|
|
548
699
|
|
|
549
|
-
|
|
700
|
+
|
|
550
701
|
|
|
551
702
|
|
|
703
|
+
|
|
704
|
+
<dl class="details">
|
|
705
|
+
|
|
552
706
|
|
|
553
707
|
|
|
554
708
|
|
|
@@ -571,9 +725,15 @@
|
|
|
571
725
|
|
|
572
726
|
|
|
573
727
|
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
|
|
733
|
+
|
|
574
734
|
<dt class="tag-source">Source:</dt>
|
|
575
735
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
576
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
736
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1414">line 1414</a>
|
|
577
737
|
</li></ul></dd>
|
|
578
738
|
|
|
579
739
|
|
|
@@ -630,8 +790,10 @@
|
|
|
630
790
|
|
|
631
791
|
|
|
632
792
|
<dt>
|
|
633
|
-
|
|
793
|
+
|
|
794
|
+
<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>
|
|
634
795
|
|
|
796
|
+
|
|
635
797
|
|
|
636
798
|
</dt>
|
|
637
799
|
<dd>
|
|
@@ -649,7 +811,16 @@
|
|
|
649
811
|
|
|
650
812
|
|
|
651
813
|
|
|
814
|
+
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
|
|
652
818
|
<dl class="details">
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
|
|
653
824
|
|
|
654
825
|
|
|
655
826
|
|
|
@@ -671,7 +842,7 @@
|
|
|
671
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#line3508">line 3508</a>
|
|
675
846
|
</li></ul></dd>
|
|
676
847
|
|
|
677
848
|
|
|
@@ -719,8 +890,10 @@
|
|
|
719
890
|
|
|
720
891
|
|
|
721
892
|
<dt>
|
|
722
|
-
|
|
893
|
+
|
|
894
|
+
<h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
723
895
|
|
|
896
|
+
|
|
724
897
|
|
|
725
898
|
</dt>
|
|
726
899
|
<dd>
|
|
@@ -738,9 +911,12 @@
|
|
|
738
911
|
|
|
739
912
|
|
|
740
913
|
|
|
741
|
-
|
|
914
|
+
|
|
742
915
|
|
|
743
916
|
|
|
917
|
+
|
|
918
|
+
<dl class="details">
|
|
919
|
+
|
|
744
920
|
|
|
745
921
|
|
|
746
922
|
|
|
@@ -763,9 +939,15 @@
|
|
|
763
939
|
|
|
764
940
|
|
|
765
941
|
|
|
942
|
+
|
|
943
|
+
|
|
944
|
+
|
|
945
|
+
|
|
946
|
+
|
|
947
|
+
|
|
766
948
|
<dt class="tag-source">Source:</dt>
|
|
767
949
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
768
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
950
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1387">line 1387</a>
|
|
769
951
|
</li></ul></dd>
|
|
770
952
|
|
|
771
953
|
|
|
@@ -817,8 +999,10 @@
|
|
|
817
999
|
|
|
818
1000
|
|
|
819
1001
|
<dt>
|
|
820
|
-
|
|
1002
|
+
|
|
1003
|
+
<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>
|
|
821
1004
|
|
|
1005
|
+
|
|
822
1006
|
|
|
823
1007
|
</dt>
|
|
824
1008
|
<dd>
|
|
@@ -834,6 +1018,8 @@
|
|
|
834
1018
|
|
|
835
1019
|
|
|
836
1020
|
|
|
1021
|
+
|
|
1022
|
+
|
|
837
1023
|
<h5>Parameters:</h5>
|
|
838
1024
|
|
|
839
1025
|
|
|
@@ -896,8 +1082,9 @@
|
|
|
896
1082
|
|
|
897
1083
|
|
|
898
1084
|
|
|
1085
|
+
|
|
1086
|
+
|
|
899
1087
|
<dl class="details">
|
|
900
|
-
|
|
901
1088
|
|
|
902
1089
|
|
|
903
1090
|
|
|
@@ -921,9 +1108,15 @@
|
|
|
921
1108
|
|
|
922
1109
|
|
|
923
1110
|
|
|
1111
|
+
|
|
1112
|
+
|
|
1113
|
+
|
|
1114
|
+
|
|
1115
|
+
|
|
1116
|
+
|
|
924
1117
|
<dt class="tag-source">Source:</dt>
|
|
925
1118
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
926
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
1119
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1405">line 1405</a>
|
|
927
1120
|
</li></ul></dd>
|
|
928
1121
|
|
|
929
1122
|
|
|
@@ -976,13 +1169,13 @@
|
|
|
976
1169
|
</div>
|
|
977
1170
|
|
|
978
1171
|
<nav>
|
|
979
|
-
<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>
|
|
1172
|
+
<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>
|
|
980
1173
|
</nav>
|
|
981
1174
|
|
|
982
1175
|
<br clear="both">
|
|
983
1176
|
|
|
984
1177
|
<footer>
|
|
985
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-
|
|
1178
|
+
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)
|
|
986
1179
|
</footer>
|
|
987
1180
|
|
|
988
1181
|
<script> prettyPrint(); </script>
|