8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7133ad commit ac96d82Copy full SHA for ac96d82
tests/inputs/nested/nested.json
@@ -2,5 +2,6 @@
2
"nested": {
3
"count": 150
4
},
5
- "sibling": {}
+ "sibling": {},
6
+ "msg": "THIS"
7
}
tests/inputs/nested/nested.proto
@@ -6,13 +6,19 @@ package nested;
message Test {
// This is the nested type.
8
message Nested {
9
- // Stores a simple counter.
10
- int32 count = 1;
+ // Stores a simple counter.
+ int32 count = 1;
11
+ }
12
+ // This is the nested enum.
13
+ enum Msg {
14
+ NONE = 0;
15
+ THIS = 1;
16
17
18
Nested nested = 1;
19
Sibling sibling = 2;
20
Sibling sibling2 = 3;
21
+ Msg msg = 4;
22
23
24
message Sibling {
0 commit comments