cmd/protoc-gen-go: perform some code cleanup
Minor changes:
* Use x as the receiver since "e" and "m" are meaningless in the presence
of user-defined enum and message names.
* Consistently keep enum methods together, rather awkwardly split apart
by the value maps.
Change-Id: I68e5666efb56ac7a4d062fb223b9f826dc72aba9
Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/170357
Reviewed-by: Herbie Ong <herbie@google.com>
diff --git a/internal/testprotos/conformance/conformance.pb.go b/internal/testprotos/conformance/conformance.pb.go
index 13274d8..593c909 100644
--- a/internal/testprotos/conformance/conformance.pb.go
+++ b/internal/testprotos/conformance/conformance.pb.go
@@ -22,13 +22,6 @@
WireFormat_TEXT_FORMAT WireFormat = 4
)
-func (e WireFormat) Type() protoreflect.EnumType {
- return xxx_File_conformance_conformance_proto_enumTypes[0]
-}
-func (e WireFormat) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(e)
-}
-
// Deprecated: Use WireFormat.Type.Values instead.
var WireFormat_name = map[int32]string{
0: "UNSPECIFIED",
@@ -51,6 +44,14 @@
return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x))
}
+func (WireFormat) Type() protoreflect.EnumType {
+ return xxx_File_conformance_conformance_proto_enumTypes[0]
+}
+
+func (x WireFormat) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
// Deprecated: Use WireFormat.Type instead.
func (WireFormat) EnumDescriptor() ([]byte, []int) {
return xxx_File_conformance_conformance_proto_rawDescGZIP(), []int{0}
@@ -75,13 +76,6 @@
TestCategory_TEXT_FORMAT_TEST TestCategory = 5
)
-func (e TestCategory) Type() protoreflect.EnumType {
- return xxx_File_conformance_conformance_proto_enumTypes[1]
-}
-func (e TestCategory) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(e)
-}
-
// Deprecated: Use TestCategory.Type.Values instead.
var TestCategory_name = map[int32]string{
0: "UNSPECIFIED_TEST",
@@ -106,6 +100,14 @@
return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x))
}
+func (TestCategory) Type() protoreflect.EnumType {
+ return xxx_File_conformance_conformance_proto_enumTypes[1]
+}
+
+func (x TestCategory) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
// Deprecated: Use TestCategory.Type instead.
func (TestCategory) EnumDescriptor() ([]byte, []int) {
return xxx_File_conformance_conformance_proto_rawDescGZIP(), []int{1}
@@ -121,21 +123,28 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *FailureSet) ProtoReflect() protoreflect.Message {
- return xxx_File_conformance_conformance_proto_messageTypes[0].MessageOf(m)
+func (x *FailureSet) Reset() {
+ *x = FailureSet{}
}
-func (m *FailureSet) Reset() { *m = FailureSet{} }
-func (m *FailureSet) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*FailureSet) ProtoMessage() {}
+
+func (x *FailureSet) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*FailureSet) ProtoMessage() {}
+
+func (x *FailureSet) ProtoReflect() protoreflect.Message {
+ return xxx_File_conformance_conformance_proto_messageTypes[0].MessageOf(x)
+}
// Deprecated: Use FailureSet.ProtoReflect.Type instead.
func (*FailureSet) Descriptor() ([]byte, []int) {
return xxx_File_conformance_conformance_proto_rawDescGZIP(), []int{0}
}
-func (m *FailureSet) GetFailure() []string {
- if m != nil {
- return m.Failure
+func (x *FailureSet) GetFailure() []string {
+ if x != nil {
+ return x.Failure
}
return nil
}
@@ -178,12 +187,19 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *ConformanceRequest) ProtoReflect() protoreflect.Message {
- return xxx_File_conformance_conformance_proto_messageTypes[1].MessageOf(m)
+func (x *ConformanceRequest) Reset() {
+ *x = ConformanceRequest{}
}
-func (m *ConformanceRequest) Reset() { *m = ConformanceRequest{} }
-func (m *ConformanceRequest) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*ConformanceRequest) ProtoMessage() {}
+
+func (x *ConformanceRequest) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ConformanceRequest) ProtoMessage() {}
+
+func (x *ConformanceRequest) ProtoReflect() protoreflect.Message {
+ return xxx_File_conformance_conformance_proto_messageTypes[1].MessageOf(x)
+}
// Deprecated: Use ConformanceRequest.ProtoReflect.Type instead.
func (*ConformanceRequest) Descriptor() ([]byte, []int) {
@@ -225,58 +241,58 @@
return nil
}
-func (m *ConformanceRequest) GetProtobufPayload() []byte {
- if x, ok := m.GetPayload().(*ConformanceRequest_ProtobufPayload); ok {
+func (x *ConformanceRequest) GetProtobufPayload() []byte {
+ if x, ok := x.GetPayload().(*ConformanceRequest_ProtobufPayload); ok {
return x.ProtobufPayload
}
return nil
}
-func (m *ConformanceRequest) GetJsonPayload() string {
- if x, ok := m.GetPayload().(*ConformanceRequest_JsonPayload); ok {
+func (x *ConformanceRequest) GetJsonPayload() string {
+ if x, ok := x.GetPayload().(*ConformanceRequest_JsonPayload); ok {
return x.JsonPayload
}
return ""
}
-func (m *ConformanceRequest) GetJspbPayload() string {
- if x, ok := m.GetPayload().(*ConformanceRequest_JspbPayload); ok {
+func (x *ConformanceRequest) GetJspbPayload() string {
+ if x, ok := x.GetPayload().(*ConformanceRequest_JspbPayload); ok {
return x.JspbPayload
}
return ""
}
-func (m *ConformanceRequest) GetTextPayload() string {
- if x, ok := m.GetPayload().(*ConformanceRequest_TextPayload); ok {
+func (x *ConformanceRequest) GetTextPayload() string {
+ if x, ok := x.GetPayload().(*ConformanceRequest_TextPayload); ok {
return x.TextPayload
}
return ""
}
-func (m *ConformanceRequest) GetRequestedOutputFormat() WireFormat {
- if m != nil {
- return m.RequestedOutputFormat
+func (x *ConformanceRequest) GetRequestedOutputFormat() WireFormat {
+ if x != nil {
+ return x.RequestedOutputFormat
}
return WireFormat_UNSPECIFIED
}
-func (m *ConformanceRequest) GetMessageType() string {
- if m != nil {
- return m.MessageType
+func (x *ConformanceRequest) GetMessageType() string {
+ if x != nil {
+ return x.MessageType
}
return ""
}
-func (m *ConformanceRequest) GetTestCategory() TestCategory {
- if m != nil {
- return m.TestCategory
+func (x *ConformanceRequest) GetTestCategory() TestCategory {
+ if x != nil {
+ return x.TestCategory
}
return TestCategory_UNSPECIFIED_TEST
}
-func (m *ConformanceRequest) GetJspbEncodingOptions() *JspbEncodingConfig {
- if m != nil {
- return m.JspbEncodingOptions
+func (x *ConformanceRequest) GetJspbEncodingOptions() *JspbEncodingConfig {
+ if x != nil {
+ return x.JspbEncodingOptions
}
return nil
}
@@ -330,12 +346,19 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *ConformanceResponse) ProtoReflect() protoreflect.Message {
- return xxx_File_conformance_conformance_proto_messageTypes[2].MessageOf(m)
+func (x *ConformanceResponse) Reset() {
+ *x = ConformanceResponse{}
}
-func (m *ConformanceResponse) Reset() { *m = ConformanceResponse{} }
-func (m *ConformanceResponse) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*ConformanceResponse) ProtoMessage() {}
+
+func (x *ConformanceResponse) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ConformanceResponse) ProtoMessage() {}
+
+func (x *ConformanceResponse) ProtoReflect() protoreflect.Message {
+ return xxx_File_conformance_conformance_proto_messageTypes[2].MessageOf(x)
+}
// Deprecated: Use ConformanceResponse.ProtoReflect.Type instead.
func (*ConformanceResponse) Descriptor() ([]byte, []int) {
@@ -401,57 +424,57 @@
return nil
}
-func (m *ConformanceResponse) GetParseError() string {
- if x, ok := m.GetResult().(*ConformanceResponse_ParseError); ok {
+func (x *ConformanceResponse) GetParseError() string {
+ if x, ok := x.GetResult().(*ConformanceResponse_ParseError); ok {
return x.ParseError
}
return ""
}
-func (m *ConformanceResponse) GetSerializeError() string {
- if x, ok := m.GetResult().(*ConformanceResponse_SerializeError); ok {
+func (x *ConformanceResponse) GetSerializeError() string {
+ if x, ok := x.GetResult().(*ConformanceResponse_SerializeError); ok {
return x.SerializeError
}
return ""
}
-func (m *ConformanceResponse) GetRuntimeError() string {
- if x, ok := m.GetResult().(*ConformanceResponse_RuntimeError); ok {
+func (x *ConformanceResponse) GetRuntimeError() string {
+ if x, ok := x.GetResult().(*ConformanceResponse_RuntimeError); ok {
return x.RuntimeError
}
return ""
}
-func (m *ConformanceResponse) GetProtobufPayload() []byte {
- if x, ok := m.GetResult().(*ConformanceResponse_ProtobufPayload); ok {
+func (x *ConformanceResponse) GetProtobufPayload() []byte {
+ if x, ok := x.GetResult().(*ConformanceResponse_ProtobufPayload); ok {
return x.ProtobufPayload
}
return nil
}
-func (m *ConformanceResponse) GetJsonPayload() string {
- if x, ok := m.GetResult().(*ConformanceResponse_JsonPayload); ok {
+func (x *ConformanceResponse) GetJsonPayload() string {
+ if x, ok := x.GetResult().(*ConformanceResponse_JsonPayload); ok {
return x.JsonPayload
}
return ""
}
-func (m *ConformanceResponse) GetSkipped() string {
- if x, ok := m.GetResult().(*ConformanceResponse_Skipped); ok {
+func (x *ConformanceResponse) GetSkipped() string {
+ if x, ok := x.GetResult().(*ConformanceResponse_Skipped); ok {
return x.Skipped
}
return ""
}
-func (m *ConformanceResponse) GetJspbPayload() string {
- if x, ok := m.GetResult().(*ConformanceResponse_JspbPayload); ok {
+func (x *ConformanceResponse) GetJspbPayload() string {
+ if x, ok := x.GetResult().(*ConformanceResponse_JspbPayload); ok {
return x.JspbPayload
}
return ""
}
-func (m *ConformanceResponse) GetTextPayload() string {
- if x, ok := m.GetResult().(*ConformanceResponse_TextPayload); ok {
+func (x *ConformanceResponse) GetTextPayload() string {
+ if x, ok := x.GetResult().(*ConformanceResponse_TextPayload); ok {
return x.TextPayload
}
return ""
@@ -480,21 +503,28 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *JspbEncodingConfig) ProtoReflect() protoreflect.Message {
- return xxx_File_conformance_conformance_proto_messageTypes[3].MessageOf(m)
+func (x *JspbEncodingConfig) Reset() {
+ *x = JspbEncodingConfig{}
}
-func (m *JspbEncodingConfig) Reset() { *m = JspbEncodingConfig{} }
-func (m *JspbEncodingConfig) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*JspbEncodingConfig) ProtoMessage() {}
+
+func (x *JspbEncodingConfig) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*JspbEncodingConfig) ProtoMessage() {}
+
+func (x *JspbEncodingConfig) ProtoReflect() protoreflect.Message {
+ return xxx_File_conformance_conformance_proto_messageTypes[3].MessageOf(x)
+}
// Deprecated: Use JspbEncodingConfig.ProtoReflect.Type instead.
func (*JspbEncodingConfig) Descriptor() ([]byte, []int) {
return xxx_File_conformance_conformance_proto_rawDescGZIP(), []int{3}
}
-func (m *JspbEncodingConfig) GetUseJspbArrayAnyFormat() bool {
- if m != nil {
- return m.UseJspbArrayAnyFormat
+func (x *JspbEncodingConfig) GetUseJspbArrayAnyFormat() bool {
+ if x != nil {
+ return x.UseJspbArrayAnyFormat
}
return false
}
diff --git a/internal/testprotos/legacy/legacy.pb.go b/internal/testprotos/legacy/legacy.pb.go
index 9362d40..d394dc2 100644
--- a/internal/testprotos/legacy/legacy.pb.go
+++ b/internal/testprotos/legacy/legacy.pb.go
@@ -42,98 +42,105 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *Legacy) ProtoReflect() protoreflect.Message {
- return xxx_File_legacy_legacy_proto_messageTypes[0].MessageOf(m)
+func (x *Legacy) Reset() {
+ *x = Legacy{}
}
-func (m *Legacy) Reset() { *m = Legacy{} }
-func (m *Legacy) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*Legacy) ProtoMessage() {}
+
+func (x *Legacy) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*Legacy) ProtoMessage() {}
+
+func (x *Legacy) ProtoReflect() protoreflect.Message {
+ return xxx_File_legacy_legacy_proto_messageTypes[0].MessageOf(x)
+}
// Deprecated: Use Legacy.ProtoReflect.Type instead.
func (*Legacy) Descriptor() ([]byte, []int) {
return xxx_File_legacy_legacy_proto_rawDescGZIP(), []int{0}
}
-func (m *Legacy) GetF1() *proto2_v0_0.Message {
- if m != nil {
- return m.F1
+func (x *Legacy) GetF1() *proto2_v0_0.Message {
+ if x != nil {
+ return x.F1
}
return nil
}
-func (m *Legacy) GetF2() *proto3_v0_0.Message {
- if m != nil {
- return m.F2
+func (x *Legacy) GetF2() *proto3_v0_0.Message {
+ if x != nil {
+ return x.F2
}
return nil
}
-func (m *Legacy) GetF3() *proto2_v0_01.Message {
- if m != nil {
- return m.F3
+func (x *Legacy) GetF3() *proto2_v0_01.Message {
+ if x != nil {
+ return x.F3
}
return nil
}
-func (m *Legacy) GetF4() *proto3_v0_01.Message {
- if m != nil {
- return m.F4
+func (x *Legacy) GetF4() *proto3_v0_01.Message {
+ if x != nil {
+ return x.F4
}
return nil
}
-func (m *Legacy) GetF5() *proto2_v1_0.Message {
- if m != nil {
- return m.F5
+func (x *Legacy) GetF5() *proto2_v1_0.Message {
+ if x != nil {
+ return x.F5
}
return nil
}
-func (m *Legacy) GetF6() *proto3_v1_0.Message {
- if m != nil {
- return m.F6
+func (x *Legacy) GetF6() *proto3_v1_0.Message {
+ if x != nil {
+ return x.F6
}
return nil
}
-func (m *Legacy) GetF7() *proto2_v1_1.Message {
- if m != nil {
- return m.F7
+func (x *Legacy) GetF7() *proto2_v1_1.Message {
+ if x != nil {
+ return x.F7
}
return nil
}
-func (m *Legacy) GetF8() *proto3_v1_1.Message {
- if m != nil {
- return m.F8
+func (x *Legacy) GetF8() *proto3_v1_1.Message {
+ if x != nil {
+ return x.F8
}
return nil
}
-func (m *Legacy) GetF9() *proto2_v1_2.Message {
- if m != nil {
- return m.F9
+func (x *Legacy) GetF9() *proto2_v1_2.Message {
+ if x != nil {
+ return x.F9
}
return nil
}
-func (m *Legacy) GetF10() *proto3_v1_2.Message {
- if m != nil {
- return m.F10
+func (x *Legacy) GetF10() *proto3_v1_2.Message {
+ if x != nil {
+ return x.F10
}
return nil
}
-func (m *Legacy) GetF11() *proto2_v1_21.Message {
- if m != nil {
- return m.F11
+func (x *Legacy) GetF11() *proto2_v1_21.Message {
+ if x != nil {
+ return x.F11
}
return nil
}
-func (m *Legacy) GetF12() *proto3_v1_21.Message {
- if m != nil {
- return m.F12
+func (x *Legacy) GetF12() *proto3_v1_21.Message {
+ if x != nil {
+ return x.F12
}
return nil
}
diff --git a/internal/testprotos/test/test.pb.go b/internal/testprotos/test/test.pb.go
index 982abd3..c9f3fb6 100644
--- a/internal/testprotos/test/test.pb.go
+++ b/internal/testprotos/test/test.pb.go
@@ -21,13 +21,6 @@
ForeignEnum_FOREIGN_BAZ ForeignEnum = 6
)
-func (e ForeignEnum) Type() protoreflect.EnumType {
- return xxx_File_test_test_proto_enumTypes[0]
-}
-func (e ForeignEnum) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(e)
-}
-
// Deprecated: Use ForeignEnum.Type.Values instead.
var ForeignEnum_name = map[int32]string{
4: "FOREIGN_FOO",
@@ -50,6 +43,14 @@
return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x))
}
+func (ForeignEnum) Type() protoreflect.EnumType {
+ return xxx_File_test_test_proto_enumTypes[0]
+}
+
+func (x ForeignEnum) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
// Deprecated: Do not use.
func (x *ForeignEnum) UnmarshalJSON(b []byte) error {
num, err := protoimpl.X.UnmarshalJSONEnum(x.Type(), b)
@@ -71,13 +72,6 @@
TestReservedEnumFields_RESERVED_ENUM TestReservedEnumFields = 0
)
-func (e TestReservedEnumFields) Type() protoreflect.EnumType {
- return xxx_File_test_test_proto_enumTypes[1]
-}
-func (e TestReservedEnumFields) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(e)
-}
-
// Deprecated: Use TestReservedEnumFields.Type.Values instead.
var TestReservedEnumFields_name = map[int32]string{
0: "RESERVED_ENUM",
@@ -96,6 +90,14 @@
return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x))
}
+func (TestReservedEnumFields) Type() protoreflect.EnumType {
+ return xxx_File_test_test_proto_enumTypes[1]
+}
+
+func (x TestReservedEnumFields) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
// Deprecated: Do not use.
func (x *TestReservedEnumFields) UnmarshalJSON(b []byte) error {
num, err := protoimpl.X.UnmarshalJSONEnum(x.Type(), b)
@@ -120,13 +122,6 @@
TestAllTypes_NEG TestAllTypes_NestedEnum = -1
)
-func (e TestAllTypes_NestedEnum) Type() protoreflect.EnumType {
- return xxx_File_test_test_proto_enumTypes[2]
-}
-func (e TestAllTypes_NestedEnum) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(e)
-}
-
// Deprecated: Use TestAllTypes_NestedEnum.Type.Values instead.
var TestAllTypes_NestedEnum_name = map[int32]string{
0: "FOO",
@@ -151,6 +146,14 @@
return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x))
}
+func (TestAllTypes_NestedEnum) Type() protoreflect.EnumType {
+ return xxx_File_test_test_proto_enumTypes[2]
+}
+
+func (x TestAllTypes_NestedEnum) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
// Deprecated: Do not use.
func (x *TestAllTypes_NestedEnum) UnmarshalJSON(b []byte) error {
num, err := protoimpl.X.UnmarshalJSONEnum(x.Type(), b)
@@ -171,13 +174,6 @@
TestDeprecatedMessage_DEPRECATED TestDeprecatedMessage_DeprecatedEnum = 0 // Deprecated: Do not use.
)
-func (e TestDeprecatedMessage_DeprecatedEnum) Type() protoreflect.EnumType {
- return xxx_File_test_test_proto_enumTypes[3]
-}
-func (e TestDeprecatedMessage_DeprecatedEnum) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(e)
-}
-
// Deprecated: Use TestDeprecatedMessage_DeprecatedEnum.Type.Values instead.
var TestDeprecatedMessage_DeprecatedEnum_name = map[int32]string{
0: "DEPRECATED",
@@ -196,6 +192,14 @@
return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x))
}
+func (TestDeprecatedMessage_DeprecatedEnum) Type() protoreflect.EnumType {
+ return xxx_File_test_test_proto_enumTypes[3]
+}
+
+func (x TestDeprecatedMessage_DeprecatedEnum) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
// Deprecated: Do not use.
func (x *TestDeprecatedMessage_DeprecatedEnum) UnmarshalJSON(b []byte) error {
num, err := protoimpl.X.UnmarshalJSONEnum(x.Type(), b)
@@ -307,12 +311,19 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *TestAllTypes) ProtoReflect() protoreflect.Message {
- return xxx_File_test_test_proto_messageTypes[0].MessageOf(m)
+func (x *TestAllTypes) Reset() {
+ *x = TestAllTypes{}
}
-func (m *TestAllTypes) Reset() { *m = TestAllTypes{} }
-func (m *TestAllTypes) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*TestAllTypes) ProtoMessage() {}
+
+func (x *TestAllTypes) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*TestAllTypes) ProtoMessage() {}
+
+func (x *TestAllTypes) ProtoReflect() protoreflect.Message {
+ return xxx_File_test_test_proto_messageTypes[0].MessageOf(x)
+}
// Deprecated: Use TestAllTypes.ProtoReflect.Type instead.
func (*TestAllTypes) Descriptor() ([]byte, []int) {
@@ -339,548 +350,548 @@
const Default_TestAllTypes_DefaultNestedEnum TestAllTypes_NestedEnum = TestAllTypes_BAR
const Default_TestAllTypes_DefaultForeignEnum ForeignEnum = ForeignEnum_FOREIGN_BAR
-func (m *TestAllTypes) GetOptionalInt32() int32 {
- if m != nil && m.OptionalInt32 != nil {
- return *m.OptionalInt32
+func (x *TestAllTypes) GetOptionalInt32() int32 {
+ if x != nil && x.OptionalInt32 != nil {
+ return *x.OptionalInt32
}
return 0
}
-func (m *TestAllTypes) GetOptionalInt64() int64 {
- if m != nil && m.OptionalInt64 != nil {
- return *m.OptionalInt64
+func (x *TestAllTypes) GetOptionalInt64() int64 {
+ if x != nil && x.OptionalInt64 != nil {
+ return *x.OptionalInt64
}
return 0
}
-func (m *TestAllTypes) GetOptionalUint32() uint32 {
- if m != nil && m.OptionalUint32 != nil {
- return *m.OptionalUint32
+func (x *TestAllTypes) GetOptionalUint32() uint32 {
+ if x != nil && x.OptionalUint32 != nil {
+ return *x.OptionalUint32
}
return 0
}
-func (m *TestAllTypes) GetOptionalUint64() uint64 {
- if m != nil && m.OptionalUint64 != nil {
- return *m.OptionalUint64
+func (x *TestAllTypes) GetOptionalUint64() uint64 {
+ if x != nil && x.OptionalUint64 != nil {
+ return *x.OptionalUint64
}
return 0
}
-func (m *TestAllTypes) GetOptionalSint32() int32 {
- if m != nil && m.OptionalSint32 != nil {
- return *m.OptionalSint32
+func (x *TestAllTypes) GetOptionalSint32() int32 {
+ if x != nil && x.OptionalSint32 != nil {
+ return *x.OptionalSint32
}
return 0
}
-func (m *TestAllTypes) GetOptionalSint64() int64 {
- if m != nil && m.OptionalSint64 != nil {
- return *m.OptionalSint64
+func (x *TestAllTypes) GetOptionalSint64() int64 {
+ if x != nil && x.OptionalSint64 != nil {
+ return *x.OptionalSint64
}
return 0
}
-func (m *TestAllTypes) GetOptionalFixed32() uint32 {
- if m != nil && m.OptionalFixed32 != nil {
- return *m.OptionalFixed32
+func (x *TestAllTypes) GetOptionalFixed32() uint32 {
+ if x != nil && x.OptionalFixed32 != nil {
+ return *x.OptionalFixed32
}
return 0
}
-func (m *TestAllTypes) GetOptionalFixed64() uint64 {
- if m != nil && m.OptionalFixed64 != nil {
- return *m.OptionalFixed64
+func (x *TestAllTypes) GetOptionalFixed64() uint64 {
+ if x != nil && x.OptionalFixed64 != nil {
+ return *x.OptionalFixed64
}
return 0
}
-func (m *TestAllTypes) GetOptionalSfixed32() int32 {
- if m != nil && m.OptionalSfixed32 != nil {
- return *m.OptionalSfixed32
+func (x *TestAllTypes) GetOptionalSfixed32() int32 {
+ if x != nil && x.OptionalSfixed32 != nil {
+ return *x.OptionalSfixed32
}
return 0
}
-func (m *TestAllTypes) GetOptionalSfixed64() int64 {
- if m != nil && m.OptionalSfixed64 != nil {
- return *m.OptionalSfixed64
+func (x *TestAllTypes) GetOptionalSfixed64() int64 {
+ if x != nil && x.OptionalSfixed64 != nil {
+ return *x.OptionalSfixed64
}
return 0
}
-func (m *TestAllTypes) GetOptionalFloat() float32 {
- if m != nil && m.OptionalFloat != nil {
- return *m.OptionalFloat
+func (x *TestAllTypes) GetOptionalFloat() float32 {
+ if x != nil && x.OptionalFloat != nil {
+ return *x.OptionalFloat
}
return 0
}
-func (m *TestAllTypes) GetOptionalDouble() float64 {
- if m != nil && m.OptionalDouble != nil {
- return *m.OptionalDouble
+func (x *TestAllTypes) GetOptionalDouble() float64 {
+ if x != nil && x.OptionalDouble != nil {
+ return *x.OptionalDouble
}
return 0
}
-func (m *TestAllTypes) GetOptionalBool() bool {
- if m != nil && m.OptionalBool != nil {
- return *m.OptionalBool
+func (x *TestAllTypes) GetOptionalBool() bool {
+ if x != nil && x.OptionalBool != nil {
+ return *x.OptionalBool
}
return false
}
-func (m *TestAllTypes) GetOptionalString() string {
- if m != nil && m.OptionalString != nil {
- return *m.OptionalString
+func (x *TestAllTypes) GetOptionalString() string {
+ if x != nil && x.OptionalString != nil {
+ return *x.OptionalString
}
return ""
}
-func (m *TestAllTypes) GetOptionalBytes() []byte {
- if m != nil {
- return m.OptionalBytes
+func (x *TestAllTypes) GetOptionalBytes() []byte {
+ if x != nil {
+ return x.OptionalBytes
}
return nil
}
-func (m *TestAllTypes) GetOptionalgroup() *TestAllTypes_OptionalGroup {
- if m != nil {
- return m.Optionalgroup
+func (x *TestAllTypes) GetOptionalgroup() *TestAllTypes_OptionalGroup {
+ if x != nil {
+ return x.Optionalgroup
}
return nil
}
-func (m *TestAllTypes) GetOptionalNestedMessage() *TestAllTypes_NestedMessage {
- if m != nil {
- return m.OptionalNestedMessage
+func (x *TestAllTypes) GetOptionalNestedMessage() *TestAllTypes_NestedMessage {
+ if x != nil {
+ return x.OptionalNestedMessage
}
return nil
}
-func (m *TestAllTypes) GetOptionalForeignMessage() *ForeignMessage {
- if m != nil {
- return m.OptionalForeignMessage
+func (x *TestAllTypes) GetOptionalForeignMessage() *ForeignMessage {
+ if x != nil {
+ return x.OptionalForeignMessage
}
return nil
}
-func (m *TestAllTypes) GetOptionalImportMessage() *ImportMessage {
- if m != nil {
- return m.OptionalImportMessage
+func (x *TestAllTypes) GetOptionalImportMessage() *ImportMessage {
+ if x != nil {
+ return x.OptionalImportMessage
}
return nil
}
-func (m *TestAllTypes) GetOptionalNestedEnum() TestAllTypes_NestedEnum {
- if m != nil && m.OptionalNestedEnum != nil {
- return *m.OptionalNestedEnum
+func (x *TestAllTypes) GetOptionalNestedEnum() TestAllTypes_NestedEnum {
+ if x != nil && x.OptionalNestedEnum != nil {
+ return *x.OptionalNestedEnum
}
return TestAllTypes_FOO
}
-func (m *TestAllTypes) GetOptionalForeignEnum() ForeignEnum {
- if m != nil && m.OptionalForeignEnum != nil {
- return *m.OptionalForeignEnum
+func (x *TestAllTypes) GetOptionalForeignEnum() ForeignEnum {
+ if x != nil && x.OptionalForeignEnum != nil {
+ return *x.OptionalForeignEnum
}
return ForeignEnum_FOREIGN_FOO
}
-func (m *TestAllTypes) GetOptionalImportEnum() ImportEnum {
- if m != nil && m.OptionalImportEnum != nil {
- return *m.OptionalImportEnum
+func (x *TestAllTypes) GetOptionalImportEnum() ImportEnum {
+ if x != nil && x.OptionalImportEnum != nil {
+ return *x.OptionalImportEnum
}
return ImportEnum_IMPORT_ZERO
}
-func (m *TestAllTypes) GetRepeatedInt32() []int32 {
- if m != nil {
- return m.RepeatedInt32
+func (x *TestAllTypes) GetRepeatedInt32() []int32 {
+ if x != nil {
+ return x.RepeatedInt32
}
return nil
}
-func (m *TestAllTypes) GetRepeatedInt64() []int64 {
- if m != nil {
- return m.RepeatedInt64
+func (x *TestAllTypes) GetRepeatedInt64() []int64 {
+ if x != nil {
+ return x.RepeatedInt64
}
return nil
}
-func (m *TestAllTypes) GetRepeatedUint32() []uint32 {
- if m != nil {
- return m.RepeatedUint32
+func (x *TestAllTypes) GetRepeatedUint32() []uint32 {
+ if x != nil {
+ return x.RepeatedUint32
}
return nil
}
-func (m *TestAllTypes) GetRepeatedUint64() []uint64 {
- if m != nil {
- return m.RepeatedUint64
+func (x *TestAllTypes) GetRepeatedUint64() []uint64 {
+ if x != nil {
+ return x.RepeatedUint64
}
return nil
}
-func (m *TestAllTypes) GetRepeatedSint32() []int32 {
- if m != nil {
- return m.RepeatedSint32
+func (x *TestAllTypes) GetRepeatedSint32() []int32 {
+ if x != nil {
+ return x.RepeatedSint32
}
return nil
}
-func (m *TestAllTypes) GetRepeatedSint64() []int64 {
- if m != nil {
- return m.RepeatedSint64
+func (x *TestAllTypes) GetRepeatedSint64() []int64 {
+ if x != nil {
+ return x.RepeatedSint64
}
return nil
}
-func (m *TestAllTypes) GetRepeatedFixed32() []uint32 {
- if m != nil {
- return m.RepeatedFixed32
+func (x *TestAllTypes) GetRepeatedFixed32() []uint32 {
+ if x != nil {
+ return x.RepeatedFixed32
}
return nil
}
-func (m *TestAllTypes) GetRepeatedFixed64() []uint64 {
- if m != nil {
- return m.RepeatedFixed64
+func (x *TestAllTypes) GetRepeatedFixed64() []uint64 {
+ if x != nil {
+ return x.RepeatedFixed64
}
return nil
}
-func (m *TestAllTypes) GetRepeatedSfixed32() []int32 {
- if m != nil {
- return m.RepeatedSfixed32
+func (x *TestAllTypes) GetRepeatedSfixed32() []int32 {
+ if x != nil {
+ return x.RepeatedSfixed32
}
return nil
}
-func (m *TestAllTypes) GetRepeatedSfixed64() []int64 {
- if m != nil {
- return m.RepeatedSfixed64
+func (x *TestAllTypes) GetRepeatedSfixed64() []int64 {
+ if x != nil {
+ return x.RepeatedSfixed64
}
return nil
}
-func (m *TestAllTypes) GetRepeatedFloat() []float32 {
- if m != nil {
- return m.RepeatedFloat
+func (x *TestAllTypes) GetRepeatedFloat() []float32 {
+ if x != nil {
+ return x.RepeatedFloat
}
return nil
}
-func (m *TestAllTypes) GetRepeatedDouble() []float64 {
- if m != nil {
- return m.RepeatedDouble
+func (x *TestAllTypes) GetRepeatedDouble() []float64 {
+ if x != nil {
+ return x.RepeatedDouble
}
return nil
}
-func (m *TestAllTypes) GetRepeatedBool() []bool {
- if m != nil {
- return m.RepeatedBool
+func (x *TestAllTypes) GetRepeatedBool() []bool {
+ if x != nil {
+ return x.RepeatedBool
}
return nil
}
-func (m *TestAllTypes) GetRepeatedString() []string {
- if m != nil {
- return m.RepeatedString
+func (x *TestAllTypes) GetRepeatedString() []string {
+ if x != nil {
+ return x.RepeatedString
}
return nil
}
-func (m *TestAllTypes) GetRepeatedBytes() [][]byte {
- if m != nil {
- return m.RepeatedBytes
+func (x *TestAllTypes) GetRepeatedBytes() [][]byte {
+ if x != nil {
+ return x.RepeatedBytes
}
return nil
}
-func (m *TestAllTypes) GetRepeatedgroup() []*TestAllTypes_RepeatedGroup {
- if m != nil {
- return m.Repeatedgroup
+func (x *TestAllTypes) GetRepeatedgroup() []*TestAllTypes_RepeatedGroup {
+ if x != nil {
+ return x.Repeatedgroup
}
return nil
}
-func (m *TestAllTypes) GetRepeatedNestedMessage() []*TestAllTypes_NestedMessage {
- if m != nil {
- return m.RepeatedNestedMessage
+func (x *TestAllTypes) GetRepeatedNestedMessage() []*TestAllTypes_NestedMessage {
+ if x != nil {
+ return x.RepeatedNestedMessage
}
return nil
}
-func (m *TestAllTypes) GetRepeatedForeignMessage() []*ForeignMessage {
- if m != nil {
- return m.RepeatedForeignMessage
+func (x *TestAllTypes) GetRepeatedForeignMessage() []*ForeignMessage {
+ if x != nil {
+ return x.RepeatedForeignMessage
}
return nil
}
-func (m *TestAllTypes) GetRepeatedImportmessage() []*ImportMessage {
- if m != nil {
- return m.RepeatedImportmessage
+func (x *TestAllTypes) GetRepeatedImportmessage() []*ImportMessage {
+ if x != nil {
+ return x.RepeatedImportmessage
}
return nil
}
-func (m *TestAllTypes) GetRepeatedNestedEnum() []TestAllTypes_NestedEnum {
- if m != nil {
- return m.RepeatedNestedEnum
+func (x *TestAllTypes) GetRepeatedNestedEnum() []TestAllTypes_NestedEnum {
+ if x != nil {
+ return x.RepeatedNestedEnum
}
return nil
}
-func (m *TestAllTypes) GetRepeatedForeignEnum() []ForeignEnum {
- if m != nil {
- return m.RepeatedForeignEnum
+func (x *TestAllTypes) GetRepeatedForeignEnum() []ForeignEnum {
+ if x != nil {
+ return x.RepeatedForeignEnum
}
return nil
}
-func (m *TestAllTypes) GetRepeatedImportenum() []ImportEnum {
- if m != nil {
- return m.RepeatedImportenum
+func (x *TestAllTypes) GetRepeatedImportenum() []ImportEnum {
+ if x != nil {
+ return x.RepeatedImportenum
}
return nil
}
-func (m *TestAllTypes) GetMapInt32Int32() map[int32]int32 {
- if m != nil {
- return m.MapInt32Int32
+func (x *TestAllTypes) GetMapInt32Int32() map[int32]int32 {
+ if x != nil {
+ return x.MapInt32Int32
}
return nil
}
-func (m *TestAllTypes) GetMapInt64Int64() map[int64]int64 {
- if m != nil {
- return m.MapInt64Int64
+func (x *TestAllTypes) GetMapInt64Int64() map[int64]int64 {
+ if x != nil {
+ return x.MapInt64Int64
}
return nil
}
-func (m *TestAllTypes) GetMapUint32Uint32() map[uint32]uint32 {
- if m != nil {
- return m.MapUint32Uint32
+func (x *TestAllTypes) GetMapUint32Uint32() map[uint32]uint32 {
+ if x != nil {
+ return x.MapUint32Uint32
}
return nil
}
-func (m *TestAllTypes) GetMapUint64Uint64() map[uint64]uint64 {
- if m != nil {
- return m.MapUint64Uint64
+func (x *TestAllTypes) GetMapUint64Uint64() map[uint64]uint64 {
+ if x != nil {
+ return x.MapUint64Uint64
}
return nil
}
-func (m *TestAllTypes) GetMapSint32Sint32() map[int32]int32 {
- if m != nil {
- return m.MapSint32Sint32
+func (x *TestAllTypes) GetMapSint32Sint32() map[int32]int32 {
+ if x != nil {
+ return x.MapSint32Sint32
}
return nil
}
-func (m *TestAllTypes) GetMapSint64Sint64() map[int64]int64 {
- if m != nil {
- return m.MapSint64Sint64
+func (x *TestAllTypes) GetMapSint64Sint64() map[int64]int64 {
+ if x != nil {
+ return x.MapSint64Sint64
}
return nil
}
-func (m *TestAllTypes) GetMapFixed32Fixed32() map[uint32]uint32 {
- if m != nil {
- return m.MapFixed32Fixed32
+func (x *TestAllTypes) GetMapFixed32Fixed32() map[uint32]uint32 {
+ if x != nil {
+ return x.MapFixed32Fixed32
}
return nil
}
-func (m *TestAllTypes) GetMapFixed64Fixed64() map[uint64]uint64 {
- if m != nil {
- return m.MapFixed64Fixed64
+func (x *TestAllTypes) GetMapFixed64Fixed64() map[uint64]uint64 {
+ if x != nil {
+ return x.MapFixed64Fixed64
}
return nil
}
-func (m *TestAllTypes) GetMapSfixed32Sfixed32() map[int32]int32 {
- if m != nil {
- return m.MapSfixed32Sfixed32
+func (x *TestAllTypes) GetMapSfixed32Sfixed32() map[int32]int32 {
+ if x != nil {
+ return x.MapSfixed32Sfixed32
}
return nil
}
-func (m *TestAllTypes) GetMapSfixed64Sfixed64() map[int64]int64 {
- if m != nil {
- return m.MapSfixed64Sfixed64
+func (x *TestAllTypes) GetMapSfixed64Sfixed64() map[int64]int64 {
+ if x != nil {
+ return x.MapSfixed64Sfixed64
}
return nil
}
-func (m *TestAllTypes) GetMapInt32Float() map[int32]float32 {
- if m != nil {
- return m.MapInt32Float
+func (x *TestAllTypes) GetMapInt32Float() map[int32]float32 {
+ if x != nil {
+ return x.MapInt32Float
}
return nil
}
-func (m *TestAllTypes) GetMapInt32Double() map[int32]float64 {
- if m != nil {
- return m.MapInt32Double
+func (x *TestAllTypes) GetMapInt32Double() map[int32]float64 {
+ if x != nil {
+ return x.MapInt32Double
}
return nil
}
-func (m *TestAllTypes) GetMapBoolBool() map[bool]bool {
- if m != nil {
- return m.MapBoolBool
+func (x *TestAllTypes) GetMapBoolBool() map[bool]bool {
+ if x != nil {
+ return x.MapBoolBool
}
return nil
}
-func (m *TestAllTypes) GetMapStringString() map[string]string {
- if m != nil {
- return m.MapStringString
+func (x *TestAllTypes) GetMapStringString() map[string]string {
+ if x != nil {
+ return x.MapStringString
}
return nil
}
-func (m *TestAllTypes) GetMapStringBytes() map[string][]byte {
- if m != nil {
- return m.MapStringBytes
+func (x *TestAllTypes) GetMapStringBytes() map[string][]byte {
+ if x != nil {
+ return x.MapStringBytes
}
return nil
}
-func (m *TestAllTypes) GetMapStringNestedMessage() map[string]*TestAllTypes_NestedMessage {
- if m != nil {
- return m.MapStringNestedMessage
+func (x *TestAllTypes) GetMapStringNestedMessage() map[string]*TestAllTypes_NestedMessage {
+ if x != nil {
+ return x.MapStringNestedMessage
}
return nil
}
-func (m *TestAllTypes) GetMapStringNestedEnum() map[string]TestAllTypes_NestedEnum {
- if m != nil {
- return m.MapStringNestedEnum
+func (x *TestAllTypes) GetMapStringNestedEnum() map[string]TestAllTypes_NestedEnum {
+ if x != nil {
+ return x.MapStringNestedEnum
}
return nil
}
-func (m *TestAllTypes) GetDefaultInt32() int32 {
- if m != nil && m.DefaultInt32 != nil {
- return *m.DefaultInt32
+func (x *TestAllTypes) GetDefaultInt32() int32 {
+ if x != nil && x.DefaultInt32 != nil {
+ return *x.DefaultInt32
}
return Default_TestAllTypes_DefaultInt32
}
-func (m *TestAllTypes) GetDefaultInt64() int64 {
- if m != nil && m.DefaultInt64 != nil {
- return *m.DefaultInt64
+func (x *TestAllTypes) GetDefaultInt64() int64 {
+ if x != nil && x.DefaultInt64 != nil {
+ return *x.DefaultInt64
}
return Default_TestAllTypes_DefaultInt64
}
-func (m *TestAllTypes) GetDefaultUint32() uint32 {
- if m != nil && m.DefaultUint32 != nil {
- return *m.DefaultUint32
+func (x *TestAllTypes) GetDefaultUint32() uint32 {
+ if x != nil && x.DefaultUint32 != nil {
+ return *x.DefaultUint32
}
return Default_TestAllTypes_DefaultUint32
}
-func (m *TestAllTypes) GetDefaultUint64() uint64 {
- if m != nil && m.DefaultUint64 != nil {
- return *m.DefaultUint64
+func (x *TestAllTypes) GetDefaultUint64() uint64 {
+ if x != nil && x.DefaultUint64 != nil {
+ return *x.DefaultUint64
}
return Default_TestAllTypes_DefaultUint64
}
-func (m *TestAllTypes) GetDefaultSint32() int32 {
- if m != nil && m.DefaultSint32 != nil {
- return *m.DefaultSint32
+func (x *TestAllTypes) GetDefaultSint32() int32 {
+ if x != nil && x.DefaultSint32 != nil {
+ return *x.DefaultSint32
}
return Default_TestAllTypes_DefaultSint32
}
-func (m *TestAllTypes) GetDefaultSint64() int64 {
- if m != nil && m.DefaultSint64 != nil {
- return *m.DefaultSint64
+func (x *TestAllTypes) GetDefaultSint64() int64 {
+ if x != nil && x.DefaultSint64 != nil {
+ return *x.DefaultSint64
}
return Default_TestAllTypes_DefaultSint64
}
-func (m *TestAllTypes) GetDefaultFixed32() uint32 {
- if m != nil && m.DefaultFixed32 != nil {
- return *m.DefaultFixed32
+func (x *TestAllTypes) GetDefaultFixed32() uint32 {
+ if x != nil && x.DefaultFixed32 != nil {
+ return *x.DefaultFixed32
}
return Default_TestAllTypes_DefaultFixed32
}
-func (m *TestAllTypes) GetDefaultFixed64() uint64 {
- if m != nil && m.DefaultFixed64 != nil {
- return *m.DefaultFixed64
+func (x *TestAllTypes) GetDefaultFixed64() uint64 {
+ if x != nil && x.DefaultFixed64 != nil {
+ return *x.DefaultFixed64
}
return Default_TestAllTypes_DefaultFixed64
}
-func (m *TestAllTypes) GetDefaultSfixed32() int32 {
- if m != nil && m.DefaultSfixed32 != nil {
- return *m.DefaultSfixed32
+func (x *TestAllTypes) GetDefaultSfixed32() int32 {
+ if x != nil && x.DefaultSfixed32 != nil {
+ return *x.DefaultSfixed32
}
return Default_TestAllTypes_DefaultSfixed32
}
-func (m *TestAllTypes) GetDefaultSfixed64() int64 {
- if m != nil && m.DefaultSfixed64 != nil {
- return *m.DefaultSfixed64
+func (x *TestAllTypes) GetDefaultSfixed64() int64 {
+ if x != nil && x.DefaultSfixed64 != nil {
+ return *x.DefaultSfixed64
}
return Default_TestAllTypes_DefaultSfixed64
}
-func (m *TestAllTypes) GetDefaultFloat() float32 {
- if m != nil && m.DefaultFloat != nil {
- return *m.DefaultFloat
+func (x *TestAllTypes) GetDefaultFloat() float32 {
+ if x != nil && x.DefaultFloat != nil {
+ return *x.DefaultFloat
}
return Default_TestAllTypes_DefaultFloat
}
-func (m *TestAllTypes) GetDefaultDouble() float64 {
- if m != nil && m.DefaultDouble != nil {
- return *m.DefaultDouble
+func (x *TestAllTypes) GetDefaultDouble() float64 {
+ if x != nil && x.DefaultDouble != nil {
+ return *x.DefaultDouble
}
return Default_TestAllTypes_DefaultDouble
}
-func (m *TestAllTypes) GetDefaultBool() bool {
- if m != nil && m.DefaultBool != nil {
- return *m.DefaultBool
+func (x *TestAllTypes) GetDefaultBool() bool {
+ if x != nil && x.DefaultBool != nil {
+ return *x.DefaultBool
}
return Default_TestAllTypes_DefaultBool
}
-func (m *TestAllTypes) GetDefaultString() string {
- if m != nil && m.DefaultString != nil {
- return *m.DefaultString
+func (x *TestAllTypes) GetDefaultString() string {
+ if x != nil && x.DefaultString != nil {
+ return *x.DefaultString
}
return Default_TestAllTypes_DefaultString
}
-func (m *TestAllTypes) GetDefaultBytes() []byte {
- if m != nil && m.DefaultBytes != nil {
- return m.DefaultBytes
+func (x *TestAllTypes) GetDefaultBytes() []byte {
+ if x != nil && x.DefaultBytes != nil {
+ return x.DefaultBytes
}
return append([]byte(nil), Default_TestAllTypes_DefaultBytes...)
}
-func (m *TestAllTypes) GetDefaultNestedEnum() TestAllTypes_NestedEnum {
- if m != nil && m.DefaultNestedEnum != nil {
- return *m.DefaultNestedEnum
+func (x *TestAllTypes) GetDefaultNestedEnum() TestAllTypes_NestedEnum {
+ if x != nil && x.DefaultNestedEnum != nil {
+ return *x.DefaultNestedEnum
}
return Default_TestAllTypes_DefaultNestedEnum
}
-func (m *TestAllTypes) GetDefaultForeignEnum() ForeignEnum {
- if m != nil && m.DefaultForeignEnum != nil {
- return *m.DefaultForeignEnum
+func (x *TestAllTypes) GetDefaultForeignEnum() ForeignEnum {
+ if x != nil && x.DefaultForeignEnum != nil {
+ return *x.DefaultForeignEnum
}
return Default_TestAllTypes_DefaultForeignEnum
}
@@ -950,64 +961,64 @@
return nil
}
-func (m *TestAllTypes) GetOneofUint32() uint32 {
- if x, ok := m.GetOneofField().(*TestAllTypes_OneofUint32); ok {
+func (x *TestAllTypes) GetOneofUint32() uint32 {
+ if x, ok := x.GetOneofField().(*TestAllTypes_OneofUint32); ok {
return x.OneofUint32
}
return 0
}
-func (m *TestAllTypes) GetOneofNestedMessage() *TestAllTypes_NestedMessage {
- if x, ok := m.GetOneofField().(*TestAllTypes_OneofNestedMessage); ok {
+func (x *TestAllTypes) GetOneofNestedMessage() *TestAllTypes_NestedMessage {
+ if x, ok := x.GetOneofField().(*TestAllTypes_OneofNestedMessage); ok {
return x.OneofNestedMessage
}
return nil
}
-func (m *TestAllTypes) GetOneofString() string {
- if x, ok := m.GetOneofField().(*TestAllTypes_OneofString); ok {
+func (x *TestAllTypes) GetOneofString() string {
+ if x, ok := x.GetOneofField().(*TestAllTypes_OneofString); ok {
return x.OneofString
}
return ""
}
-func (m *TestAllTypes) GetOneofBytes() []byte {
- if x, ok := m.GetOneofField().(*TestAllTypes_OneofBytes); ok {
+func (x *TestAllTypes) GetOneofBytes() []byte {
+ if x, ok := x.GetOneofField().(*TestAllTypes_OneofBytes); ok {
return x.OneofBytes
}
return nil
}
-func (m *TestAllTypes) GetOneofBool() bool {
- if x, ok := m.GetOneofField().(*TestAllTypes_OneofBool); ok {
+func (x *TestAllTypes) GetOneofBool() bool {
+ if x, ok := x.GetOneofField().(*TestAllTypes_OneofBool); ok {
return x.OneofBool
}
return false
}
-func (m *TestAllTypes) GetOneofUint64() uint64 {
- if x, ok := m.GetOneofField().(*TestAllTypes_OneofUint64); ok {
+func (x *TestAllTypes) GetOneofUint64() uint64 {
+ if x, ok := x.GetOneofField().(*TestAllTypes_OneofUint64); ok {
return x.OneofUint64
}
return 0
}
-func (m *TestAllTypes) GetOneofFloat() float32 {
- if x, ok := m.GetOneofField().(*TestAllTypes_OneofFloat); ok {
+func (x *TestAllTypes) GetOneofFloat() float32 {
+ if x, ok := x.GetOneofField().(*TestAllTypes_OneofFloat); ok {
return x.OneofFloat
}
return 0
}
-func (m *TestAllTypes) GetOneofDouble() float64 {
- if x, ok := m.GetOneofField().(*TestAllTypes_OneofDouble); ok {
+func (x *TestAllTypes) GetOneofDouble() float64 {
+ if x, ok := x.GetOneofField().(*TestAllTypes_OneofDouble); ok {
return x.OneofDouble
}
return 0
}
-func (m *TestAllTypes) GetOneofEnum() TestAllTypes_NestedEnum {
- if x, ok := m.GetOneofField().(*TestAllTypes_OneofEnum); ok {
+func (x *TestAllTypes) GetOneofEnum() TestAllTypes_NestedEnum {
+ if x, ok := x.GetOneofField().(*TestAllTypes_OneofEnum); ok {
return x.OneofEnum
}
return TestAllTypes_FOO
@@ -1039,12 +1050,19 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *TestDeprecatedMessage) ProtoReflect() protoreflect.Message {
- return xxx_File_test_test_proto_messageTypes[1].MessageOf(m)
+func (x *TestDeprecatedMessage) Reset() {
+ *x = TestDeprecatedMessage{}
}
-func (m *TestDeprecatedMessage) Reset() { *m = TestDeprecatedMessage{} }
-func (m *TestDeprecatedMessage) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*TestDeprecatedMessage) ProtoMessage() {}
+
+func (x *TestDeprecatedMessage) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*TestDeprecatedMessage) ProtoMessage() {}
+
+func (x *TestDeprecatedMessage) ProtoReflect() protoreflect.Message {
+ return xxx_File_test_test_proto_messageTypes[1].MessageOf(x)
+}
// Deprecated: Use TestDeprecatedMessage.ProtoReflect.Type instead.
func (*TestDeprecatedMessage) Descriptor() ([]byte, []int) {
@@ -1052,9 +1070,9 @@
}
// Deprecated: Do not use.
-func (m *TestDeprecatedMessage) GetDeprecatedInt32() int32 {
- if m != nil && m.DeprecatedInt32 != nil {
- return *m.DeprecatedInt32
+func (x *TestDeprecatedMessage) GetDeprecatedInt32() int32 {
+ if x != nil && x.DeprecatedInt32 != nil {
+ return *x.DeprecatedInt32
}
return 0
}
@@ -1077,8 +1095,8 @@
}
// Deprecated: Do not use.
-func (m *TestDeprecatedMessage) GetDeprecatedOneofField() int32 {
- if x, ok := m.GetDeprecatedOneof().(*TestDeprecatedMessage_DeprecatedOneofField); ok {
+func (x *TestDeprecatedMessage) GetDeprecatedOneofField() int32 {
+ if x, ok := x.GetDeprecatedOneof().(*TestDeprecatedMessage_DeprecatedOneofField); ok {
return x.DeprecatedOneofField
}
return 0
@@ -1099,28 +1117,35 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *ForeignMessage) ProtoReflect() protoreflect.Message {
- return xxx_File_test_test_proto_messageTypes[2].MessageOf(m)
+func (x *ForeignMessage) Reset() {
+ *x = ForeignMessage{}
}
-func (m *ForeignMessage) Reset() { *m = ForeignMessage{} }
-func (m *ForeignMessage) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*ForeignMessage) ProtoMessage() {}
+
+func (x *ForeignMessage) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ForeignMessage) ProtoMessage() {}
+
+func (x *ForeignMessage) ProtoReflect() protoreflect.Message {
+ return xxx_File_test_test_proto_messageTypes[2].MessageOf(x)
+}
// Deprecated: Use ForeignMessage.ProtoReflect.Type instead.
func (*ForeignMessage) Descriptor() ([]byte, []int) {
return xxx_File_test_test_proto_rawDescGZIP(), []int{2}
}
-func (m *ForeignMessage) GetC() int32 {
- if m != nil && m.C != nil {
- return *m.C
+func (x *ForeignMessage) GetC() int32 {
+ if x != nil && x.C != nil {
+ return *x.C
}
return 0
}
-func (m *ForeignMessage) GetD() int32 {
- if m != nil && m.D != nil {
- return *m.D
+func (x *ForeignMessage) GetD() int32 {
+ if x != nil && x.D != nil {
+ return *x.D
}
return 0
}
@@ -1131,12 +1156,19 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *TestReservedFields) ProtoReflect() protoreflect.Message {
- return xxx_File_test_test_proto_messageTypes[3].MessageOf(m)
+func (x *TestReservedFields) Reset() {
+ *x = TestReservedFields{}
}
-func (m *TestReservedFields) Reset() { *m = TestReservedFields{} }
-func (m *TestReservedFields) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*TestReservedFields) ProtoMessage() {}
+
+func (x *TestReservedFields) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*TestReservedFields) ProtoMessage() {}
+
+func (x *TestReservedFields) ProtoReflect() protoreflect.Message {
+ return xxx_File_test_test_proto_messageTypes[3].MessageOf(x)
+}
// Deprecated: Use TestReservedFields.ProtoReflect.Type instead.
func (*TestReservedFields) Descriptor() ([]byte, []int) {
@@ -1150,12 +1182,19 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *TestAllExtensions) ProtoReflect() protoreflect.Message {
- return xxx_File_test_test_proto_messageTypes[4].MessageOf(m)
+func (x *TestAllExtensions) Reset() {
+ *x = TestAllExtensions{}
}
-func (m *TestAllExtensions) Reset() { *m = TestAllExtensions{} }
-func (m *TestAllExtensions) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*TestAllExtensions) ProtoMessage() {}
+
+func (x *TestAllExtensions) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*TestAllExtensions) ProtoMessage() {}
+
+func (x *TestAllExtensions) ProtoReflect() protoreflect.Message {
+ return xxx_File_test_test_proto_messageTypes[4].MessageOf(x)
+}
// Deprecated: Use TestAllExtensions.ProtoReflect.Type instead.
func (*TestAllExtensions) Descriptor() ([]byte, []int) {
@@ -1178,21 +1217,28 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *OptionalGroupExtension) ProtoReflect() protoreflect.Message {
- return xxx_File_test_test_proto_messageTypes[5].MessageOf(m)
+func (x *OptionalGroupExtension) Reset() {
+ *x = OptionalGroupExtension{}
}
-func (m *OptionalGroupExtension) Reset() { *m = OptionalGroupExtension{} }
-func (m *OptionalGroupExtension) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*OptionalGroupExtension) ProtoMessage() {}
+
+func (x *OptionalGroupExtension) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*OptionalGroupExtension) ProtoMessage() {}
+
+func (x *OptionalGroupExtension) ProtoReflect() protoreflect.Message {
+ return xxx_File_test_test_proto_messageTypes[5].MessageOf(x)
+}
// Deprecated: Use OptionalGroupExtension.ProtoReflect.Type instead.
func (*OptionalGroupExtension) Descriptor() ([]byte, []int) {
return xxx_File_test_test_proto_rawDescGZIP(), []int{5}
}
-func (m *OptionalGroupExtension) GetA() int32 {
- if m != nil && m.A != nil {
- return *m.A
+func (x *OptionalGroupExtension) GetA() int32 {
+ if x != nil && x.A != nil {
+ return *x.A
}
return 0
}
@@ -1204,21 +1250,28 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *RepeatedGroupExtension) ProtoReflect() protoreflect.Message {
- return xxx_File_test_test_proto_messageTypes[6].MessageOf(m)
+func (x *RepeatedGroupExtension) Reset() {
+ *x = RepeatedGroupExtension{}
}
-func (m *RepeatedGroupExtension) Reset() { *m = RepeatedGroupExtension{} }
-func (m *RepeatedGroupExtension) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*RepeatedGroupExtension) ProtoMessage() {}
+
+func (x *RepeatedGroupExtension) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*RepeatedGroupExtension) ProtoMessage() {}
+
+func (x *RepeatedGroupExtension) ProtoReflect() protoreflect.Message {
+ return xxx_File_test_test_proto_messageTypes[6].MessageOf(x)
+}
// Deprecated: Use RepeatedGroupExtension.ProtoReflect.Type instead.
func (*RepeatedGroupExtension) Descriptor() ([]byte, []int) {
return xxx_File_test_test_proto_rawDescGZIP(), []int{6}
}
-func (m *RepeatedGroupExtension) GetA() int32 {
- if m != nil && m.A != nil {
- return *m.A
+func (x *RepeatedGroupExtension) GetA() int32 {
+ if x != nil && x.A != nil {
+ return *x.A
}
return 0
}
@@ -1229,12 +1282,19 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *TestNestedExtension) ProtoReflect() protoreflect.Message {
- return xxx_File_test_test_proto_messageTypes[7].MessageOf(m)
+func (x *TestNestedExtension) Reset() {
+ *x = TestNestedExtension{}
}
-func (m *TestNestedExtension) Reset() { *m = TestNestedExtension{} }
-func (m *TestNestedExtension) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*TestNestedExtension) ProtoMessage() {}
+
+func (x *TestNestedExtension) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*TestNestedExtension) ProtoMessage() {}
+
+func (x *TestNestedExtension) ProtoReflect() protoreflect.Message {
+ return xxx_File_test_test_proto_messageTypes[7].MessageOf(x)
+}
// Deprecated: Use TestNestedExtension.ProtoReflect.Type instead.
func (*TestNestedExtension) Descriptor() ([]byte, []int) {
@@ -1248,12 +1308,19 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *FooRequest) ProtoReflect() protoreflect.Message {
- return xxx_File_test_test_proto_messageTypes[8].MessageOf(m)
+func (x *FooRequest) Reset() {
+ *x = FooRequest{}
}
-func (m *FooRequest) Reset() { *m = FooRequest{} }
-func (m *FooRequest) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*FooRequest) ProtoMessage() {}
+
+func (x *FooRequest) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*FooRequest) ProtoMessage() {}
+
+func (x *FooRequest) ProtoReflect() protoreflect.Message {
+ return xxx_File_test_test_proto_messageTypes[8].MessageOf(x)
+}
// Deprecated: Use FooRequest.ProtoReflect.Type instead.
func (*FooRequest) Descriptor() ([]byte, []int) {
@@ -1266,12 +1333,19 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *FooResponse) ProtoReflect() protoreflect.Message {
- return xxx_File_test_test_proto_messageTypes[9].MessageOf(m)
+func (x *FooResponse) Reset() {
+ *x = FooResponse{}
}
-func (m *FooResponse) Reset() { *m = FooResponse{} }
-func (m *FooResponse) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*FooResponse) ProtoMessage() {}
+
+func (x *FooResponse) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*FooResponse) ProtoMessage() {}
+
+func (x *FooResponse) ProtoReflect() protoreflect.Message {
+ return xxx_File_test_test_proto_messageTypes[9].MessageOf(x)
+}
// Deprecated: Use FooResponse.ProtoReflect.Type instead.
func (*FooResponse) Descriptor() ([]byte, []int) {
@@ -1286,28 +1360,35 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *TestAllTypes_NestedMessage) ProtoReflect() protoreflect.Message {
- return xxx_File_test_test_proto_messageTypes[10].MessageOf(m)
+func (x *TestAllTypes_NestedMessage) Reset() {
+ *x = TestAllTypes_NestedMessage{}
}
-func (m *TestAllTypes_NestedMessage) Reset() { *m = TestAllTypes_NestedMessage{} }
-func (m *TestAllTypes_NestedMessage) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*TestAllTypes_NestedMessage) ProtoMessage() {}
+
+func (x *TestAllTypes_NestedMessage) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*TestAllTypes_NestedMessage) ProtoMessage() {}
+
+func (x *TestAllTypes_NestedMessage) ProtoReflect() protoreflect.Message {
+ return xxx_File_test_test_proto_messageTypes[10].MessageOf(x)
+}
// Deprecated: Use TestAllTypes_NestedMessage.ProtoReflect.Type instead.
func (*TestAllTypes_NestedMessage) Descriptor() ([]byte, []int) {
return xxx_File_test_test_proto_rawDescGZIP(), []int{0, 0}
}
-func (m *TestAllTypes_NestedMessage) GetA() int32 {
- if m != nil && m.A != nil {
- return *m.A
+func (x *TestAllTypes_NestedMessage) GetA() int32 {
+ if x != nil && x.A != nil {
+ return *x.A
}
return 0
}
-func (m *TestAllTypes_NestedMessage) GetCorecursive() *TestAllTypes {
- if m != nil {
- return m.Corecursive
+func (x *TestAllTypes_NestedMessage) GetCorecursive() *TestAllTypes {
+ if x != nil {
+ return x.Corecursive
}
return nil
}
@@ -1319,21 +1400,28 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *TestAllTypes_OptionalGroup) ProtoReflect() protoreflect.Message {
- return xxx_File_test_test_proto_messageTypes[11].MessageOf(m)
+func (x *TestAllTypes_OptionalGroup) Reset() {
+ *x = TestAllTypes_OptionalGroup{}
}
-func (m *TestAllTypes_OptionalGroup) Reset() { *m = TestAllTypes_OptionalGroup{} }
-func (m *TestAllTypes_OptionalGroup) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*TestAllTypes_OptionalGroup) ProtoMessage() {}
+
+func (x *TestAllTypes_OptionalGroup) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*TestAllTypes_OptionalGroup) ProtoMessage() {}
+
+func (x *TestAllTypes_OptionalGroup) ProtoReflect() protoreflect.Message {
+ return xxx_File_test_test_proto_messageTypes[11].MessageOf(x)
+}
// Deprecated: Use TestAllTypes_OptionalGroup.ProtoReflect.Type instead.
func (*TestAllTypes_OptionalGroup) Descriptor() ([]byte, []int) {
return xxx_File_test_test_proto_rawDescGZIP(), []int{0, 1}
}
-func (m *TestAllTypes_OptionalGroup) GetA() int32 {
- if m != nil && m.A != nil {
- return *m.A
+func (x *TestAllTypes_OptionalGroup) GetA() int32 {
+ if x != nil && x.A != nil {
+ return *x.A
}
return 0
}
@@ -1345,21 +1433,28 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *TestAllTypes_RepeatedGroup) ProtoReflect() protoreflect.Message {
- return xxx_File_test_test_proto_messageTypes[12].MessageOf(m)
+func (x *TestAllTypes_RepeatedGroup) Reset() {
+ *x = TestAllTypes_RepeatedGroup{}
}
-func (m *TestAllTypes_RepeatedGroup) Reset() { *m = TestAllTypes_RepeatedGroup{} }
-func (m *TestAllTypes_RepeatedGroup) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*TestAllTypes_RepeatedGroup) ProtoMessage() {}
+
+func (x *TestAllTypes_RepeatedGroup) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*TestAllTypes_RepeatedGroup) ProtoMessage() {}
+
+func (x *TestAllTypes_RepeatedGroup) ProtoReflect() protoreflect.Message {
+ return xxx_File_test_test_proto_messageTypes[12].MessageOf(x)
+}
// Deprecated: Use TestAllTypes_RepeatedGroup.ProtoReflect.Type instead.
func (*TestAllTypes_RepeatedGroup) Descriptor() ([]byte, []int) {
return xxx_File_test_test_proto_rawDescGZIP(), []int{0, 2}
}
-func (m *TestAllTypes_RepeatedGroup) GetA() int32 {
- if m != nil && m.A != nil {
- return *m.A
+func (x *TestAllTypes_RepeatedGroup) GetA() int32 {
+ if x != nil && x.A != nil {
+ return *x.A
}
return 0
}
diff --git a/internal/testprotos/test/test_import.pb.go b/internal/testprotos/test/test_import.pb.go
index 9de8508..8949257 100644
--- a/internal/testprotos/test/test_import.pb.go
+++ b/internal/testprotos/test/test_import.pb.go
@@ -18,13 +18,6 @@
ImportEnum_IMPORT_ZERO ImportEnum = 0
)
-func (e ImportEnum) Type() protoreflect.EnumType {
- return xxx_File_test_test_import_proto_enumTypes[0]
-}
-func (e ImportEnum) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(e)
-}
-
// Deprecated: Use ImportEnum.Type.Values instead.
var ImportEnum_name = map[int32]string{
0: "IMPORT_ZERO",
@@ -43,6 +36,14 @@
return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x))
}
+func (ImportEnum) Type() protoreflect.EnumType {
+ return xxx_File_test_test_import_proto_enumTypes[0]
+}
+
+func (x ImportEnum) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
// Deprecated: Do not use.
func (x *ImportEnum) UnmarshalJSON(b []byte) error {
num, err := protoimpl.X.UnmarshalJSONEnum(x.Type(), b)
@@ -64,12 +65,19 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *ImportMessage) ProtoReflect() protoreflect.Message {
- return xxx_File_test_test_import_proto_messageTypes[0].MessageOf(m)
+func (x *ImportMessage) Reset() {
+ *x = ImportMessage{}
}
-func (m *ImportMessage) Reset() { *m = ImportMessage{} }
-func (m *ImportMessage) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*ImportMessage) ProtoMessage() {}
+
+func (x *ImportMessage) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ImportMessage) ProtoMessage() {}
+
+func (x *ImportMessage) ProtoReflect() protoreflect.Message {
+ return xxx_File_test_test_import_proto_messageTypes[0].MessageOf(x)
+}
// Deprecated: Use ImportMessage.ProtoReflect.Type instead.
func (*ImportMessage) Descriptor() ([]byte, []int) {
diff --git a/internal/testprotos/test/test_public.pb.go b/internal/testprotos/test/test_public.pb.go
index 5632de8..fde1bd6 100644
--- a/internal/testprotos/test/test_public.pb.go
+++ b/internal/testprotos/test/test_public.pb.go
@@ -18,12 +18,19 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *PublicImportMessage) ProtoReflect() protoreflect.Message {
- return xxx_File_test_test_public_proto_messageTypes[0].MessageOf(m)
+func (x *PublicImportMessage) Reset() {
+ *x = PublicImportMessage{}
}
-func (m *PublicImportMessage) Reset() { *m = PublicImportMessage{} }
-func (m *PublicImportMessage) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*PublicImportMessage) ProtoMessage() {}
+
+func (x *PublicImportMessage) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*PublicImportMessage) ProtoMessage() {}
+
+func (x *PublicImportMessage) ProtoReflect() protoreflect.Message {
+ return xxx_File_test_test_public_proto_messageTypes[0].MessageOf(x)
+}
// Deprecated: Use PublicImportMessage.ProtoReflect.Type instead.
func (*PublicImportMessage) Descriptor() ([]byte, []int) {
diff --git a/internal/testprotos/test/test_weak.pb.go b/internal/testprotos/test/test_weak.pb.go
index 7fe04bb..5f52a22 100644
--- a/internal/testprotos/test/test_weak.pb.go
+++ b/internal/testprotos/test/test_weak.pb.go
@@ -18,12 +18,19 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *WeakImportMessage) ProtoReflect() protoreflect.Message {
- return xxx_File_test_test_weak_proto_messageTypes[0].MessageOf(m)
+func (x *WeakImportMessage) Reset() {
+ *x = WeakImportMessage{}
}
-func (m *WeakImportMessage) Reset() { *m = WeakImportMessage{} }
-func (m *WeakImportMessage) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*WeakImportMessage) ProtoMessage() {}
+
+func (x *WeakImportMessage) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*WeakImportMessage) ProtoMessage() {}
+
+func (x *WeakImportMessage) ProtoReflect() protoreflect.Message {
+ return xxx_File_test_test_weak_proto_messageTypes[0].MessageOf(x)
+}
// Deprecated: Use WeakImportMessage.ProtoReflect.Type instead.
func (*WeakImportMessage) Descriptor() ([]byte, []int) {
diff --git a/internal/testprotos/test3/test.pb.go b/internal/testprotos/test3/test.pb.go
index 8af8076..c76410b 100644
--- a/internal/testprotos/test3/test.pb.go
+++ b/internal/testprotos/test3/test.pb.go
@@ -21,13 +21,6 @@
ForeignEnum_FOREIGN_BAZ ForeignEnum = 6
)
-func (e ForeignEnum) Type() protoreflect.EnumType {
- return xxx_File_test3_test_proto_enumTypes[0]
-}
-func (e ForeignEnum) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(e)
-}
-
// Deprecated: Use ForeignEnum.Type.Values instead.
var ForeignEnum_name = map[int32]string{
0: "FOREIGN_ZERO",
@@ -48,6 +41,14 @@
return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x))
}
+func (ForeignEnum) Type() protoreflect.EnumType {
+ return xxx_File_test3_test_proto_enumTypes[0]
+}
+
+func (x ForeignEnum) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
// Deprecated: Use ForeignEnum.Type instead.
func (ForeignEnum) EnumDescriptor() ([]byte, []int) {
return xxx_File_test3_test_proto_rawDescGZIP(), []int{0}
@@ -62,13 +63,6 @@
TestAllTypes_NEG TestAllTypes_NestedEnum = -1
)
-func (e TestAllTypes_NestedEnum) Type() protoreflect.EnumType {
- return xxx_File_test3_test_proto_enumTypes[1]
-}
-func (e TestAllTypes_NestedEnum) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(e)
-}
-
// Deprecated: Use TestAllTypes_NestedEnum.Type.Values instead.
var TestAllTypes_NestedEnum_name = map[int32]string{
0: "FOO",
@@ -89,6 +83,14 @@
return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x))
}
+func (TestAllTypes_NestedEnum) Type() protoreflect.EnumType {
+ return xxx_File_test3_test_proto_enumTypes[1]
+}
+
+func (x TestAllTypes_NestedEnum) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
// Deprecated: Use TestAllTypes_NestedEnum.Type instead.
func (TestAllTypes_NestedEnum) EnumDescriptor() ([]byte, []int) {
return xxx_File_test3_test_proto_rawDescGZIP(), []int{0, 0}
@@ -170,427 +172,434 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *TestAllTypes) ProtoReflect() protoreflect.Message {
- return xxx_File_test3_test_proto_messageTypes[0].MessageOf(m)
+func (x *TestAllTypes) Reset() {
+ *x = TestAllTypes{}
}
-func (m *TestAllTypes) Reset() { *m = TestAllTypes{} }
-func (m *TestAllTypes) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*TestAllTypes) ProtoMessage() {}
+
+func (x *TestAllTypes) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*TestAllTypes) ProtoMessage() {}
+
+func (x *TestAllTypes) ProtoReflect() protoreflect.Message {
+ return xxx_File_test3_test_proto_messageTypes[0].MessageOf(x)
+}
// Deprecated: Use TestAllTypes.ProtoReflect.Type instead.
func (*TestAllTypes) Descriptor() ([]byte, []int) {
return xxx_File_test3_test_proto_rawDescGZIP(), []int{0}
}
-func (m *TestAllTypes) GetOptionalInt32() int32 {
- if m != nil {
- return m.OptionalInt32
+func (x *TestAllTypes) GetOptionalInt32() int32 {
+ if x != nil {
+ return x.OptionalInt32
}
return 0
}
-func (m *TestAllTypes) GetOptionalInt64() int64 {
- if m != nil {
- return m.OptionalInt64
+func (x *TestAllTypes) GetOptionalInt64() int64 {
+ if x != nil {
+ return x.OptionalInt64
}
return 0
}
-func (m *TestAllTypes) GetOptionalUint32() uint32 {
- if m != nil {
- return m.OptionalUint32
+func (x *TestAllTypes) GetOptionalUint32() uint32 {
+ if x != nil {
+ return x.OptionalUint32
}
return 0
}
-func (m *TestAllTypes) GetOptionalUint64() uint64 {
- if m != nil {
- return m.OptionalUint64
+func (x *TestAllTypes) GetOptionalUint64() uint64 {
+ if x != nil {
+ return x.OptionalUint64
}
return 0
}
-func (m *TestAllTypes) GetOptionalSint32() int32 {
- if m != nil {
- return m.OptionalSint32
+func (x *TestAllTypes) GetOptionalSint32() int32 {
+ if x != nil {
+ return x.OptionalSint32
}
return 0
}
-func (m *TestAllTypes) GetOptionalSint64() int64 {
- if m != nil {
- return m.OptionalSint64
+func (x *TestAllTypes) GetOptionalSint64() int64 {
+ if x != nil {
+ return x.OptionalSint64
}
return 0
}
-func (m *TestAllTypes) GetOptionalFixed32() uint32 {
- if m != nil {
- return m.OptionalFixed32
+func (x *TestAllTypes) GetOptionalFixed32() uint32 {
+ if x != nil {
+ return x.OptionalFixed32
}
return 0
}
-func (m *TestAllTypes) GetOptionalFixed64() uint64 {
- if m != nil {
- return m.OptionalFixed64
+func (x *TestAllTypes) GetOptionalFixed64() uint64 {
+ if x != nil {
+ return x.OptionalFixed64
}
return 0
}
-func (m *TestAllTypes) GetOptionalSfixed32() int32 {
- if m != nil {
- return m.OptionalSfixed32
+func (x *TestAllTypes) GetOptionalSfixed32() int32 {
+ if x != nil {
+ return x.OptionalSfixed32
}
return 0
}
-func (m *TestAllTypes) GetOptionalSfixed64() int64 {
- if m != nil {
- return m.OptionalSfixed64
+func (x *TestAllTypes) GetOptionalSfixed64() int64 {
+ if x != nil {
+ return x.OptionalSfixed64
}
return 0
}
-func (m *TestAllTypes) GetOptionalFloat() float32 {
- if m != nil {
- return m.OptionalFloat
+func (x *TestAllTypes) GetOptionalFloat() float32 {
+ if x != nil {
+ return x.OptionalFloat
}
return 0
}
-func (m *TestAllTypes) GetOptionalDouble() float64 {
- if m != nil {
- return m.OptionalDouble
+func (x *TestAllTypes) GetOptionalDouble() float64 {
+ if x != nil {
+ return x.OptionalDouble
}
return 0
}
-func (m *TestAllTypes) GetOptionalBool() bool {
- if m != nil {
- return m.OptionalBool
+func (x *TestAllTypes) GetOptionalBool() bool {
+ if x != nil {
+ return x.OptionalBool
}
return false
}
-func (m *TestAllTypes) GetOptionalString() string {
- if m != nil {
- return m.OptionalString
+func (x *TestAllTypes) GetOptionalString() string {
+ if x != nil {
+ return x.OptionalString
}
return ""
}
-func (m *TestAllTypes) GetOptionalBytes() []byte {
- if m != nil {
- return m.OptionalBytes
+func (x *TestAllTypes) GetOptionalBytes() []byte {
+ if x != nil {
+ return x.OptionalBytes
}
return nil
}
-func (m *TestAllTypes) GetOptionalNestedMessage() *TestAllTypes_NestedMessage {
- if m != nil {
- return m.OptionalNestedMessage
+func (x *TestAllTypes) GetOptionalNestedMessage() *TestAllTypes_NestedMessage {
+ if x != nil {
+ return x.OptionalNestedMessage
}
return nil
}
-func (m *TestAllTypes) GetOptionalForeignMessage() *ForeignMessage {
- if m != nil {
- return m.OptionalForeignMessage
+func (x *TestAllTypes) GetOptionalForeignMessage() *ForeignMessage {
+ if x != nil {
+ return x.OptionalForeignMessage
}
return nil
}
-func (m *TestAllTypes) GetOptionalImportMessage() *ImportMessage {
- if m != nil {
- return m.OptionalImportMessage
+func (x *TestAllTypes) GetOptionalImportMessage() *ImportMessage {
+ if x != nil {
+ return x.OptionalImportMessage
}
return nil
}
-func (m *TestAllTypes) GetOptionalNestedEnum() TestAllTypes_NestedEnum {
- if m != nil {
- return m.OptionalNestedEnum
+func (x *TestAllTypes) GetOptionalNestedEnum() TestAllTypes_NestedEnum {
+ if x != nil {
+ return x.OptionalNestedEnum
}
return TestAllTypes_FOO
}
-func (m *TestAllTypes) GetOptionalForeignEnum() ForeignEnum {
- if m != nil {
- return m.OptionalForeignEnum
+func (x *TestAllTypes) GetOptionalForeignEnum() ForeignEnum {
+ if x != nil {
+ return x.OptionalForeignEnum
}
return ForeignEnum_FOREIGN_ZERO
}
-func (m *TestAllTypes) GetOptionalImportEnum() ImportEnum {
- if m != nil {
- return m.OptionalImportEnum
+func (x *TestAllTypes) GetOptionalImportEnum() ImportEnum {
+ if x != nil {
+ return x.OptionalImportEnum
}
return ImportEnum_IMPORT_ZERO
}
-func (m *TestAllTypes) GetRepeatedInt32() []int32 {
- if m != nil {
- return m.RepeatedInt32
+func (x *TestAllTypes) GetRepeatedInt32() []int32 {
+ if x != nil {
+ return x.RepeatedInt32
}
return nil
}
-func (m *TestAllTypes) GetRepeatedInt64() []int64 {
- if m != nil {
- return m.RepeatedInt64
+func (x *TestAllTypes) GetRepeatedInt64() []int64 {
+ if x != nil {
+ return x.RepeatedInt64
}
return nil
}
-func (m *TestAllTypes) GetRepeatedUint32() []uint32 {
- if m != nil {
- return m.RepeatedUint32
+func (x *TestAllTypes) GetRepeatedUint32() []uint32 {
+ if x != nil {
+ return x.RepeatedUint32
}
return nil
}
-func (m *TestAllTypes) GetRepeatedUint64() []uint64 {
- if m != nil {
- return m.RepeatedUint64
+func (x *TestAllTypes) GetRepeatedUint64() []uint64 {
+ if x != nil {
+ return x.RepeatedUint64
}
return nil
}
-func (m *TestAllTypes) GetRepeatedSint32() []int32 {
- if m != nil {
- return m.RepeatedSint32
+func (x *TestAllTypes) GetRepeatedSint32() []int32 {
+ if x != nil {
+ return x.RepeatedSint32
}
return nil
}
-func (m *TestAllTypes) GetRepeatedSint64() []int64 {
- if m != nil {
- return m.RepeatedSint64
+func (x *TestAllTypes) GetRepeatedSint64() []int64 {
+ if x != nil {
+ return x.RepeatedSint64
}
return nil
}
-func (m *TestAllTypes) GetRepeatedFixed32() []uint32 {
- if m != nil {
- return m.RepeatedFixed32
+func (x *TestAllTypes) GetRepeatedFixed32() []uint32 {
+ if x != nil {
+ return x.RepeatedFixed32
}
return nil
}
-func (m *TestAllTypes) GetRepeatedFixed64() []uint64 {
- if m != nil {
- return m.RepeatedFixed64
+func (x *TestAllTypes) GetRepeatedFixed64() []uint64 {
+ if x != nil {
+ return x.RepeatedFixed64
}
return nil
}
-func (m *TestAllTypes) GetRepeatedSfixed32() []int32 {
- if m != nil {
- return m.RepeatedSfixed32
+func (x *TestAllTypes) GetRepeatedSfixed32() []int32 {
+ if x != nil {
+ return x.RepeatedSfixed32
}
return nil
}
-func (m *TestAllTypes) GetRepeatedSfixed64() []int64 {
- if m != nil {
- return m.RepeatedSfixed64
+func (x *TestAllTypes) GetRepeatedSfixed64() []int64 {
+ if x != nil {
+ return x.RepeatedSfixed64
}
return nil
}
-func (m *TestAllTypes) GetRepeatedFloat() []float32 {
- if m != nil {
- return m.RepeatedFloat
+func (x *TestAllTypes) GetRepeatedFloat() []float32 {
+ if x != nil {
+ return x.RepeatedFloat
}
return nil
}
-func (m *TestAllTypes) GetRepeatedDouble() []float64 {
- if m != nil {
- return m.RepeatedDouble
+func (x *TestAllTypes) GetRepeatedDouble() []float64 {
+ if x != nil {
+ return x.RepeatedDouble
}
return nil
}
-func (m *TestAllTypes) GetRepeatedBool() []bool {
- if m != nil {
- return m.RepeatedBool
+func (x *TestAllTypes) GetRepeatedBool() []bool {
+ if x != nil {
+ return x.RepeatedBool
}
return nil
}
-func (m *TestAllTypes) GetRepeatedString() []string {
- if m != nil {
- return m.RepeatedString
+func (x *TestAllTypes) GetRepeatedString() []string {
+ if x != nil {
+ return x.RepeatedString
}
return nil
}
-func (m *TestAllTypes) GetRepeatedBytes() [][]byte {
- if m != nil {
- return m.RepeatedBytes
+func (x *TestAllTypes) GetRepeatedBytes() [][]byte {
+ if x != nil {
+ return x.RepeatedBytes
}
return nil
}
-func (m *TestAllTypes) GetRepeatedNestedMessage() []*TestAllTypes_NestedMessage {
- if m != nil {
- return m.RepeatedNestedMessage
+func (x *TestAllTypes) GetRepeatedNestedMessage() []*TestAllTypes_NestedMessage {
+ if x != nil {
+ return x.RepeatedNestedMessage
}
return nil
}
-func (m *TestAllTypes) GetRepeatedForeignMessage() []*ForeignMessage {
- if m != nil {
- return m.RepeatedForeignMessage
+func (x *TestAllTypes) GetRepeatedForeignMessage() []*ForeignMessage {
+ if x != nil {
+ return x.RepeatedForeignMessage
}
return nil
}
-func (m *TestAllTypes) GetRepeatedImportmessage() []*ImportMessage {
- if m != nil {
- return m.RepeatedImportmessage
+func (x *TestAllTypes) GetRepeatedImportmessage() []*ImportMessage {
+ if x != nil {
+ return x.RepeatedImportmessage
}
return nil
}
-func (m *TestAllTypes) GetRepeatedNestedEnum() []TestAllTypes_NestedEnum {
- if m != nil {
- return m.RepeatedNestedEnum
+func (x *TestAllTypes) GetRepeatedNestedEnum() []TestAllTypes_NestedEnum {
+ if x != nil {
+ return x.RepeatedNestedEnum
}
return nil
}
-func (m *TestAllTypes) GetRepeatedForeignEnum() []ForeignEnum {
- if m != nil {
- return m.RepeatedForeignEnum
+func (x *TestAllTypes) GetRepeatedForeignEnum() []ForeignEnum {
+ if x != nil {
+ return x.RepeatedForeignEnum
}
return nil
}
-func (m *TestAllTypes) GetRepeatedImportenum() []ImportEnum {
- if m != nil {
- return m.RepeatedImportenum
+func (x *TestAllTypes) GetRepeatedImportenum() []ImportEnum {
+ if x != nil {
+ return x.RepeatedImportenum
}
return nil
}
-func (m *TestAllTypes) GetMapInt32Int32() map[int32]int32 {
- if m != nil {
- return m.MapInt32Int32
+func (x *TestAllTypes) GetMapInt32Int32() map[int32]int32 {
+ if x != nil {
+ return x.MapInt32Int32
}
return nil
}
-func (m *TestAllTypes) GetMapInt64Int64() map[int64]int64 {
- if m != nil {
- return m.MapInt64Int64
+func (x *TestAllTypes) GetMapInt64Int64() map[int64]int64 {
+ if x != nil {
+ return x.MapInt64Int64
}
return nil
}
-func (m *TestAllTypes) GetMapUint32Uint32() map[uint32]uint32 {
- if m != nil {
- return m.MapUint32Uint32
+func (x *TestAllTypes) GetMapUint32Uint32() map[uint32]uint32 {
+ if x != nil {
+ return x.MapUint32Uint32
}
return nil
}
-func (m *TestAllTypes) GetMapUint64Uint64() map[uint64]uint64 {
- if m != nil {
- return m.MapUint64Uint64
+func (x *TestAllTypes) GetMapUint64Uint64() map[uint64]uint64 {
+ if x != nil {
+ return x.MapUint64Uint64
}
return nil
}
-func (m *TestAllTypes) GetMapSint32Sint32() map[int32]int32 {
- if m != nil {
- return m.MapSint32Sint32
+func (x *TestAllTypes) GetMapSint32Sint32() map[int32]int32 {
+ if x != nil {
+ return x.MapSint32Sint32
}
return nil
}
-func (m *TestAllTypes) GetMapSint64Sint64() map[int64]int64 {
- if m != nil {
- return m.MapSint64Sint64
+func (x *TestAllTypes) GetMapSint64Sint64() map[int64]int64 {
+ if x != nil {
+ return x.MapSint64Sint64
}
return nil
}
-func (m *TestAllTypes) GetMapFixed32Fixed32() map[uint32]uint32 {
- if m != nil {
- return m.MapFixed32Fixed32
+func (x *TestAllTypes) GetMapFixed32Fixed32() map[uint32]uint32 {
+ if x != nil {
+ return x.MapFixed32Fixed32
}
return nil
}
-func (m *TestAllTypes) GetMapFixed64Fixed64() map[uint64]uint64 {
- if m != nil {
- return m.MapFixed64Fixed64
+func (x *TestAllTypes) GetMapFixed64Fixed64() map[uint64]uint64 {
+ if x != nil {
+ return x.MapFixed64Fixed64
}
return nil
}
-func (m *TestAllTypes) GetMapSfixed32Sfixed32() map[int32]int32 {
- if m != nil {
- return m.MapSfixed32Sfixed32
+func (x *TestAllTypes) GetMapSfixed32Sfixed32() map[int32]int32 {
+ if x != nil {
+ return x.MapSfixed32Sfixed32
}
return nil
}
-func (m *TestAllTypes) GetMapSfixed64Sfixed64() map[int64]int64 {
- if m != nil {
- return m.MapSfixed64Sfixed64
+func (x *TestAllTypes) GetMapSfixed64Sfixed64() map[int64]int64 {
+ if x != nil {
+ return x.MapSfixed64Sfixed64
}
return nil
}
-func (m *TestAllTypes) GetMapInt32Float() map[int32]float32 {
- if m != nil {
- return m.MapInt32Float
+func (x *TestAllTypes) GetMapInt32Float() map[int32]float32 {
+ if x != nil {
+ return x.MapInt32Float
}
return nil
}
-func (m *TestAllTypes) GetMapInt32Double() map[int32]float64 {
- if m != nil {
- return m.MapInt32Double
+func (x *TestAllTypes) GetMapInt32Double() map[int32]float64 {
+ if x != nil {
+ return x.MapInt32Double
}
return nil
}
-func (m *TestAllTypes) GetMapBoolBool() map[bool]bool {
- if m != nil {
- return m.MapBoolBool
+func (x *TestAllTypes) GetMapBoolBool() map[bool]bool {
+ if x != nil {
+ return x.MapBoolBool
}
return nil
}
-func (m *TestAllTypes) GetMapStringString() map[string]string {
- if m != nil {
- return m.MapStringString
+func (x *TestAllTypes) GetMapStringString() map[string]string {
+ if x != nil {
+ return x.MapStringString
}
return nil
}
-func (m *TestAllTypes) GetMapStringBytes() map[string][]byte {
- if m != nil {
- return m.MapStringBytes
+func (x *TestAllTypes) GetMapStringBytes() map[string][]byte {
+ if x != nil {
+ return x.MapStringBytes
}
return nil
}
-func (m *TestAllTypes) GetMapStringNestedMessage() map[string]*TestAllTypes_NestedMessage {
- if m != nil {
- return m.MapStringNestedMessage
+func (x *TestAllTypes) GetMapStringNestedMessage() map[string]*TestAllTypes_NestedMessage {
+ if x != nil {
+ return x.MapStringNestedMessage
}
return nil
}
-func (m *TestAllTypes) GetMapStringNestedEnum() map[string]TestAllTypes_NestedEnum {
- if m != nil {
- return m.MapStringNestedEnum
+func (x *TestAllTypes) GetMapStringNestedEnum() map[string]TestAllTypes_NestedEnum {
+ if x != nil {
+ return x.MapStringNestedEnum
}
return nil
}
@@ -660,64 +669,64 @@
return nil
}
-func (m *TestAllTypes) GetOneofUint32() uint32 {
- if x, ok := m.GetOneofField().(*TestAllTypes_OneofUint32); ok {
+func (x *TestAllTypes) GetOneofUint32() uint32 {
+ if x, ok := x.GetOneofField().(*TestAllTypes_OneofUint32); ok {
return x.OneofUint32
}
return 0
}
-func (m *TestAllTypes) GetOneofNestedMessage() *TestAllTypes_NestedMessage {
- if x, ok := m.GetOneofField().(*TestAllTypes_OneofNestedMessage); ok {
+func (x *TestAllTypes) GetOneofNestedMessage() *TestAllTypes_NestedMessage {
+ if x, ok := x.GetOneofField().(*TestAllTypes_OneofNestedMessage); ok {
return x.OneofNestedMessage
}
return nil
}
-func (m *TestAllTypes) GetOneofString() string {
- if x, ok := m.GetOneofField().(*TestAllTypes_OneofString); ok {
+func (x *TestAllTypes) GetOneofString() string {
+ if x, ok := x.GetOneofField().(*TestAllTypes_OneofString); ok {
return x.OneofString
}
return ""
}
-func (m *TestAllTypes) GetOneofBytes() []byte {
- if x, ok := m.GetOneofField().(*TestAllTypes_OneofBytes); ok {
+func (x *TestAllTypes) GetOneofBytes() []byte {
+ if x, ok := x.GetOneofField().(*TestAllTypes_OneofBytes); ok {
return x.OneofBytes
}
return nil
}
-func (m *TestAllTypes) GetOneofBool() bool {
- if x, ok := m.GetOneofField().(*TestAllTypes_OneofBool); ok {
+func (x *TestAllTypes) GetOneofBool() bool {
+ if x, ok := x.GetOneofField().(*TestAllTypes_OneofBool); ok {
return x.OneofBool
}
return false
}
-func (m *TestAllTypes) GetOneofUint64() uint64 {
- if x, ok := m.GetOneofField().(*TestAllTypes_OneofUint64); ok {
+func (x *TestAllTypes) GetOneofUint64() uint64 {
+ if x, ok := x.GetOneofField().(*TestAllTypes_OneofUint64); ok {
return x.OneofUint64
}
return 0
}
-func (m *TestAllTypes) GetOneofFloat() float32 {
- if x, ok := m.GetOneofField().(*TestAllTypes_OneofFloat); ok {
+func (x *TestAllTypes) GetOneofFloat() float32 {
+ if x, ok := x.GetOneofField().(*TestAllTypes_OneofFloat); ok {
return x.OneofFloat
}
return 0
}
-func (m *TestAllTypes) GetOneofDouble() float64 {
- if x, ok := m.GetOneofField().(*TestAllTypes_OneofDouble); ok {
+func (x *TestAllTypes) GetOneofDouble() float64 {
+ if x, ok := x.GetOneofField().(*TestAllTypes_OneofDouble); ok {
return x.OneofDouble
}
return 0
}
-func (m *TestAllTypes) GetOneofEnum() TestAllTypes_NestedEnum {
- if x, ok := m.GetOneofField().(*TestAllTypes_OneofEnum); ok {
+func (x *TestAllTypes) GetOneofEnum() TestAllTypes_NestedEnum {
+ if x, ok := x.GetOneofField().(*TestAllTypes_OneofEnum); ok {
return x.OneofEnum
}
return TestAllTypes_FOO
@@ -746,28 +755,35 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *ForeignMessage) ProtoReflect() protoreflect.Message {
- return xxx_File_test3_test_proto_messageTypes[1].MessageOf(m)
+func (x *ForeignMessage) Reset() {
+ *x = ForeignMessage{}
}
-func (m *ForeignMessage) Reset() { *m = ForeignMessage{} }
-func (m *ForeignMessage) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*ForeignMessage) ProtoMessage() {}
+
+func (x *ForeignMessage) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ForeignMessage) ProtoMessage() {}
+
+func (x *ForeignMessage) ProtoReflect() protoreflect.Message {
+ return xxx_File_test3_test_proto_messageTypes[1].MessageOf(x)
+}
// Deprecated: Use ForeignMessage.ProtoReflect.Type instead.
func (*ForeignMessage) Descriptor() ([]byte, []int) {
return xxx_File_test3_test_proto_rawDescGZIP(), []int{1}
}
-func (m *ForeignMessage) GetC() int32 {
- if m != nil {
- return m.C
+func (x *ForeignMessage) GetC() int32 {
+ if x != nil {
+ return x.C
}
return 0
}
-func (m *ForeignMessage) GetD() int32 {
- if m != nil {
- return m.D
+func (x *ForeignMessage) GetD() int32 {
+ if x != nil {
+ return x.D
}
return 0
}
@@ -780,28 +796,35 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *TestAllTypes_NestedMessage) ProtoReflect() protoreflect.Message {
- return xxx_File_test3_test_proto_messageTypes[2].MessageOf(m)
+func (x *TestAllTypes_NestedMessage) Reset() {
+ *x = TestAllTypes_NestedMessage{}
}
-func (m *TestAllTypes_NestedMessage) Reset() { *m = TestAllTypes_NestedMessage{} }
-func (m *TestAllTypes_NestedMessage) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*TestAllTypes_NestedMessage) ProtoMessage() {}
+
+func (x *TestAllTypes_NestedMessage) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*TestAllTypes_NestedMessage) ProtoMessage() {}
+
+func (x *TestAllTypes_NestedMessage) ProtoReflect() protoreflect.Message {
+ return xxx_File_test3_test_proto_messageTypes[2].MessageOf(x)
+}
// Deprecated: Use TestAllTypes_NestedMessage.ProtoReflect.Type instead.
func (*TestAllTypes_NestedMessage) Descriptor() ([]byte, []int) {
return xxx_File_test3_test_proto_rawDescGZIP(), []int{0, 0}
}
-func (m *TestAllTypes_NestedMessage) GetA() int32 {
- if m != nil {
- return m.A
+func (x *TestAllTypes_NestedMessage) GetA() int32 {
+ if x != nil {
+ return x.A
}
return 0
}
-func (m *TestAllTypes_NestedMessage) GetCorecursive() *TestAllTypes {
- if m != nil {
- return m.Corecursive
+func (x *TestAllTypes_NestedMessage) GetCorecursive() *TestAllTypes {
+ if x != nil {
+ return x.Corecursive
}
return nil
}
diff --git a/internal/testprotos/test3/test_import.pb.go b/internal/testprotos/test3/test_import.pb.go
index fe50455..7d0b70c 100644
--- a/internal/testprotos/test3/test_import.pb.go
+++ b/internal/testprotos/test3/test_import.pb.go
@@ -18,13 +18,6 @@
ImportEnum_IMPORT_ZERO ImportEnum = 0
)
-func (e ImportEnum) Type() protoreflect.EnumType {
- return xxx_File_test3_test_import_proto_enumTypes[0]
-}
-func (e ImportEnum) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(e)
-}
-
// Deprecated: Use ImportEnum.Type.Values instead.
var ImportEnum_name = map[int32]string{
0: "IMPORT_ZERO",
@@ -39,6 +32,14 @@
return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x))
}
+func (ImportEnum) Type() protoreflect.EnumType {
+ return xxx_File_test3_test_import_proto_enumTypes[0]
+}
+
+func (x ImportEnum) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
// Deprecated: Use ImportEnum.Type instead.
func (ImportEnum) EnumDescriptor() ([]byte, []int) {
return xxx_File_test3_test_import_proto_rawDescGZIP(), []int{0}
@@ -50,12 +51,19 @@
XXX_sizecache int32 `json:"-"`
}
-func (m *ImportMessage) ProtoReflect() protoreflect.Message {
- return xxx_File_test3_test_import_proto_messageTypes[0].MessageOf(m)
+func (x *ImportMessage) Reset() {
+ *x = ImportMessage{}
}
-func (m *ImportMessage) Reset() { *m = ImportMessage{} }
-func (m *ImportMessage) String() string { return protoimpl.X.MessageStringOf(m) }
-func (*ImportMessage) ProtoMessage() {}
+
+func (x *ImportMessage) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ImportMessage) ProtoMessage() {}
+
+func (x *ImportMessage) ProtoReflect() protoreflect.Message {
+ return xxx_File_test3_test_import_proto_messageTypes[0].MessageOf(x)
+}
// Deprecated: Use ImportMessage.ProtoReflect.Type instead.
func (*ImportMessage) Descriptor() ([]byte, []int) {