In this first stage, we rename the directory from protos_generator to hpb_generator, updating all necessary BUILD files and #includes. PiperOrigin-RevId: 642600953pull/17047/head
parent
fe6963970c
commit
968087eb61
37 changed files with 79 additions and 61 deletions
@ -0,0 +1,18 @@ |
||||
edition = "2023"; |
||||
|
||||
package editions_upb_test; |
||||
|
||||
option features.enum_type = CLOSED; |
||||
option features.field_presence = IMPLICIT; |
||||
|
||||
message TestFeaturesMessage { |
||||
int32 implicit = 1; |
||||
int32 explicit = 2 [features.field_presence = EXPLICIT]; |
||||
int32 legacy_required = 3 [features.field_presence = LEGACY_REQUIRED]; |
||||
|
||||
repeated int32 packed = 50; |
||||
repeated int32 expanded = 51 [features.repeated_field_encoding = EXPANDED]; |
||||
|
||||
TestFeaturesMessage delimited = 100 [features.message_encoding = DELIMITED]; |
||||
TestFeaturesMessage length_prefixed = 101; |
||||
} |
Loading…
Reference in new issue