protobufjs 4.1.2 → 5.0.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/.travis.yml +3 -1
- package/README.md +147 -25
- package/bin/pbjs +2 -2
- package/bower.json +3 -3
- package/cli/pbjs/targets/amd.js +1 -1
- package/cli/pbjs/targets/json.js +9 -1
- package/cli/pbjs/targets/proto.js +48 -24
- package/cli/pbjs/util.js +1 -1
- package/cli/pbjs.js +9 -2
- package/dist/README.md +10 -10
- package/dist/{ProtoBuf-light.js → protobuf-light.js} +207 -152
- package/dist/protobuf-light.min.js +94 -0
- package/dist/protobuf-light.min.js.gz +0 -0
- package/dist/protobuf-light.min.map +8 -0
- package/dist/{ProtoBuf.js → protobuf.js} +265 -175
- package/dist/protobuf.min.js +116 -0
- package/dist/protobuf.min.js.gz +0 -0
- package/dist/protobuf.min.map +8 -0
- package/docs/ProtoBuf.Builder.Message.html +1473 -967
- package/docs/ProtoBuf.Builder.Service.html +266 -197
- package/docs/ProtoBuf.Builder.html +758 -542
- package/docs/ProtoBuf.DotProto.Parser.html +223 -161
- package/docs/ProtoBuf.DotProto.Tokenizer.html +344 -248
- package/docs/ProtoBuf.DotProto.html +20 -12
- package/docs/ProtoBuf.Element.html +554 -554
- package/docs/ProtoBuf.Map.html +158 -123
- package/docs/ProtoBuf.Reflect.Element.html +286 -143
- package/docs/ProtoBuf.Reflect.Enum.Value.html +329 -228
- package/docs/ProtoBuf.Reflect.Enum.html +757 -537
- package/docs/ProtoBuf.Reflect.Extension.html +73 -56
- package/docs/ProtoBuf.Reflect.Message.ExtensionField.html +1013 -740
- package/docs/ProtoBuf.Reflect.Message.Field.html +926 -649
- package/docs/ProtoBuf.Reflect.Message.OneOf.html +327 -245
- package/docs/ProtoBuf.Reflect.Message.html +919 -652
- package/docs/ProtoBuf.Reflect.Namespace.html +648 -447
- package/docs/ProtoBuf.Reflect.Service.Method.html +363 -251
- package/docs/ProtoBuf.Reflect.Service.RPCMethod.html +545 -397
- package/docs/ProtoBuf.Reflect.Service.html +721 -511
- package/docs/ProtoBuf.Reflect.T.html +268 -197
- package/docs/ProtoBuf.Reflect.html +20 -12
- package/docs/ProtoBuf.Util.html +169 -118
- package/docs/ProtoBuf.html +840 -628
- package/docs/ProtoBuf.js.html +271 -180
- package/docs/fonts/OpenSans-Bold-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Bold-webfont.svg +1830 -0
- package/docs/fonts/OpenSans-Bold-webfont.woff +0 -0
- package/docs/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
- package/docs/fonts/OpenSans-BoldItalic-webfont.svg +1830 -0
- package/docs/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
- package/docs/fonts/OpenSans-Italic-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Italic-webfont.svg +1830 -0
- package/docs/fonts/OpenSans-Italic-webfont.woff +0 -0
- package/docs/fonts/OpenSans-Light-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Light-webfont.svg +1831 -0
- package/docs/fonts/OpenSans-Light-webfont.woff +0 -0
- package/docs/fonts/OpenSans-LightItalic-webfont.eot +0 -0
- package/docs/fonts/OpenSans-LightItalic-webfont.svg +1835 -0
- package/docs/fonts/OpenSans-LightItalic-webfont.woff +0 -0
- package/docs/fonts/OpenSans-Regular-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Regular-webfont.svg +1831 -0
- package/docs/fonts/OpenSans-Regular-webfont.woff +0 -0
- package/docs/index.html +7 -5
- package/docs/styles/jsdoc-default.css +95 -75
- package/docs/styles/prettify-tomorrow.css +1 -1
- package/donate.png +0 -0
- package/examples/protoify/json.js +123 -123
- package/examples/protoify/json.json +123 -123
- package/examples/websocket/server.js +4 -4
- package/externs/{ProtoBuf.js → protobuf.js} +933 -922
- package/index.js +1 -18
- package/jsdoc.json +1 -1
- package/package.json +11 -11
- package/protobuf.png +0 -0
- package/scripts/build.js +53 -58
- package/src/ProtoBuf/Builder/Message.js +18 -9
- package/src/ProtoBuf/Builder/Service.js +3 -0
- package/src/ProtoBuf/Builder.js +34 -10
- package/src/ProtoBuf/DotProto/Parser.js +58 -23
- package/src/ProtoBuf/Reflect/Element.js +17 -4
- package/src/ProtoBuf/Reflect/Message/Field.js +6 -5
- package/src/ProtoBuf/Reflect/Message.js +9 -4
- package/src/ProtoBuf/Util.js +116 -116
- package/src/bower.json +2 -2
- package/src/google/protobuf/descriptor.json +55 -15
- package/src/{ProtoBuf.js → protobuf.js} +0 -0
- package/src/wrap.js +4 -4
- package/tests/bench.txt +373 -373
- package/tests/complex.json +8 -1
- package/tests/custom-options.json +169 -169
- package/tests/extend.json +71 -71
- package/tests/imports-weak.proto +7 -0
- package/tests/imports.json +83 -83
- package/tests/nodeunit-browser/nodeunit.css +70 -70
- package/tests/nodeunit-browser/nodeunit.js +2108 -2108
- package/tests/options.json +32 -32
- package/tests/proto2js/Bar.json +46 -46
- package/tests/suite.js +107 -82
- package/ProtoBuf.png +0 -0
- package/dist/ProtoBuf-light.min.js +0 -87
- package/dist/ProtoBuf-light.min.js.gz +0 -0
- package/dist/ProtoBuf-light.min.map +0 -8
- package/dist/ProtoBuf.min.js +0 -108
- package/dist/ProtoBuf.min.js.gz +0 -0
- package/dist/ProtoBuf.min.map +0 -8
- package/externs/ByteBuffer.js +0 -767
- package/externs/Long.js +0 -328
- package/sandbox/gapi/googleapis/google/api/annotations.proto +0 -29
- package/sandbox/gapi/googleapis/google/api/http.proto +0 -245
- package/sandbox/gapi/googleapis/google/datastore/v1beta3/datastore.proto +0 -281
- package/sandbox/gapi/googleapis/google/datastore/v1beta3/entity.proto +0 -189
- package/sandbox/gapi/googleapis/google/datastore/v1beta3/query.proto +0 -281
- package/sandbox/gapi/googleapis/google/longrunning/operations.proto +0 -144
- package/sandbox/gapi/googleapis/google/protobuf/any.proto +0 -98
- package/sandbox/gapi/googleapis/google/protobuf/any_test.proto +0 -41
- package/sandbox/gapi/googleapis/google/protobuf/api.proto +0 -201
- package/sandbox/gapi/googleapis/google/protobuf/descriptor.proto +0 -773
- package/sandbox/gapi/googleapis/google/protobuf/duration.proto +0 -95
- package/sandbox/gapi/googleapis/google/protobuf/empty.proto +0 -50
- package/sandbox/gapi/googleapis/google/protobuf/field_mask.proto +0 -167
- package/sandbox/gapi/googleapis/google/protobuf/map_lite_unittest.proto +0 -130
- package/sandbox/gapi/googleapis/google/protobuf/map_proto2_unittest.proto +0 -60
- package/sandbox/gapi/googleapis/google/protobuf/map_unittest.proto +0 -129
- package/sandbox/gapi/googleapis/google/protobuf/map_unittest_proto3.proto +0 -120
- package/sandbox/gapi/googleapis/google/protobuf/source_context.proto +0 -47
- package/sandbox/gapi/googleapis/google/protobuf/struct.proto +0 -94
- package/sandbox/gapi/googleapis/google/protobuf/timestamp.proto +0 -107
- package/sandbox/gapi/googleapis/google/protobuf/type.proto +0 -176
- package/sandbox/gapi/googleapis/google/protobuf/unittest.proto +0 -878
- package/sandbox/gapi/googleapis/google/protobuf/unittest_arena.proto +0 -46
- package/sandbox/gapi/googleapis/google/protobuf/unittest_custom_options.proto +0 -394
- package/sandbox/gapi/googleapis/google/protobuf/unittest_drop_unknown_fields.proto +0 -58
- package/sandbox/gapi/googleapis/google/protobuf/unittest_embed_optimize_for.proto +0 -51
- package/sandbox/gapi/googleapis/google/protobuf/unittest_empty.proto +0 -38
- package/sandbox/gapi/googleapis/google/protobuf/unittest_enormous_descriptor.proto +0 -1048
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import.proto +0 -66
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_lite.proto +0 -52
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_proto3.proto +0 -68
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public.proto +0 -41
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_lite.proto +0 -43
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_proto3.proto +0 -42
- package/sandbox/gapi/googleapis/google/protobuf/unittest_lite.proto +0 -385
- package/sandbox/gapi/googleapis/google/protobuf/unittest_lite_imports_nonlite.proto +0 -44
- package/sandbox/gapi/googleapis/google/protobuf/unittest_mset.proto +0 -82
- package/sandbox/gapi/googleapis/google/protobuf/unittest_mset_wire_format.proto +0 -52
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena.proto +0 -202
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_import.proto +0 -37
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_lite.proto +0 -42
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_field_presence.proto +0 -138
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_generic_services.proto +0 -54
- package/sandbox/gapi/googleapis/google/protobuf/unittest_optimize_for.proto +0 -67
- package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum.proto +0 -71
- package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum2.proto +0 -50
- package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3.proto +0 -388
- package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3_arena.proto +0 -206
- package/sandbox/gapi/googleapis/google/protobuf/unittest_well_known_types.proto +0 -112
- package/sandbox/gapi/googleapis/google/protobuf/unknown_enum_test.proto +0 -62
- package/sandbox/gapi/googleapis/google/protobuf/wrappers.proto +0 -117
- package/sandbox/gapi/googleapis/google/rpc/code.proto +0 -190
- package/sandbox/gapi/googleapis/google/rpc/error_details.proto +0 -157
- package/sandbox/gapi/googleapis/google/rpc/status.proto +0 -90
- package/sandbox/gapi/googleapis/google/type/color.proto +0 -163
- package/sandbox/gapi/googleapis/google/type/date.proto +0 -43
- package/sandbox/gapi/googleapis/google/type/dayofweek.proto +0 -50
- package/sandbox/gapi/googleapis/google/type/latlng.proto +0 -36
- package/sandbox/gapi/googleapis/google/type/money.proto +0 -40
- package/sandbox/gapi/googleapis/google/type/timeofday.proto +0 -42
- package/sandbox/gapi/test.js +0 -17
- package/sandbox/gapi/test.proto +0 -12
- 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/issue182/commands.proto +0 -10
- package/sandbox/issue182/execute.js +0 -22
- package/sandbox/issue182/session_commands.proto +0 -14
- package/sandbox/issue289/A.proto +0 -8
- package/sandbox/issue289/B.proto +0 -8
- package/sandbox/issue289/common.proto +0 -5
- package/sandbox/issue289/main.js +0 -7
- package/sandbox/issue300/IAuth.proto +0 -14
- package/sandbox/issue300/Request.proto +0 -14
- package/sandbox/issue300/main.js +0 -26
- package/sandbox/issue42/innerextend.proto +0 -18
- package/sandbox/issue42/main.js +0 -8
- package/sandbox/issue42/outerextend.proto +0 -17
- package/tests/gtfs-realtime.proto +0 -552
- package/webpack.config.js +0 -9
|
@@ -23,43 +23,47 @@
|
|
|
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.Message.html">.Message</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.Message.html">.Message</a>.</span>
|
|
33
|
+
|
|
34
|
+
OneOf
|
|
35
|
+
</h2>
|
|
36
|
+
|
|
34
37
|
|
|
35
38
|
</header>
|
|
36
39
|
|
|
37
40
|
<article>
|
|
38
41
|
<div class="container-overview">
|
|
39
42
|
|
|
43
|
+
|
|
40
44
|
|
|
41
45
|
|
|
42
|
-
|
|
43
|
-
<dt>
|
|
46
|
+
|
|
44
47
|
<h4 class="name" id="OneOf"><span class="type-signature"></span>new OneOf<span class="signature">(builder<span class="signature-attributes">non-null</span>, message<span class="signature-attributes">non-null</span>, name)</span><span class="type-signature"></span></h4>
|
|
45
48
|
|
|
46
49
|
|
|
47
|
-
</dt>
|
|
48
|
-
<dd>
|
|
49
50
|
|
|
50
|
-
|
|
51
|
-
<div class="description">
|
|
52
|
-
<p>Constructs a new Message OneOf.</p>
|
|
53
|
-
</div>
|
|
54
|
-
|
|
55
51
|
|
|
56
|
-
|
|
57
52
|
|
|
58
|
-
|
|
53
|
+
<div class="description">
|
|
54
|
+
<p>Constructs a new Message OneOf.</p>
|
|
55
|
+
</div>
|
|
59
56
|
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
<h5>Parameters:</h5>
|
|
60
66
|
|
|
61
|
-
<h5>Parameters:</h5>
|
|
62
|
-
|
|
63
67
|
|
|
64
68
|
<table class="params">
|
|
65
69
|
<thead>
|
|
@@ -151,10 +155,20 @@
|
|
|
151
155
|
|
|
152
156
|
</tbody>
|
|
153
157
|
</table>
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
<dl class="details">
|
|
165
|
+
|
|
154
166
|
|
|
155
167
|
|
|
156
168
|
|
|
157
|
-
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
158
172
|
|
|
159
173
|
|
|
160
174
|
|
|
@@ -176,7 +190,7 @@
|
|
|
176
190
|
|
|
177
191
|
<dt class="tag-source">Source:</dt>
|
|
178
192
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
179
|
-
<a href="
|
|
193
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3803">line 3803</a>
|
|
180
194
|
</li></ul></dd>
|
|
181
195
|
|
|
182
196
|
|
|
@@ -188,20 +202,19 @@
|
|
|
188
202
|
</dl>
|
|
189
203
|
|
|
190
204
|
|
|
191
|
-
|
|
192
205
|
|
|
193
|
-
|
|
194
206
|
|
|
195
|
-
|
|
196
207
|
|
|
197
|
-
|
|
198
208
|
|
|
199
|
-
|
|
200
209
|
|
|
201
|
-
|
|
202
210
|
|
|
203
|
-
|
|
204
|
-
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
|
|
205
218
|
|
|
206
219
|
|
|
207
220
|
</div>
|
|
@@ -209,10 +222,13 @@
|
|
|
209
222
|
|
|
210
223
|
<h3 class="subsection-title">Extends</h3>
|
|
211
224
|
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
<ul>
|
|
229
|
+
<li><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></li>
|
|
230
|
+
</ul>
|
|
231
|
+
|
|
216
232
|
|
|
217
233
|
|
|
218
234
|
|
|
@@ -227,35 +243,34 @@
|
|
|
227
243
|
|
|
228
244
|
<h3 class="subsection-title">Members</h3>
|
|
229
245
|
|
|
230
|
-
|
|
246
|
+
|
|
231
247
|
|
|
232
|
-
<
|
|
233
|
-
<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>
|
|
248
|
+
<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>
|
|
234
249
|
|
|
235
|
-
|
|
236
|
-
</dt>
|
|
237
|
-
<dd>
|
|
238
|
-
|
|
239
|
-
<div class="description">
|
|
240
|
-
<p>Builder reference.</p>
|
|
241
|
-
</div>
|
|
242
|
-
|
|
243
250
|
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
<div class="description">
|
|
254
|
+
<p>Builder reference.</p>
|
|
255
|
+
</div>
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
<h5>Type:</h5>
|
|
260
|
+
<ul>
|
|
261
|
+
<li>
|
|
262
|
+
|
|
249
263
|
<span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
|
|
250
264
|
|
|
251
265
|
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
266
|
+
</li>
|
|
267
|
+
</ul>
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
|
|
255
272
|
|
|
256
|
-
|
|
257
273
|
<dl class="details">
|
|
258
|
-
|
|
259
274
|
|
|
260
275
|
|
|
261
276
|
|
|
@@ -265,7 +280,15 @@
|
|
|
265
280
|
<dt class="inherited-from">Inherited From:</dt>
|
|
266
281
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
267
282
|
<a href="ProtoBuf.Reflect.T.html#builder">ProtoBuf.Reflect.T#builder</a>
|
|
268
|
-
</li></dd>
|
|
283
|
+
</li></ul></dd>
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
269
292
|
|
|
270
293
|
|
|
271
294
|
|
|
@@ -281,7 +304,7 @@
|
|
|
281
304
|
|
|
282
305
|
<dt class="tag-source">Source:</dt>
|
|
283
306
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
284
|
-
<a href="
|
|
307
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1417">line 1417</a>
|
|
285
308
|
</li></ul></dd>
|
|
286
309
|
|
|
287
310
|
|
|
@@ -293,40 +316,38 @@
|
|
|
293
316
|
</dl>
|
|
294
317
|
|
|
295
318
|
|
|
296
|
-
|
|
297
319
|
|
|
298
|
-
|
|
299
|
-
|
|
320
|
+
|
|
321
|
+
|
|
300
322
|
|
|
301
323
|
|
|
302
324
|
|
|
303
|
-
<
|
|
304
|
-
<h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"> :string</span></h4>
|
|
325
|
+
<h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"> :string</span></h4>
|
|
305
326
|
|
|
306
|
-
|
|
307
|
-
</dt>
|
|
308
|
-
<dd>
|
|
309
|
-
|
|
310
|
-
<div class="description">
|
|
311
|
-
<p>Fully qualified class name</p>
|
|
312
|
-
</div>
|
|
313
|
-
|
|
314
327
|
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
<div class="description">
|
|
331
|
+
<p>Fully qualified class name</p>
|
|
332
|
+
</div>
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
<h5>Type:</h5>
|
|
337
|
+
<ul>
|
|
338
|
+
<li>
|
|
339
|
+
|
|
320
340
|
<span class="param-type">string</span>
|
|
321
341
|
|
|
322
342
|
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
343
|
+
</li>
|
|
344
|
+
</ul>
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
326
349
|
|
|
327
|
-
|
|
328
350
|
<dl class="details">
|
|
329
|
-
|
|
330
351
|
|
|
331
352
|
|
|
332
353
|
|
|
@@ -336,7 +357,15 @@
|
|
|
336
357
|
<dt class="inherited-from">Inherited From:</dt>
|
|
337
358
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
338
359
|
<a href="ProtoBuf.Reflect.T.html#className">ProtoBuf.Reflect.T#className</a>
|
|
339
|
-
</li></dd>
|
|
360
|
+
</li></ul></dd>
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
340
369
|
|
|
341
370
|
|
|
342
371
|
|
|
@@ -352,7 +381,7 @@
|
|
|
352
381
|
|
|
353
382
|
<dt class="tag-source">Source:</dt>
|
|
354
383
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
355
|
-
<a href="
|
|
384
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1438">line 1438</a>
|
|
356
385
|
</li></ul></dd>
|
|
357
386
|
|
|
358
387
|
|
|
@@ -364,39 +393,45 @@
|
|
|
364
393
|
</dl>
|
|
365
394
|
|
|
366
395
|
|
|
367
|
-
|
|
368
396
|
|
|
369
|
-
|
|
370
|
-
|
|
397
|
+
|
|
398
|
+
|
|
371
399
|
|
|
372
400
|
|
|
373
401
|
|
|
374
|
-
<
|
|
375
|
-
|
|
402
|
+
<h4 class="name" id="fields"><span class="type-signature">(non-null) </span>fields<span class="type-signature"> :Array.<!<a href="ProtoBuf.Reflect.Message.Field.html">ProtoBuf.Reflect.Message.Field</a>></span></h4>
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
<div class="description">
|
|
408
|
+
<p>Enclosed fields.</p>
|
|
409
|
+
</div>
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
<h5>Type:</h5>
|
|
414
|
+
<ul>
|
|
415
|
+
<li>
|
|
416
|
+
|
|
417
|
+
<span class="param-type">Array.<!<a href="ProtoBuf.Reflect.Message.Field.html">ProtoBuf.Reflect.Message.Field</a>></span>
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
</li>
|
|
421
|
+
</ul>
|
|
376
422
|
|
|
377
|
-
|
|
378
|
-
</dt>
|
|
379
|
-
<dd>
|
|
380
|
-
|
|
381
|
-
<div class="description">
|
|
382
|
-
<p>Enclosed fields.</p>
|
|
383
|
-
</div>
|
|
384
|
-
|
|
385
423
|
|
|
386
|
-
|
|
387
|
-
<h5>Type:</h5>
|
|
388
|
-
<ul>
|
|
389
|
-
<li>
|
|
390
|
-
|
|
391
|
-
<span class="param-type">Array.<<a href="ProtoBuf.Reflect.Message.Field.html">ProtoBuf.Reflect.Message.Field</a>></span>
|
|
392
424
|
|
|
393
425
|
|
|
394
|
-
|
|
395
|
-
|
|
426
|
+
|
|
427
|
+
<dl class="details">
|
|
428
|
+
|
|
396
429
|
|
|
397
430
|
|
|
398
431
|
|
|
399
|
-
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
|
|
400
435
|
|
|
401
436
|
|
|
402
437
|
|
|
@@ -418,7 +453,7 @@
|
|
|
418
453
|
|
|
419
454
|
<dt class="tag-source">Source:</dt>
|
|
420
455
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
421
|
-
<a href="
|
|
456
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3811">line 3811</a>
|
|
422
457
|
</li></ul></dd>
|
|
423
458
|
|
|
424
459
|
|
|
@@ -430,40 +465,38 @@
|
|
|
430
465
|
</dl>
|
|
431
466
|
|
|
432
467
|
|
|
433
|
-
|
|
434
468
|
|
|
435
|
-
|
|
436
|
-
|
|
469
|
+
|
|
470
|
+
|
|
437
471
|
|
|
438
472
|
|
|
439
473
|
|
|
440
|
-
<
|
|
441
|
-
<h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
|
|
474
|
+
<h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
|
|
442
475
|
|
|
443
|
-
|
|
444
|
-
</dt>
|
|
445
|
-
<dd>
|
|
446
|
-
|
|
447
|
-
<div class="description">
|
|
448
|
-
<p>Object name in namespace.</p>
|
|
449
|
-
</div>
|
|
450
|
-
|
|
451
476
|
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
<div class="description">
|
|
480
|
+
<p>Object name in namespace.</p>
|
|
481
|
+
</div>
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
<h5>Type:</h5>
|
|
486
|
+
<ul>
|
|
487
|
+
<li>
|
|
488
|
+
|
|
457
489
|
<span class="param-type">string</span>
|
|
458
490
|
|
|
459
491
|
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
492
|
+
</li>
|
|
493
|
+
</ul>
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
|
|
463
498
|
|
|
464
|
-
|
|
465
499
|
<dl class="details">
|
|
466
|
-
|
|
467
500
|
|
|
468
501
|
|
|
469
502
|
|
|
@@ -473,7 +506,15 @@
|
|
|
473
506
|
<dt class="inherited-from">Inherited From:</dt>
|
|
474
507
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
475
508
|
<a href="ProtoBuf.Reflect.T.html#name">ProtoBuf.Reflect.T#name</a>
|
|
476
|
-
</li></dd>
|
|
509
|
+
</li></ul></dd>
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
|
|
477
518
|
|
|
478
519
|
|
|
479
520
|
|
|
@@ -489,7 +530,7 @@
|
|
|
489
530
|
|
|
490
531
|
<dt class="tag-source">Source:</dt>
|
|
491
532
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
492
|
-
<a href="
|
|
533
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1431">line 1431</a>
|
|
493
534
|
</li></ul></dd>
|
|
494
535
|
|
|
495
536
|
|
|
@@ -501,40 +542,38 @@
|
|
|
501
542
|
</dl>
|
|
502
543
|
|
|
503
544
|
|
|
504
|
-
|
|
505
545
|
|
|
506
|
-
|
|
507
|
-
|
|
546
|
+
|
|
547
|
+
|
|
508
548
|
|
|
509
549
|
|
|
510
550
|
|
|
511
|
-
<
|
|
512
|
-
<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>
|
|
551
|
+
<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>
|
|
513
552
|
|
|
514
|
-
|
|
515
|
-
</dt>
|
|
516
|
-
<dd>
|
|
517
|
-
|
|
518
|
-
<div class="description">
|
|
519
|
-
<p>Parent object.</p>
|
|
520
|
-
</div>
|
|
521
|
-
|
|
522
553
|
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
<div class="description">
|
|
557
|
+
<p>Parent object.</p>
|
|
558
|
+
</div>
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
<h5>Type:</h5>
|
|
563
|
+
<ul>
|
|
564
|
+
<li>
|
|
565
|
+
|
|
528
566
|
<span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
|
|
529
567
|
|
|
530
568
|
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
569
|
+
</li>
|
|
570
|
+
</ul>
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
|
|
534
575
|
|
|
535
|
-
|
|
536
576
|
<dl class="details">
|
|
537
|
-
|
|
538
577
|
|
|
539
578
|
|
|
540
579
|
|
|
@@ -544,7 +583,15 @@
|
|
|
544
583
|
<dt class="inherited-from">Inherited From:</dt>
|
|
545
584
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
546
585
|
<a href="ProtoBuf.Reflect.T.html#parent">ProtoBuf.Reflect.T#parent</a>
|
|
547
|
-
</li></dd>
|
|
586
|
+
</li></ul></dd>
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
|
|
548
595
|
|
|
549
596
|
|
|
550
597
|
|
|
@@ -560,7 +607,7 @@
|
|
|
560
607
|
|
|
561
608
|
<dt class="tag-source">Source:</dt>
|
|
562
609
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
563
|
-
<a href="
|
|
610
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1424">line 1424</a>
|
|
564
611
|
</li></ul></dd>
|
|
565
612
|
|
|
566
613
|
|
|
@@ -572,41 +619,44 @@
|
|
|
572
619
|
</dl>
|
|
573
620
|
|
|
574
621
|
|
|
575
|
-
|
|
576
622
|
|
|
577
|
-
|
|
578
|
-
</dd>
|
|
579
623
|
|
|
580
|
-
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
|
|
581
627
|
|
|
582
628
|
|
|
583
629
|
|
|
584
630
|
<h3 class="subsection-title">Methods</h3>
|
|
585
631
|
|
|
586
|
-
|
|
632
|
+
|
|
587
633
|
|
|
588
|
-
<dt>
|
|
589
|
-
<h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
|
|
590
634
|
|
|
591
635
|
|
|
592
|
-
</dt>
|
|
593
|
-
<dd>
|
|
594
636
|
|
|
595
|
-
|
|
596
|
-
<div class="description">
|
|
597
|
-
<p>Builds this type.</p>
|
|
598
|
-
</div>
|
|
599
|
-
|
|
637
|
+
<h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">()</span><span class="type-signature"></span></h4>
|
|
600
638
|
|
|
601
639
|
|
|
602
640
|
|
|
603
|
-
|
|
604
641
|
|
|
605
|
-
|
|
606
642
|
|
|
607
|
-
|
|
643
|
+
<div class="description">
|
|
644
|
+
<p>Builds this type.</p>
|
|
645
|
+
</div>
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
|
|
654
|
+
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
|
|
608
659
|
<dl class="details">
|
|
609
|
-
|
|
610
660
|
|
|
611
661
|
|
|
612
662
|
|
|
@@ -616,7 +666,15 @@
|
|
|
616
666
|
<dt class="inherited-from">Inherited From:</dt>
|
|
617
667
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
618
668
|
<a href="ProtoBuf.Reflect.T.html#build">ProtoBuf.Reflect.T#build</a>
|
|
619
|
-
</li></dd>
|
|
669
|
+
</li></ul></dd>
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
|
|
620
678
|
|
|
621
679
|
|
|
622
680
|
|
|
@@ -632,7 +690,7 @@
|
|
|
632
690
|
|
|
633
691
|
<dt class="tag-source">Source:</dt>
|
|
634
692
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
635
|
-
<a href="
|
|
693
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1479">line 1479</a>
|
|
636
694
|
</li></ul></dd>
|
|
637
695
|
|
|
638
696
|
|
|
@@ -644,25 +702,26 @@
|
|
|
644
702
|
</dl>
|
|
645
703
|
|
|
646
704
|
|
|
647
|
-
|
|
648
705
|
|
|
649
|
-
|
|
650
706
|
|
|
651
|
-
|
|
652
707
|
|
|
653
|
-
|
|
654
708
|
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
709
|
+
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
<h5>Throws:</h5>
|
|
715
|
+
|
|
716
|
+
|
|
659
717
|
|
|
660
718
|
<dl>
|
|
661
719
|
<dt>
|
|
662
720
|
<div class="param-desc">
|
|
663
|
-
If this type cannot be built directly
|
|
721
|
+
<p>If this type cannot be built directly</p>
|
|
664
722
|
</div>
|
|
665
723
|
</dt>
|
|
724
|
+
<dd></dd>
|
|
666
725
|
<dt>
|
|
667
726
|
<dl>
|
|
668
727
|
<dt>
|
|
@@ -676,40 +735,44 @@
|
|
|
676
735
|
</dd>
|
|
677
736
|
</dl>
|
|
678
737
|
</dt>
|
|
738
|
+
<dd></dd>
|
|
679
739
|
</dl>
|
|
680
740
|
|
|
681
741
|
|
|
682
|
-
|
|
683
|
-
|
|
684
742
|
|
|
685
743
|
|
|
686
|
-
|
|
687
|
-
|
|
744
|
+
|
|
745
|
+
|
|
746
|
+
|
|
688
747
|
|
|
689
748
|
|
|
690
749
|
|
|
691
|
-
<dt>
|
|
692
|
-
<h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
693
750
|
|
|
694
751
|
|
|
695
|
-
</dt>
|
|
696
|
-
<dd>
|
|
697
752
|
|
|
698
|
-
|
|
699
|
-
<div class="description">
|
|
700
|
-
<p>Returns the fully qualified name of this object.</p>
|
|
701
|
-
</div>
|
|
702
|
-
|
|
753
|
+
<h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
703
754
|
|
|
704
755
|
|
|
705
756
|
|
|
706
|
-
|
|
707
757
|
|
|
708
|
-
|
|
709
758
|
|
|
710
|
-
|
|
759
|
+
<div class="description">
|
|
760
|
+
<p>Returns the fully qualified name of this object.</p>
|
|
761
|
+
</div>
|
|
762
|
+
|
|
763
|
+
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
|
|
772
|
+
|
|
773
|
+
|
|
774
|
+
|
|
711
775
|
<dl class="details">
|
|
712
|
-
|
|
713
776
|
|
|
714
777
|
|
|
715
778
|
|
|
@@ -719,7 +782,15 @@
|
|
|
719
782
|
<dt class="inherited-from">Inherited From:</dt>
|
|
720
783
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
721
784
|
<a href="ProtoBuf.Reflect.T.html#fqn">ProtoBuf.Reflect.T#fqn</a>
|
|
722
|
-
</li></dd>
|
|
785
|
+
</li></ul></dd>
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
|
|
723
794
|
|
|
724
795
|
|
|
725
796
|
|
|
@@ -735,7 +806,7 @@
|
|
|
735
806
|
|
|
736
807
|
<dt class="tag-source">Source:</dt>
|
|
737
808
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
738
|
-
<a href="
|
|
809
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1452">line 1452</a>
|
|
739
810
|
</li></ul></dd>
|
|
740
811
|
|
|
741
812
|
|
|
@@ -747,20 +818,20 @@
|
|
|
747
818
|
</dl>
|
|
748
819
|
|
|
749
820
|
|
|
750
|
-
|
|
751
821
|
|
|
752
|
-
|
|
753
822
|
|
|
754
|
-
|
|
755
823
|
|
|
756
|
-
|
|
757
824
|
|
|
758
|
-
|
|
759
825
|
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
<h5>Returns:</h5>
|
|
833
|
+
|
|
834
|
+
|
|
764
835
|
<div class="param-desc">
|
|
765
836
|
<p>Fully qualified name as of ".PATH.TO.THIS"</p>
|
|
766
837
|
</div>
|
|
@@ -779,33 +850,35 @@
|
|
|
779
850
|
</dd>
|
|
780
851
|
</dl>
|
|
781
852
|
|
|
782
|
-
|
|
783
|
-
|
|
784
853
|
|
|
785
|
-
|
|
854
|
+
|
|
855
|
+
|
|
786
856
|
|
|
787
857
|
|
|
788
858
|
|
|
789
|
-
<dt>
|
|
790
|
-
<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>
|
|
791
859
|
|
|
792
860
|
|
|
793
|
-
</dt>
|
|
794
|
-
<dd>
|
|
795
861
|
|
|
796
|
-
|
|
797
|
-
<div class="description">
|
|
798
|
-
<p>Returns a string representation of this Reflect object (its fully qualified name).</p>
|
|
799
|
-
</div>
|
|
800
|
-
|
|
862
|
+
<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>
|
|
801
863
|
|
|
802
864
|
|
|
803
865
|
|
|
804
|
-
|
|
805
866
|
|
|
867
|
+
|
|
868
|
+
<div class="description">
|
|
869
|
+
<p>Returns a string representation of this Reflect object (its fully qualified name).</p>
|
|
870
|
+
</div>
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
|
|
876
|
+
|
|
877
|
+
|
|
878
|
+
|
|
879
|
+
|
|
880
|
+
<h5>Parameters:</h5>
|
|
806
881
|
|
|
807
|
-
<h5>Parameters:</h5>
|
|
808
|
-
|
|
809
882
|
|
|
810
883
|
<table class="params">
|
|
811
884
|
<thead>
|
|
@@ -863,11 +936,13 @@
|
|
|
863
936
|
|
|
864
937
|
</tbody>
|
|
865
938
|
</table>
|
|
866
|
-
|
|
867
939
|
|
|
868
|
-
|
|
940
|
+
|
|
941
|
+
|
|
942
|
+
|
|
943
|
+
|
|
944
|
+
|
|
869
945
|
<dl class="details">
|
|
870
|
-
|
|
871
946
|
|
|
872
947
|
|
|
873
948
|
|
|
@@ -877,7 +952,15 @@
|
|
|
877
952
|
<dt class="inherited-from">Inherited From:</dt>
|
|
878
953
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
879
954
|
<a href="ProtoBuf.Reflect.T.html#toString">ProtoBuf.Reflect.T#toString</a>
|
|
880
|
-
</li></dd>
|
|
955
|
+
</li></ul></dd>
|
|
956
|
+
|
|
957
|
+
|
|
958
|
+
|
|
959
|
+
|
|
960
|
+
|
|
961
|
+
|
|
962
|
+
|
|
963
|
+
|
|
881
964
|
|
|
882
965
|
|
|
883
966
|
|
|
@@ -893,7 +976,7 @@
|
|
|
893
976
|
|
|
894
977
|
<dt class="tag-source">Source:</dt>
|
|
895
978
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
896
|
-
<a href="
|
|
979
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1470">line 1470</a>
|
|
897
980
|
</li></ul></dd>
|
|
898
981
|
|
|
899
982
|
|
|
@@ -905,32 +988,31 @@
|
|
|
905
988
|
</dl>
|
|
906
989
|
|
|
907
990
|
|
|
908
|
-
|
|
909
991
|
|
|
910
|
-
|
|
911
992
|
|
|
912
|
-
|
|
913
993
|
|
|
914
|
-
|
|
915
994
|
|
|
916
|
-
|
|
917
995
|
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
996
|
+
|
|
997
|
+
|
|
998
|
+
|
|
999
|
+
|
|
1000
|
+
|
|
1001
|
+
|
|
1002
|
+
<h5>Returns:</h5>
|
|
1003
|
+
|
|
1004
|
+
|
|
922
1005
|
<div class="param-desc">
|
|
923
1006
|
<p>String representation</p>
|
|
924
1007
|
</div>
|
|
925
1008
|
|
|
926
1009
|
|
|
927
1010
|
|
|
928
|
-
|
|
929
|
-
|
|
930
1011
|
|
|
931
|
-
</dd>
|
|
932
1012
|
|
|
933
|
-
|
|
1013
|
+
|
|
1014
|
+
|
|
1015
|
+
|
|
934
1016
|
|
|
935
1017
|
|
|
936
1018
|
|
|
@@ -946,13 +1028,13 @@
|
|
|
946
1028
|
</div>
|
|
947
1029
|
|
|
948
1030
|
<nav>
|
|
949
|
-
<h2><a href="index.html">
|
|
1031
|
+
<h2><a href="index.html">Home</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.Map.html">Map</a></li><li><a href="ProtoBuf.Reflect.Element.html">Element</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>
|
|
950
1032
|
</nav>
|
|
951
1033
|
|
|
952
|
-
<br
|
|
1034
|
+
<br class="clear">
|
|
953
1035
|
|
|
954
1036
|
<footer>
|
|
955
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.
|
|
1037
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.3</a> on Fri Jan 27 2017 17:03:55 GMT+0100 (Mitteleuropäische Zeit)
|
|
956
1038
|
</footer>
|
|
957
1039
|
|
|
958
1040
|
<script> prettyPrint(); </script>
|