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><a href="ProtoBuf.DotProto.html">.DotProto</a>.</span>
|
|
31
|
-
|
|
32
|
-
Parser
|
|
33
|
-
</h2>
|
|
34
30
|
|
|
35
|
-
<
|
|
31
|
+
<h2>
|
|
32
|
+
<span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.DotProto.html">.DotProto</a>.</span>
|
|
33
|
+
|
|
34
|
+
Parser
|
|
35
|
+
</h2>
|
|
36
|
+
|
|
37
|
+
<div class="class-description"><p>prototype parser</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="Parser"><span class="type-signature"></span>new Parser<span class="signature">(proto)</span><span class="type-signature"></span></h4>
|
|
47
49
|
|
|
50
|
+
|
|
48
51
|
|
|
49
52
|
</dt>
|
|
50
53
|
<dd>
|
|
@@ -60,6 +63,8 @@
|
|
|
60
63
|
|
|
61
64
|
|
|
62
65
|
|
|
66
|
+
|
|
67
|
+
|
|
63
68
|
<h5>Parameters:</h5>
|
|
64
69
|
|
|
65
70
|
|
|
@@ -110,7 +115,14 @@
|
|
|
110
115
|
|
|
111
116
|
|
|
112
117
|
|
|
118
|
+
|
|
119
|
+
|
|
113
120
|
<dl class="details">
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
114
126
|
|
|
115
127
|
|
|
116
128
|
|
|
@@ -132,7 +144,7 @@
|
|
|
132
144
|
|
|
133
145
|
<dt class="tag-source">Source:</dt>
|
|
134
146
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
135
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
147
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line611">line 611</a>
|
|
136
148
|
</li></ul></dd>
|
|
137
149
|
|
|
138
150
|
|
|
@@ -168,8 +180,6 @@
|
|
|
168
180
|
|
|
169
181
|
|
|
170
182
|
|
|
171
|
-
|
|
172
|
-
|
|
173
183
|
|
|
174
184
|
|
|
175
185
|
|
|
@@ -204,7 +214,14 @@
|
|
|
204
214
|
|
|
205
215
|
|
|
206
216
|
|
|
217
|
+
|
|
218
|
+
|
|
207
219
|
<dl class="details">
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
|
|
208
225
|
|
|
209
226
|
|
|
210
227
|
|
|
@@ -226,7 +243,7 @@
|
|
|
226
243
|
|
|
227
244
|
<dt class="tag-source">Source:</dt>
|
|
228
245
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
229
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
246
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line618">line 618</a>
|
|
230
247
|
</li></ul></dd>
|
|
231
248
|
|
|
232
249
|
|
|
@@ -252,8 +269,10 @@
|
|
|
252
269
|
<dl>
|
|
253
270
|
|
|
254
271
|
<dt>
|
|
255
|
-
|
|
272
|
+
|
|
273
|
+
<h4 class="name" id="parse"><span class="type-signature"></span>parse<span class="signature">()</span><span class="type-signature"> → {<a href="Object.html">Object</a>}</span></h4>
|
|
256
274
|
|
|
275
|
+
|
|
257
276
|
|
|
258
277
|
</dt>
|
|
259
278
|
<dd>
|
|
@@ -271,7 +290,16 @@
|
|
|
271
290
|
|
|
272
291
|
|
|
273
292
|
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
274
297
|
<dl class="details">
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
275
303
|
|
|
276
304
|
|
|
277
305
|
|
|
@@ -293,7 +321,7 @@
|
|
|
293
321
|
|
|
294
322
|
<dt class="tag-source">Source:</dt>
|
|
295
323
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
296
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
324
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line633">line 633</a>
|
|
297
325
|
</li></ul></dd>
|
|
298
326
|
|
|
299
327
|
|
|
@@ -368,8 +396,10 @@
|
|
|
368
396
|
|
|
369
397
|
|
|
370
398
|
<dt>
|
|
371
|
-
|
|
399
|
+
|
|
400
|
+
<h4 class="name" id="toString"><span class="type-signature"></span>toString<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
372
401
|
|
|
402
|
+
|
|
373
403
|
|
|
374
404
|
</dt>
|
|
375
405
|
<dd>
|
|
@@ -387,7 +417,16 @@
|
|
|
387
417
|
|
|
388
418
|
|
|
389
419
|
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
|
|
390
424
|
<dl class="details">
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
|
|
391
430
|
|
|
392
431
|
|
|
393
432
|
|
|
@@ -409,7 +448,7 @@
|
|
|
409
448
|
|
|
410
449
|
<dt class="tag-source">Source:</dt>
|
|
411
450
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
412
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
451
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line1308">line 1308</a>
|
|
413
452
|
</li></ul></dd>
|
|
414
453
|
|
|
415
454
|
|
|
@@ -474,13 +513,13 @@
|
|
|
474
513
|
</div>
|
|
475
514
|
|
|
476
515
|
<nav>
|
|
477
|
-
<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>
|
|
516
|
+
<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>
|
|
478
517
|
</nav>
|
|
479
518
|
|
|
480
519
|
<br clear="both">
|
|
481
520
|
|
|
482
521
|
<footer>
|
|
483
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-
|
|
522
|
+
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)
|
|
484
523
|
</footer>
|
|
485
524
|
|
|
486
525
|
<script> prettyPrint(); </script>
|
|
@@ -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><a href="ProtoBuf.DotProto.html">.DotProto</a>.</span>
|
|
31
|
-
|
|
32
|
-
Tokenizer
|
|
33
|
-
</h2>
|
|
34
30
|
|
|
35
|
-
<
|
|
31
|
+
<h2>
|
|
32
|
+
<span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.DotProto.html">.DotProto</a>.</span>
|
|
33
|
+
|
|
34
|
+
Tokenizer
|
|
35
|
+
</h2>
|
|
36
|
+
|
|
37
|
+
<div class="class-description"><p>prototype tokenizer</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="Tokenizer"><span class="type-signature"></span>new Tokenizer<span class="signature">(proto)</span><span class="type-signature"></span></h4>
|
|
47
49
|
|
|
50
|
+
|
|
48
51
|
|
|
49
52
|
</dt>
|
|
50
53
|
<dd>
|
|
@@ -60,6 +63,8 @@
|
|
|
60
63
|
|
|
61
64
|
|
|
62
65
|
|
|
66
|
+
|
|
67
|
+
|
|
63
68
|
<h5>Parameters:</h5>
|
|
64
69
|
|
|
65
70
|
|
|
@@ -110,7 +115,14 @@
|
|
|
110
115
|
|
|
111
116
|
|
|
112
117
|
|
|
118
|
+
|
|
119
|
+
|
|
113
120
|
<dl class="details">
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
114
126
|
|
|
115
127
|
|
|
116
128
|
|
|
@@ -168,8 +180,6 @@
|
|
|
168
180
|
|
|
169
181
|
|
|
170
182
|
|
|
171
|
-
|
|
172
|
-
|
|
173
183
|
|
|
174
184
|
|
|
175
185
|
|
|
@@ -204,7 +214,14 @@
|
|
|
204
214
|
|
|
205
215
|
|
|
206
216
|
|
|
217
|
+
|
|
218
|
+
|
|
207
219
|
<dl class="details">
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
|
|
208
225
|
|
|
209
226
|
|
|
210
227
|
|
|
@@ -270,7 +287,14 @@
|
|
|
270
287
|
|
|
271
288
|
|
|
272
289
|
|
|
290
|
+
|
|
291
|
+
|
|
273
292
|
<dl class="details">
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
|
|
274
298
|
|
|
275
299
|
|
|
276
300
|
|
|
@@ -336,7 +360,14 @@
|
|
|
336
360
|
|
|
337
361
|
|
|
338
362
|
|
|
363
|
+
|
|
364
|
+
|
|
339
365
|
<dl class="details">
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
340
371
|
|
|
341
372
|
|
|
342
373
|
|
|
@@ -402,7 +433,14 @@
|
|
|
402
433
|
|
|
403
434
|
|
|
404
435
|
|
|
436
|
+
|
|
437
|
+
|
|
405
438
|
<dl class="details">
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
|
|
406
444
|
|
|
407
445
|
|
|
408
446
|
|
|
@@ -468,7 +506,14 @@
|
|
|
468
506
|
|
|
469
507
|
|
|
470
508
|
|
|
509
|
+
|
|
510
|
+
|
|
471
511
|
<dl class="details">
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
|
|
472
517
|
|
|
473
518
|
|
|
474
519
|
|
|
@@ -534,7 +579,14 @@
|
|
|
534
579
|
|
|
535
580
|
|
|
536
581
|
|
|
582
|
+
|
|
583
|
+
|
|
537
584
|
<dl class="details">
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
|
|
538
590
|
|
|
539
591
|
|
|
540
592
|
|
|
@@ -582,8 +634,10 @@
|
|
|
582
634
|
<dl>
|
|
583
635
|
|
|
584
636
|
<dt>
|
|
585
|
-
|
|
637
|
+
|
|
638
|
+
<h4 class="name" id="next"><span class="type-signature"></span>next<span class="signature">()</span><span class="type-signature"> → (nullable) {string}</span></h4>
|
|
586
639
|
|
|
640
|
+
|
|
587
641
|
|
|
588
642
|
</dt>
|
|
589
643
|
<dd>
|
|
@@ -601,7 +655,16 @@
|
|
|
601
655
|
|
|
602
656
|
|
|
603
657
|
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
|
|
661
|
+
|
|
604
662
|
<dl class="details">
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
|
|
667
|
+
|
|
605
668
|
|
|
606
669
|
|
|
607
670
|
|
|
@@ -623,7 +686,7 @@
|
|
|
623
686
|
|
|
624
687
|
<dt class="tag-source">Source:</dt>
|
|
625
688
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
626
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
689
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line505">line 505</a>
|
|
627
690
|
</li></ul></dd>
|
|
628
691
|
|
|
629
692
|
|
|
@@ -702,8 +765,10 @@
|
|
|
702
765
|
|
|
703
766
|
|
|
704
767
|
<dt>
|
|
705
|
-
|
|
768
|
+
|
|
769
|
+
<h4 class="name" id="peek"><span class="type-signature"></span>peek<span class="signature">()</span><span class="type-signature"> → (nullable) {string}</span></h4>
|
|
706
770
|
|
|
771
|
+
|
|
707
772
|
|
|
708
773
|
</dt>
|
|
709
774
|
<dd>
|
|
@@ -721,7 +786,16 @@
|
|
|
721
786
|
|
|
722
787
|
|
|
723
788
|
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
|
|
792
|
+
|
|
724
793
|
<dl class="details">
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+
|
|
725
799
|
|
|
726
800
|
|
|
727
801
|
|
|
@@ -743,7 +817,7 @@
|
|
|
743
817
|
|
|
744
818
|
<dt class="tag-source">Source:</dt>
|
|
745
819
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
746
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
820
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line579">line 579</a>
|
|
747
821
|
</li></ul></dd>
|
|
748
822
|
|
|
749
823
|
|
|
@@ -822,8 +896,10 @@
|
|
|
822
896
|
|
|
823
897
|
|
|
824
898
|
<dt>
|
|
825
|
-
|
|
899
|
+
|
|
900
|
+
<h4 class="name" id="toString"><span class="type-signature"></span>toString<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
826
901
|
|
|
902
|
+
|
|
827
903
|
|
|
828
904
|
</dt>
|
|
829
905
|
<dd>
|
|
@@ -841,7 +917,16 @@
|
|
|
841
917
|
|
|
842
918
|
|
|
843
919
|
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
|
|
844
924
|
<dl class="details">
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
|
|
929
|
+
|
|
845
930
|
|
|
846
931
|
|
|
847
932
|
|
|
@@ -863,7 +948,7 @@
|
|
|
863
948
|
|
|
864
949
|
<dt class="tag-source">Source:</dt>
|
|
865
950
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
866
|
-
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#
|
|
951
|
+
<a href="ProtoBuf.js.html">ProtoBuf.js</a>, <a href="ProtoBuf.js.html#line594">line 594</a>
|
|
867
952
|
</li></ul></dd>
|
|
868
953
|
|
|
869
954
|
|
|
@@ -928,13 +1013,13 @@
|
|
|
928
1013
|
</div>
|
|
929
1014
|
|
|
930
1015
|
<nav>
|
|
931
|
-
<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>
|
|
1016
|
+
<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>
|
|
932
1017
|
</nav>
|
|
933
1018
|
|
|
934
1019
|
<br clear="both">
|
|
935
1020
|
|
|
936
1021
|
<footer>
|
|
937
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-
|
|
1022
|
+
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)
|
|
938
1023
|
</footer>
|
|
939
1024
|
|
|
940
1025
|
<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
|
+
DotProto
|
|
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>Utilities to parse .proto files.</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
|
|
|
@@ -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>
|
|
@@ -121,13 +127,13 @@
|
|
|
121
127
|
</div>
|
|
122
128
|
|
|
123
129
|
<nav>
|
|
124
|
-
<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>
|
|
130
|
+
<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>
|
|
125
131
|
</nav>
|
|
126
132
|
|
|
127
133
|
<br clear="both">
|
|
128
134
|
|
|
129
135
|
<footer>
|
|
130
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-
|
|
136
|
+
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)
|
|
131
137
|
</footer>
|
|
132
138
|
|
|
133
139
|
<script> prettyPrint(); </script>
|