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
|
+
T
|
|
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="T"><span class="type-signature">(abstract) </span>new T<span class="signature">(builder<span class="signature-attributes">non-null</span>, parent<span class="signature-attributes">nullable</span>, name)</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
|
|
|
@@ -71,6 +76,8 @@
|
|
|
71
76
|
<th>Type</th>
|
|
72
77
|
|
|
73
78
|
|
|
79
|
+
<th>Attributes</th>
|
|
80
|
+
|
|
74
81
|
|
|
75
82
|
|
|
76
83
|
|
|
@@ -81,6 +88,37 @@
|
|
|
81
88
|
<tbody>
|
|
82
89
|
|
|
83
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
|
+
|
|
84
122
|
<tr>
|
|
85
123
|
|
|
86
124
|
<td class="name"><code>parent</code></td>
|
|
@@ -96,6 +134,16 @@
|
|
|
96
134
|
</td>
|
|
97
135
|
|
|
98
136
|
|
|
137
|
+
<td class="attributes">
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
<nullable><br>
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
</td>
|
|
146
|
+
|
|
99
147
|
|
|
100
148
|
|
|
101
149
|
|
|
@@ -119,6 +167,14 @@
|
|
|
119
167
|
</td>
|
|
120
168
|
|
|
121
169
|
|
|
170
|
+
<td class="attributes">
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
</td>
|
|
177
|
+
|
|
122
178
|
|
|
123
179
|
|
|
124
180
|
|
|
@@ -131,7 +187,14 @@
|
|
|
131
187
|
|
|
132
188
|
|
|
133
189
|
|
|
190
|
+
|
|
191
|
+
|
|
134
192
|
<dl class="details">
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
|
|
135
198
|
|
|
136
199
|
|
|
137
200
|
|
|
@@ -153,7 +216,7 @@
|
|
|
153
216
|
|
|
154
217
|
<dt class="tag-source">Source:</dt>
|
|
155
218
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
156
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
219
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1345">line 1345</a>
|
|
157
220
|
</li></ul></dd>
|
|
158
221
|
|
|
159
222
|
|
|
@@ -189,8 +252,6 @@
|
|
|
189
252
|
|
|
190
253
|
|
|
191
254
|
|
|
192
|
-
|
|
193
|
-
|
|
194
255
|
|
|
195
256
|
|
|
196
257
|
|
|
@@ -200,6 +261,79 @@
|
|
|
200
261
|
|
|
201
262
|
<dl>
|
|
202
263
|
|
|
264
|
+
<dt>
|
|
265
|
+
<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>
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
</dt>
|
|
269
|
+
<dd>
|
|
270
|
+
|
|
271
|
+
<div class="description">
|
|
272
|
+
<p>Builder reference.</p>
|
|
273
|
+
</div>
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
<h5>Type:</h5>
|
|
278
|
+
<ul>
|
|
279
|
+
<li>
|
|
280
|
+
|
|
281
|
+
<span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
</li>
|
|
285
|
+
</ul>
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
<dl class="details">
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
<dt class="tag-source">Source:</dt>
|
|
317
|
+
<dd class="tag-source"><ul class="dummy"><li>
|
|
318
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1352">line 1352</a>
|
|
319
|
+
</li></ul></dd>
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
</dl>
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
</dd>
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
|
|
203
337
|
<dt>
|
|
204
338
|
<h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"> :string</span></h4>
|
|
205
339
|
|
|
@@ -225,7 +359,14 @@
|
|
|
225
359
|
|
|
226
360
|
|
|
227
361
|
|
|
362
|
+
|
|
363
|
+
|
|
228
364
|
<dl class="details">
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
229
370
|
|
|
230
371
|
|
|
231
372
|
|
|
@@ -247,7 +388,7 @@
|
|
|
247
388
|
|
|
248
389
|
<dt class="tag-source">Source:</dt>
|
|
249
390
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
250
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
391
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1373">line 1373</a>
|
|
251
392
|
</li></ul></dd>
|
|
252
393
|
|
|
253
394
|
|
|
@@ -291,7 +432,14 @@
|
|
|
291
432
|
|
|
292
433
|
|
|
293
434
|
|
|
435
|
+
|
|
436
|
+
|
|
294
437
|
<dl class="details">
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
|
|
295
443
|
|
|
296
444
|
|
|
297
445
|
|
|
@@ -313,7 +461,7 @@
|
|
|
313
461
|
|
|
314
462
|
<dt class="tag-source">Source:</dt>
|
|
315
463
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
316
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
464
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1366">line 1366</a>
|
|
317
465
|
</li></ul></dd>
|
|
318
466
|
|
|
319
467
|
|
|
@@ -333,7 +481,7 @@
|
|
|
333
481
|
|
|
334
482
|
|
|
335
483
|
<dt>
|
|
336
|
-
<h4 class="name" id="parent"><span class="type-signature"
|
|
484
|
+
<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>
|
|
337
485
|
|
|
338
486
|
|
|
339
487
|
</dt>
|
|
@@ -350,9 +498,6 @@
|
|
|
350
498
|
<li>
|
|
351
499
|
|
|
352
500
|
<span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
|
|
353
|
-
|
|
|
354
|
-
|
|
355
|
-
<span class="param-type">null</span>
|
|
356
501
|
|
|
357
502
|
|
|
358
503
|
</li>
|
|
@@ -360,7 +505,14 @@
|
|
|
360
505
|
|
|
361
506
|
|
|
362
507
|
|
|
508
|
+
|
|
509
|
+
|
|
363
510
|
<dl class="details">
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
|
|
364
516
|
|
|
365
517
|
|
|
366
518
|
|
|
@@ -382,7 +534,7 @@
|
|
|
382
534
|
|
|
383
535
|
<dt class="tag-source">Source:</dt>
|
|
384
536
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
385
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
537
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1359">line 1359</a>
|
|
386
538
|
</li></ul></dd>
|
|
387
539
|
|
|
388
540
|
|
|
@@ -408,8 +560,10 @@
|
|
|
408
560
|
<dl>
|
|
409
561
|
|
|
410
562
|
<dt>
|
|
411
|
-
|
|
563
|
+
|
|
564
|
+
<h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
|
|
412
565
|
|
|
566
|
+
|
|
413
567
|
|
|
414
568
|
</dt>
|
|
415
569
|
<dd>
|
|
@@ -427,7 +581,16 @@
|
|
|
427
581
|
|
|
428
582
|
|
|
429
583
|
|
|
584
|
+
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
|
|
430
588
|
<dl class="details">
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
|
|
431
594
|
|
|
432
595
|
|
|
433
596
|
|
|
@@ -449,7 +612,7 @@
|
|
|
449
612
|
|
|
450
613
|
<dt class="tag-source">Source:</dt>
|
|
451
614
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
452
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
615
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1414">line 1414</a>
|
|
453
616
|
</li></ul></dd>
|
|
454
617
|
|
|
455
618
|
|
|
@@ -506,8 +669,10 @@
|
|
|
506
669
|
|
|
507
670
|
|
|
508
671
|
<dt>
|
|
509
|
-
|
|
672
|
+
|
|
673
|
+
<h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
510
674
|
|
|
675
|
+
|
|
511
676
|
|
|
512
677
|
</dt>
|
|
513
678
|
<dd>
|
|
@@ -525,7 +690,16 @@
|
|
|
525
690
|
|
|
526
691
|
|
|
527
692
|
|
|
693
|
+
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
|
|
528
697
|
<dl class="details">
|
|
698
|
+
|
|
699
|
+
|
|
700
|
+
|
|
701
|
+
|
|
702
|
+
|
|
529
703
|
|
|
530
704
|
|
|
531
705
|
|
|
@@ -547,7 +721,7 @@
|
|
|
547
721
|
|
|
548
722
|
<dt class="tag-source">Source:</dt>
|
|
549
723
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
550
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
724
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1387">line 1387</a>
|
|
551
725
|
</li></ul></dd>
|
|
552
726
|
|
|
553
727
|
|
|
@@ -599,8 +773,10 @@
|
|
|
599
773
|
|
|
600
774
|
|
|
601
775
|
<dt>
|
|
602
|
-
|
|
776
|
+
|
|
777
|
+
<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>
|
|
603
778
|
|
|
779
|
+
|
|
604
780
|
|
|
605
781
|
</dt>
|
|
606
782
|
<dd>
|
|
@@ -616,6 +792,8 @@
|
|
|
616
792
|
|
|
617
793
|
|
|
618
794
|
|
|
795
|
+
|
|
796
|
+
|
|
619
797
|
<h5>Parameters:</h5>
|
|
620
798
|
|
|
621
799
|
|
|
@@ -678,7 +856,14 @@
|
|
|
678
856
|
|
|
679
857
|
|
|
680
858
|
|
|
859
|
+
|
|
860
|
+
|
|
681
861
|
<dl class="details">
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
|
|
682
867
|
|
|
683
868
|
|
|
684
869
|
|
|
@@ -700,7 +885,7 @@
|
|
|
700
885
|
|
|
701
886
|
<dt class="tag-source">Source:</dt>
|
|
702
887
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
703
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
888
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1405">line 1405</a>
|
|
704
889
|
</li></ul></dd>
|
|
705
890
|
|
|
706
891
|
|
|
@@ -753,13 +938,13 @@
|
|
|
753
938
|
</div>
|
|
754
939
|
|
|
755
940
|
<nav>
|
|
756
|
-
<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>
|
|
941
|
+
<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>
|
|
757
942
|
</nav>
|
|
758
943
|
|
|
759
944
|
<br clear="both">
|
|
760
945
|
|
|
761
946
|
<footer>
|
|
762
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-
|
|
947
|
+
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)
|
|
763
948
|
</footer>
|
|
764
949
|
|
|
765
950
|
<script> prettyPrint(); </script>
|
|
@@ -23,28 +23,36 @@
|
|
|
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
30
|
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
<h2>
|
|
32
|
+
<span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a>.</span>
|
|
33
|
+
|
|
34
|
+
Reflect
|
|
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
|
<div class="description"><p>Reflection types.</p></div>
|
|
44
45
|
|
|
45
46
|
|
|
46
47
|
|
|
48
|
+
|
|
49
|
+
|
|
47
50
|
<dl class="details">
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
48
56
|
|
|
49
57
|
|
|
50
58
|
|
|
@@ -66,7 +74,7 @@
|
|
|
66
74
|
|
|
67
75
|
<dt class="tag-source">Source:</dt>
|
|
68
76
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
69
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
77
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1334">line 1334</a>
|
|
70
78
|
</li></ul></dd>
|
|
71
79
|
|
|
72
80
|
|
|
@@ -87,8 +95,6 @@
|
|
|
87
95
|
|
|
88
96
|
|
|
89
97
|
|
|
90
|
-
|
|
91
|
-
|
|
92
98
|
<h3 class="subsection-title">Classes</h3>
|
|
93
99
|
|
|
94
100
|
<dl>
|
|
@@ -133,13 +139,13 @@
|
|
|
133
139
|
</div>
|
|
134
140
|
|
|
135
141
|
<nav>
|
|
136
|
-
<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>
|
|
142
|
+
<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>
|
|
137
143
|
</nav>
|
|
138
144
|
|
|
139
145
|
<br clear="both">
|
|
140
146
|
|
|
141
147
|
<footer>
|
|
142
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-
|
|
148
|
+
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)
|
|
143
149
|
</footer>
|
|
144
150
|
|
|
145
151
|
<script> prettyPrint(); </script>
|