Permalink
Show file tree
Hide file tree
65 changes: 54 additions & 11 deletions
65
java/core/src/main/java/com/google/protobuf/MessageReflection.java
23 changes: 20 additions & 3 deletions
23
ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Sync from Piper @mkruskal/footmitten
PROTOBUF_SYNC_PIPER
- Loading branch information
Showing
11 changed files
with
110 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -73,6 +73,7 @@ enum TestEnum { | |
| A = 1; | ||
| B = 2; | ||
| C = 3; | ||
| v0 = 4; | ||
| } | ||
|
|
||
| message TestEmbeddedMessageParent { | ||
|
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -69,6 +69,7 @@ enum TestEnum { | |
| A = 1; | ||
| B = 2; | ||
| C = 3; | ||
| v0 = 4; | ||
| } | ||
|
|
||
| enum TestNonZeroEnum { | ||
|
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -67,6 +67,8 @@ enum TestEnum { | |
| A = 1; | ||
| B = 2; | ||
| C = 3; | ||
|
|
||
| v0 = 4; | ||
| } | ||
|
|
||
| message testLowercaseNested { | ||
|
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -68,6 +68,8 @@ enum TestEnum { | |
| A = 1; | ||
| B = 2; | ||
| C = 3; | ||
|
|
||
| v0 = 4; | ||
| } | ||
|
|
||
| message TestUnknown { | ||
|
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -697,6 +697,7 @@ def fill_test_msg(test_msg) | |
| value :A, 1 | ||
| value :B, 2 | ||
| value :C, 3 | ||
| value :v0, 4 | ||
| end | ||
| end | ||
|
|
||
|
|
||