From 1f4bdda2d87f1cee39bab36f835168dee01edbe2 Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Wed, 3 Apr 2024 14:36:08 +0100 Subject: [PATCH 01/19] Move all errors to extendable struct-based SwiftProtobufError --- Sources/SwiftProtobuf/AnyMessageStorage.swift | 16 +- Sources/SwiftProtobuf/AnyUnpackError.swift | 1 + .../SwiftProtobuf/AsyncMessageSequence.swift | 34 +- Sources/SwiftProtobuf/BinaryDecoder.swift | 74 +-- .../SwiftProtobuf/BinaryDecodingError.swift | 1 + Sources/SwiftProtobuf/BinaryDelimited.swift | 82 ++- .../SwiftProtobuf/BinaryEncodingError.swift | 1 + Sources/SwiftProtobuf/CMakeLists.txt | 1 + .../Google_Protobuf_Any+Extensions.swift | 20 +- .../Google_Protobuf_Duration+Extensions.swift | 18 +- ...Google_Protobuf_FieldMask+Extensions.swift | 4 +- ...Google_Protobuf_Timestamp+Extensions.swift | 32 +- .../Google_Protobuf_Value+Extensions.swift | 6 +- Sources/SwiftProtobuf/JSONDecoder.swift | 32 +- Sources/SwiftProtobuf/JSONDecodingError.swift | 1 + Sources/SwiftProtobuf/JSONEncodingError.swift | 1 + .../SwiftProtobuf/JSONEncodingVisitor.swift | 8 +- Sources/SwiftProtobuf/JSONScanner.swift | 160 ++--- .../SwiftProtobuf/Message+AnyAdditions.swift | 3 +- .../Message+BinaryAdditions.swift | 36 +- .../Message+BinaryAdditions_Data.swift | 26 +- .../SwiftProtobuf/Message+JSONAdditions.swift | 34 +- .../Message+JSONAdditions_Data.swift | 6 +- .../Message+JSONArrayAdditions.swift | 22 +- .../Message+JSONArrayAdditions_Data.swift | 6 +- .../Message+TextFormatAdditions.swift | 8 +- .../SwiftProtobuf/SwiftProtobufError.swift | 620 ++++++++++++++++++ Sources/SwiftProtobuf/TextFormatDecoder.swift | 48 +- .../TextFormatDecodingError.swift | 1 + Sources/SwiftProtobuf/TextFormatScanner.swift | 84 +-- .../ProtoFileToModuleMappings.swift | 68 +- .../Test_ProtoFileToModuleMappings.swift | 39 +- Tests/SwiftProtobufTests/TestHelpers.swift | 10 + Tests/SwiftProtobufTests/Test_AllTypes.swift | 24 +- .../Test_AsyncMessageSequence.swift | 16 +- .../Test_BinaryDecodingOptions.swift | 2 +- .../Test_BinaryDelimited.swift | 8 +- .../Test_JSONDecodingOptions.swift | 11 +- .../Test_JSON_Conformance.swift | 12 +- Tests/SwiftProtobufTests/Test_Required.swift | 8 +- Tests/SwiftProtobufTests/Test_Struct.swift | 2 +- .../Test_TextFormatDecodingOptions.swift | 2 +- .../Test_TextFormat_Unknown.swift | 22 +- Tests/SwiftProtobufTests/Test_Wrappers.swift | 2 +- 44 files changed, 1166 insertions(+), 446 deletions(-) create mode 100644 Sources/SwiftProtobuf/SwiftProtobufError.swift diff --git a/Sources/SwiftProtobuf/AnyMessageStorage.swift b/Sources/SwiftProtobuf/AnyMessageStorage.swift index c9bf79214..4b966aea3 100644 --- a/Sources/SwiftProtobuf/AnyMessageStorage.swift +++ b/Sources/SwiftProtobuf/AnyMessageStorage.swift @@ -76,7 +76,7 @@ fileprivate func unpack(contentJSON: [UInt8], } if !options.ignoreUnknownFields { // The only thing within a WKT should be "value". - throw AnyUnpackError.malformedWellKnownTypeJSON + throw SwiftProtobufError.AnyUnpack.malformedWellKnownTypeJSON } let _ = try scanner.skip() try scanner.skipRequiredComma() @@ -84,7 +84,7 @@ fileprivate func unpack(contentJSON: [UInt8], if !options.ignoreUnknownFields && !scanner.complete { // If that wasn't the end, then there was another key, and WKTs should // only have the one when not skipping unknowns. - throw AnyUnpackError.malformedWellKnownTypeJSON + throw SwiftProtobufError.AnyUnpack.malformedWellKnownTypeJSON } } } @@ -174,7 +174,7 @@ internal class AnyMessageStorage { options: BinaryDecodingOptions ) throws { guard isA(M.self) else { - throw AnyUnpackError.typeMismatch + throw SwiftProtobufError.AnyUnpack.typeMismatch } switch state { @@ -218,7 +218,7 @@ internal class AnyMessageStorage { case .contentJSON(let contentJSON, let options): // contentJSON requires we have the type available for decoding guard let messageType = Google_Protobuf_Any.messageType(forTypeURL: _typeURL) else { - throw BinaryEncodingError.anyTypeURLNotRegistered(typeURL: _typeURL) + throw SwiftProtobufError.BinaryEncoding.anyTypeURLNotRegistered(typeURL: _typeURL) } do { // Decodes the full JSON and then discard the result. @@ -230,7 +230,7 @@ internal class AnyMessageStorage { options: options, as: messageType) } catch { - throw BinaryEncodingError.anyTranscodeFailure + throw SwiftProtobufError.BinaryEncoding.anyTypeURLNotRegistered(typeURL: _typeURL) } } } @@ -243,7 +243,7 @@ extension AnyMessageStorage { _typeURL = url guard let messageType = Google_Protobuf_Any.messageType(forTypeURL: url) else { // The type wasn't registered, can't parse it. - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } let terminator = try decoder.scanner.skipObjectStart() var subDecoder = try TextFormatDecoder(messageType: messageType, scanner: decoder.scanner, terminator: terminator) @@ -259,7 +259,7 @@ extension AnyMessageStorage { decoder.scanner = subDecoder.scanner if try decoder.nextFieldNumber() != nil { // Verbose any can never have additional keys. - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } } @@ -422,7 +422,7 @@ extension AnyMessageStorage { // binary value, so we're stuck. (The Google spec does not // provide a way to just package the binary value for someone // else to decode later.) - throw JSONEncodingError.anyTypeURLNotRegistered(typeURL: _typeURL) + throw SwiftProtobufError.JSONEncoding.anyTypeURLNotRegistered(typeURL: _typeURL) } let m = try messageType.init(serializedBytes: valueData, partial: true) return try serializeAnyJSON(for: m, typeURL: _typeURL, options: options) diff --git a/Sources/SwiftProtobuf/AnyUnpackError.swift b/Sources/SwiftProtobuf/AnyUnpackError.swift index 738b0fe9a..a3c521cf1 100644 --- a/Sources/SwiftProtobuf/AnyUnpackError.swift +++ b/Sources/SwiftProtobuf/AnyUnpackError.swift @@ -21,6 +21,7 @@ /// message. At this time, any error can occur that might have occurred from a /// regular decoding operation. There are also other errors that can occur due /// to problems with the `Any` value's structure. +@available(*, deprecated, message: "This error type has been deprecated and won't be thrown anymore; it has been replaced by `SwiftProtobufError`.") public enum AnyUnpackError: Error { /// The `type_url` field in the `Google_Protobuf_Any` message did not match /// the message type provided to the `unpack()` method. diff --git a/Sources/SwiftProtobuf/AsyncMessageSequence.swift b/Sources/SwiftProtobuf/AsyncMessageSequence.swift index cd7a743c1..949c565ee 100644 --- a/Sources/SwiftProtobuf/AsyncMessageSequence.swift +++ b/Sources/SwiftProtobuf/AsyncMessageSequence.swift @@ -21,16 +21,15 @@ extension AsyncSequence where Element == UInt8 { /// /// - Parameters: /// - messageType: The type of message to read. - /// - extensions: An `ExtensionMap` used to look up and decode any extensions in + /// - extensions: An ``ExtensionMap`` used to look up and decode any extensions in /// messages encoded by this sequence, or in messages nested within these messages. - /// - partial: If `false` (the default), after decoding a message, `Message.isInitialized` + /// - partial: If `false` (the default), after decoding a message, ``Message/isInitialized-6abgi` /// will be checked to ensure all fields are present. If any are missing, - /// `BinaryDecodingError.missingRequiredFields` will be thrown. - /// - options: The BinaryDecodingOptions to use. + /// ``SwiftProtobufError/BinaryDecoding/missingRequiredFields`` will be thrown. + /// - options: The ``BinaryDecodingOptions`` to use. /// - Returns: An asynchronous sequence of messages read from the `AsyncSequence` of bytes. - /// - Throws: `BinaryDelimited.Error` for errors in the framing of the messages - /// in the sequence, `BinaryDecodingError` for errors while decoding - /// messages. + /// - Throws: ``SwiftProtobufError`` for errors in the framing of the messages in the sequence + /// or while decoding messages. @inlinable public func binaryProtobufDelimitedMessages( of messageType: M.Type = M.self, @@ -68,16 +67,15 @@ public struct AsyncMessageSequence< /// /// - Parameters: /// - baseSequence: The `AsyncSequence` to read messages from. - /// - extensions: An `ExtensionMap` used to look up and decode any extensions in + /// - extensions: An ``ExtensionMap`` used to look up and decode any extensions in /// messages encoded by this sequence, or in messages nested within these messages. - /// - partial: If `false` (the default), after decoding a message, `Message.isInitialized` + /// - partial: If `false` (the default), after decoding a message, ``Message/isInitialized-6abgi`` /// will be checked to ensure all fields are present. If any are missing, - /// `BinaryDecodingError.missingRequiredFields` will be thrown. - /// - options: The BinaryDecodingOptions to use. + /// ``SwiftProtobufError/BinaryDecoding/missingRequiredFields`` will be thrown. + /// - options: The ``BinaryDecodingOptions`` to use. /// - Returns: An asynchronous sequence of messages read from the `AsyncSequence` of bytes. - /// - Throws: `BinaryDelimited.Error` for errors in the framing of the messages - /// in the sequence, `BinaryDecodingError` for errors while decoding - /// messages. + /// - Throws: ``SwiftProtobufError`` for errors in the framing of the messages in the sequence + /// or while decoding messages. public init( base: Base, extensions: (any ExtensionMap)? = nil, @@ -124,7 +122,7 @@ public struct AsyncMessageSequence< shift += UInt64(7) if shift > 35 { iterator = nil - throw BinaryDelimited.Error.malformedLength + throw SwiftProtobufError.BinaryDecoding.malformedLength } if (byte & 0x80 == 0) { return messageSize @@ -133,7 +131,7 @@ public struct AsyncMessageSequence< if (shift > 0) { // The stream has ended inside a varint. iterator = nil - throw BinaryDelimited.Error.truncated + throw SwiftProtobufError.BinaryDecoding.truncated } return nil // End of stream reached. } @@ -155,7 +153,7 @@ public struct AsyncMessageSequence< guard let byte = try await iterator?.next() else { // The iterator hit the end, but the chunk wasn't filled, so the full // payload wasn't read. - throw BinaryDelimited.Error.truncated + throw SwiftProtobufError.BinaryDecoding.truncated } chunk[consumedBytes] = byte consumedBytes += 1 @@ -183,7 +181,7 @@ public struct AsyncMessageSequence< } guard messageSize <= UInt64(0x7fffffff) else { iterator = nil - throw BinaryDecodingError.tooLarge + throw SwiftProtobufError.BinaryDecoding.tooLarge } if messageSize == 0 { return try M( diff --git a/Sources/SwiftProtobuf/BinaryDecoder.swift b/Sources/SwiftProtobuf/BinaryDecoder.swift index b159f1e23..292249ef7 100644 --- a/Sources/SwiftProtobuf/BinaryDecoder.swift +++ b/Sources/SwiftProtobuf/BinaryDecoder.swift @@ -80,7 +80,7 @@ internal struct BinaryDecoder: Decoder { private mutating func incrementRecursionDepth() throws { recursionBudget -= 1 if recursionBudget < 0 { - throw BinaryDecodingError.messageDepthLimit + throw SwiftProtobufError.BinaryDecoding.messageDepthLimit } } @@ -139,7 +139,7 @@ internal struct BinaryDecoder: Decoder { if let wireFormat = WireFormat(rawValue: c0 & 7) { fieldWireFormat = wireFormat } else { - throw BinaryDecodingError.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf } if (c0 & 0x80) == 0 { p += 1 @@ -148,7 +148,7 @@ internal struct BinaryDecoder: Decoder { } else { fieldNumber = Int(c0 & 0x7f) >> 3 if available < 2 { - throw BinaryDecodingError.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf } let c1 = start[1] if (c1 & 0x80) == 0 { @@ -158,7 +158,7 @@ internal struct BinaryDecoder: Decoder { } else { fieldNumber |= Int(c1 & 0x7f) << 4 if available < 3 { - throw BinaryDecodingError.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf } let c2 = start[2] fieldNumber |= Int(c2 & 0x7f) << 11 @@ -167,7 +167,7 @@ internal struct BinaryDecoder: Decoder { available -= 3 } else { if available < 4 { - throw BinaryDecodingError.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf } let c3 = start[3] fieldNumber |= Int(c3 & 0x7f) << 18 @@ -176,11 +176,11 @@ internal struct BinaryDecoder: Decoder { available -= 4 } else { if available < 5 { - throw BinaryDecodingError.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf } let c4 = start[4] if c4 > 15 { - throw BinaryDecodingError.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf } fieldNumber |= Int(c4 & 0x7f) << 25 p += 5 @@ -200,12 +200,12 @@ internal struct BinaryDecoder: Decoder { } else { // .endGroup when not in a group or for a different // group is an invalid binary. - throw BinaryDecodingError.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf } } return fieldNumber } - throw BinaryDecodingError.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf } internal mutating func decodeSingularFloatField(value: inout Float) throws { @@ -236,7 +236,7 @@ internal struct BinaryDecoder: Decoder { let itemSize = UInt64(MemoryLayout.size) let itemCount = bodyBytes / itemSize if bodyBytes % itemSize != 0 || bodyBytes > available { - throw BinaryDecodingError.truncated + throw SwiftProtobufError.BinaryDecoding.truncated } value.reserveCapacity(value.count + Int(truncatingIfNeeded: itemCount)) for _ in 1...itemCount { @@ -277,7 +277,7 @@ internal struct BinaryDecoder: Decoder { let itemSize = UInt64(MemoryLayout.size) let itemCount = bodyBytes / itemSize if bodyBytes % itemSize != 0 || bodyBytes > available { - throw BinaryDecodingError.truncated + throw SwiftProtobufError.BinaryDecoding.truncated } value.reserveCapacity(value.count + Int(truncatingIfNeeded: itemCount)) for _ in 1...itemCount { @@ -721,7 +721,7 @@ internal struct BinaryDecoder: Decoder { value = s consumed = true } else { - throw BinaryDecodingError.invalidUTF8 + throw SwiftProtobufError.BinaryDecoding.invalidUTF8 } } @@ -735,7 +735,7 @@ internal struct BinaryDecoder: Decoder { value = s consumed = true } else { - throw BinaryDecodingError.invalidUTF8 + throw SwiftProtobufError.BinaryDecoding.invalidUTF8 } } @@ -748,7 +748,7 @@ internal struct BinaryDecoder: Decoder { value.append(s) consumed = true } else { - throw BinaryDecodingError.invalidUTF8 + throw SwiftProtobufError.BinaryDecoding.invalidUTF8 } default: return @@ -890,7 +890,7 @@ internal struct BinaryDecoder: Decoder { try message.decodeMessage(decoder: &self) decrementRecursionDepth() guard complete else { - throw BinaryDecodingError.trailingGarbage + throw SwiftProtobufError.BinaryDecoding.trailingGarbage } if let unknownData = unknownData { message.unknownFields.append(protobufData: unknownData) @@ -935,7 +935,7 @@ internal struct BinaryDecoder: Decoder { subDecoder.unknownData = nil try group.decodeMessage(decoder: &subDecoder) guard subDecoder.fieldNumber == fieldNumber && subDecoder.fieldWireFormat == .endGroup else { - throw BinaryDecodingError.truncated + throw SwiftProtobufError.BinaryDecoding.truncated } if let groupUnknowns = subDecoder.unknownData { group.unknownFields.append(protobufData: groupUnknowns) @@ -958,7 +958,7 @@ internal struct BinaryDecoder: Decoder { var subdecoder = BinaryDecoder(forReadingFrom: p, count: count, parent: self) while let tag = try subdecoder.getTag() { if tag.wireFormat == .endGroup { - throw BinaryDecodingError.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf } let fieldNumber = tag.fieldNumber switch fieldNumber { @@ -971,7 +971,7 @@ internal struct BinaryDecoder: Decoder { } } if !subdecoder.complete { - throw BinaryDecodingError.trailingGarbage + throw SwiftProtobufError.BinaryDecoding.trailingGarbage } // A map<> definition can't provide a default value for the keys/values, // so it is safe to use the proto3 default to get the right @@ -993,7 +993,7 @@ internal struct BinaryDecoder: Decoder { var subdecoder = BinaryDecoder(forReadingFrom: p, count: count, parent: self) while let tag = try subdecoder.getTag() { if tag.wireFormat == .endGroup { - throw BinaryDecodingError.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf } let fieldNumber = tag.fieldNumber switch fieldNumber { @@ -1014,7 +1014,7 @@ internal struct BinaryDecoder: Decoder { } } if !subdecoder.complete { - throw BinaryDecodingError.trailingGarbage + throw SwiftProtobufError.BinaryDecoding.trailingGarbage } // A map<> definition can't provide a default value for the keys, so it // is safe to use the proto3 default to get the right integer/string/bytes. @@ -1033,7 +1033,7 @@ internal struct BinaryDecoder: Decoder { var subdecoder = BinaryDecoder(forReadingFrom: p, count: count, parent: self) while let tag = try subdecoder.getTag() { if tag.wireFormat == .endGroup { - throw BinaryDecodingError.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf } let fieldNumber = tag.fieldNumber switch fieldNumber { @@ -1046,7 +1046,7 @@ internal struct BinaryDecoder: Decoder { } } if !subdecoder.complete { - throw BinaryDecodingError.trailingGarbage + throw SwiftProtobufError.BinaryDecoding.trailingGarbage } // A map<> definition can't provide a default value for the keys, so it // is safe to use the proto3 default to get the right integer/string/bytes. @@ -1090,7 +1090,7 @@ internal struct BinaryDecoder: Decoder { // the bytes were consumed, then there should have been a // field that consumed them (existing or created). This // specific error result is to allow this to be more detectable. - throw BinaryDecodingError.internalExtensionError + throw SwiftProtobufError.BinaryDecoding.internalExtensionError } } } @@ -1125,7 +1125,7 @@ internal struct BinaryDecoder: Decoder { break case .malformed: - throw BinaryDecodingError.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf } assert(recursionBudget == subDecoder.recursionBudget) @@ -1256,7 +1256,7 @@ internal struct BinaryDecoder: Decoder { let _ = try decodeVarint() case .fixed64: if available < 8 { - throw BinaryDecodingError.truncated + throw SwiftProtobufError.BinaryDecoding.truncated } p += 8 available -= 8 @@ -1266,7 +1266,7 @@ internal struct BinaryDecoder: Decoder { p += Int(n) available -= Int(n) } else { - throw BinaryDecodingError.truncated + throw SwiftProtobufError.BinaryDecoding.truncated } case .startGroup: try incrementRecursionDepth() @@ -1279,20 +1279,20 @@ internal struct BinaryDecoder: Decoder { } else { // .endGroup for a something other than the current // group is an invalid binary. - throw BinaryDecodingError.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf } } else { try skipOver(tag: innerTag) } } else { - throw BinaryDecodingError.truncated + throw SwiftProtobufError.BinaryDecoding.truncated } } case .endGroup: - throw BinaryDecodingError.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf case .fixed32: if available < 4 { - throw BinaryDecodingError.truncated + throw SwiftProtobufError.BinaryDecoding.truncated } p += 4 available -= 4 @@ -1314,7 +1314,7 @@ internal struct BinaryDecoder: Decoder { available += p - fieldStartP p = fieldStartP guard let tag = try getTagWithoutUpdatingFieldStart() else { - throw BinaryDecodingError.truncated + throw SwiftProtobufError.BinaryDecoding.truncated } try skipOver(tag: tag) fieldEndP = p @@ -1324,7 +1324,7 @@ internal struct BinaryDecoder: Decoder { /// Private: Parse the next raw varint from the input. private mutating func decodeVarint() throws -> UInt64 { if available < 1 { - throw BinaryDecodingError.truncated + throw SwiftProtobufError.BinaryDecoding.truncated } var start = p var length = available @@ -1340,7 +1340,7 @@ internal struct BinaryDecoder: Decoder { var shift = UInt64(7) while true { if length < 1 || shift > 63 { - throw BinaryDecodingError.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf } c = start.load(fromByteOffset: 0, as: UInt8.self) start += 1 @@ -1373,13 +1373,13 @@ internal struct BinaryDecoder: Decoder { let t = try decodeVarint() if t < UInt64(UInt32.max) { guard let tag = FieldTag(rawValue: UInt32(truncatingIfNeeded: t)) else { - throw BinaryDecodingError.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf } fieldWireFormat = tag.wireFormat fieldNumber = tag.fieldNumber return tag } else { - throw BinaryDecodingError.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf } } @@ -1424,11 +1424,11 @@ internal struct BinaryDecoder: Decoder { // that is length delimited on the wire, so the spec would imply // the limit still applies. guard length < 0x7fffffff else { - throw BinaryDecodingError.tooLarge + throw SwiftProtobufError.BinaryDecoding.tooLarge } guard length <= UInt64(available) else { - throw BinaryDecodingError.truncated + throw SwiftProtobufError.BinaryDecoding.truncated } count = Int(length) diff --git a/Sources/SwiftProtobuf/BinaryDecodingError.swift b/Sources/SwiftProtobuf/BinaryDecodingError.swift index 2a0c17731..414958540 100644 --- a/Sources/SwiftProtobuf/BinaryDecodingError.swift +++ b/Sources/SwiftProtobuf/BinaryDecodingError.swift @@ -13,6 +13,7 @@ // ----------------------------------------------------------------------------- /// Describes errors that can occur when decoding a message from binary format. +@available(*, deprecated, message: "This error type has been deprecated and won't be thrown anymore; it has been replaced by `SwiftProtobufError`.") public enum BinaryDecodingError: Error { /// Extraneous data remained after decoding should have been complete. case trailingGarbage diff --git a/Sources/SwiftProtobuf/BinaryDelimited.swift b/Sources/SwiftProtobuf/BinaryDelimited.swift index a529e6d75..eefc0a170 100644 --- a/Sources/SwiftProtobuf/BinaryDelimited.swift +++ b/Sources/SwiftProtobuf/BinaryDelimited.swift @@ -16,9 +16,46 @@ import Foundation #endif +extension SwiftProtobufError.BinaryDecoding { + /// If a read/write to the stream fails, but the stream's `streamError` is nil, + /// this error will be thrown instead since the stream didn't provide anything + /// more specific. A common cause for this can be failing to open the stream + /// before trying to read/write to it. + public static let unknownStreamError = SwiftProtobufError( + code: .binaryDecodingError, + message: "Unknown error when reading/writing binary-delimited message into stream." + ) + + /// While attempting to read the length of a message on the stream, the + /// bytes were malformed for the protobuf format. + public static let malformedLength = SwiftProtobufError( + code: .binaryDecodingError, + message: """ + While attempting to read the length of a binary-delimited message \ + on the stream, the bytes were malformed for the protobuf format. + """ + ) + + /// This isn't really an error. `InputStream` documents that + /// `hasBytesAvailable` _may_ return `True` if a read is needed to + /// determine if there really are bytes available. So this "error" is thrown + /// when a `parse` or `merge` fails because there were no bytes available. + /// If this is raised, the callers should decide via what ever other means + /// are correct if the stream has completely ended or if more bytes might + /// eventually show up. + public static let noBytesAvailable = SwiftProtobufError( + code: .binaryDecodingError, + message: """ + This is not really an error: please read the documentation for + `SwiftProtobufError/BinaryDecoding/noBytesAvailable` for more information. + """ + ) +} + /// Helper methods for reading/writing messages with a length prefix. public enum BinaryDelimited { /// Additional errors for delimited message handing. + @available(*, deprecated, message: "This error type has been deprecated and won't be thrown anymore; it has been replaced by `SwiftProtobufError`.") public enum Error: Swift.Error { /// If a read/write to the stream fails, but the stream's `streamError` is nil, /// this error will be throw instead since the stream didn't provide anything @@ -60,11 +97,10 @@ public enum BinaryDelimited { /// - to: The `OutputStream` to write the message to. The stream is /// is assumed to be ready to be written to. /// - partial: If `false` (the default), this method will check - /// `Message.isInitialized` before encoding to verify that all required + /// ``Message/isInitialized-6abgi`` before encoding to verify that all required /// fields are present. If any are missing, this method throws - /// `BinaryEncodingError.missingRequiredFields`. - /// - Throws: `BinaryEncodingError` if encoding fails, throws - /// `BinaryDelimited.Error` for some writing errors, or the + /// ``SwiftProtobufError/BinaryEncoding/missingRequiredFields``. + /// - Throws: ``SwiftProtobufError`` if encoding fails or some writing errors occur; or the /// underlying `OutputStream.streamError` for a stream error. public static func serialize( message: any Message, @@ -96,9 +132,9 @@ public enum BinaryDelimited { if let streamError = stream.streamError { throw streamError } - throw BinaryDelimited.Error.unknownStreamError + throw SwiftProtobufError.BinaryDecoding.unknownStreamError } - throw BinaryDelimited.Error.truncated + throw SwiftProtobufError.BinaryEncoding.truncated } } @@ -112,17 +148,16 @@ public enum BinaryDelimited { /// - messageType: The type of message to read. /// - from: The `InputStream` to read the data from. The stream is assumed /// to be ready to read from. - /// - extensions: An `ExtensionMap` used to look up and decode any + /// - extensions: An ``ExtensionMap`` used to look up and decode any /// extensions in this message or messages nested within this message's /// fields. /// - partial: If `false` (the default), this method will check - /// `Message.isInitialized` after decoding to verify that all required + /// ``Message/isInitialized-6abgi`` after decoding to verify that all required /// fields are present. If any are missing, this method throws - /// `BinaryDecodingError.missingRequiredFields`. - /// - options: The BinaryDecodingOptions to use. + /// ``SwiftProtobufError/BinaryDecoding/missingRequiredFields``. + /// - options: The ``BinaryDecodingOptions`` to use. /// - Returns: The message read. - /// - Throws: `BinaryDecodingError` if decoding fails, throws - /// `BinaryDelimited.Error` for some reading errors, and the + /// - Throws: ``SwiftProtobufError`` if decoding fails, and for some reading errors; or the /// underlying `InputStream.streamError` for a stream error. public static func parse( messageType: M.Type, @@ -154,16 +189,15 @@ public enum BinaryDelimited { /// - mergingTo: The message to merge the data into. /// - from: The `InputStream` to read the data from. The stream is assumed /// to be ready to read from. - /// - extensions: An `ExtensionMap` used to look up and decode any + /// - extensions: An ``ExtensionMap`` used to look up and decode any /// extensions in this message or messages nested within this message's /// fields. /// - partial: If `false` (the default), this method will check - /// `Message.isInitialized` after decoding to verify that all required + /// ``Message/isInitialized-6abgi`` after decoding to verify that all required /// fields are present. If any are missing, this method throws - /// `BinaryDecodingError.missingRequiredFields`. + /// ``SwiftProtobufError/BinaryDecoding/missingRequiredFields``. /// - options: The BinaryDecodingOptions to use. - /// - Throws: `BinaryDecodingError` if decoding fails, throws - /// `BinaryDelimited.Error` for some reading errors, and the + /// - Throws: ``SwiftProtobufError`` if decoding fails, and for some reading errors; or the /// underlying `InputStream.streamError` for a stream error. public static func merge( into message: inout M, @@ -178,7 +212,7 @@ public enum BinaryDelimited { return } guard unsignedLength <= 0x7fffffff else { - throw BinaryDelimited.Error.tooLarge + throw SwiftProtobufError.BinaryDecoding.tooLarge } let length = Int(unsignedLength) @@ -205,11 +239,11 @@ public enum BinaryDelimited { if let streamError = stream.streamError { throw streamError } - throw BinaryDelimited.Error.unknownStreamError + throw SwiftProtobufError.BinaryDecoding.unknownStreamError } if bytesRead == 0 { // Hit the end of the stream - throw BinaryDelimited.Error.truncated + throw SwiftProtobufError.BinaryDecoding.truncated } if bytesRead < chunk.count { data += chunk[0.. UInt64 { if let streamError = stream.streamError { throw streamError } - throw BinaryDelimited.Error.unknownStreamError + throw SwiftProtobufError.BinaryDecoding.unknownStreamError } } @@ -258,9 +292,9 @@ internal func decodeVarint(_ stream: InputStream) throws -> UInt64 { while true { guard let c = try nextByte() else { if shift == 0 { - throw BinaryDelimited.Error.noBytesAvailable + throw SwiftProtobufError.BinaryDecoding.noBytesAvailable } - throw BinaryDelimited.Error.truncated + throw SwiftProtobufError.BinaryDecoding.truncated } value |= UInt64(c & 0x7f) << shift if c & 0x80 == 0 { @@ -268,7 +302,7 @@ internal func decodeVarint(_ stream: InputStream) throws -> UInt64 { } shift += 7 if shift > 63 { - throw BinaryDelimited.Error.malformedLength + throw SwiftProtobufError.BinaryDecoding.malformedLength } } } diff --git a/Sources/SwiftProtobuf/BinaryEncodingError.swift b/Sources/SwiftProtobuf/BinaryEncodingError.swift index c95823400..ea0e1e67a 100644 --- a/Sources/SwiftProtobuf/BinaryEncodingError.swift +++ b/Sources/SwiftProtobuf/BinaryEncodingError.swift @@ -13,6 +13,7 @@ // ----------------------------------------------------------------------------- /// Describes errors that can occur when decoding a message from binary format. +@available(*, deprecated, message: "This error type has been deprecated and won't be thrown anymore; it has been replaced by `SwiftProtobufError`.") public enum BinaryEncodingError: Error, Equatable { /// `Any` fields that were decoded from JSON cannot be re-encoded to binary /// unless the object they hold is a well-known type or a type registered via diff --git a/Sources/SwiftProtobuf/CMakeLists.txt b/Sources/SwiftProtobuf/CMakeLists.txt index 74816c320..2b99afd9f 100644 --- a/Sources/SwiftProtobuf/CMakeLists.txt +++ b/Sources/SwiftProtobuf/CMakeLists.txt @@ -64,6 +64,7 @@ add_library(SwiftProtobuf source_context.pb.swift StringUtils.swift struct.pb.swift + SwiftProtobufError.swift TextFormatDecoder.swift TextFormatDecodingError.swift TextFormatEncoder.swift diff --git a/Sources/SwiftProtobuf/Google_Protobuf_Any+Extensions.swift b/Sources/SwiftProtobuf/Google_Protobuf_Any+Extensions.swift index 7459934b8..56b001c9e 100644 --- a/Sources/SwiftProtobuf/Google_Protobuf_Any+Extensions.swift +++ b/Sources/SwiftProtobuf/Google_Protobuf_Any+Extensions.swift @@ -30,20 +30,20 @@ extension Google_Protobuf_Any { /// /// - Parameters: /// - partial: If `false` (the default), this method will check - /// `Message.isInitialized` before encoding to verify that all required + /// ``Message/isInitialized-6abgi`` before encoding to verify that all required /// fields are present. If any are missing, this method throws - /// `BinaryEncodingError.missingRequiredFields`. - /// - typePrefix: The prefix to be used when building the `type_url`. + /// ``SwiftProtobufError/BinaryEncoding/missingRequiredFields``. + /// - typePrefix: The prefix to be used when building the `type_url`. /// Defaults to "type.googleapis.com". - /// - Throws: `BinaryEncodingError.missingRequiredFields` if `partial` is - /// false and `message` wasn't fully initialized. + /// - Throws: ``SwiftProtobufError/BinaryEncoding/missingRequiredFields`` if + /// `partial` is false and `message` wasn't fully initialized. public init( message: any Message, partial: Bool = false, typePrefix: String = defaultAnyTypeURLPrefix ) throws { if !partial && !message.isInitialized { - throw BinaryEncodingError.missingRequiredFields + throw SwiftProtobufError.BinaryEncoding.missingRequiredFields } self.init() typeURL = buildTypeURL(forMessage:message, typePrefix: typePrefix) @@ -55,11 +55,11 @@ extension Google_Protobuf_Any { /// /// - Parameters: /// - textFormatString: The text format string to decode. - /// - options: The `TextFormatDencodingOptions` to use. - /// - extensions: An `ExtensionMap` used to look up and decode any + /// - options: The ``TextFormatDecodingOptions`` to use. + /// - extensions: An ``ExtensionMap`` used to look up and decode any /// extensions in this message or messages nested within this message's /// fields. - /// - Throws: an instance of `TextFormatDecodingError` on failure. + /// - Throws: ``SwiftProtobufError`` on failure. public init( textFormatString: String, options: TextFormatDecodingOptions = TextFormatDecodingOptions(), @@ -78,7 +78,7 @@ extension Google_Protobuf_Any { extensions: extensions) try decodeTextFormat(decoder: &textDecoder) if !textDecoder.complete { - throw TextFormatDecodingError.trailingGarbage + throw SwiftProtobufError.TextFormatDecoding.trailingGarbage } } } diff --git a/Sources/SwiftProtobuf/Google_Protobuf_Duration+Extensions.swift b/Sources/SwiftProtobuf/Google_Protobuf_Duration+Extensions.swift index 0481af801..ae522ff7f 100644 --- a/Sources/SwiftProtobuf/Google_Protobuf_Duration+Extensions.swift +++ b/Sources/SwiftProtobuf/Google_Protobuf_Duration+Extensions.swift @@ -32,7 +32,7 @@ private func parseDuration(text: String) throws -> (Int64, Int32) { case "-": // Only accept '-' as very first character if total > 0 { - throw JSONDecodingError.malformedDuration + throw SwiftProtobufError.JSONDecoding.malformedDuration } digits.append(c) isNegative = true @@ -41,14 +41,14 @@ private func parseDuration(text: String) throws -> (Int64, Int32) { digitCount += 1 case ".": if let _ = seconds { - throw JSONDecodingError.malformedDuration + throw SwiftProtobufError.JSONDecoding.malformedDuration } let digitString = String(digits) if let s = Int64(digitString), s >= minDurationSeconds && s <= maxDurationSeconds { seconds = s } else { - throw JSONDecodingError.malformedDuration + throw SwiftProtobufError.JSONDecoding.malformedDuration } digits.removeAll() digitCount = 0 @@ -71,7 +71,7 @@ private func parseDuration(text: String) throws -> (Int64, Int32) { nanos = rawNanos } } else { - throw JSONDecodingError.malformedDuration + throw SwiftProtobufError.JSONDecoding.malformedDuration } } else { // No fraction, we just have an integral number of seconds @@ -80,20 +80,20 @@ private func parseDuration(text: String) throws -> (Int64, Int32) { s >= minDurationSeconds && s <= maxDurationSeconds { seconds = s } else { - throw JSONDecodingError.malformedDuration + throw SwiftProtobufError.JSONDecoding.malformedDuration } } // Fail if there are characters after 's' if chars.next() != nil { - throw JSONDecodingError.malformedDuration + throw SwiftProtobufError.JSONDecoding.malformedDuration } return (seconds!, nanos) default: - throw JSONDecodingError.malformedDuration + throw SwiftProtobufError.JSONDecoding.malformedDuration } total += 1 } - throw JSONDecodingError.malformedDuration + throw SwiftProtobufError.JSONDecoding.malformedDuration } private func formatDuration(seconds: Int64, nanos: Int32) -> String? { @@ -130,7 +130,7 @@ extension Google_Protobuf_Duration: _CustomJSONCodable { if let formatted = formatDuration(seconds: seconds, nanos: nanos) { return "\"\(formatted)\"" } else { - throw JSONEncodingError.durationRange + throw SwiftProtobufError.JSONEncoding.durationRange } } } diff --git a/Sources/SwiftProtobuf/Google_Protobuf_FieldMask+Extensions.swift b/Sources/SwiftProtobuf/Google_Protobuf_FieldMask+Extensions.swift index 1d1e7f73c..f625f78b0 100644 --- a/Sources/SwiftProtobuf/Google_Protobuf_FieldMask+Extensions.swift +++ b/Sources/SwiftProtobuf/Google_Protobuf_FieldMask+Extensions.swift @@ -166,7 +166,7 @@ extension Google_Protobuf_FieldMask: _CustomJSONCodable { if let names = parseJSONFieldNames(names: s) { paths = names } else { - throw JSONDecodingError.malformedFieldMask + throw SwiftProtobufError.JSONDecoding.malformedFieldMask } } @@ -178,7 +178,7 @@ extension Google_Protobuf_FieldMask: _CustomJSONCodable { if let jsonPath = ProtoToJSON(name: p) { jsonPaths.append(jsonPath) } else { - throw JSONEncodingError.fieldMaskConversion + throw SwiftProtobufError.JSONEncoding.fieldMaskConversion } } return "\"" + jsonPaths.joined(separator: ",") + "\"" diff --git a/Sources/SwiftProtobuf/Google_Protobuf_Timestamp+Extensions.swift b/Sources/SwiftProtobuf/Google_Protobuf_Timestamp+Extensions.swift index ab0a68b87..d28de2213 100644 --- a/Sources/SwiftProtobuf/Google_Protobuf_Timestamp+Extensions.swift +++ b/Sources/SwiftProtobuf/Google_Protobuf_Timestamp+Extensions.swift @@ -29,7 +29,7 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { // Convert to an array of integer character values let value = s.utf8.map{Int($0)} if value.count < 20 { - throw JSONDecodingError.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp } // Since the format is fixed-layout, we can just decode // directly as follows. @@ -44,7 +44,7 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { func fromAscii2(_ digit0: Int, _ digit1: Int) throws -> Int { if digit0 < zero || digit0 > nine || digit1 < zero || digit1 > nine { - throw JSONDecodingError.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp } return digit0 * 10 + digit1 - 528 } @@ -59,7 +59,7 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { || digit1 < zero || digit1 > nine || digit2 < zero || digit2 > nine || digit3 < zero || digit3 > nine) { - throw JSONDecodingError.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp } return digit0 * 1000 + digit1 * 100 + digit2 * 10 + digit3 - 53328 } @@ -67,37 +67,37 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { // Year: 4 digits followed by '-' let year = try fromAscii4(value[0], value[1], value[2], value[3]) if value[4] != dash || year < Int(1) || year > Int(9999) { - throw JSONDecodingError.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp } // Month: 2 digits followed by '-' let month = try fromAscii2(value[5], value[6]) if value[7] != dash || month < Int(1) || month > Int(12) { - throw JSONDecodingError.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp } // Day: 2 digits followed by 'T' let mday = try fromAscii2(value[8], value[9]) if value[10] != letterT || mday < Int(1) || mday > Int(31) { - throw JSONDecodingError.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp } // Hour: 2 digits followed by ':' let hour = try fromAscii2(value[11], value[12]) if value[13] != colon || hour > Int(23) { - throw JSONDecodingError.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp } // Minute: 2 digits followed by ':' let minute = try fromAscii2(value[14], value[15]) if value[16] != colon || minute > Int(59) { - throw JSONDecodingError.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp } // Second: 2 digits (following char is checked below) let second = try fromAscii2(value[17], value[18]) if second > Int(61) { - throw JSONDecodingError.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp } // timegm() is almost entirely useless. It's nonexistent on @@ -149,15 +149,15 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { var seconds: Int64 = 0 // "Z" or "+" or "-" starts Timezone offset if pos >= value.count { - throw JSONDecodingError.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp } else if value[pos] == plus || value[pos] == dash { if pos + 6 > value.count { - throw JSONDecodingError.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp } let hourOffset = try fromAscii2(value[pos + 1], value[pos + 2]) let minuteOffset = try fromAscii2(value[pos + 4], value[pos + 5]) if hourOffset > Int(13) || minuteOffset > Int(59) || value[pos + 3] != colon { - throw JSONDecodingError.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp } var adjusted: Int64 = t if value[pos] == plus { @@ -168,7 +168,7 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { adjusted += Int64(minuteOffset) * Int64(60) } if adjusted < minTimestampSeconds || adjusted > maxTimestampSeconds { - throw JSONDecodingError.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp } seconds = adjusted pos += 6 @@ -176,10 +176,10 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { seconds = t pos += 1 } else { - throw JSONDecodingError.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp } if pos != value.count { - throw JSONDecodingError.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp } return (seconds, nanos) } @@ -223,7 +223,7 @@ extension Google_Protobuf_Timestamp: _CustomJSONCodable { if let formatted = formatTimestamp(seconds: seconds, nanos: nanos) { return "\"\(formatted)\"" } else { - throw JSONEncodingError.timestampRange + throw SwiftProtobufError.JSONEncoding.timestampRange } } } diff --git a/Sources/SwiftProtobuf/Google_Protobuf_Value+Extensions.swift b/Sources/SwiftProtobuf/Google_Protobuf_Value+Extensions.swift index 0bc90f8e8..7fa3edb3e 100644 --- a/Sources/SwiftProtobuf/Google_Protobuf_Value+Extensions.swift +++ b/Sources/SwiftProtobuf/Google_Protobuf_Value+Extensions.swift @@ -80,7 +80,7 @@ extension Google_Protobuf_Value: _CustomJSONCodable { switch c { case "n": if !decoder.scanner.skipOptionalNull() { - throw JSONDecodingError.failure + throw SwiftProtobufError.JSONDecoding.failure } kind = .nullValue(.nullValue) case "[": @@ -154,14 +154,14 @@ extension Google_Protobuf_Value { case .nullValue?: encoder.putNullValue() case .numberValue(let v)?: guard v.isFinite else { - throw JSONEncodingError.valueNumberNotFinite + throw SwiftProtobufError.JSONEncoding.valueNumberNotFinite } encoder.putDoubleValue(value: v) case .stringValue(let v)?: encoder.putStringValue(value: v) case .boolValue(let v)?: encoder.putNonQuotedBoolValue(value: v) case .structValue(let v)?: encoder.append(text: try v.jsonString(options: options)) case .listValue(let v)?: encoder.append(text: try v.jsonString(options: options)) - case nil: throw JSONEncodingError.missingValue + case nil: throw SwiftProtobufError.JSONEncoding.missingValue } } } diff --git a/Sources/SwiftProtobuf/JSONDecoder.swift b/Sources/SwiftProtobuf/JSONDecoder.swift index 3b22cc31e..fc501cb13 100644 --- a/Sources/SwiftProtobuf/JSONDecoder.swift +++ b/Sources/SwiftProtobuf/JSONDecoder.swift @@ -26,7 +26,7 @@ internal struct JSONDecoder: Decoder { } mutating func handleConflictingOneOf() throws { - throw JSONDecodingError.conflictingOneOf + throw SwiftProtobufError.JSONDecoding.conflictingOneOf } internal init(source: UnsafeRawBufferPointer, options: JSONDecodingOptions, @@ -133,7 +133,7 @@ internal struct JSONDecoder: Decoder { } let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw JSONDecodingError.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange } value = Int32(truncatingIfNeeded: n) } @@ -145,7 +145,7 @@ internal struct JSONDecoder: Decoder { } let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw JSONDecodingError.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange } value = Int32(truncatingIfNeeded: n) } @@ -161,7 +161,7 @@ internal struct JSONDecoder: Decoder { while true { let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw JSONDecodingError.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange } value.append(Int32(truncatingIfNeeded: n)) if scanner.skipOptionalArrayEnd() { @@ -212,7 +212,7 @@ internal struct JSONDecoder: Decoder { } let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw JSONDecodingError.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange } value = UInt32(truncatingIfNeeded: n) } @@ -224,7 +224,7 @@ internal struct JSONDecoder: Decoder { } let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw JSONDecodingError.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange } value = UInt32(truncatingIfNeeded: n) } @@ -240,7 +240,7 @@ internal struct JSONDecoder: Decoder { while true { let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw JSONDecodingError.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange } value.append(UInt32(truncatingIfNeeded: n)) if scanner.skipOptionalArrayEnd() { @@ -514,7 +514,7 @@ internal struct JSONDecoder: Decoder { let e = try customDecodable.decodedFromJSONNull() as! E value.append(e) } else { - throw JSONDecodingError.illegalNull + throw SwiftProtobufError.JSONDecoding.illegalNull } } else { if let e: E = try scanner.nextEnumValue() { @@ -530,7 +530,7 @@ internal struct JSONDecoder: Decoder { internal mutating func decodeFullObject(message: inout M) throws { guard let nameProviding = (M.self as? any _ProtoNameProviding.Type) else { - throw JSONDecodingError.missingFieldNames + throw SwiftProtobufError.JSONDecoding.missingFieldNames } fieldNameMap = nameProviding._protobuf_nameMap if let m = message as? (any _CustomJSONCodable) { @@ -587,7 +587,7 @@ internal struct JSONDecoder: Decoder { } } if !appended { - throw JSONDecodingError.illegalNull + throw SwiftProtobufError.JSONDecoding.illegalNull } } else { var message = M() @@ -628,7 +628,7 @@ internal struct JSONDecoder: Decoder { // map keys must always be quoted strings. let c = try scanner.peekOneCharacter() if c != "\"" { - throw JSONDecodingError.unquotedMapKey + throw SwiftProtobufError.JSONDecoding.unquotedMapKey } isMapKey = true var keyField: KeyType.BaseType? @@ -640,7 +640,7 @@ internal struct JSONDecoder: Decoder { if let keyField = keyField, let valueField = valueField { value[keyField] = valueField } else { - throw JSONDecodingError.malformedMap + throw SwiftProtobufError.JSONDecoding.malformedMap } if scanner.skipOptionalObjectEnd() { return @@ -665,13 +665,13 @@ internal struct JSONDecoder: Decoder { // map keys must always be quoted strings. let c = try scanner.peekOneCharacter() if c != "\"" { - throw JSONDecodingError.unquotedMapKey + throw SwiftProtobufError.JSONDecoding.unquotedMapKey } isMapKey = true var keyFieldOpt: KeyType.BaseType? try KeyType.decodeSingular(value: &keyFieldOpt, from: &self) guard let keyField = keyFieldOpt else { - throw JSONDecodingError.malformedMap + throw SwiftProtobufError.JSONDecoding.malformedMap } isMapKey = false try scanner.skipRequiredColon() @@ -707,7 +707,7 @@ internal struct JSONDecoder: Decoder { // map keys must always be quoted strings. let c = try scanner.peekOneCharacter() if c != "\"" { - throw JSONDecodingError.unquotedMapKey + throw SwiftProtobufError.JSONDecoding.unquotedMapKey } isMapKey = true var keyField: KeyType.BaseType? @@ -719,7 +719,7 @@ internal struct JSONDecoder: Decoder { if let keyField = keyField, let valueField = valueField { value[keyField] = valueField } else { - throw JSONDecodingError.malformedMap + throw SwiftProtobufError.JSONDecoding.malformedMap } if scanner.skipOptionalObjectEnd() { return diff --git a/Sources/SwiftProtobuf/JSONDecodingError.swift b/Sources/SwiftProtobuf/JSONDecodingError.swift index 35a407c5d..d2650fbc9 100644 --- a/Sources/SwiftProtobuf/JSONDecodingError.swift +++ b/Sources/SwiftProtobuf/JSONDecodingError.swift @@ -12,6 +12,7 @@ /// // ----------------------------------------------------------------------------- +@available(*, deprecated, message: "This error type has been deprecated and won't be thrown anymore; it has been replaced by `SwiftProtobufError`.") public enum JSONDecodingError: Error { /// Something was wrong case failure diff --git a/Sources/SwiftProtobuf/JSONEncodingError.swift b/Sources/SwiftProtobuf/JSONEncodingError.swift index 9022b56b9..964ceb725 100644 --- a/Sources/SwiftProtobuf/JSONEncodingError.swift +++ b/Sources/SwiftProtobuf/JSONEncodingError.swift @@ -12,6 +12,7 @@ /// // ----------------------------------------------------------------------------- +@available(*, deprecated, message: "This error type has been deprecated and won't be thrown anymore; it has been replaced by `SwiftProtobufError`.") public enum JSONEncodingError: Error, Equatable { /// Any fields that were decoded from binary format cannot be /// re-encoded into JSON unless the object they hold is a diff --git a/Sources/SwiftProtobuf/JSONEncodingVisitor.swift b/Sources/SwiftProtobuf/JSONEncodingVisitor.swift index 6e5b387ae..2cd9f7287 100644 --- a/Sources/SwiftProtobuf/JSONEncodingVisitor.swift +++ b/Sources/SwiftProtobuf/JSONEncodingVisitor.swift @@ -38,7 +38,7 @@ internal struct JSONEncodingVisitor: Visitor { if let nameProviding = type as? any _ProtoNameProviding.Type { self.nameMap = nameProviding._protobuf_nameMap } else { - throw JSONEncodingError.missingFieldNames + throw SwiftProtobufError.JSONEncoding.missingFieldNames } self.options = options } @@ -186,7 +186,7 @@ internal struct JSONEncodingVisitor: Visitor { self.nameMap = oldNameMap self.extensions = oldExtensions } else { - throw JSONEncodingError.missingFieldNames + throw SwiftProtobufError.JSONEncoding.missingFieldNames } } @@ -345,7 +345,7 @@ internal struct JSONEncodingVisitor: Visitor { self.nameMap = oldNameMap self.extensions = oldExtensions } else { - throw JSONEncodingError.missingFieldNames + throw SwiftProtobufError.JSONEncoding.missingFieldNames } encoder.endArray() } @@ -421,7 +421,7 @@ internal struct JSONEncodingVisitor: Visitor { } else if let name = extensions?[number]?.protobufExtension.fieldName { encoder.startExtensionField(name: name) } else { - throw JSONEncodingError.missingFieldNames + throw SwiftProtobufError.JSONEncoding.missingFieldNames } } } diff --git a/Sources/SwiftProtobuf/JSONScanner.swift b/Sources/SwiftProtobuf/JSONScanner.swift index 98c8c317b..4957375d4 100644 --- a/Sources/SwiftProtobuf/JSONScanner.swift +++ b/Sources/SwiftProtobuf/JSONScanner.swift @@ -122,7 +122,7 @@ private func parseBytes( ) throws -> Data { let c = source[index] if c != asciiDoubleQuote { - throw JSONDecodingError.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString } source.formIndex(after: &index) @@ -142,7 +142,7 @@ private func parseBytes( if digit == asciiBackslash { source.formIndex(after: &index) if index == end { - throw JSONDecodingError.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString } let escaped = source[index] switch escaped { @@ -150,12 +150,12 @@ private func parseBytes( // TODO: Parse hex escapes such as \u0041. Note that // such escapes are going to be extremely rare, so // there's little point in optimizing for them. - throw JSONDecodingError.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString case asciiForwardSlash: digit = escaped default: // Reject \b \f \n \r \t \" or \\ and all illegal escapes - throw JSONDecodingError.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString } } @@ -173,11 +173,11 @@ private func parseBytes( // We reached the end without seeing the close quote if index == end { - throw JSONDecodingError.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString } // Reject mixed encodings. if sawSection4Characters && sawSection5Characters { - throw JSONDecodingError.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString } // Allocate a Data object of exactly the right size @@ -211,7 +211,7 @@ private func parseBytes( default: // Note: Invalid backslash escapes were caught // above; we should never get here. - throw JSONDecodingError.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString } case asciiSpace: source.formIndex(after: &index) @@ -226,12 +226,12 @@ private func parseBytes( case 61: padding += 1 default: // Only '=' and whitespace permitted - throw JSONDecodingError.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString } source.formIndex(after: &index) } default: - throw JSONDecodingError.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString } } n <<= 6 @@ -266,7 +266,7 @@ private func parseBytes( default: break } - throw JSONDecodingError.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString } } source.formIndex(after: &index) @@ -412,7 +412,7 @@ internal struct JSONScanner { internal mutating func incrementRecursionDepth() throws { recursionBudget -= 1 if recursionBudget < 0 { - throw JSONDecodingError.messageDepthLimit + throw SwiftProtobufError.JSONDecoding.messageDepthLimit } } @@ -449,7 +449,7 @@ internal struct JSONScanner { internal mutating func peekOneCharacter() throws -> Character { skipWhitespace() guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } return Character(UnicodeScalar(UInt32(currentByte))!) } @@ -487,7 +487,7 @@ internal struct JSONScanner { end: UnsafeRawBufferPointer.Index ) throws -> UInt64? { if index == end { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } let start = index let c = source[index] @@ -499,7 +499,7 @@ internal struct JSONScanner { switch after { case asciiZero...asciiNine: // 0...9 // leading '0' forbidden unless it is the only digit - throw JSONDecodingError.leadingZero + throw SwiftProtobufError.JSONDecoding.leadingZero case asciiPeriod, asciiLowerE, asciiUpperE: // . e // Slow path: JSON numbers can be written in floating-point notation index = start @@ -510,7 +510,7 @@ internal struct JSONScanner { return u } } - throw JSONDecodingError.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber case asciiBackslash: return nil default: @@ -526,7 +526,7 @@ internal struct JSONScanner { case asciiZero...asciiNine: // 0...9 let val = UInt64(digit - asciiZero) if n > UInt64.max / 10 || n * 10 > UInt64.max - val { - throw JSONDecodingError.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange } source.formIndex(after: &index) n = n * 10 + val @@ -540,7 +540,7 @@ internal struct JSONScanner { return u } } - throw JSONDecodingError.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber case asciiBackslash: return nil default: @@ -551,7 +551,7 @@ internal struct JSONScanner { case asciiBackslash: return nil default: - throw JSONDecodingError.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber } } @@ -572,25 +572,25 @@ internal struct JSONScanner { end: UnsafeRawBufferPointer.Index ) throws -> Int64? { if index == end { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } let c = source[index] if c == asciiMinus { // - source.formIndex(after: &index) if index == end { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } // character after '-' must be digit let digit = source[index] if digit < asciiZero || digit > asciiNine { - throw JSONDecodingError.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber } if let n = try parseBareUInt64(source: source, index: &index, end: end) { let limit: UInt64 = 0x8000000000000000 // -Int64.min if n >= limit { if n > limit { // Too large negative number - throw JSONDecodingError.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange } else { return Int64.min // Special case for Int64.min } @@ -601,7 +601,7 @@ internal struct JSONScanner { } } else if let n = try parseBareUInt64(source: source, index: &index, end: end) { if n > UInt64(bitPattern: Int64.max) { - throw JSONDecodingError.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange } return Int64(bitPattern: n) } else { @@ -628,7 +628,7 @@ internal struct JSONScanner { // RFC 7159 defines the grammar for JSON numbers as: // number = [ minus ] int [ frac ] [ exp ] if index == end { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } let start = index var c = source[index] @@ -641,7 +641,7 @@ internal struct JSONScanner { source.formIndex(after: &index) if index == end { index = start - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } c = source[index] if c == asciiBackslash { @@ -671,7 +671,7 @@ internal struct JSONScanner { return nil } if c >= asciiZero && c <= asciiNine { - throw JSONDecodingError.leadingZero + throw SwiftProtobufError.JSONDecoding.leadingZero } case asciiOne...asciiNine: while c >= asciiZero && c <= asciiNine { @@ -680,7 +680,7 @@ internal struct JSONScanner { if let d = numberParser.utf8ToDouble(bytes: source, start: start, end: index) { return d } else { - throw JSONDecodingError.invalidUTF8 + throw SwiftProtobufError.JSONDecoding.invalidUTF8 } } c = source[index] @@ -690,7 +690,7 @@ internal struct JSONScanner { } default: // Integer part cannot be empty - throw JSONDecodingError.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber } // frac = decimal-point 1*DIGIT @@ -698,7 +698,7 @@ internal struct JSONScanner { source.formIndex(after: &index) if index == end { // decimal point must have a following digit - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } c = source[index] switch c { @@ -709,7 +709,7 @@ internal struct JSONScanner { if let d = numberParser.utf8ToDouble(bytes: source, start: start, end: index) { return d } else { - throw JSONDecodingError.invalidUTF8 + throw SwiftProtobufError.JSONDecoding.invalidUTF8 } } c = source[index] @@ -721,7 +721,7 @@ internal struct JSONScanner { return nil default: // decimal point must be followed by at least one digit - throw JSONDecodingError.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber } } @@ -730,7 +730,7 @@ internal struct JSONScanner { source.formIndex(after: &index) if index == end { // "e" must be followed by +,-, or digit - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } c = source[index] if c == asciiBackslash { @@ -740,7 +740,7 @@ internal struct JSONScanner { source.formIndex(after: &index) if index == end { // must be at least one digit in exponent - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } c = source[index] if c == asciiBackslash { @@ -755,7 +755,7 @@ internal struct JSONScanner { if let d = numberParser.utf8ToDouble(bytes: source, start: start, end: index) { return d } else { - throw JSONDecodingError.invalidUTF8 + throw SwiftProtobufError.JSONDecoding.invalidUTF8 } } c = source[index] @@ -765,13 +765,13 @@ internal struct JSONScanner { } default: // must be at least one digit in exponent - throw JSONDecodingError.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber } } if let d = numberParser.utf8ToDouble(bytes: source, start: start, end: index) { return d } else { - throw JSONDecodingError.invalidUTF8 + throw SwiftProtobufError.JSONDecoding.invalidUTF8 } } @@ -822,7 +822,7 @@ internal struct JSONScanner { internal mutating func nextUInt() throws -> UInt64 { skipWhitespace() guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } let c = currentByte if c == asciiDoubleQuote { @@ -832,10 +832,10 @@ internal struct JSONScanner { index: &index, end: source.endIndex) { guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } if currentByte != asciiDoubleQuote { - throw JSONDecodingError.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber } advance() return u @@ -870,7 +870,7 @@ internal struct JSONScanner { end: source.endIndex) { return u } - throw JSONDecodingError.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber } /// Parse a signed integer, quoted or not, including handling @@ -882,7 +882,7 @@ internal struct JSONScanner { internal mutating func nextSInt() throws -> Int64 { skipWhitespace() guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } let c = currentByte if c == asciiDoubleQuote { @@ -892,10 +892,10 @@ internal struct JSONScanner { index: &index, end: source.endIndex) { guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } if currentByte != asciiDoubleQuote { - throw JSONDecodingError.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber } advance() return s @@ -930,7 +930,7 @@ internal struct JSONScanner { end: source.endIndex) { return s } - throw JSONDecodingError.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber } /// Parse the next Float value, regardless of whether it @@ -939,7 +939,7 @@ internal struct JSONScanner { internal mutating func nextFloat() throws -> Float { skipWhitespace() guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } let c = currentByte if c == asciiDoubleQuote { // " @@ -949,10 +949,10 @@ internal struct JSONScanner { index: &index, end: source.endIndex) { guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } if currentByte != asciiDoubleQuote { - throw JSONDecodingError.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber } advance() return Float(d) @@ -1002,7 +1002,7 @@ internal struct JSONScanner { } } } - throw JSONDecodingError.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber } /// Parse the next Double value, regardless of whether it @@ -1011,7 +1011,7 @@ internal struct JSONScanner { internal mutating func nextDouble() throws -> Double { skipWhitespace() guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } let c = currentByte if c == asciiDoubleQuote { // " @@ -1021,10 +1021,10 @@ internal struct JSONScanner { index: &index, end: source.endIndex) { guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } if currentByte != asciiDoubleQuote { - throw JSONDecodingError.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber } advance() return d @@ -1070,7 +1070,7 @@ internal struct JSONScanner { return d } } - throw JSONDecodingError.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber } /// Return the contents of the following quoted string, @@ -1078,16 +1078,16 @@ internal struct JSONScanner { internal mutating func nextQuotedString() throws -> String { skipWhitespace() guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } let c = currentByte if c != asciiDoubleQuote { - throw JSONDecodingError.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString } if let s = parseOptionalQuotedString() { return s } else { - throw JSONDecodingError.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString } } @@ -1121,7 +1121,7 @@ internal struct JSONScanner { internal mutating func nextBytesValue() throws -> Data { skipWhitespace() guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } return try parseBytes(source: source, index: &index, end: source.endIndex) } @@ -1169,7 +1169,7 @@ internal struct JSONScanner { internal mutating func nextBool() throws -> Bool { skipWhitespace() guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } let c = currentByte switch c { @@ -1188,7 +1188,7 @@ internal struct JSONScanner { default: break } - throw JSONDecodingError.malformedBool + throw SwiftProtobufError.JSONDecoding.malformedBool } /// Return the following Bool "true" or "false", including @@ -1197,10 +1197,10 @@ internal struct JSONScanner { internal mutating func nextQuotedBool() throws -> Bool { skipWhitespace() guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } if currentByte != asciiDoubleQuote { - throw JSONDecodingError.unquotedMapKey + throw SwiftProtobufError.JSONDecoding.unquotedMapKey } if let s = parseOptionalQuotedString() { switch s { @@ -1209,7 +1209,7 @@ internal struct JSONScanner { default: break } } - throw JSONDecodingError.malformedBool + throw SwiftProtobufError.JSONDecoding.malformedBool } /// Returns pointer/count spanning the UTF8 bytes of the next regular @@ -1219,7 +1219,7 @@ internal struct JSONScanner { skipWhitespace() let stringStart = index guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } if currentByte != asciiDoubleQuote { return nil @@ -1234,7 +1234,7 @@ internal struct JSONScanner { advance() } guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } let buff = UnsafeRawBufferPointer( start: source.baseAddress! + nameStart, @@ -1265,7 +1265,7 @@ internal struct JSONScanner { if let s = utf8ToString(bytes: key.baseAddress!, count: key.count) { fieldName = s } else { - throw JSONDecodingError.invalidUTF8 + throw SwiftProtobufError.JSONDecoding.invalidUTF8 } } else { // Slow path: We parsed a String; lookups from String are slower. @@ -1285,7 +1285,7 @@ internal struct JSONScanner { } } if !options.ignoreUnknownFields { - throw JSONDecodingError.unknownField(fieldName) + throw SwiftProtobufError.JSONDecoding.unknownField(fieldName) } // Unknown field, skip it and try to parse the next field name try skipValue() @@ -1304,12 +1304,12 @@ internal struct JSONScanner { if options.ignoreUnknownFields { return nil } else { - throw JSONDecodingError.unrecognizedEnumValue + throw SwiftProtobufError.JSONDecoding.unrecognizedEnumValue } } skipWhitespace() guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } if currentByte == asciiDoubleQuote { if let name = try nextOptionalKey() { @@ -1334,7 +1334,7 @@ internal struct JSONScanner { return try throwOrIgnore() } } else { - throw JSONDecodingError.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange } } } @@ -1343,14 +1343,14 @@ internal struct JSONScanner { private mutating func skipRequiredCharacter(_ required: UInt8) throws { skipWhitespace() guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } let next = currentByte if next == required { advance() return } - throw JSONDecodingError.failure + throw SwiftProtobufError.JSONDecoding.failure } /// Skip "{", throw if that's not the next character @@ -1419,7 +1419,7 @@ internal struct JSONScanner { if let s = utf8ToString(bytes: source, start: start, end: index) { return s } else { - throw JSONDecodingError.invalidUTF8 + throw SwiftProtobufError.JSONDecoding.invalidUTF8 } } @@ -1437,7 +1437,7 @@ internal struct JSONScanner { arrayDepth += 1 } guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } switch currentByte { case asciiDoubleQuote: // " begins a string @@ -1446,7 +1446,7 @@ internal struct JSONScanner { try skipObject() case asciiCloseSquareBracket: // ] ends an empty array if arrayDepth == 0 { - throw JSONDecodingError.failure + throw SwiftProtobufError.JSONDecoding.failure } // We also close out [[]] or [[[]]] here while arrayDepth > 0 && skipOptionalArrayEnd() { @@ -1456,19 +1456,19 @@ internal struct JSONScanner { if !skipOptionalKeyword(bytes: [ asciiLowerN, asciiLowerU, asciiLowerL, asciiLowerL ]) { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } case asciiLowerF: // f must be false if !skipOptionalKeyword(bytes: [ asciiLowerF, asciiLowerA, asciiLowerL, asciiLowerS, asciiLowerE ]) { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } case asciiLowerT: // t must be true if !skipOptionalKeyword(bytes: [ asciiLowerT, asciiLowerR, asciiLowerU, asciiLowerE ]) { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } default: // everything else is a number token _ = try nextDouble() @@ -1516,10 +1516,10 @@ internal struct JSONScanner { // schema mismatches or other issues. private mutating func skipString() throws { guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } if currentByte != asciiDoubleQuote { - throw JSONDecodingError.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString } advance() while hasMoreContent { @@ -1531,13 +1531,13 @@ internal struct JSONScanner { case asciiBackslash: advance() guard hasMoreContent else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } advance() default: advance() } } - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } } diff --git a/Sources/SwiftProtobuf/Message+AnyAdditions.swift b/Sources/SwiftProtobuf/Message+AnyAdditions.swift index e8c31b3d6..b6342e8e9 100644 --- a/Sources/SwiftProtobuf/Message+AnyAdditions.swift +++ b/Sources/SwiftProtobuf/Message+AnyAdditions.swift @@ -32,8 +32,7 @@ extension Message { /// extensions in this message or messages nested within this message's /// fields. /// - Parameter options: The BinaryDecodingOptions to use. - /// - Throws: an instance of `AnyUnpackError`, `JSONDecodingError`, or - /// `BinaryDecodingError` on failure. + /// - Throws: `SwiftProtobufError` on failure. public init( unpackingAny: Google_Protobuf_Any, extensions: (any ExtensionMap)? = nil, diff --git a/Sources/SwiftProtobuf/Message+BinaryAdditions.swift b/Sources/SwiftProtobuf/Message+BinaryAdditions.swift index 8c552b340..9701acd0b 100644 --- a/Sources/SwiftProtobuf/Message+BinaryAdditions.swift +++ b/Sources/SwiftProtobuf/Message+BinaryAdditions.swift @@ -16,25 +16,25 @@ import Foundation /// Binary encoding and decoding methods for messages. extension Message { - /// Returns a `SwiftProtobufContiguousBytes` instance containing the Protocol Buffer binary + /// Returns a ``SwiftProtobufContiguousBytes`` instance containing the Protocol Buffer binary /// format serialization of the message. /// /// - Parameters: /// - partial: If `false` (the default), this method will check /// `Message.isInitialized` before encoding to verify that all required /// fields are present. If any are missing, this method throws. - /// `BinaryEncodingError.missingRequiredFields`. - /// - options: The `BinaryEncodingOptions` to use. - /// - Returns: A `SwiftProtobufContiguousBytes` instance containing the binary serialization + /// ``SwiftProtobufError/BinaryEncoding/missingRequiredFields``. + /// - options: The ``BinaryEncodingOptions`` to use. + /// - Returns: A ``SwiftProtobufContiguousBytes`` instance containing the binary serialization /// of the message. /// - /// - Throws: `BinaryEncodingError` if encoding fails. + /// - Throws: ``SwiftProtobufError`` if encoding fails. public func serializedBytes( partial: Bool = false, options: BinaryEncodingOptions = BinaryEncodingOptions() ) throws -> Bytes { if !partial && !isInitialized { - throw BinaryEncodingError.missingRequiredFields + throw SwiftProtobufError.BinaryEncoding.missingRequiredFields } // Note that this assumes `options` will not change the required size. @@ -48,7 +48,7 @@ extension Message { // the places that encode message fields (or strings/bytes fields), keeping // the overhead of the check to a minimum. guard requiredSize < 0x7fffffff else { - throw BinaryEncodingError.tooLarge + throw SwiftProtobufError.BinaryEncoding.tooLarge } var data = Bytes(repeating: 0, count: requiredSize) @@ -79,15 +79,15 @@ extension Message { /// /// - Parameters: /// - serializedBytes: The binary-encoded message data to decode. - /// - extensions: An `ExtensionMap` used to look up and decode any + /// - extensions: An ``ExtensionMap`` used to look up and decode any /// extensions in this message or messages nested within this message's /// fields. /// - partial: If `false` (the default), this method will check - /// `Message.isInitialized` after decoding to verify that all required + /// ``Message/isInitialized-6abgi`` after decoding to verify that all required /// fields are present. If any are missing, this method throws - /// `BinaryDecodingError.missingRequiredFields`. - /// - options: The BinaryDecodingOptions to use. - /// - Throws: `BinaryDecodingError` if decoding fails. + /// ``SwiftProtobufError/BinaryDecoding/missingRequiredFields``. + /// - options: The ``BinaryDecodingOptions`` to use. + /// - Throws: ``SwiftProtobufError`` if decoding fails. @inlinable public init( serializedBytes bytes: Bytes, @@ -109,15 +109,15 @@ extension Message { /// /// - Parameters: /// - serializedBytes: The binary-encoded message data to decode. - /// - extensions: An `ExtensionMap` used to look up and decode any + /// - extensions: An ``ExtensionMap`` used to look up and decode any /// extensions in this message or messages nested within this message's /// fields. /// - partial: If `false` (the default), this method will check - /// `Message.isInitialized` after decoding to verify that all required + /// ``Message/isInitialized-6abgi`` after decoding to verify that all required /// fields are present. If any are missing, this method throws - /// `BinaryDecodingError.missingRequiredFields`. - /// - options: The BinaryDecodingOptions to use. - /// - Throws: `BinaryDecodingError` if decoding fails. + /// ``SwiftProtobufError/BinaryDecoding/missingRequiredFields``. + /// - options: The ``BinaryDecodingOptions`` to use. + /// - Throws: ``SwiftProtobufError`` if decoding fails. @inlinable public mutating func merge( serializedBytes bytes: Bytes, @@ -149,7 +149,7 @@ extension Message { try decoder.decodeFullMessage(message: &self) } if !partial && !isInitialized { - throw BinaryDecodingError.missingRequiredFields + throw SwiftProtobufError.BinaryDecoding.missingRequiredFields } } } diff --git a/Sources/SwiftProtobuf/Message+BinaryAdditions_Data.swift b/Sources/SwiftProtobuf/Message+BinaryAdditions_Data.swift index 93cb1f3f2..4ef33574b 100644 --- a/Sources/SwiftProtobuf/Message+BinaryAdditions_Data.swift +++ b/Sources/SwiftProtobuf/Message+BinaryAdditions_Data.swift @@ -21,15 +21,15 @@ extension Message { /// /// - Parameters: /// - serializedData: The binary-encoded message data to decode. - /// - extensions: An `ExtensionMap` used to look up and decode any + /// - extensions: An ``ExtensionMap`` used to look up and decode any /// extensions in this message or messages nested within this message's /// fields. /// - partial: If `false` (the default), this method will check - /// `Message.isInitialized` after decoding to verify that all required + /// ``Message/isInitialized-6abgi`` after decoding to verify that all required /// fields are present. If any are missing, this method throws - /// `BinaryDecodingError.missingRequiredFields`. - /// - options: The BinaryDecodingOptions to use. - /// - Throws: `BinaryDecodingError` if decoding fails. + /// ``SwiftProtobufError/BinaryDecoding/missingRequiredFields``. + /// - options: The ``BinaryDecodingOptions`` to use. + /// - Throws: ``SwiftProtobufError`` if decoding fails. @inlinable public init( serializedData data: Data, @@ -51,15 +51,15 @@ extension Message { /// /// - Parameters: /// - serializedData: The binary-encoded message data to decode. - /// - extensions: An `ExtensionMap` used to look up and decode any + /// - extensions: An ``ExtensionMap`` used to look up and decode any /// extensions in this message or messages nested within this message's /// fields. /// - partial: If `false` (the default), this method will check - /// `Message.isInitialized` after decoding to verify that all required + /// ``Message/isInitialized-6abgi`` after decoding to verify that all required /// fields are present. If any are missing, this method throws - /// `BinaryDecodingError.missingRequiredFields`. - /// - options: The `BinaryDecodingOptions` to use. - /// - Throws: `BinaryDecodingError` if decoding fails. + /// ``SwiftProtobufError/BinaryDecoding/missingRequiredFields``. + /// - options: The ``BinaryDecodingOptions`` to use. + /// - Throws: ``SwiftProtobufError`` if decoding fails. @inlinable public mutating func merge( serializedData data: Data, @@ -75,12 +75,12 @@ extension Message { /// /// - Parameters: /// - partial: If `false` (the default), this method will check - /// `Message.isInitialized` before encoding to verify that all required + /// ``Message/isInitialized-6abgi`` before encoding to verify that all required /// fields are present. If any are missing, this method throws - /// `BinaryEncodingError.missingRequiredFields`. + /// ``SwiftProtobufError/BinaryEncoding/missingRequiredFields``. /// - options: The `BinaryEncodingOptions` to use. /// - Returns: A `Data` instance containing the binary serialization of the message. - /// - Throws: `BinaryEncodingError` if encoding fails. + /// - Throws: ``SwiftProtobufError`` if encoding fails. public func serializedData( partial: Bool = false, options: BinaryEncodingOptions = BinaryEncodingOptions() diff --git a/Sources/SwiftProtobuf/Message+JSONAdditions.swift b/Sources/SwiftProtobuf/Message+JSONAdditions.swift index 8cc822696..3df7098a3 100644 --- a/Sources/SwiftProtobuf/Message+JSONAdditions.swift +++ b/Sources/SwiftProtobuf/Message+JSONAdditions.swift @@ -24,7 +24,7 @@ extension Message { /// - Returns: A string containing the JSON serialization of the message. /// - Parameters: /// - options: The JSONEncodingOptions to use. - /// - Throws: `JSONEncodingError` if encoding fails. + /// - Throws: ``SwiftProtobufError`` if encoding fails. public func jsonString( options: JSONEncodingOptions = JSONEncodingOptions() ) throws -> String { @@ -34,7 +34,7 @@ extension Message { let data: [UInt8] = try jsonUTF8Bytes(options: options) return String(bytes: data, encoding: .utf8)! } - + /// Returns a `SwiftProtobufContiguousBytes` containing the UTF-8 JSON serialization of the message. /// /// Unlike binary encoding, presence of required fields is not enforced when @@ -43,7 +43,7 @@ extension Message { /// - Returns: A `SwiftProtobufContiguousBytes` containing the JSON serialization of the message. /// - Parameters: /// - options: The JSONEncodingOptions to use. - /// - Throws: `JSONEncodingError` if encoding fails. + /// - Throws: ``SwiftProtobufError`` if encoding fails. public func jsonUTF8Bytes( options: JSONEncodingOptions = JSONEncodingOptions() ) throws -> Bytes { @@ -57,42 +57,42 @@ extension Message { visitor.endObject() return Bytes(visitor.dataResult) } - + /// Creates a new message by decoding the given string containing a /// serialized message in JSON format. /// /// - Parameter jsonString: The JSON-formatted string to decode. /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: `JSONDecodingError` if decoding fails. - public init( + /// - Throws: ``SwiftProtobufError`` if decoding fails. + public init( jsonString: String, options: JSONDecodingOptions = JSONDecodingOptions() ) throws { try self.init(jsonString: jsonString, extensions: nil, options: options) } - + /// Creates a new message by decoding the given string containing a /// serialized message in JSON format. /// /// - Parameter jsonString: The JSON-formatted string to decode. /// - Parameter extensions: An ExtensionMap for looking up extensions by name /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: `JSONDecodingError` if decoding fails. + /// - Throws: ``SwiftProtobufError`` if decoding fails. public init( jsonString: String, extensions: (any ExtensionMap)? = nil, options: JSONDecodingOptions = JSONDecodingOptions() ) throws { if jsonString.isEmpty { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } if let data = jsonString.data(using: String.Encoding.utf8) { try self.init(jsonUTF8Bytes: data, extensions: extensions, options: options) } else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } } - + /// Creates a new message by decoding the given `SwiftProtobufContiguousBytes` /// containing a serialized message in JSON format, interpreting the data as UTF-8 encoded /// text. @@ -100,14 +100,14 @@ extension Message { /// - Parameter jsonUTF8Bytes: The JSON-formatted data to decode, represented /// as UTF-8 encoded text. /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: `JSONDecodingError` if decoding fails. + /// - Throws: ``SwiftProtobufError`` if decoding fails. public init( jsonUTF8Bytes: Bytes, options: JSONDecodingOptions = JSONDecodingOptions() ) throws { try self.init(jsonUTF8Bytes: jsonUTF8Bytes, extensions: nil, options: options) } - + /// Creates a new message by decoding the given `SwiftProtobufContiguousBytes` /// containing a serialized message in JSON format, interpreting the data as UTF-8 encoded /// text. @@ -116,7 +116,7 @@ extension Message { /// as UTF-8 encoded text. /// - Parameter extensions: The extension map to use with this decode /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: `JSONDecodingError` if decoding fails. + /// - Throws: ``SwiftProtobufError`` if decoding fails. public init( jsonUTF8Bytes: Bytes, extensions: (any ExtensionMap)? = nil, @@ -126,7 +126,7 @@ extension Message { try jsonUTF8Bytes.withUnsafeBytes { (body: UnsafeRawBufferPointer) in // Empty input is valid for binary, but not for JSON. guard body.count > 0 else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } var decoder = JSONDecoder(source: body, options: options, messageType: Self.self, extensions: extensions) @@ -135,13 +135,13 @@ extension Message { let message = try customCodable.decodedFromJSONNull() { self = message as! Self } else { - throw JSONDecodingError.illegalNull + throw SwiftProtobufError.JSONDecoding.illegalNull } } else { try decoder.decodeFullObject(message: &self) } if !decoder.scanner.complete { - throw JSONDecodingError.trailingGarbage + throw SwiftProtobufError.JSONDecoding.trailingGarbage } } } diff --git a/Sources/SwiftProtobuf/Message+JSONAdditions_Data.swift b/Sources/SwiftProtobuf/Message+JSONAdditions_Data.swift index f12ef527b..dd8736cfb 100644 --- a/Sources/SwiftProtobuf/Message+JSONAdditions_Data.swift +++ b/Sources/SwiftProtobuf/Message+JSONAdditions_Data.swift @@ -22,7 +22,7 @@ extension Message { /// - Parameter jsonUTF8Data: The JSON-formatted data to decode, represented /// as UTF-8 encoded text. /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: `JSONDecodingError` if decoding fails. + /// - Throws: ``SwiftProtobufError`` if decoding fails. public init( jsonUTF8Data: Data, options: JSONDecodingOptions = JSONDecodingOptions() @@ -37,7 +37,7 @@ extension Message { /// as UTF-8 encoded text. /// - Parameter extensions: The extension map to use with this decode /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: `JSONDecodingError` if decoding fails. + /// - Throws: ``SwiftProtobufError`` if decoding fails. public init( jsonUTF8Data: Data, extensions: (any ExtensionMap)? = nil, @@ -54,7 +54,7 @@ extension Message { /// - Returns: A Data containing the JSON serialization of the message. /// - Parameters: /// - options: The JSONEncodingOptions to use. - /// - Throws: `JSONEncodingError` if encoding fails. + /// - Throws: ``SwiftProtobufError`` if encoding fails. public func jsonUTF8Data( options: JSONEncodingOptions = JSONEncodingOptions() ) throws -> Data { diff --git a/Sources/SwiftProtobuf/Message+JSONArrayAdditions.swift b/Sources/SwiftProtobuf/Message+JSONArrayAdditions.swift index 4c858649b..dc9af7e51 100644 --- a/Sources/SwiftProtobuf/Message+JSONArrayAdditions.swift +++ b/Sources/SwiftProtobuf/Message+JSONArrayAdditions.swift @@ -25,7 +25,7 @@ extension Message { /// - Parameters: /// - collection: The list of messages to encode. /// - options: The JSONEncodingOptions to use. - /// - Throws: `JSONEncodingError` if encoding fails. + /// - Throws: ``SwiftProtobufError`` if encoding fails. public static func jsonString( from collection: C, options: JSONEncodingOptions = JSONEncodingOptions() @@ -43,7 +43,7 @@ extension Message { /// - Parameters: /// - collection: The list of messages to encode. /// - options: The JSONEncodingOptions to use. - /// - Throws: `JSONEncodingError` if encoding fails. + /// - Throws: ``SwiftProtobufError`` if encoding fails. public static func jsonUTF8Bytes( from collection: C, options: JSONEncodingOptions = JSONEncodingOptions() @@ -64,7 +64,7 @@ extension Message { /// /// - Parameter jsonString: The JSON-formatted string to decode. /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: `JSONDecodingError` if decoding fails. + /// - Throws: ``SwiftProtobufError`` if decoding fails. public static func array( fromJSONString jsonString: String, options: JSONDecodingOptions = JSONDecodingOptions() @@ -80,30 +80,30 @@ extension Message { /// - Parameter jsonString: The JSON-formatted string to decode. /// - Parameter extensions: The extension map to use with this decode /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: `JSONDecodingError` if decoding fails. + /// - Throws: ``SwiftProtobufError`` if decoding fails. public static func array( fromJSONString jsonString: String, extensions: any ExtensionMap = SimpleExtensionMap(), options: JSONDecodingOptions = JSONDecodingOptions() ) throws -> [Self] { if jsonString.isEmpty { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } if let data = jsonString.data(using: String.Encoding.utf8) { return try array(fromJSONUTF8Bytes: data, extensions: extensions, options: options) } else { - throw JSONDecodingError.truncated + throw SwiftProtobufError.JSONDecoding.truncated } } - /// Creates a new array of messages by decoding the given `SwiftProtobufContiguousBytes` + /// Creates a new array of messages by decoding the given ``SwiftProtobufContiguousBytes`` /// containing a serialized array of messages in JSON format, interpreting the data as /// UTF-8 encoded text. /// /// - Parameter jsonUTF8Bytes: The JSON-formatted data to decode, represented /// as UTF-8 encoded text. /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: `JSONDecodingError` if decoding fails. + /// - Throws: ``SwiftProtobufError`` if decoding fails. public static func array( fromJSONUTF8Bytes jsonUTF8Bytes: Bytes, options: JSONDecodingOptions = JSONDecodingOptions() @@ -113,7 +113,7 @@ extension Message { options: options) } - /// Creates a new array of messages by decoding the given `SwiftProtobufContiguousBytes` + /// Creates a new array of messages by decoding the given ``SwiftProtobufContiguousBytes`` /// containing a serialized array of messages in JSON format, interpreting the data as /// UTF-8 encoded text. /// @@ -121,7 +121,7 @@ extension Message { /// as UTF-8 encoded text. /// - Parameter extensions: The extension map to use with this decode /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: `JSONDecodingError` if decoding fails. + /// - Throws: ``SwiftProtobufError`` if decoding fails. public static func array( fromJSONUTF8Bytes jsonUTF8Bytes: Bytes, extensions: any ExtensionMap = SimpleExtensionMap(), @@ -135,7 +135,7 @@ extension Message { messageType: Self.self, extensions: extensions) try decoder.decodeRepeatedMessageField(value: &array) if !decoder.scanner.complete { - throw JSONDecodingError.trailingGarbage + throw SwiftProtobufError.JSONDecoding.trailingGarbage } } diff --git a/Sources/SwiftProtobuf/Message+JSONArrayAdditions_Data.swift b/Sources/SwiftProtobuf/Message+JSONArrayAdditions_Data.swift index 2f770a2cc..1d3a69585 100644 --- a/Sources/SwiftProtobuf/Message+JSONArrayAdditions_Data.swift +++ b/Sources/SwiftProtobuf/Message+JSONArrayAdditions_Data.swift @@ -23,7 +23,7 @@ extension Message { /// - Parameter jsonUTF8Data: The JSON-formatted data to decode, represented /// as UTF-8 encoded text. /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: `JSONDecodingError` if decoding fails. + /// - Throws: ``SwiftProtobufError`` if decoding fails. public static func array( fromJSONUTF8Data jsonUTF8Data: Data, options: JSONDecodingOptions = JSONDecodingOptions() @@ -41,7 +41,7 @@ extension Message { /// as UTF-8 encoded text. /// - Parameter extensions: The extension map to use with this decode /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: `JSONDecodingError` if decoding fails. + /// - Throws: ``SwiftProtobufError`` if decoding fails. public static func array( fromJSONUTF8Data jsonUTF8Data: Data, extensions: any ExtensionMap = SimpleExtensionMap(), @@ -61,7 +61,7 @@ extension Message { /// - Parameters: /// - collection: The list of messages to encode. /// - options: The JSONEncodingOptions to use. - /// - Throws: `JSONEncodingError` if encoding fails. + /// - Throws: ``SwiftProtobufError`` if encoding fails. public static func jsonUTF8Data( from collection: C, options: JSONEncodingOptions = JSONEncodingOptions() diff --git a/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift b/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift index 9ec430c85..7d5e4bfe6 100644 --- a/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift +++ b/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift @@ -59,11 +59,11 @@ extension Message { /// /// - Parameters: /// - textFormatString: The text format string to decode. - /// - options: The `TextFormatDencodingOptions` to use. - /// - extensions: An `ExtensionMap` used to look up and decode any + /// - options: The ``TextFormatDecodingOptions`` to use. + /// - extensions: An ``ExtensionMap`` used to look up and decode any /// extensions in this message or messages nested within this message's /// fields. - /// - Throws: an instance of `TextFormatDecodingError` on failure. + /// - Throws: ``SwiftProtobufError`` on failure. public init( textFormatString: String, options: TextFormatDecodingOptions = TextFormatDecodingOptions(), @@ -81,7 +81,7 @@ extension Message { extensions: extensions) try decodeMessage(decoder: &decoder) if !decoder.complete { - throw TextFormatDecodingError.trailingGarbage + throw SwiftProtobufError.TextFormatDecoding.trailingGarbage } } } diff --git a/Sources/SwiftProtobuf/SwiftProtobufError.swift b/Sources/SwiftProtobuf/SwiftProtobufError.swift new file mode 100644 index 000000000..8681b7ff4 --- /dev/null +++ b/Sources/SwiftProtobuf/SwiftProtobufError.swift @@ -0,0 +1,620 @@ +// Sources/SwiftProtobuf/SwiftProtobufError.swift +// +// Copyright (c) 2024 Apple Inc. and the project authors +// Licensed under Apache License v2.0 with Runtime Library Exception +// +// See LICENSE.txt for license information: +// https://github.com/apple/swift-protobuf/blob/main/LICENSE.txt +// +// ----------------------------------------------------------------------------- + +/// A SwiftProtobuf specific error. +/// +/// All errors have a high-level ``SwiftProtobufError/Code-swift.struct`` which identifies the domain +/// of the error. For example, an issue when encoding a proto into binary data will result in a +/// ``SwiftProtobufError/Code-swift.struct/binaryEncodingError`` error code. +/// Errors also include a message describing what went wrong and how to remedy it (if applicable). The +/// ``SwiftProtobufError/message`` is not static and may include dynamic information such as the +/// type URL for a type that could not be decoded, for example. +public struct SwiftProtobufError: Error, Equatable, @unchecked Sendable { + // Note: @unchecked because we use a backing class for storage. + + private var storage: Storage + private mutating func ensureStorageIsUnique() { + if !isKnownUniquelyReferenced(&self.storage) { + self.storage = self.storage.copy() + } + } + + private final class Storage: Equatable { + var code: Code + var message: String + + init( + code: Code, + message: String + ) { + self.code = code + self.message = message + } + + static func == ( + lhs: SwiftProtobufError.Storage, + rhs: SwiftProtobufError.Storage + ) -> Bool { + lhs.code == rhs.code && lhs.message == rhs.message + } + + func copy() -> Self { + return Self( + code: self.code, + message: self.message + ) + } + } + + /// A high-level error code to provide broad a classification. + public var code: Code { + get { self.storage.code } + set { + self.ensureStorageIsUnique() + self.storage.code = newValue + } + } + + /// A message describing what went wrong and how it may be remedied. + public var message: String { + get { self.storage.message } + set { + self.ensureStorageIsUnique() + self.storage.message = newValue + } + } + + public init( + code: Code, + message: String + ) { + self.storage = Storage(code: code, message: message) + } +} + +extension SwiftProtobufError { + /// A high level indication of the kind of error being thrown. + public struct Code: Hashable, Sendable, CustomStringConvertible { + private enum Wrapped: Hashable, Sendable, CustomStringConvertible { + case binaryEncodingError + case binaryDecodingError + case jsonEncodingError + case jsonDecodingError + case textFormatDecodingError + case anyUnpackError + case protoFileToModuleMappingError + + var description: String { + switch self { + case .binaryEncodingError: + return "Binary encoding error" + case .binaryDecodingError: + return "Binary decoding error" + case .jsonEncodingError: + return "JSON encoding error" + case .jsonDecodingError: + return "JSON decoding error" + case .textFormatDecodingError: + return "Text format decoding error" + case .anyUnpackError: + return "Error unpacking a Google_Protobuf_Any message" + case .protoFileToModuleMappingError: + return "Error with proto file to module mapping" + } + } + } + + public var description: String { + String(describing: self.code) + } + + private var code: Wrapped + private init(_ code: Wrapped) { + self.code = code + } + + public static var binaryEncodingError: Self { + Self(.binaryEncodingError) + } + + public static var binaryDecodingError: Self { + Self(.binaryDecodingError) + } + + public static var jsonEncodingError: Self { + Self(.jsonEncodingError) + } + + public static var jsonDecodingError: Self { + Self(.jsonDecodingError) + } + + public static var textFormatDecodingError: Self { + Self(.textFormatDecodingError) + } + + public static var anyUnpackError: Self { + Self(.anyUnpackError) + } + + public static var protoFileToModuleMappingError: Self { + Self(.protoFileToModuleMappingError) + } + } + + /// A location within source code. + public struct SourceLocation: Sendable, Hashable { + /// The function in which the error was thrown. + public var function: String + + /// The file in which the error was thrown. + public var file: String + + /// The line on which the error was thrown. + public var line: Int + + public init(function: String, file: String, line: Int) { + self.function = function + self.file = file + self.line = line + } + + @usableFromInline + internal static func here( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> Self { + return SourceLocation(function: function, file: file, line: line) + } + } +} + +extension SwiftProtobufError: CustomStringConvertible { + public var description: String { + "\(self.code): \(self.message)" + } +} + +extension SwiftProtobufError: CustomDebugStringConvertible { + public var debugDescription: String { + "\(String(reflecting: self.code)): \(String(reflecting: self.message))" + } +} + +// - MARK: Common errors + +extension SwiftProtobufError { + /// Errors arising from encoding protobufs into binary data. + public enum BinaryEncoding { + /// The definition of the message or one of its nested messages has required + /// fields but the message being encoded did not include values for them. You + /// must pass `partial: true` during encoding if you wish to explicitly ignore + /// missing required fields. + public static let missingRequiredFields = SwiftProtobufError( + code: .binaryEncodingError, + message: """ + The definition of the message or one of its nested messages has required fields, \ + but the message being encoded did not include values for them. \ + Decode with `partial: true` if you wish to explicitly ignore missing required fields. + """ + ) + + /// Messages are limited to a maximum of 2GB in encoded size. + public static let tooLarge = SwiftProtobufError( + code: .binaryEncodingError, + message: "Messages are limited to a maximum of 2GB in encoded size." + ) + + /// `Any` fields that were decoded from JSON cannot be re-encoded to binary + /// unless the object they hold is a well-known type or a type registered via + /// `Google_Protobuf_Any.register()`. + public static func anyTypeURLNotRegistered(typeURL: String) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryEncodingError, + message: """ + Any fields that were decoded from JSON format cannot be re-encoded to binary \ + unless the object they hold is a well-known type or a type registered via \ + `Google_Protobuf_Any.register()`. Type URL is \(typeURL). + """ + ) + } + + /// When writing a binary-delimited message into a stream, this error will be thrown if less than + /// the expected number of bytes were written. + public static let truncated = SwiftProtobufError( + code: .binaryEncodingError, + message: """ + Less than the expected number of bytes were written when writing \ + a binary-delimited message into an output stream. + """ + ) + + + } + + /// Errors arising from binary decoding of data into protobufs. + public enum BinaryDecoding { + /// The end of the data was reached before it was expected. + public static let truncated = SwiftProtobufError( + code: .binaryDecodingError, + message: "The end of the data was reached before it was expected." + ) + + // Extraneous data remained after decoding should have been complete. + public static let trailingGarbage = SwiftProtobufError( + code: .binaryDecodingError, + message: "Extraneous data remained after decoding should have been complete." + ) + + /// Message is too large. Bytes and Strings have a max size of 2GB. + public static let tooLarge = SwiftProtobufError( + code: .binaryDecodingError, + message: "Message too large: Bytes and Strings have a max size of 2GB." + ) + + /// A string field was not encoded as valid UTF-8. + public static let invalidUTF8 = SwiftProtobufError( + code: .binaryDecodingError, + message: "A string field was not encoded as valid UTF-8." + ) + + /// The binary data was malformed in some way, such as an invalid wire format or field tag. + public static let malformedProtobuf = SwiftProtobufError( + code: .binaryDecodingError, + message: """ + The binary data was malformed in some way, such as an \ + invalid wire format or field tag. + """ + ) + + /// The definition of the message or one of its nested messages has required + /// fields but the binary data did not include values for them. You must pass + /// `partial: true` during decoding if you wish to explicitly ignore missing + /// required fields. + public static let missingRequiredFields = SwiftProtobufError( + code: .binaryDecodingError, + message: """ + The definition of the message or one of its nested messages has required fields, \ + but the binary data did not include values for them. \ + Decode with `partial: true` if you wish to explicitly ignore missing required fields. + """ + ) + + /// An internal error happened while decoding. If this is ever encountered, + /// please file an issue with SwiftProtobuf with as much details as possible + /// for what happened (proto definitions, bytes being decoded (if possible)). + public static let internalExtensionError = SwiftProtobufError( + code: .binaryDecodingError, + message: "An internal error hapenned while decoding. Please file an issue with SwiftProtobuf." + ) + + /// Reached the nesting limit for messages within messages while decoding. + public static let messageDepthLimit = SwiftProtobufError( + code: .binaryDecodingError, + message: "Reached the nesting limit for messages within messages while decoding." + ) + } + + /// Errors arising from encoding protobufs into JSON. + public enum JSONEncoding { + /// Timestamp values can only be JSON encoded if they hold a value + /// between 0001-01-01Z00:00:00 and 9999-12-31Z23:59:59. + public static let timestampRange = SwiftProtobufError( + code: .jsonEncodingError, + message: """ + Timestamp values can only be JSON encoded if they hold a value \ + between 0001-01-01Z00:00:00 and 9999-12-31Z23:59:59. + """ + ) + + /// Duration values can only be JSON encoded if they hold a value + /// less than +/- 100 years. + public static let durationRange = SwiftProtobufError( + code: .jsonEncodingError, + message: "Duration values can only be JSON encoded if they hold a value less than +/- 100 years." + ) + + /// Field masks get edited when converting between JSON and protobuf. + public static let fieldMaskConversion = SwiftProtobufError( + code: .jsonEncodingError, + message: "Field masks get edited when converting between JSON and protobuf." + ) + + /// Field names were not compiled into the binary. + public static let missingFieldNames = SwiftProtobufError( + code: .jsonEncodingError, + message: "Field names were not compiled into the binary." + ) + + /// Instances of `Google_Protobuf_Value` can only be encoded if they have a + /// valid `kind` (that is, they represent a null value, number, boolean, + /// string, struct, or list). + public static let missingValue = SwiftProtobufError( + code: .jsonEncodingError, + message: "Instances of `Google_Protobuf_Value` can only be encoded if they have a valid `kind`." + ) + + /// `Google_Protobuf_Value` cannot encode double values for infinity or nan, + /// because they would be parsed as a string. + public static let valueNumberNotFinite = SwiftProtobufError( + code: .jsonEncodingError, + message: """ + `Google_Protobuf_Value` cannot encode double values for \ + infinity or nan, because they would be parsed as a string. + """ + ) + + /// Any fields that were decoded from binary format cannot be re-encoded into JSON unless the + /// object they hold is a well-known type or a type registered via `Google_Protobuf_Any.register()`. + public static func anyTypeURLNotRegistered(typeURL: String) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonEncodingError, + message: """ + Any fields that were decoded from binary format cannot be re-encoded into JSON \ + unless the object they hold is a well-known type or a type registered via \ + `Google_Protobuf_Any.register()`. Type URL is \(typeURL). + """ + ) + } + } + + /// Errors arising from JSON decoding of data into protobufs. + public enum JSONDecoding { + /// Something went wrong. + public static let failure = SwiftProtobufError( + code: .jsonDecodingError, + message: "Something went wrong." + ) + + /// A number could not be parsed. + public static let malformedNumber = SwiftProtobufError( + code: .jsonDecodingError, + message: "A number could not be parsed." + ) + + /// Numeric value was out of range or was not an integer value when expected. + public static let numberRange = SwiftProtobufError( + code: .jsonDecodingError, + message: "Numeric value was out of range or was not an integer value when expected." + ) + + /// A map could not be parsed. + public static let malformedMap = SwiftProtobufError( + code: .jsonDecodingError, + message: "A map could not be parsed." + ) + + /// A bool could not be parsed. + public static let malformedBool = SwiftProtobufError( + code: .jsonDecodingError, + message: "A bool could not be parsed." + ) + + /// We expected a quoted string, or a quoted string has a malformed backslash sequence. + public static let malformedString = SwiftProtobufError( + code: .jsonDecodingError, + message: "Expected a quoted string, or encountered a quoted string with a malformed backslash sequence." + ) + + /// We encountered malformed UTF8. + public static let invalidUTF8 = SwiftProtobufError( + code: .jsonDecodingError, + message: "Encountered malformed UTF8." + ) + + /// The message does not have fieldName information. + public static let missingFieldNames = SwiftProtobufError( + code: .jsonDecodingError, + message: "The message does not have fieldName information." + ) + + /// The data type does not match the schema description. + public static let schemaMismatch = SwiftProtobufError( + code: .jsonDecodingError, + message: "The data type does not match the schema description." + ) + + /// A value (text or numeric) for an enum was not found on the enum. + public static let unrecognizedEnumValue = SwiftProtobufError( + code: .jsonDecodingError, + message: "A value (text or numeric) for an enum was not found on the enum." + ) + + /// A 'null' token appeared in an illegal location. + /// For example, Protobuf JSON does not allow 'null' tokens to appear in lists. + public static let illegalNull = SwiftProtobufError( + code: .jsonDecodingError, + message: "A 'null' token appeared in an illegal location." + ) + + /// A map key was not quoted. + public static let unquotedMapKey = SwiftProtobufError( + code: .jsonDecodingError, + message: "A map key was not quoted." + ) + + /// JSON RFC 7519 does not allow numbers to have extra leading zeros. + public static let leadingZero = SwiftProtobufError( + code: .jsonDecodingError, + message: "JSON RFC 7519 does not allow numbers to have extra leading zeros." + ) + + /// We hit the end of the JSON string and expected something more. + public static let truncated = SwiftProtobufError( + code: .jsonDecodingError, + message: "Reached end of JSON string but expected something more." + ) + + /// A JSON Duration could not be parsed. + public static let malformedDuration = SwiftProtobufError( + code: .jsonDecodingError, + message: "A JSON Duration could not be parsed." + ) + + /// A JSON Timestamp could not be parsed. + public static let malformedTimestamp = SwiftProtobufError( + code: .jsonDecodingError, + message: "A JSON Timestamp could not be parsed." + ) + + /// A FieldMask could not be parsed. + public static let malformedFieldMask = SwiftProtobufError( + code: .jsonDecodingError, + message: "A FieldMask could not be parsed." + ) + + /// Extraneous data remained after decoding should have been complete. + public static let trailingGarbage = SwiftProtobufError( + code: .jsonDecodingError, + message: "Extraneous data remained after decoding should have been complete." + ) + + /// More than one value was specified for the same oneof field. + public static let conflictingOneOf = SwiftProtobufError( + code: .jsonDecodingError, + message: "More than one value was specified for the same oneof field." + ) + + /// Reached the nesting limit for messages within messages while decoding. + public static let messageDepthLimit = SwiftProtobufError( + code: .jsonDecodingError, + message: "Reached the nesting limit for messages within messages while decoding." + ) + + /// Encountered an unknown field with the given name. + /// - Parameter name: The name of the unknown field. + /// - Note: When parsing JSON, you can instead instruct the library to ignore this via + /// `JSONDecodingOptions.ignoreUnknownFields`. + public static func unknownField(_ name: String) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "Encountered an unknown field with name '\(name)'." + ) + } + } + + /// Errors arising from text format decoding of data into protobufs. + public enum TextFormatDecoding { + /// Text data could not be parsed. + public static let malformedText = SwiftProtobufError( + code: .textFormatDecodingError, + message: "Text data could not be parsed" + ) + + /// A number could not be parsed. + public static let malformedNumber = SwiftProtobufError( + code: .textFormatDecodingError, + message: "A number could not be parsed." + ) + + /// Extraneous data remained after decoding should have been complete. + public static let trailingGarbage = SwiftProtobufError( + code: .textFormatDecodingError, + message: "Extraneous data remained after decoding should have been complete." + ) + + /// The data stopped before we expected. + public static let truncated = SwiftProtobufError( + code: .textFormatDecodingError, + message: "The data stopped before we expected." + ) + + /// A string was not valid UTF8. + public static let invalidUTF8 = SwiftProtobufError( + code: .textFormatDecodingError, + message: "A string was not valid UTF8." + ) + + /// The data being parsed does not match the type specified in the proto file. + public static let schemaMismatch = SwiftProtobufError( + code: .textFormatDecodingError, + message: "The data being parsed does not match the type specified in the proto file." + ) + + /// Field names were not compiled into the binary. + public static let missingFieldNames = SwiftProtobufError( + code: .textFormatDecodingError, + message: "Field names were not compiled into the binary." + ) + + /// A field identifier (name or number) was not found on the message. + public static let unknownField = SwiftProtobufError( + code: .textFormatDecodingError, + message: "A field identifier (name or number) was not found on the message." + ) + + /// The enum value was not recognized. + public static let unrecognizedEnumValue = SwiftProtobufError( + code: .textFormatDecodingError, + message: "The enum value was not recognized." + ) + + /// Text format rejects conflicting values for the same oneof field. + public static let conflictingOneOf = SwiftProtobufError( + code: .textFormatDecodingError, + message: "Text format rejects conflicting values for the same oneof field." + ) + + /// An internal error happened while decoding. If this is ever encountered, + /// please file an issue with SwiftProtobuf with as much details as possible + /// for what happened (proto definitions, bytes being decoded (if possible)). + public static let internalExtensionError = SwiftProtobufError( + code: .textFormatDecodingError, + message: "An internal error happened while decoding: please file an issue with SwiftProtobuf." + ) + + /// Reached the nesting limit for messages within messages while decoding. + public static let messageDepthLimit = SwiftProtobufError( + code: .textFormatDecodingError, + message: "Reached the nesting limit for messages within messages while decoding." + ) + } + + /// Describes errors that can occur when unpacking a `Google_Protobuf_Any` + /// message. + /// + /// `Google_Protobuf_Any` messages can be decoded from protobuf binary, text + /// format, or JSON. The contents are not parsed immediately; the raw data is + /// held in the `Google_Protobuf_Any` message until you `unpack()` it into a + /// message. At this time, any error can occur that might have occurred from a + /// regular decoding operation. There are also other errors that can occur due + /// to problems with the `Any` value's structure. + public enum AnyUnpack { + /// The `type_url` field in the `Google_Protobuf_Any` message did not match + /// the message type provided to the `unpack()` method. + public static let typeMismatch = SwiftProtobufError( + code: .anyUnpackError, + message: """ + The `type_url` field in the `Google_Protobuf_Any` message did not match + the message type provided to the `unpack()` method. + """ + ) + + /// Well-known types being decoded from JSON must have only two fields: the + /// `@type` field and a `value` field containing the specialized JSON coding + /// of the well-known type. + public static let malformedWellKnownTypeJSON = SwiftProtobufError( + code: .anyUnpackError, + message: """ + Malformed JSON type: well-known types being decoded from JSON must have only two fields: + the `@type` field and a `value` field containing the specialized JSON coding + of the well-known type. + """ + ) + + /// The `Google_Protobuf_Any` message was malformed in some other way not + /// covered by the other error cases. + public static let malformedAnyField = SwiftProtobufError( + code: .anyUnpackError, + message: "The `Google_Protobuf_Any` message was malformed." + ) + } +} diff --git a/Sources/SwiftProtobuf/TextFormatDecoder.swift b/Sources/SwiftProtobuf/TextFormatDecoder.swift index e96d59c05..d2ebceacb 100644 --- a/Sources/SwiftProtobuf/TextFormatDecoder.swift +++ b/Sources/SwiftProtobuf/TextFormatDecoder.swift @@ -46,7 +46,7 @@ internal struct TextFormatDecoder: Decoder { ) throws { scanner = TextFormatScanner(utf8Pointer: utf8Pointer, count: count, options: options, extensions: extensions) guard let nameProviding = (messageType as? any _ProtoNameProviding.Type) else { - throw TextFormatDecodingError.missingFieldNames + throw SwiftProtobufError.TextFormatDecoding.missingFieldNames } fieldNameMap = nameProviding._protobuf_nameMap self.messageType = messageType @@ -56,14 +56,14 @@ internal struct TextFormatDecoder: Decoder { self.scanner = scanner self.terminator = terminator guard let nameProviding = (messageType as? any _ProtoNameProviding.Type) else { - throw TextFormatDecodingError.missingFieldNames + throw SwiftProtobufError.TextFormatDecoding.missingFieldNames } fieldNameMap = nameProviding._protobuf_nameMap self.messageType = messageType } mutating func handleConflictingOneOf() throws { - throw TextFormatDecodingError.conflictingOneOf + throw SwiftProtobufError.TextFormatDecoding.conflictingOneOf } mutating func nextFieldNumber() throws -> Int? { @@ -142,7 +142,7 @@ internal struct TextFormatDecoder: Decoder { try scanner.skipRequiredColon() let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } value = Int32(truncatingIfNeeded: n) } @@ -150,7 +150,7 @@ internal struct TextFormatDecoder: Decoder { try scanner.skipRequiredColon() let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } value = Int32(truncatingIfNeeded: n) } @@ -169,14 +169,14 @@ internal struct TextFormatDecoder: Decoder { } let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } value.append(Int32(truncatingIfNeeded: n)) } } else { let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } value.append(Int32(truncatingIfNeeded: n)) } @@ -214,7 +214,7 @@ internal struct TextFormatDecoder: Decoder { try scanner.skipRequiredColon() let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } value = UInt32(truncatingIfNeeded: n) } @@ -222,7 +222,7 @@ internal struct TextFormatDecoder: Decoder { try scanner.skipRequiredColon() let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } value = UInt32(truncatingIfNeeded: n) } @@ -241,14 +241,14 @@ internal struct TextFormatDecoder: Decoder { } let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } value.append(UInt32(truncatingIfNeeded: n)) } } else { let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } value.append(UInt32(truncatingIfNeeded: n)) } @@ -429,7 +429,7 @@ internal struct TextFormatDecoder: Decoder { if let b = E(rawUTF8: name) { return b } else { - throw TextFormatDecodingError.unrecognizedEnumValue + throw SwiftProtobufError.TextFormatDecoding.unrecognizedEnumValue } } let number = try scanner.nextSInt() @@ -438,10 +438,10 @@ internal struct TextFormatDecoder: Decoder { if let e = E(rawValue: Int(n)) { return e } else { - throw TextFormatDecodingError.unrecognizedEnumValue + throw SwiftProtobufError.TextFormatDecoding.unrecognizedEnumValue } } - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } @@ -560,7 +560,7 @@ internal struct TextFormatDecoder: Decoder { value[keyField] = valueField return } else { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } } if let key = try scanner.nextKey(allowExtensions: ignoreExtensionFields) { @@ -575,12 +575,12 @@ internal struct TextFormatDecoder: Decoder { } else if options.ignoreUnknownFields && !key.hasPrefix("[") { try scanner.skipUnknownFieldValue() } else { - throw TextFormatDecodingError.unknownField + throw SwiftProtobufError.TextFormatDecoding.unknownField } } scanner.skipOptionalSeparator() } else { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } } } @@ -616,7 +616,7 @@ internal struct TextFormatDecoder: Decoder { value[keyField] = valueField return } else { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } } if let key = try scanner.nextKey(allowExtensions: ignoreExtensionFields) { @@ -631,12 +631,12 @@ internal struct TextFormatDecoder: Decoder { } else if options.ignoreUnknownFields && !key.hasPrefix("[") { try scanner.skipUnknownFieldValue() } else { - throw TextFormatDecodingError.unknownField + throw SwiftProtobufError.TextFormatDecoding.unknownField } } scanner.skipOptionalSeparator() } else { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } } } @@ -672,7 +672,7 @@ internal struct TextFormatDecoder: Decoder { value[keyField] = valueField return } else { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } } if let key = try scanner.nextKey(allowExtensions: ignoreExtensionFields) { @@ -687,12 +687,12 @@ internal struct TextFormatDecoder: Decoder { } else if options.ignoreUnknownFields && !key.hasPrefix("[") { try scanner.skipUnknownFieldValue() } else { - throw TextFormatDecodingError.unknownField + throw SwiftProtobufError.TextFormatDecoding.unknownField } } scanner.skipOptionalSeparator() } else { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } } } @@ -729,7 +729,7 @@ internal struct TextFormatDecoder: Decoder { // Really things should never get here, for TextFormat, decoding // the value should always work or throw an error. This specific // error result is to allow this to be more detectable. - throw TextFormatDecodingError.internalExtensionError + throw SwiftProtobufError.TextFormatDecoding.internalExtensionError } } } diff --git a/Sources/SwiftProtobuf/TextFormatDecodingError.swift b/Sources/SwiftProtobuf/TextFormatDecodingError.swift index ea57bf569..014a8e956 100644 --- a/Sources/SwiftProtobuf/TextFormatDecodingError.swift +++ b/Sources/SwiftProtobuf/TextFormatDecodingError.swift @@ -12,6 +12,7 @@ /// // ----------------------------------------------------------------------------- +@available(*, deprecated, message: "This error type has been deprecated and won't be thrown anymore; it has been replaced by `SwiftProtobufError`.") public enum TextFormatDecodingError: Error { /// Text data could not be parsed case malformedText diff --git a/Sources/SwiftProtobuf/TextFormatScanner.swift b/Sources/SwiftProtobuf/TextFormatScanner.swift index f523625a7..5c8adc57b 100644 --- a/Sources/SwiftProtobuf/TextFormatScanner.swift +++ b/Sources/SwiftProtobuf/TextFormatScanner.swift @@ -270,7 +270,7 @@ internal struct TextFormatScanner { private mutating func incrementRecursionDepth() throws { recursionBudget -= 1 if recursionBudget < 0 { - throw TextFormatDecodingError.messageDepthLimit + throw SwiftProtobufError.TextFormatDecoding.messageDepthLimit } } @@ -355,7 +355,7 @@ internal struct TextFormatScanner { switch byte { case asciiNewLine, asciiCarriageReturn: // Can't have a newline in the middle of a bytes string. - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText case asciiBackslash: // "\\" sawBackslash = true if p != end { @@ -369,7 +369,7 @@ internal struct TextFormatScanner { if p != end, p[0] >= asciiZero, p[0] <= asciiSeven { if escaped > asciiThree { // Out of range octal: three digits and first digit is greater than 3 - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } p += 1 } @@ -378,14 +378,14 @@ internal struct TextFormatScanner { case asciiLowerU, asciiUpperU: // 'u' or 'U' unicode escape let numDigits = (escaped == asciiLowerU) ? 4 : 8 guard (end - p) >= numDigits else { - throw TextFormatDecodingError.malformedText // unicode escape must 4/8 digits + throw SwiftProtobufError.TextFormatDecoding.malformedText // unicode escape must 4/8 digits } var codePoint: UInt32 = 0 for i in 0.. UInt64 { if p == end { - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } let c = p[0] p += 1 @@ -619,7 +619,7 @@ internal struct TextFormatScanner { return n } if n > UInt64.max / 16 { - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } p += 1 n = n * 16 + val @@ -636,7 +636,7 @@ internal struct TextFormatScanner { } let val = UInt64(digit - asciiZero) if n > UInt64.max / 8 { - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } p += 1 n = n * 8 + val @@ -654,7 +654,7 @@ internal struct TextFormatScanner { } let val = UInt64(digit - asciiZero) if n > UInt64.max / 10 || n * 10 > UInt64.max - val { - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } p += 1 n = n * 10 + val @@ -662,30 +662,30 @@ internal struct TextFormatScanner { skipWhitespace() return n } - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } internal mutating func nextSInt() throws -> Int64 { if p == end { - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } let c = p[0] if c == asciiMinus { // - p += 1 if p == end { - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } // character after '-' must be digit let digit = p[0] if digit < asciiZero || digit > asciiNine { - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } let n = try nextUInt() let limit: UInt64 = 0x8000000000000000 // -Int64.min if n >= limit { if n > limit { // Too large negative number - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } else { return Int64.min // Special case for Int64.min } @@ -694,7 +694,7 @@ internal struct TextFormatScanner { } else { let n = try nextUInt() if n > UInt64(bitPattern: Int64.max) { - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } return Int64(bitPattern: n) } @@ -704,17 +704,17 @@ internal struct TextFormatScanner { var result: String skipWhitespace() if p == end { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } let c = p[0] if c != asciiSingleQuote && c != asciiDoubleQuote { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } p += 1 if let s = parseStringSegment(terminator: c) { result = s } else { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } while true { @@ -729,7 +729,7 @@ internal struct TextFormatScanner { if let s = parseStringSegment(terminator: c) { result.append(s) } else { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } } } @@ -744,11 +744,11 @@ internal struct TextFormatScanner { var result: Data skipWhitespace() if p == end { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } let c = p[0] if c != asciiSingleQuote && c != asciiDoubleQuote { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } p += 1 var sawBackslash = false @@ -947,7 +947,7 @@ internal struct TextFormatScanner { if let inf = skipOptionalInfinity() { return inf } - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } internal mutating func nextDouble() throws -> Double { @@ -960,13 +960,13 @@ internal struct TextFormatScanner { if let inf = skipOptionalInfinity() { return Double(inf) } - throw TextFormatDecodingError.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber } internal mutating func nextBool() throws -> Bool { skipWhitespace() if p == end { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } let c = p[0] p += 1 @@ -989,7 +989,7 @@ internal struct TextFormatScanner { } result = true default: - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } if p == end { return result @@ -1008,14 +1008,14 @@ internal struct TextFormatScanner { skipWhitespace() return result default: - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } } internal mutating func nextOptionalEnumName() throws -> UnsafeRawBufferPointer? { skipWhitespace() if p == end { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } switch p[0] { case asciiLowerA...asciiLowerZ, asciiUpperA...asciiUpperZ: @@ -1060,14 +1060,14 @@ internal struct TextFormatScanner { assert(p[0] == asciiOpenSquareBracket) p += 1 if p == end { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } let start = p switch p[0] { case asciiLowerA...asciiLowerZ, asciiUpperA...asciiUpperZ: p += 1 default: - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } loop: while p != end { switch p[0] { @@ -1081,14 +1081,14 @@ internal struct TextFormatScanner { case asciiCloseSquareBracket: // ] break loop default: - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } } if p == end || p[0] != asciiCloseSquareBracket { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } guard let extensionName = utf8ToString(bytes: start, count: p - start) else { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } p += 1 // Skip ] skipWhitespace() @@ -1107,7 +1107,7 @@ internal struct TextFormatScanner { if allowExtensions { return "[\(try parseExtensionKey())]" } - throw TextFormatDecodingError.unknownField + throw SwiftProtobufError.TextFormatDecoding.unknownField case asciiLowerA...asciiLowerZ, asciiUpperA...asciiUpperZ: // a...z, A...Z return parseIdentifier() @@ -1130,7 +1130,7 @@ internal struct TextFormatScanner { // Safe, can't be invalid UTF-8 given the input. return s! default: - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } } @@ -1156,7 +1156,7 @@ internal struct TextFormatScanner { return nil } else { // Never got the terminator. - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } } let c = p[0] @@ -1368,7 +1368,7 @@ internal struct TextFormatScanner { p += 1 skipWhitespace() } else { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } } @@ -1436,6 +1436,6 @@ internal struct TextFormatScanner { break } } - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText } } diff --git a/Sources/SwiftProtobufPluginLibrary/ProtoFileToModuleMappings.swift b/Sources/SwiftProtobufPluginLibrary/ProtoFileToModuleMappings.swift index 5b8549521..ea961a0ba 100644 --- a/Sources/SwiftProtobufPluginLibrary/ProtoFileToModuleMappings.swift +++ b/Sources/SwiftProtobufPluginLibrary/ProtoFileToModuleMappings.swift @@ -13,13 +13,59 @@ // ----------------------------------------------------------------------------- import Foundation +import SwiftProtobuf private let defaultSwiftProtobufModuleName = "SwiftProtobuf" +extension SwiftProtobufError { + public enum ProtoFileToModuleMapping { + /// Raised if the path wasn't found. + /// - Parameter path: The path that wasn't found. + public static func failToOpen(path: String) -> SwiftProtobufError { + SwiftProtobufError( + code: .protoFileToModuleMappingError, + message: "Path not found: \(path)" + ) + } + + /// Raised if a mapping entry in the protobuf doesn't have a module name. + /// - Parameter mappingIndex: The index (0-N) of the mapping. + public static func entryMissingModuleName(mappingIndex: Int) -> SwiftProtobufError { + SwiftProtobufError( + code: .protoFileToModuleMappingError, + message: "Mapping with index \(mappingIndex) doesn't have a module name." + ) + } + + /// Raised if a mapping entry in the protobuf doesn't have any proto files listed. + /// - Parameter mappingIndex: The index (0-N) of the mapping. + public static func entryHasNoProtoPaths(mappingIndex: Int) -> SwiftProtobufError { + SwiftProtobufError( + code: .protoFileToModuleMappingError, + message: "Mapping with index \(mappingIndex) doesn't have any proto files listed." + ) + } + + /// The given proto path was listed for both modules. + public static func duplicateProtoPathMapping( + path: String, + firstModule: String, + secondModule: String + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .protoFileToModuleMappingError, + message: "The given path (\(path)) was listed in two modules: '\(firstModule)' and '\(secondModule)'." + ) + } + } +} + + /// Handles the mapping of proto files to the modules they will be compiled into. public struct ProtoFileToModuleMappings { /// Errors raised from parsing mappings + @available(*, deprecated, message: "This error type has been deprecated and won't be thrown anymore; it has been replaced by `SwiftProtobufError`.") public enum LoadError: Error { /// Raised if the path wasn't found. case failToOpen(path: String) @@ -49,47 +95,49 @@ public struct ProtoFileToModuleMappings { /// We expect to find the WKTs in the module named here. public let swiftProtobufModuleName: String - /// Loads and parses the given module mapping from disk. Raises LoadError - /// or TextFormatDecodingError. + /// Loads and parses the given module mapping from disk. + /// - Throws: ``SwiftProtobuf/SwiftProtobufError``. public init(path: String) throws { try self.init(path: path, swiftProtobufModuleName: nil) } - /// Loads and parses the given module mapping from disk. Raises LoadError - /// or TextFormatDecodingError. + /// Loads and parses the given module mapping from disk. + /// - Throws: ``SwiftProtobuf/SwiftProtobufError``. public init(path: String, swiftProtobufModuleName: String?) throws { let content: String do { content = try String(contentsOfFile: path, encoding: String.Encoding.utf8) } catch { - throw LoadError.failToOpen(path: path) + throw SwiftProtobufError.ProtoFileToModuleMapping.failToOpen(path: path) } let mappingsProto = try SwiftProtobuf_GenSwift_ModuleMappings(textFormatString: content) try self.init(moduleMappingsProto: mappingsProto, swiftProtobufModuleName: swiftProtobufModuleName) } - /// Parses the given module mapping. Raises LoadError. + /// Parses the given module mapping. + /// - Throws: ``SwiftProtobuf/SwiftProtobufError``. public init(moduleMappingsProto mappings: SwiftProtobuf_GenSwift_ModuleMappings) throws { try self.init(moduleMappingsProto: mappings, swiftProtobufModuleName: nil) } - /// Parses the given module mapping. Raises LoadError. + /// Parses the given module mapping + /// - Throws: ``SwiftProtobuf/SwiftProtobufError``. public init(moduleMappingsProto mappings: SwiftProtobuf_GenSwift_ModuleMappings, swiftProtobufModuleName: String?) throws { self.swiftProtobufModuleName = swiftProtobufModuleName ?? defaultSwiftProtobufModuleName var builder = wktMappings(swiftProtobufModuleName: self.swiftProtobufModuleName) let initialCount = builder.count for (idx, mapping) in mappings.mapping.lazy.enumerated() { if mapping.moduleName.isEmpty { - throw LoadError.entryMissingModuleName(mappingIndex: idx) + throw SwiftProtobufError.ProtoFileToModuleMapping.entryMissingModuleName(mappingIndex: idx) } if mapping.protoFilePath.isEmpty { - throw LoadError.entryHasNoProtoPaths(mappingIndex: idx) + throw SwiftProtobufError.ProtoFileToModuleMapping.entryHasNoProtoPaths(mappingIndex: idx) } for path in mapping.protoFilePath { if let existing = builder[path] { if existing != mapping.moduleName { - throw LoadError.duplicateProtoPathMapping(path: path, + throw SwiftProtobufError.ProtoFileToModuleMapping.duplicateProtoPathMapping(path: path, firstModule: existing, secondModule: mapping.moduleName) } diff --git a/Tests/SwiftProtobufPluginLibraryTests/Test_ProtoFileToModuleMappings.swift b/Tests/SwiftProtobufPluginLibraryTests/Test_ProtoFileToModuleMappings.swift index 5442db709..7a52f8815 100644 --- a/Tests/SwiftProtobufPluginLibraryTests/Test_ProtoFileToModuleMappings.swift +++ b/Tests/SwiftProtobufPluginLibraryTests/Test_ProtoFileToModuleMappings.swift @@ -13,19 +13,6 @@ import SwiftProtobuf import SwiftProtobufTestHelpers @testable import SwiftProtobufPluginLibrary -// Support equality to simplify testing of getting the correct errors. -extension ProtoFileToModuleMappings.LoadError: Equatable { - public static func ==(lhs: ProtoFileToModuleMappings.LoadError, rhs: ProtoFileToModuleMappings.LoadError) -> Bool { - switch (lhs, rhs) { - case (.entryMissingModuleName(let l), .entryMissingModuleName(let r)): return l == r - case (.entryHasNoProtoPaths(let l), .entryHasNoProtoPaths(let r)): return l == r - case (.duplicateProtoPathMapping(let l1, let l2, let l3), - .duplicateProtoPathMapping(let r1, let r2, let r3)): return l1 == r1 && l2 == r2 && l3 == r3 - default: return false - } - } -} - // Helpers to make test cases. fileprivate typealias FileDescriptorProto = Google_Protobuf_FileDescriptorProto @@ -86,40 +73,40 @@ final class Test_ProtoFileToModuleMappings: XCTestCase { func test_Initialization_InvalidConfigs() { // This are valid text format, but not valid config protos. // (input, expected_error_type) - let partialConfigs: [(String, ProtoFileToModuleMappings.LoadError)] = [ + let partialConfigs: [(String, SwiftProtobufError)] = [ // No module or proto files - ("mapping { }", .entryMissingModuleName(mappingIndex: 0)), + ("mapping { }", .ProtoFileToModuleMapping.entryMissingModuleName(mappingIndex: 0)), // No proto files - ("mapping { module_name: \"foo\" }", .entryHasNoProtoPaths(mappingIndex: 0)), + ("mapping { module_name: \"foo\" }", .ProtoFileToModuleMapping.entryHasNoProtoPaths(mappingIndex: 0)), // No module - ("mapping { proto_file_path: [\"foo\"] }", .entryMissingModuleName(mappingIndex: 0)), - ("mapping { proto_file_path: [\"foo\", \"bar\"] }", .entryMissingModuleName(mappingIndex: 0)), + ("mapping { proto_file_path: [\"foo\"] }", .ProtoFileToModuleMapping.entryMissingModuleName(mappingIndex: 0)), + ("mapping { proto_file_path: [\"foo\", \"bar\"] }", .ProtoFileToModuleMapping.entryMissingModuleName(mappingIndex: 0)), // Empty module name. - ("mapping { module_name: \"\" }", .entryMissingModuleName(mappingIndex: 0)), - ("mapping { module_name: \"\", proto_file_path: [\"foo\"] }", .entryMissingModuleName(mappingIndex: 0)), - ("mapping { module_name: \"\", proto_file_path: [\"foo\", \"bar\"] }", .entryMissingModuleName(mappingIndex: 0)), + ("mapping { module_name: \"\" }", .ProtoFileToModuleMapping.entryMissingModuleName(mappingIndex: 0)), + ("mapping { module_name: \"\", proto_file_path: [\"foo\"] }", .ProtoFileToModuleMapping.entryMissingModuleName(mappingIndex: 0)), + ("mapping { module_name: \"\", proto_file_path: [\"foo\", \"bar\"] }", .ProtoFileToModuleMapping.entryMissingModuleName(mappingIndex: 0)), // Throw some on a second entry just to check that also. ("mapping { module_name: \"good\", proto_file_path: \"file.proto\" }\n" + "mapping { }", - .entryMissingModuleName(mappingIndex: 1)), + .ProtoFileToModuleMapping.entryMissingModuleName(mappingIndex: 1)), ("mapping { module_name: \"good\", proto_file_path: \"file.proto\" }\n" + "mapping { module_name: \"foo\" }", - .entryHasNoProtoPaths(mappingIndex: 1)), + .ProtoFileToModuleMapping.entryHasNoProtoPaths(mappingIndex: 1)), // Duplicates ("mapping { module_name: \"foo\", proto_file_path: \"abc\" }\n" + "mapping { module_name: \"bar\", proto_file_path: \"abc\" }", - .duplicateProtoPathMapping(path: "abc", firstModule: "foo", secondModule: "bar")), + .ProtoFileToModuleMapping.duplicateProtoPathMapping(path: "abc", firstModule: "foo", secondModule: "bar")), ("mapping { module_name: \"foo\", proto_file_path: \"abc\" }\n" + "mapping { module_name: \"bar\", proto_file_path: \"xyz\" }\n" + "mapping { module_name: \"baz\", proto_file_path: \"abc\" }", - .duplicateProtoPathMapping(path: "abc", firstModule: "foo", secondModule: "baz")), + .ProtoFileToModuleMapping.duplicateProtoPathMapping(path: "abc", firstModule: "foo", secondModule: "baz")), ] for (idx, (configText, expected)) in partialConfigs.enumerated() { @@ -134,7 +121,7 @@ final class Test_ProtoFileToModuleMappings: XCTestCase { do { let _ = try ProtoFileToModuleMappings(moduleMappingsProto: config) XCTFail("Shouldn't have gotten here, index \(idx)") - } catch let error as ProtoFileToModuleMappings.LoadError { + } catch let error as SwiftProtobufError { XCTAssertEqual(error, expected, "Index \(idx)") } catch let error { XCTFail("Index \(idx) - Unexpected error: \(error)") diff --git a/Tests/SwiftProtobufTests/TestHelpers.swift b/Tests/SwiftProtobufTests/TestHelpers.swift index aa078b02b..b6138e1c2 100644 --- a/Tests/SwiftProtobufTests/TestHelpers.swift +++ b/Tests/SwiftProtobufTests/TestHelpers.swift @@ -399,6 +399,16 @@ extension XCTestCase { XCTAssertTrue(actual.hasSuffix(expectedSuffix), fmt ?? "debugDescription did not match", file: file, line: line) #endif } + + func assertSwiftProtobufError(_ error: any Error, code: SwiftProtobufError.Code, message: String) { + let actualError = error as! SwiftProtobufError + let expectedError = SwiftProtobufError( + code: code, + message: message + ) + XCTAssertEqual(actualError.code, expectedError.code) + XCTAssertEqual(actualError.message, expectedError.message) + } } /// Protocol to help write visitor for testing. It provides default implementations diff --git a/Tests/SwiftProtobufTests/Test_AllTypes.swift b/Tests/SwiftProtobufTests/Test_AllTypes.swift index 2714ef678..85e1fd077 100644 --- a/Tests/SwiftProtobufTests/Test_AllTypes.swift +++ b/Tests/SwiftProtobufTests/Test_AllTypes.swift @@ -824,7 +824,11 @@ final class Test_AllTypes: XCTestCase, PBTestHelpers { // Don't need all the bytes, want some to let the length issue trigger. 0x01, 0x02, 0x03, ])) { - XCTAssertEqual($0 as! BinaryDecodingError, BinaryDecodingError.tooLarge) + self.assertSwiftProtobufError( + $0, + code: .binaryDecodingError, + message: "Message too large: Bytes and Strings have a max size of 2GB." + ) } let empty = MessageTestType() @@ -948,7 +952,11 @@ final class Test_AllTypes: XCTestCase, PBTestHelpers { // Don't need all the bytes, want some to let the length issue trigger. 0x01, 0x02, 0x03, ])) { - XCTAssertEqual($0 as! BinaryDecodingError, BinaryDecodingError.tooLarge) + self.assertSwiftProtobufError( + $0, + code: .binaryDecodingError, + message: "Message too large: Bytes and Strings have a max size of 2GB." + ) } let empty = MessageTestType() @@ -1000,7 +1008,11 @@ final class Test_AllTypes: XCTestCase, PBTestHelpers { // Don't need all the bytes, want some to let the length issue trigger. 0x01, 0x02, 0x03, ])) { - XCTAssertEqual($0 as! BinaryDecodingError, BinaryDecodingError.tooLarge) + self.assertSwiftProtobufError( + $0, + code: .binaryDecodingError, + message: "Message too large: Bytes and Strings have a max size of 2GB." + ) } // Ensure storage is uniqued for clear. @@ -1756,7 +1768,11 @@ final class Test_AllTypes: XCTestCase, PBTestHelpers { // Don't need all the bytes, want some to let the length issue trigger. 0x01, 0x02, 0x03, ])) { - XCTAssertEqual($0 as! BinaryDecodingError, BinaryDecodingError.tooLarge) + self.assertSwiftProtobufError( + $0, + code: .binaryDecodingError, + message: "Message too large: Bytes and Strings have a max size of 2GB." + ) } assertDebugDescription("SwiftProtobufTests.SwiftProtoTesting_TestAllTypes:\nrepeated_nested_message {\n bb: 1\n}\nrepeated_nested_message {\n bb: 2\n}\n") {(o: inout MessageTestType) in diff --git a/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift b/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift index 4c86dc22a..bf97751b1 100644 --- a/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift +++ b/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift @@ -126,7 +126,7 @@ final class Test_AsyncMessageSequence: XCTestCase { XCTFail("Shouldn't have returned a value for an empty stream.") } } catch { - if error as! BinaryDelimited.Error == .truncated { + if error as! SwiftProtobufError == .BinaryDecoding.truncated { truncatedThrown = true } } @@ -136,18 +136,18 @@ final class Test_AsyncMessageSequence: XCTestCase { // Single varint describing a 2GB message func testTooLarge() async throws { let asyncBytes = asyncByteStream(bytes: [128, 128, 128, 128, 8]) - var tooLargeThrown = false let decoded = asyncBytes.binaryProtobufDelimitedMessages(of: SwiftProtoTesting_TestAllTypes.self) do { for try await _ in decoded { XCTFail("Shouldn't have returned a value for an invalid stream.") } } catch { - if error as! BinaryDecodingError == .tooLarge { - tooLargeThrown = true - } + self.assertSwiftProtobufError( + error, + code: .binaryDecodingError, + message: "Message too large: Bytes and Strings have a max size of 2GB." + ) } - XCTAssertTrue(tooLargeThrown, "Should throw a BinaryDecodingError.tooLarge") } // Stream with truncated varint @@ -161,7 +161,7 @@ final class Test_AsyncMessageSequence: XCTestCase { XCTFail("Shouldn't have returned a value for an empty stream.") } } catch { - if error as! BinaryDelimited.Error == .truncated { + if error as! SwiftProtobufError == .BinaryDecoding.truncated { truncatedThrown = true } } @@ -193,7 +193,7 @@ final class Test_AsyncMessageSequence: XCTestCase { } XCTAssertEqual(count, 1, "One message should be deserialized") } catch { - if error as! BinaryDelimited.Error == .truncated { + if error as! SwiftProtobufError == .BinaryDecoding.truncated { truncatedThrown = true } } diff --git a/Tests/SwiftProtobufTests/Test_BinaryDecodingOptions.swift b/Tests/SwiftProtobufTests/Test_BinaryDecodingOptions.swift index 8285db8b0..ef5adac38 100644 --- a/Tests/SwiftProtobufTests/Test_BinaryDecodingOptions.swift +++ b/Tests/SwiftProtobufTests/Test_BinaryDecodingOptions.swift @@ -113,7 +113,7 @@ final class Test_BinaryDecodingOptions: XCTestCase { if !expectSuccess { XCTFail("Should not have succeed, pass: \(i), limit: \(limit)") } - } catch BinaryDecodingError.messageDepthLimit { + } catch let error as SwiftProtobufError where error == .BinaryDecoding.messageDepthLimit { if expectSuccess { XCTFail("Decode failed because of limit, but should *NOT* have, pass: \(i), limit: \(limit)") } else { diff --git a/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift b/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift index f65947eec..f2ae25413 100644 --- a/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift +++ b/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift @@ -40,14 +40,14 @@ final class Test_BinaryDelimited: XCTestCase { func assertParseFails(atEndOfStream istream: InputStream) { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertEqual(error as? BinaryDelimited.Error, BinaryDelimited.Error.noBytesAvailable) + XCTAssertEqual(error as? SwiftProtobufError, .BinaryDecoding.noBytesAvailable) } } func assertParsing(failsWithTruncatedStream istream: InputStream) { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertEqual(error as? BinaryDelimited.Error, BinaryDelimited.Error.truncated) + XCTAssertEqual(error as? SwiftProtobufError, .BinaryDecoding.truncated) } } @@ -90,7 +90,7 @@ final class Test_BinaryDelimited: XCTestCase { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertEqual(error as? BinaryDelimited.Error, BinaryDelimited.Error.tooLarge) + XCTAssertEqual(error as? SwiftProtobufError, .BinaryDecoding.tooLarge) } } @@ -99,7 +99,7 @@ final class Test_BinaryDelimited: XCTestCase { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertEqual(error as? BinaryDelimited.Error, BinaryDelimited.Error.malformedLength) + XCTAssertEqual(error as? SwiftProtobufError, .BinaryDecoding.malformedLength) } } diff --git a/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift b/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift index e365ac04b..ecb441d34 100644 --- a/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift +++ b/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift @@ -46,7 +46,7 @@ final class Test_JSONDecodingOptions: XCTestCase { if !expectSuccess { XCTFail("Should not have succeed, pass: \(i), limit: \(limit)") } - } catch JSONDecodingError.messageDepthLimit { + } catch let error as SwiftProtobufError where error == .JSONDecoding.messageDepthLimit { if expectSuccess { XCTFail("Decode failed because of limit, but should *NOT* have, pass: \(i), limit: \(limit)") } else { @@ -136,8 +136,9 @@ final class Test_JSONDecodingOptions: XCTestCase { do { let _ = try SwiftProtoTesting_TestEmptyMessage(jsonString: jsonInput) XCTFail("Input \(i): Should not have gotten here! Input: \(jsonInput)") - } catch JSONDecodingError.unknownField(let field) { - XCTAssertEqual(field, "unknown", "Input \(i): got field \(field)") + } catch let error as SwiftProtobufError { + XCTAssertEqual(error.code, .jsonDecodingError) + XCTAssertEqual(error.message, "Encountered an unknown field with name 'unknown'.") } catch let e { XCTFail("Input \(i): Error \(e) decoding into an empty message \(jsonInput)") } @@ -148,8 +149,8 @@ final class Test_JSONDecodingOptions: XCTestCase { options:options) XCTAssertTrue(isValidJSON, "Input \(i): Should not have been able to parse: \(jsonInput)") - } catch JSONDecodingError.unknownField(let field) { - XCTFail("Input \(i): should not have gotten unknown field \(field), input \(jsonInput)") + } catch let error as SwiftProtobufError where error == .JSONDecoding.unknownField("unknown") { + XCTFail("Input \(i): should not have gotten unknown field, input \(jsonInput)") } catch let e { XCTAssertFalse(isValidJSON, "Input \(i): Error \(e): Should have been able to parse: \(jsonInput)") diff --git a/Tests/SwiftProtobufTests/Test_JSON_Conformance.swift b/Tests/SwiftProtobufTests/Test_JSON_Conformance.swift index d574f774f..39da32262 100644 --- a/Tests/SwiftProtobufTests/Test_JSON_Conformance.swift +++ b/Tests/SwiftProtobufTests/Test_JSON_Conformance.swift @@ -283,20 +283,20 @@ final class Test_JSON_Conformance: XCTestCase { func testValue_DoubleNonFinite() { XCTAssertThrowsError(try Google_Protobuf_Value(numberValue: .nan).jsonString()) { - XCTAssertEqual($0 as? JSONEncodingError, - JSONEncodingError.valueNumberNotFinite, + XCTAssertEqual($0 as? SwiftProtobufError, + .JSONEncoding.valueNumberNotFinite, "Wrong error? - \($0)") } XCTAssertThrowsError(try Google_Protobuf_Value(numberValue: .infinity).jsonString()) { - XCTAssertEqual($0 as? JSONEncodingError, - JSONEncodingError.valueNumberNotFinite, + XCTAssertEqual($0 as? SwiftProtobufError, + .JSONEncoding.valueNumberNotFinite, "Wrong error? - \($0)") } XCTAssertThrowsError(try Google_Protobuf_Value(numberValue: -.infinity).jsonString()) { - XCTAssertEqual($0 as? JSONEncodingError, - JSONEncodingError.valueNumberNotFinite, + XCTAssertEqual($0 as? SwiftProtobufError, + .JSONEncoding.valueNumberNotFinite, "Wrong error? - \($0)") } } diff --git a/Tests/SwiftProtobufTests/Test_Required.swift b/Tests/SwiftProtobufTests/Test_Required.swift index 53629d1ab..a45c6b567 100644 --- a/Tests/SwiftProtobufTests/Test_Required.swift +++ b/Tests/SwiftProtobufTests/Test_Required.swift @@ -157,7 +157,7 @@ final class Test_Required: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(serializedBytes: bytes) XCTFail("Swift decode should have failed: \(bytes)", file: file, line: line) - } catch BinaryDecodingError.missingRequiredFields { + } catch let error as SwiftProtobufError where error == .BinaryDecoding.missingRequiredFields { // Correct error! } catch let e { XCTFail("Decoding \(bytes) got wrong error: \(e)", file: file, line: line) @@ -254,7 +254,7 @@ final class Test_Required: XCTestCase, PBTestHelpers { do { let _: [UInt8] = try message.serializedBytes() XCTFail("Swift encode should have failed: \(message)", file: file, line: line) - } catch BinaryEncodingError.missingRequiredFields { + } catch let error as SwiftProtobufError where error == .BinaryEncoding.missingRequiredFields { // Correct error! } catch let e { XCTFail("Encoding got wrong error: \(e) for \(message)", file: file, line: line) @@ -357,7 +357,7 @@ final class Test_SmallRequired: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(serializedBytes: bytes) XCTFail("Swift decode should have failed: \(bytes)", file: file, line: line) - } catch BinaryDecodingError.missingRequiredFields { + } catch let error as SwiftProtobufError where error == .BinaryDecoding.missingRequiredFields { // Correct error! } catch let e { XCTFail("Decoding \(bytes) got wrong error: \(e)", file: file, line: line) @@ -414,7 +414,7 @@ final class Test_SmallRequired: XCTestCase, PBTestHelpers { do { let _: [UInt8] = try message.serializedBytes() XCTFail("Swift encode should have failed: \(message)", file: file, line: line) - } catch BinaryEncodingError.missingRequiredFields { + } catch let error as SwiftProtobufError where error == .BinaryEncoding.missingRequiredFields { // Correct error! } catch let e { XCTFail("Encoding got wrong error: \(e) for \(message)", file: file, line: line) diff --git a/Tests/SwiftProtobufTests/Test_Struct.swift b/Tests/SwiftProtobufTests/Test_Struct.swift index 7868b9425..d9f6e003c 100644 --- a/Tests/SwiftProtobufTests/Test_Struct.swift +++ b/Tests/SwiftProtobufTests/Test_Struct.swift @@ -221,7 +221,7 @@ final class Test_JSON_Value: XCTestCase, PBTestHelpers { do { _ = try empty.jsonString() XCTFail("Encoding should have thrown .missingValue, but it succeeded") - } catch JSONEncodingError.missingValue { + } catch let error as SwiftProtobufError where error == .JSONEncoding.missingValue { // Nothing to do here; this is the expected error. } catch { XCTFail("Encoding should have thrown .missingValue, but instead it threw: \(error)") diff --git a/Tests/SwiftProtobufTests/Test_TextFormatDecodingOptions.swift b/Tests/SwiftProtobufTests/Test_TextFormatDecodingOptions.swift index b18ea4d28..e92eb1ddc 100644 --- a/Tests/SwiftProtobufTests/Test_TextFormatDecodingOptions.swift +++ b/Tests/SwiftProtobufTests/Test_TextFormatDecodingOptions.swift @@ -38,7 +38,7 @@ final class Test_TextFormatDecodingOptions: XCTestCase { if !expectSuccess { XCTFail("Should not have succeed, limit: \(limit)") } - } catch TextFormatDecodingError.messageDepthLimit { + } catch let error as SwiftProtobufError where error == .TextFormatDecoding.messageDepthLimit { if expectSuccess { XCTFail("Decode failed because of limit, but should *NOT* have, limit: \(limit)") } else { diff --git a/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift b/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift index 53d905f90..c0215c570 100644 --- a/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift +++ b/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift @@ -41,7 +41,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch TextFormatDecodingError.unknownField { + } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { // This is what should have happened. } @@ -61,7 +61,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch TextFormatDecodingError.unknownField { + } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { // This is what should have happened. } @@ -81,7 +81,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch TextFormatDecodingError.unknownField { + } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { // This is what should have happened. } @@ -102,7 +102,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch TextFormatDecodingError.unknownField { + } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { // This is what should have happened. } @@ -124,7 +124,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch TextFormatDecodingError.unknownField { + } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { // This is what should have happened. } @@ -186,7 +186,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch TextFormatDecodingError.unknownField { + } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { // This is what should have happened. } @@ -248,7 +248,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch TextFormatDecodingError.unknownField { + } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { // This is what should have happened. } @@ -281,7 +281,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch TextFormatDecodingError.unknownField { + } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { // This is what should have happened. } @@ -301,7 +301,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch TextFormatDecodingError.unknownField { + } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { // This is what should have happened. } @@ -352,7 +352,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch TextFormatDecodingError.unknownField { + } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { // This is what should have happened. } @@ -376,7 +376,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch TextFormatDecodingError.unknownField { + } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { // This is what should have happened. } diff --git a/Tests/SwiftProtobufTests/Test_Wrappers.swift b/Tests/SwiftProtobufTests/Test_Wrappers.swift index 8ff6156e7..c9c9f6b11 100644 --- a/Tests/SwiftProtobufTests/Test_Wrappers.swift +++ b/Tests/SwiftProtobufTests/Test_Wrappers.swift @@ -25,7 +25,7 @@ final class Test_Wrappers: XCTestCase { do { _ = try type.init(jsonString: "null") XCTFail("Expected decode to throw .illegalNull, but it succeeded") - } catch JSONDecodingError.illegalNull { + } catch let error as SwiftProtobufError where error == .JSONDecoding.illegalNull { // Nothing to do; this is the expected error. } catch { XCTFail("Expected decode to throw .illegalNull, but instead it threw: \(error)") From bd37117759c3b646c2d908ebb1d0431919ec0399 Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Fri, 5 Apr 2024 15:19:16 +0100 Subject: [PATCH 02/19] Roll back other enum-related breaking changes --- Sources/SwiftProtobuf/BinaryDecodingError.swift | 4 ---- Sources/SwiftProtobuf/BinaryDelimited.swift | 17 ----------------- Sources/SwiftProtobuf/BinaryEncodingError.swift | 8 +------- Sources/SwiftProtobuf/JSONEncodingError.swift | 4 ++-- 4 files changed, 3 insertions(+), 30 deletions(-) diff --git a/Sources/SwiftProtobuf/BinaryDecodingError.swift b/Sources/SwiftProtobuf/BinaryDecodingError.swift index 414958540..9e2fcb49b 100644 --- a/Sources/SwiftProtobuf/BinaryDecodingError.swift +++ b/Sources/SwiftProtobuf/BinaryDecodingError.swift @@ -42,8 +42,4 @@ public enum BinaryDecodingError: Error { /// Reached the nesting limit for messages within messages while decoding. case messageDepthLimit - - /// Bytes and Strings have a max size of 2GB. And since messages are on the - /// wire as bytes/length delimited, they also have a 2GB size limit. - case tooLarge } diff --git a/Sources/SwiftProtobuf/BinaryDelimited.swift b/Sources/SwiftProtobuf/BinaryDelimited.swift index eefc0a170..b1b8875d8 100644 --- a/Sources/SwiftProtobuf/BinaryDelimited.swift +++ b/Sources/SwiftProtobuf/BinaryDelimited.swift @@ -66,23 +66,6 @@ public enum BinaryDelimited { /// While reading/writing to the stream, less than the expected bytes was /// read/written. case truncated - - /// Messages are limited by the protobuf spec to 2GB; when decoding, if the - /// length says the payload is over 2GB, this error is raised. - case tooLarge - - /// While attempting to read the length of a message on the stream, the - /// bytes were malformed for the protobuf format. - case malformedLength - - /// This isn't really an "error". `InputStream` documents that - /// `hasBytesAvailable` _may_ return `True` if a read is needed to - /// determine if there really are bytes available. So this "error" is throw - /// when a `parse` or `merge` fails because there were no bytes available. - /// If this is rasied, the callers should decides via what ever other means - /// are correct if the stream has completely ended or if more bytes might - /// eventually show up. - case noBytesAvailable } #if !os(WASI) diff --git a/Sources/SwiftProtobuf/BinaryEncodingError.swift b/Sources/SwiftProtobuf/BinaryEncodingError.swift index ea0e1e67a..22c57176c 100644 --- a/Sources/SwiftProtobuf/BinaryEncodingError.swift +++ b/Sources/SwiftProtobuf/BinaryEncodingError.swift @@ -14,11 +14,7 @@ /// Describes errors that can occur when decoding a message from binary format. @available(*, deprecated, message: "This error type has been deprecated and won't be thrown anymore; it has been replaced by `SwiftProtobufError`.") -public enum BinaryEncodingError: Error, Equatable { - /// `Any` fields that were decoded from JSON cannot be re-encoded to binary - /// unless the object they hold is a well-known type or a type registered via - /// `Google_Protobuf_Any.register()`. - case anyTypeURLNotRegistered(typeURL: String) +public enum BinaryEncodingError: Error, Hashable { /// An unexpected failure when deserializing a `Google_Protobuf_Any`. case anyTranscodeFailure /// The definition of the message or one of its nested messages has required @@ -26,6 +22,4 @@ public enum BinaryEncodingError: Error, Equatable { /// must pass `partial: true` during encoding if you wish to explicitly ignore /// missing required fields. case missingRequiredFields - /// Messages are limited to a maximum of 2GB in encoded size. - case tooLarge } diff --git a/Sources/SwiftProtobuf/JSONEncodingError.swift b/Sources/SwiftProtobuf/JSONEncodingError.swift index 964ceb725..6d6b959fb 100644 --- a/Sources/SwiftProtobuf/JSONEncodingError.swift +++ b/Sources/SwiftProtobuf/JSONEncodingError.swift @@ -13,12 +13,12 @@ // ----------------------------------------------------------------------------- @available(*, deprecated, message: "This error type has been deprecated and won't be thrown anymore; it has been replaced by `SwiftProtobufError`.") -public enum JSONEncodingError: Error, Equatable { +public enum JSONEncodingError: Error, Hashable { /// Any fields that were decoded from binary format cannot be /// re-encoded into JSON unless the object they hold is a /// well-known type or a type registered with via /// Google_Protobuf_Any.register() - case anyTypeURLNotRegistered(typeURL: String) + case anyTranscodeFailure /// Timestamp values can only be JSON encoded if they hold a value /// between 0001-01-01Z00:00:00 and 9999-12-31Z23:59:59. case timestampRange From 23ee984316785d4a05106734ba5e69651bc57e01 Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Tue, 9 Apr 2024 10:19:47 +0100 Subject: [PATCH 03/19] Add new error codes --- .../Message+TextFormatAdditions.swift | 2 +- .../SwiftProtobuf/SwiftProtobufError.swift | 26 +++++++++---------- .../ProtoFileToModuleMappings.swift | 14 +++++----- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift b/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift index 7d5e4bfe6..2e1777b13 100644 --- a/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift +++ b/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift @@ -34,7 +34,7 @@ extension Message { /// of the message. /// /// Unlike binary encoding, presence of required fields is not enforced when - /// serializing to JSON. + /// serializing to text format. /// /// - Returns: A string containing the text format serialization of the message. /// - Parameters: diff --git a/Sources/SwiftProtobuf/SwiftProtobufError.swift b/Sources/SwiftProtobuf/SwiftProtobufError.swift index 8681b7ff4..49307ae49 100644 --- a/Sources/SwiftProtobuf/SwiftProtobufError.swift +++ b/Sources/SwiftProtobuf/SwiftProtobufError.swift @@ -88,8 +88,8 @@ extension SwiftProtobufError { case jsonEncodingError case jsonDecodingError case textFormatDecodingError - case anyUnpackError - case protoFileToModuleMappingError + case invalidArgument + case internalError var description: String { switch self { @@ -103,10 +103,10 @@ extension SwiftProtobufError { return "JSON decoding error" case .textFormatDecodingError: return "Text format decoding error" - case .anyUnpackError: - return "Error unpacking a Google_Protobuf_Any message" - case .protoFileToModuleMappingError: - return "Error with proto file to module mapping" + case .invalidArgument: + return "An argument provided by the user is invalid" + case .internalError: + return "Other internal error" } } } @@ -140,12 +140,12 @@ extension SwiftProtobufError { Self(.textFormatDecodingError) } - public static var anyUnpackError: Self { - Self(.anyUnpackError) + public static var invalidArgument: Self { + Self(.invalidArgument) } - public static var protoFileToModuleMappingError: Self { - Self(.protoFileToModuleMappingError) + public static var internalError: Self { + Self(.internalError) } } @@ -591,7 +591,7 @@ extension SwiftProtobufError { /// The `type_url` field in the `Google_Protobuf_Any` message did not match /// the message type provided to the `unpack()` method. public static let typeMismatch = SwiftProtobufError( - code: .anyUnpackError, + code: .invalidArgument, message: """ The `type_url` field in the `Google_Protobuf_Any` message did not match the message type provided to the `unpack()` method. @@ -602,7 +602,7 @@ extension SwiftProtobufError { /// `@type` field and a `value` field containing the specialized JSON coding /// of the well-known type. public static let malformedWellKnownTypeJSON = SwiftProtobufError( - code: .anyUnpackError, + code: .jsonDecodingError, message: """ Malformed JSON type: well-known types being decoded from JSON must have only two fields: the `@type` field and a `value` field containing the specialized JSON coding @@ -613,7 +613,7 @@ extension SwiftProtobufError { /// The `Google_Protobuf_Any` message was malformed in some other way not /// covered by the other error cases. public static let malformedAnyField = SwiftProtobufError( - code: .anyUnpackError, + code: .internalError, message: "The `Google_Protobuf_Any` message was malformed." ) } diff --git a/Sources/SwiftProtobufPluginLibrary/ProtoFileToModuleMappings.swift b/Sources/SwiftProtobufPluginLibrary/ProtoFileToModuleMappings.swift index ea961a0ba..e3b80133e 100644 --- a/Sources/SwiftProtobufPluginLibrary/ProtoFileToModuleMappings.swift +++ b/Sources/SwiftProtobufPluginLibrary/ProtoFileToModuleMappings.swift @@ -23,7 +23,7 @@ extension SwiftProtobufError { /// - Parameter path: The path that wasn't found. public static func failToOpen(path: String) -> SwiftProtobufError { SwiftProtobufError( - code: .protoFileToModuleMappingError, + code: .invalidArgument, message: "Path not found: \(path)" ) } @@ -32,8 +32,8 @@ extension SwiftProtobufError { /// - Parameter mappingIndex: The index (0-N) of the mapping. public static func entryMissingModuleName(mappingIndex: Int) -> SwiftProtobufError { SwiftProtobufError( - code: .protoFileToModuleMappingError, - message: "Mapping with index \(mappingIndex) doesn't have a module name." + code: .invalidArgument, + message: "Error with proto file to module mapping: mapping with index \(mappingIndex) doesn't have a module name." ) } @@ -41,8 +41,8 @@ extension SwiftProtobufError { /// - Parameter mappingIndex: The index (0-N) of the mapping. public static func entryHasNoProtoPaths(mappingIndex: Int) -> SwiftProtobufError { SwiftProtobufError( - code: .protoFileToModuleMappingError, - message: "Mapping with index \(mappingIndex) doesn't have any proto files listed." + code: .invalidArgument, + message: "Error with proto file to module mapping: mapping with index \(mappingIndex) doesn't have any proto files listed." ) } @@ -53,8 +53,8 @@ extension SwiftProtobufError { secondModule: String ) -> SwiftProtobufError { SwiftProtobufError( - code: .protoFileToModuleMappingError, - message: "The given path (\(path)) was listed in two modules: '\(firstModule)' and '\(secondModule)'." + code: .invalidArgument, + message: "Error with proto file to module mapping - The given path (\(path)) was listed in two modules: '\(firstModule)' and '\(secondModule)'." ) } } From c89d2e6f05b2b3212778e9c651e9177fdc7629cd Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Tue, 9 Apr 2024 10:22:22 +0100 Subject: [PATCH 04/19] Remove Equatable conformance from SwiftProtobufError --- .../SwiftProtobuf/SwiftProtobufError.swift | 11 ++------- .../Test_ProtoFileToModuleMappings.swift | 3 ++- Tests/SwiftProtobufTests/TestHelpers.swift | 10 ++------ Tests/SwiftProtobufTests/Test_AllTypes.swift | 24 ++++--------------- .../Test_AsyncMessageSequence.swift | 14 ++++------- .../Test_BinaryDecodingOptions.swift | 2 +- .../Test_BinaryDelimited.swift | 8 +++---- .../Test_JSONDecodingOptions.swift | 4 ++-- .../Test_JSON_Conformance.swift | 21 +++++++++------- Tests/SwiftProtobufTests/Test_Required.swift | 9 +++---- Tests/SwiftProtobufTests/Test_Struct.swift | 2 +- .../Test_TextFormatDecodingOptions.swift | 2 +- .../Test_TextFormat_Unknown.swift | 22 ++++++++--------- Tests/SwiftProtobufTests/Test_Wrappers.swift | 2 +- 14 files changed, 53 insertions(+), 81 deletions(-) diff --git a/Sources/SwiftProtobuf/SwiftProtobufError.swift b/Sources/SwiftProtobuf/SwiftProtobufError.swift index 49307ae49..a2e08b9eb 100644 --- a/Sources/SwiftProtobuf/SwiftProtobufError.swift +++ b/Sources/SwiftProtobuf/SwiftProtobufError.swift @@ -16,7 +16,7 @@ /// Errors also include a message describing what went wrong and how to remedy it (if applicable). The /// ``SwiftProtobufError/message`` is not static and may include dynamic information such as the /// type URL for a type that could not be decoded, for example. -public struct SwiftProtobufError: Error, Equatable, @unchecked Sendable { +public struct SwiftProtobufError: Error, @unchecked Sendable { // Note: @unchecked because we use a backing class for storage. private var storage: Storage @@ -26,7 +26,7 @@ public struct SwiftProtobufError: Error, Equatable, @unchecked Sendable { } } - private final class Storage: Equatable { + private final class Storage { var code: Code var message: String @@ -37,13 +37,6 @@ public struct SwiftProtobufError: Error, Equatable, @unchecked Sendable { self.code = code self.message = message } - - static func == ( - lhs: SwiftProtobufError.Storage, - rhs: SwiftProtobufError.Storage - ) -> Bool { - lhs.code == rhs.code && lhs.message == rhs.message - } func copy() -> Self { return Self( diff --git a/Tests/SwiftProtobufPluginLibraryTests/Test_ProtoFileToModuleMappings.swift b/Tests/SwiftProtobufPluginLibraryTests/Test_ProtoFileToModuleMappings.swift index 7a52f8815..4a6a70b60 100644 --- a/Tests/SwiftProtobufPluginLibraryTests/Test_ProtoFileToModuleMappings.swift +++ b/Tests/SwiftProtobufPluginLibraryTests/Test_ProtoFileToModuleMappings.swift @@ -122,7 +122,8 @@ final class Test_ProtoFileToModuleMappings: XCTestCase { let _ = try ProtoFileToModuleMappings(moduleMappingsProto: config) XCTFail("Shouldn't have gotten here, index \(idx)") } catch let error as SwiftProtobufError { - XCTAssertEqual(error, expected, "Index \(idx)") + XCTAssertEqual(error.code, expected.code, "Index \(idx)") + XCTAssertEqual(error.message, expected.message, "Index \(idx)") } catch let error { XCTFail("Index \(idx) - Unexpected error: \(error)") } diff --git a/Tests/SwiftProtobufTests/TestHelpers.swift b/Tests/SwiftProtobufTests/TestHelpers.swift index b6138e1c2..b3ccb1382 100644 --- a/Tests/SwiftProtobufTests/TestHelpers.swift +++ b/Tests/SwiftProtobufTests/TestHelpers.swift @@ -400,14 +400,8 @@ extension XCTestCase { #endif } - func assertSwiftProtobufError(_ error: any Error, code: SwiftProtobufError.Code, message: String) { - let actualError = error as! SwiftProtobufError - let expectedError = SwiftProtobufError( - code: code, - message: message - ) - XCTAssertEqual(actualError.code, expectedError.code) - XCTAssertEqual(actualError.message, expectedError.message) + func isSwiftProtobufErrorEqual(_ actual: SwiftProtobufError, _ expected: SwiftProtobufError) -> Bool { + (actual.code == expected.code) && (actual.message == expected.message) } } diff --git a/Tests/SwiftProtobufTests/Test_AllTypes.swift b/Tests/SwiftProtobufTests/Test_AllTypes.swift index 85e1fd077..de7e0dace 100644 --- a/Tests/SwiftProtobufTests/Test_AllTypes.swift +++ b/Tests/SwiftProtobufTests/Test_AllTypes.swift @@ -824,11 +824,7 @@ final class Test_AllTypes: XCTestCase, PBTestHelpers { // Don't need all the bytes, want some to let the length issue trigger. 0x01, 0x02, 0x03, ])) { - self.assertSwiftProtobufError( - $0, - code: .binaryDecodingError, - message: "Message too large: Bytes and Strings have a max size of 2GB." - ) + XCTAssertTrue(self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .BinaryDecoding.tooLarge)) } let empty = MessageTestType() @@ -952,11 +948,7 @@ final class Test_AllTypes: XCTestCase, PBTestHelpers { // Don't need all the bytes, want some to let the length issue trigger. 0x01, 0x02, 0x03, ])) { - self.assertSwiftProtobufError( - $0, - code: .binaryDecodingError, - message: "Message too large: Bytes and Strings have a max size of 2GB." - ) + XCTAssertTrue(self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .BinaryDecoding.tooLarge)) } let empty = MessageTestType() @@ -1008,11 +1000,7 @@ final class Test_AllTypes: XCTestCase, PBTestHelpers { // Don't need all the bytes, want some to let the length issue trigger. 0x01, 0x02, 0x03, ])) { - self.assertSwiftProtobufError( - $0, - code: .binaryDecodingError, - message: "Message too large: Bytes and Strings have a max size of 2GB." - ) + XCTAssertTrue(self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .BinaryDecoding.tooLarge)) } // Ensure storage is uniqued for clear. @@ -1768,11 +1756,7 @@ final class Test_AllTypes: XCTestCase, PBTestHelpers { // Don't need all the bytes, want some to let the length issue trigger. 0x01, 0x02, 0x03, ])) { - self.assertSwiftProtobufError( - $0, - code: .binaryDecodingError, - message: "Message too large: Bytes and Strings have a max size of 2GB." - ) + XCTAssertTrue(self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .BinaryDecoding.tooLarge)) } assertDebugDescription("SwiftProtobufTests.SwiftProtoTesting_TestAllTypes:\nrepeated_nested_message {\n bb: 1\n}\nrepeated_nested_message {\n bb: 2\n}\n") {(o: inout MessageTestType) in diff --git a/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift b/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift index bf97751b1..32659d0f5 100644 --- a/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift +++ b/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift @@ -126,11 +126,11 @@ final class Test_AsyncMessageSequence: XCTestCase { XCTFail("Shouldn't have returned a value for an empty stream.") } } catch { - if error as! SwiftProtobufError == .BinaryDecoding.truncated { + if self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.truncated) { truncatedThrown = true } } - XCTAssertTrue(truncatedThrown, "Should throw a BinaryDelimited.Error.truncated") + XCTAssertTrue(truncatedThrown, "Should throw a SwiftProtobufError.BinaryDecoding.truncated") } // Single varint describing a 2GB message @@ -142,11 +142,7 @@ final class Test_AsyncMessageSequence: XCTestCase { XCTFail("Shouldn't have returned a value for an invalid stream.") } } catch { - self.assertSwiftProtobufError( - error, - code: .binaryDecodingError, - message: "Message too large: Bytes and Strings have a max size of 2GB." - ) + XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.tooLarge)) } } @@ -161,7 +157,7 @@ final class Test_AsyncMessageSequence: XCTestCase { XCTFail("Shouldn't have returned a value for an empty stream.") } } catch { - if error as! SwiftProtobufError == .BinaryDecoding.truncated { + if self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.truncated) { truncatedThrown = true } } @@ -193,7 +189,7 @@ final class Test_AsyncMessageSequence: XCTestCase { } XCTAssertEqual(count, 1, "One message should be deserialized") } catch { - if error as! SwiftProtobufError == .BinaryDecoding.truncated { + if self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.truncated) { truncatedThrown = true } } diff --git a/Tests/SwiftProtobufTests/Test_BinaryDecodingOptions.swift b/Tests/SwiftProtobufTests/Test_BinaryDecodingOptions.swift index ef5adac38..cd6246fa0 100644 --- a/Tests/SwiftProtobufTests/Test_BinaryDecodingOptions.swift +++ b/Tests/SwiftProtobufTests/Test_BinaryDecodingOptions.swift @@ -113,7 +113,7 @@ final class Test_BinaryDecodingOptions: XCTestCase { if !expectSuccess { XCTFail("Should not have succeed, pass: \(i), limit: \(limit)") } - } catch let error as SwiftProtobufError where error == .BinaryDecoding.messageDepthLimit { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryDecoding.messageDepthLimit) { if expectSuccess { XCTFail("Decode failed because of limit, but should *NOT* have, pass: \(i), limit: \(limit)") } else { diff --git a/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift b/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift index f2ae25413..c040b6d94 100644 --- a/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift +++ b/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift @@ -40,14 +40,14 @@ final class Test_BinaryDelimited: XCTestCase { func assertParseFails(atEndOfStream istream: InputStream) { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertEqual(error as? SwiftProtobufError, .BinaryDecoding.noBytesAvailable) + XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.noBytesAvailable)) } } func assertParsing(failsWithTruncatedStream istream: InputStream) { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertEqual(error as? SwiftProtobufError, .BinaryDecoding.truncated) + XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.truncated)) } } @@ -90,7 +90,7 @@ final class Test_BinaryDelimited: XCTestCase { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertEqual(error as? SwiftProtobufError, .BinaryDecoding.tooLarge) + XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.tooLarge)) } } @@ -99,7 +99,7 @@ final class Test_BinaryDelimited: XCTestCase { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertEqual(error as? SwiftProtobufError, .BinaryDecoding.malformedLength) + XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.malformedLength)) } } diff --git a/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift b/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift index ecb441d34..81f680555 100644 --- a/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift +++ b/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift @@ -46,7 +46,7 @@ final class Test_JSONDecodingOptions: XCTestCase { if !expectSuccess { XCTFail("Should not have succeed, pass: \(i), limit: \(limit)") } - } catch let error as SwiftProtobufError where error == .JSONDecoding.messageDepthLimit { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .JSONDecoding.messageDepthLimit) { if expectSuccess { XCTFail("Decode failed because of limit, but should *NOT* have, pass: \(i), limit: \(limit)") } else { @@ -149,7 +149,7 @@ final class Test_JSONDecodingOptions: XCTestCase { options:options) XCTAssertTrue(isValidJSON, "Input \(i): Should not have been able to parse: \(jsonInput)") - } catch let error as SwiftProtobufError where error == .JSONDecoding.unknownField("unknown") { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .JSONDecoding.unknownField("unknown")) { XCTFail("Input \(i): should not have gotten unknown field, input \(jsonInput)") } catch let e { XCTAssertFalse(isValidJSON, diff --git a/Tests/SwiftProtobufTests/Test_JSON_Conformance.swift b/Tests/SwiftProtobufTests/Test_JSON_Conformance.swift index 39da32262..be93e06a4 100644 --- a/Tests/SwiftProtobufTests/Test_JSON_Conformance.swift +++ b/Tests/SwiftProtobufTests/Test_JSON_Conformance.swift @@ -283,21 +283,24 @@ final class Test_JSON_Conformance: XCTestCase { func testValue_DoubleNonFinite() { XCTAssertThrowsError(try Google_Protobuf_Value(numberValue: .nan).jsonString()) { - XCTAssertEqual($0 as? SwiftProtobufError, - .JSONEncoding.valueNumberNotFinite, - "Wrong error? - \($0)") + XCTAssertTrue( + self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .JSONEncoding.valueNumberNotFinite), + "Wrong error? - \($0)" + ) } XCTAssertThrowsError(try Google_Protobuf_Value(numberValue: .infinity).jsonString()) { - XCTAssertEqual($0 as? SwiftProtobufError, - .JSONEncoding.valueNumberNotFinite, - "Wrong error? - \($0)") + XCTAssertTrue( + self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .JSONEncoding.valueNumberNotFinite), + "Wrong error? - \($0)" + ) } XCTAssertThrowsError(try Google_Protobuf_Value(numberValue: -.infinity).jsonString()) { - XCTAssertEqual($0 as? SwiftProtobufError, - .JSONEncoding.valueNumberNotFinite, - "Wrong error? - \($0)") + XCTAssertTrue( + self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .JSONEncoding.valueNumberNotFinite), + "Wrong error? - \($0)" + ) } } diff --git a/Tests/SwiftProtobufTests/Test_Required.swift b/Tests/SwiftProtobufTests/Test_Required.swift index a45c6b567..45f0f3010 100644 --- a/Tests/SwiftProtobufTests/Test_Required.swift +++ b/Tests/SwiftProtobufTests/Test_Required.swift @@ -157,7 +157,7 @@ final class Test_Required: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(serializedBytes: bytes) XCTFail("Swift decode should have failed: \(bytes)", file: file, line: line) - } catch let error as SwiftProtobufError where error == .BinaryDecoding.missingRequiredFields { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryDecoding.missingRequiredFields) { // Correct error! } catch let e { XCTFail("Decoding \(bytes) got wrong error: \(e)", file: file, line: line) @@ -254,8 +254,9 @@ final class Test_Required: XCTestCase, PBTestHelpers { do { let _: [UInt8] = try message.serializedBytes() XCTFail("Swift encode should have failed: \(message)", file: file, line: line) - } catch let error as SwiftProtobufError where error == .BinaryEncoding.missingRequiredFields { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryEncoding.missingRequiredFields) { // Correct error! + print("sdfdsf") } catch let e { XCTFail("Encoding got wrong error: \(e) for \(message)", file: file, line: line) } @@ -357,7 +358,7 @@ final class Test_SmallRequired: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(serializedBytes: bytes) XCTFail("Swift decode should have failed: \(bytes)", file: file, line: line) - } catch let error as SwiftProtobufError where error == .BinaryDecoding.missingRequiredFields { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryDecoding.missingRequiredFields) { // Correct error! } catch let e { XCTFail("Decoding \(bytes) got wrong error: \(e)", file: file, line: line) @@ -414,7 +415,7 @@ final class Test_SmallRequired: XCTestCase, PBTestHelpers { do { let _: [UInt8] = try message.serializedBytes() XCTFail("Swift encode should have failed: \(message)", file: file, line: line) - } catch let error as SwiftProtobufError where error == .BinaryEncoding.missingRequiredFields { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryEncoding.missingRequiredFields) { // Correct error! } catch let e { XCTFail("Encoding got wrong error: \(e) for \(message)", file: file, line: line) diff --git a/Tests/SwiftProtobufTests/Test_Struct.swift b/Tests/SwiftProtobufTests/Test_Struct.swift index d9f6e003c..e0f9007c9 100644 --- a/Tests/SwiftProtobufTests/Test_Struct.swift +++ b/Tests/SwiftProtobufTests/Test_Struct.swift @@ -221,7 +221,7 @@ final class Test_JSON_Value: XCTestCase, PBTestHelpers { do { _ = try empty.jsonString() XCTFail("Encoding should have thrown .missingValue, but it succeeded") - } catch let error as SwiftProtobufError where error == .JSONEncoding.missingValue { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .JSONEncoding.missingValue) { // Nothing to do here; this is the expected error. } catch { XCTFail("Encoding should have thrown .missingValue, but instead it threw: \(error)") diff --git a/Tests/SwiftProtobufTests/Test_TextFormatDecodingOptions.swift b/Tests/SwiftProtobufTests/Test_TextFormatDecodingOptions.swift index e92eb1ddc..f4a3fc66f 100644 --- a/Tests/SwiftProtobufTests/Test_TextFormatDecodingOptions.swift +++ b/Tests/SwiftProtobufTests/Test_TextFormatDecodingOptions.swift @@ -38,7 +38,7 @@ final class Test_TextFormatDecodingOptions: XCTestCase { if !expectSuccess { XCTFail("Should not have succeed, limit: \(limit)") } - } catch let error as SwiftProtobufError where error == .TextFormatDecoding.messageDepthLimit { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.messageDepthLimit) { if expectSuccess { XCTFail("Decode failed because of limit, but should *NOT* have, limit: \(limit)") } else { diff --git a/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift b/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift index c0215c570..c342f489d 100644 --- a/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift +++ b/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift @@ -41,7 +41,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { // This is what should have happened. } @@ -61,7 +61,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { // This is what should have happened. } @@ -81,7 +81,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { // This is what should have happened. } @@ -102,7 +102,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { // This is what should have happened. } @@ -124,7 +124,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { // This is what should have happened. } @@ -186,7 +186,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { // This is what should have happened. } @@ -248,7 +248,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { // This is what should have happened. } @@ -281,7 +281,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { // This is what should have happened. } @@ -301,7 +301,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { // This is what should have happened. } @@ -352,7 +352,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { // This is what should have happened. } @@ -376,7 +376,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where error == .TextFormatDecoding.unknownField { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { // This is what should have happened. } diff --git a/Tests/SwiftProtobufTests/Test_Wrappers.swift b/Tests/SwiftProtobufTests/Test_Wrappers.swift index c9c9f6b11..7dc1a95a0 100644 --- a/Tests/SwiftProtobufTests/Test_Wrappers.swift +++ b/Tests/SwiftProtobufTests/Test_Wrappers.swift @@ -25,7 +25,7 @@ final class Test_Wrappers: XCTestCase { do { _ = try type.init(jsonString: "null") XCTFail("Expected decode to throw .illegalNull, but it succeeded") - } catch let error as SwiftProtobufError where error == .JSONDecoding.illegalNull { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .JSONDecoding.illegalNull) { // Nothing to do; this is the expected error. } catch { XCTFail("Expected decode to throw .illegalNull, but instead it threw: \(error)") From d1b209d368d13b7f4135e1c7b684f5459b856e1f Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Tue, 9 Apr 2024 10:22:33 +0100 Subject: [PATCH 05/19] Make message internal --- Sources/SwiftProtobuf/SwiftProtobufError.swift | 2 +- .../Test_ProtoFileToModuleMappings.swift | 3 ++- Tests/SwiftProtobufTests/TestHelpers.swift | 2 +- Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Sources/SwiftProtobuf/SwiftProtobufError.swift b/Sources/SwiftProtobuf/SwiftProtobufError.swift index a2e08b9eb..0f47e2b43 100644 --- a/Sources/SwiftProtobuf/SwiftProtobufError.swift +++ b/Sources/SwiftProtobuf/SwiftProtobufError.swift @@ -56,7 +56,7 @@ public struct SwiftProtobufError: Error, @unchecked Sendable { } /// A message describing what went wrong and how it may be remedied. - public var message: String { + internal var message: String { get { self.storage.message } set { self.ensureStorageIsUnique() diff --git a/Tests/SwiftProtobufPluginLibraryTests/Test_ProtoFileToModuleMappings.swift b/Tests/SwiftProtobufPluginLibraryTests/Test_ProtoFileToModuleMappings.swift index 4a6a70b60..916530d90 100644 --- a/Tests/SwiftProtobufPluginLibraryTests/Test_ProtoFileToModuleMappings.swift +++ b/Tests/SwiftProtobufPluginLibraryTests/Test_ProtoFileToModuleMappings.swift @@ -9,8 +9,9 @@ // ----------------------------------------------------------------------------- import XCTest -import SwiftProtobuf import SwiftProtobufTestHelpers + +@testable import SwiftProtobuf @testable import SwiftProtobufPluginLibrary // Helpers to make test cases. diff --git a/Tests/SwiftProtobufTests/TestHelpers.swift b/Tests/SwiftProtobufTests/TestHelpers.swift index b3ccb1382..30ae1d61a 100644 --- a/Tests/SwiftProtobufTests/TestHelpers.swift +++ b/Tests/SwiftProtobufTests/TestHelpers.swift @@ -14,7 +14,7 @@ import XCTest import Foundation -import SwiftProtobuf +@testable import SwiftProtobuf typealias XCTestFileArgType = StaticString diff --git a/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift b/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift index 81f680555..6c14daf58 100644 --- a/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift +++ b/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift @@ -14,7 +14,7 @@ import Foundation import XCTest -import SwiftProtobuf +@testable import SwiftProtobuf final class Test_JSONDecodingOptions: XCTestCase { From 76e20455c9c36ddad5db1994dfc4211906d7deb8 Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Tue, 9 Apr 2024 14:17:12 +0100 Subject: [PATCH 06/19] Add SourceLocation to SwiftProtobufError's description --- Sources/SwiftProtobuf/AnyMessageStorage.swift | 10 +- .../SwiftProtobuf/AsyncMessageSequence.swift | 8 +- Sources/SwiftProtobuf/BinaryDecoder.swift | 76 +- Sources/SwiftProtobuf/BinaryDelimited.swift | 75 +- .../Google_Protobuf_Any+Extensions.swift | 4 +- .../Google_Protobuf_Duration+Extensions.swift | 34 +- ...Google_Protobuf_FieldMask+Extensions.swift | 4 +- ...Google_Protobuf_Timestamp+Extensions.swift | 32 +- .../Google_Protobuf_Value+Extensions.swift | 6 +- Sources/SwiftProtobuf/JSONDecoder.swift | 32 +- .../SwiftProtobuf/JSONEncodingVisitor.swift | 8 +- Sources/SwiftProtobuf/JSONScanner.swift | 158 ++-- .../Message+BinaryAdditions.swift | 6 +- .../SwiftProtobuf/Message+JSONAdditions.swift | 10 +- .../Message+JSONArrayAdditions.swift | 6 +- .../Message+TextFormatAdditions.swift | 2 +- .../SwiftProtobuf/SwiftProtobufError.swift | 885 +++++++++++++----- Sources/SwiftProtobuf/TextFormatDecoder.swift | 48 +- Sources/SwiftProtobuf/TextFormatScanner.swift | 88 +- .../ProtoFileToModuleMappings.swift | 38 +- Tests/SwiftProtobufTests/Test_AllTypes.swift | 8 +- .../Test_AsyncMessageSequence.swift | 8 +- .../Test_BinaryDecodingOptions.swift | 2 +- .../Test_BinaryDelimited.swift | 8 +- .../Test_JSONDecodingOptions.swift | 2 +- .../Test_JSON_Conformance.swift | 6 +- Tests/SwiftProtobufTests/Test_Required.swift | 8 +- Tests/SwiftProtobufTests/Test_Struct.swift | 2 +- .../Test_TextFormatDecodingOptions.swift | 2 +- .../Test_TextFormat_Unknown.swift | 22 +- Tests/SwiftProtobufTests/Test_Wrappers.swift | 2 +- 31 files changed, 1018 insertions(+), 582 deletions(-) diff --git a/Sources/SwiftProtobuf/AnyMessageStorage.swift b/Sources/SwiftProtobuf/AnyMessageStorage.swift index 4b966aea3..75555378a 100644 --- a/Sources/SwiftProtobuf/AnyMessageStorage.swift +++ b/Sources/SwiftProtobuf/AnyMessageStorage.swift @@ -76,7 +76,7 @@ fileprivate func unpack(contentJSON: [UInt8], } if !options.ignoreUnknownFields { // The only thing within a WKT should be "value". - throw SwiftProtobufError.AnyUnpack.malformedWellKnownTypeJSON + throw SwiftProtobufError.AnyUnpack.malformedWellKnownTypeJSON() } let _ = try scanner.skip() try scanner.skipRequiredComma() @@ -84,7 +84,7 @@ fileprivate func unpack(contentJSON: [UInt8], if !options.ignoreUnknownFields && !scanner.complete { // If that wasn't the end, then there was another key, and WKTs should // only have the one when not skipping unknowns. - throw SwiftProtobufError.AnyUnpack.malformedWellKnownTypeJSON + throw SwiftProtobufError.AnyUnpack.malformedWellKnownTypeJSON() } } } @@ -174,7 +174,7 @@ internal class AnyMessageStorage { options: BinaryDecodingOptions ) throws { guard isA(M.self) else { - throw SwiftProtobufError.AnyUnpack.typeMismatch + throw SwiftProtobufError.AnyUnpack.typeMismatch() } switch state { @@ -243,7 +243,7 @@ extension AnyMessageStorage { _typeURL = url guard let messageType = Google_Protobuf_Any.messageType(forTypeURL: url) else { // The type wasn't registered, can't parse it. - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } let terminator = try decoder.scanner.skipObjectStart() var subDecoder = try TextFormatDecoder(messageType: messageType, scanner: decoder.scanner, terminator: terminator) @@ -259,7 +259,7 @@ extension AnyMessageStorage { decoder.scanner = subDecoder.scanner if try decoder.nextFieldNumber() != nil { // Verbose any can never have additional keys. - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } } diff --git a/Sources/SwiftProtobuf/AsyncMessageSequence.swift b/Sources/SwiftProtobuf/AsyncMessageSequence.swift index 949c565ee..c94f8ebcb 100644 --- a/Sources/SwiftProtobuf/AsyncMessageSequence.swift +++ b/Sources/SwiftProtobuf/AsyncMessageSequence.swift @@ -122,7 +122,7 @@ public struct AsyncMessageSequence< shift += UInt64(7) if shift > 35 { iterator = nil - throw SwiftProtobufError.BinaryDecoding.malformedLength + throw SwiftProtobufError.BinaryDecoding.malformedLength() } if (byte & 0x80 == 0) { return messageSize @@ -131,7 +131,7 @@ public struct AsyncMessageSequence< if (shift > 0) { // The stream has ended inside a varint. iterator = nil - throw SwiftProtobufError.BinaryDecoding.truncated + throw SwiftProtobufError.BinaryDecoding.truncated() } return nil // End of stream reached. } @@ -153,7 +153,7 @@ public struct AsyncMessageSequence< guard let byte = try await iterator?.next() else { // The iterator hit the end, but the chunk wasn't filled, so the full // payload wasn't read. - throw SwiftProtobufError.BinaryDecoding.truncated + throw SwiftProtobufError.BinaryDecoding.truncated() } chunk[consumedBytes] = byte consumedBytes += 1 @@ -181,7 +181,7 @@ public struct AsyncMessageSequence< } guard messageSize <= UInt64(0x7fffffff) else { iterator = nil - throw SwiftProtobufError.BinaryDecoding.tooLarge + throw SwiftProtobufError.BinaryDecoding.tooLarge() } if messageSize == 0 { return try M( diff --git a/Sources/SwiftProtobuf/BinaryDecoder.swift b/Sources/SwiftProtobuf/BinaryDecoder.swift index 292249ef7..d05ed93b5 100644 --- a/Sources/SwiftProtobuf/BinaryDecoder.swift +++ b/Sources/SwiftProtobuf/BinaryDecoder.swift @@ -80,7 +80,7 @@ internal struct BinaryDecoder: Decoder { private mutating func incrementRecursionDepth() throws { recursionBudget -= 1 if recursionBudget < 0 { - throw SwiftProtobufError.BinaryDecoding.messageDepthLimit + throw SwiftProtobufError.BinaryDecoding.messageDepthLimit() } } @@ -139,7 +139,7 @@ internal struct BinaryDecoder: Decoder { if let wireFormat = WireFormat(rawValue: c0 & 7) { fieldWireFormat = wireFormat } else { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() } if (c0 & 0x80) == 0 { p += 1 @@ -148,7 +148,7 @@ internal struct BinaryDecoder: Decoder { } else { fieldNumber = Int(c0 & 0x7f) >> 3 if available < 2 { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() } let c1 = start[1] if (c1 & 0x80) == 0 { @@ -158,7 +158,7 @@ internal struct BinaryDecoder: Decoder { } else { fieldNumber |= Int(c1 & 0x7f) << 4 if available < 3 { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() } let c2 = start[2] fieldNumber |= Int(c2 & 0x7f) << 11 @@ -167,7 +167,7 @@ internal struct BinaryDecoder: Decoder { available -= 3 } else { if available < 4 { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() } let c3 = start[3] fieldNumber |= Int(c3 & 0x7f) << 18 @@ -176,11 +176,11 @@ internal struct BinaryDecoder: Decoder { available -= 4 } else { if available < 5 { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() } let c4 = start[4] if c4 > 15 { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() } fieldNumber |= Int(c4 & 0x7f) << 25 p += 5 @@ -200,12 +200,12 @@ internal struct BinaryDecoder: Decoder { } else { // .endGroup when not in a group or for a different // group is an invalid binary. - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() } } return fieldNumber } - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() } internal mutating func decodeSingularFloatField(value: inout Float) throws { @@ -236,7 +236,7 @@ internal struct BinaryDecoder: Decoder { let itemSize = UInt64(MemoryLayout.size) let itemCount = bodyBytes / itemSize if bodyBytes % itemSize != 0 || bodyBytes > available { - throw SwiftProtobufError.BinaryDecoding.truncated + throw SwiftProtobufError.BinaryDecoding.truncated() } value.reserveCapacity(value.count + Int(truncatingIfNeeded: itemCount)) for _ in 1...itemCount { @@ -277,7 +277,7 @@ internal struct BinaryDecoder: Decoder { let itemSize = UInt64(MemoryLayout.size) let itemCount = bodyBytes / itemSize if bodyBytes % itemSize != 0 || bodyBytes > available { - throw SwiftProtobufError.BinaryDecoding.truncated + throw SwiftProtobufError.BinaryDecoding.truncated() } value.reserveCapacity(value.count + Int(truncatingIfNeeded: itemCount)) for _ in 1...itemCount { @@ -721,7 +721,7 @@ internal struct BinaryDecoder: Decoder { value = s consumed = true } else { - throw SwiftProtobufError.BinaryDecoding.invalidUTF8 + throw SwiftProtobufError.BinaryDecoding.invalidUTF8() } } @@ -735,7 +735,7 @@ internal struct BinaryDecoder: Decoder { value = s consumed = true } else { - throw SwiftProtobufError.BinaryDecoding.invalidUTF8 + throw SwiftProtobufError.BinaryDecoding.invalidUTF8() } } @@ -748,7 +748,7 @@ internal struct BinaryDecoder: Decoder { value.append(s) consumed = true } else { - throw SwiftProtobufError.BinaryDecoding.invalidUTF8 + throw SwiftProtobufError.BinaryDecoding.invalidUTF8() } default: return @@ -890,7 +890,7 @@ internal struct BinaryDecoder: Decoder { try message.decodeMessage(decoder: &self) decrementRecursionDepth() guard complete else { - throw SwiftProtobufError.BinaryDecoding.trailingGarbage + throw SwiftProtobufError.BinaryDecoding.trailingGarbage() } if let unknownData = unknownData { message.unknownFields.append(protobufData: unknownData) @@ -935,7 +935,7 @@ internal struct BinaryDecoder: Decoder { subDecoder.unknownData = nil try group.decodeMessage(decoder: &subDecoder) guard subDecoder.fieldNumber == fieldNumber && subDecoder.fieldWireFormat == .endGroup else { - throw SwiftProtobufError.BinaryDecoding.truncated + throw SwiftProtobufError.BinaryDecoding.truncated() } if let groupUnknowns = subDecoder.unknownData { group.unknownFields.append(protobufData: groupUnknowns) @@ -958,7 +958,7 @@ internal struct BinaryDecoder: Decoder { var subdecoder = BinaryDecoder(forReadingFrom: p, count: count, parent: self) while let tag = try subdecoder.getTag() { if tag.wireFormat == .endGroup { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() } let fieldNumber = tag.fieldNumber switch fieldNumber { @@ -971,7 +971,7 @@ internal struct BinaryDecoder: Decoder { } } if !subdecoder.complete { - throw SwiftProtobufError.BinaryDecoding.trailingGarbage + throw SwiftProtobufError.BinaryDecoding.trailingGarbage() } // A map<> definition can't provide a default value for the keys/values, // so it is safe to use the proto3 default to get the right @@ -993,7 +993,7 @@ internal struct BinaryDecoder: Decoder { var subdecoder = BinaryDecoder(forReadingFrom: p, count: count, parent: self) while let tag = try subdecoder.getTag() { if tag.wireFormat == .endGroup { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() } let fieldNumber = tag.fieldNumber switch fieldNumber { @@ -1014,7 +1014,7 @@ internal struct BinaryDecoder: Decoder { } } if !subdecoder.complete { - throw SwiftProtobufError.BinaryDecoding.trailingGarbage + throw SwiftProtobufError.BinaryDecoding.trailingGarbage() } // A map<> definition can't provide a default value for the keys, so it // is safe to use the proto3 default to get the right integer/string/bytes. @@ -1033,7 +1033,7 @@ internal struct BinaryDecoder: Decoder { var subdecoder = BinaryDecoder(forReadingFrom: p, count: count, parent: self) while let tag = try subdecoder.getTag() { if tag.wireFormat == .endGroup { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() } let fieldNumber = tag.fieldNumber switch fieldNumber { @@ -1046,7 +1046,7 @@ internal struct BinaryDecoder: Decoder { } } if !subdecoder.complete { - throw SwiftProtobufError.BinaryDecoding.trailingGarbage + throw SwiftProtobufError.BinaryDecoding.trailingGarbage() } // A map<> definition can't provide a default value for the keys, so it // is safe to use the proto3 default to get the right integer/string/bytes. @@ -1090,7 +1090,7 @@ internal struct BinaryDecoder: Decoder { // the bytes were consumed, then there should have been a // field that consumed them (existing or created). This // specific error result is to allow this to be more detectable. - throw SwiftProtobufError.BinaryDecoding.internalExtensionError + throw SwiftProtobufError.BinaryDecoding.internalExtensionError() } } } @@ -1125,7 +1125,7 @@ internal struct BinaryDecoder: Decoder { break case .malformed: - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() } assert(recursionBudget == subDecoder.recursionBudget) @@ -1256,7 +1256,7 @@ internal struct BinaryDecoder: Decoder { let _ = try decodeVarint() case .fixed64: if available < 8 { - throw SwiftProtobufError.BinaryDecoding.truncated + throw SwiftProtobufError.BinaryDecoding.truncated() } p += 8 available -= 8 @@ -1266,7 +1266,7 @@ internal struct BinaryDecoder: Decoder { p += Int(n) available -= Int(n) } else { - throw SwiftProtobufError.BinaryDecoding.truncated + throw SwiftProtobufError.BinaryDecoding.truncated() } case .startGroup: try incrementRecursionDepth() @@ -1279,20 +1279,20 @@ internal struct BinaryDecoder: Decoder { } else { // .endGroup for a something other than the current // group is an invalid binary. - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() } } else { try skipOver(tag: innerTag) } } else { - throw SwiftProtobufError.BinaryDecoding.truncated + throw SwiftProtobufError.BinaryDecoding.truncated() } } case .endGroup: - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() case .fixed32: if available < 4 { - throw SwiftProtobufError.BinaryDecoding.truncated + throw SwiftProtobufError.BinaryDecoding.truncated() } p += 4 available -= 4 @@ -1314,7 +1314,7 @@ internal struct BinaryDecoder: Decoder { available += p - fieldStartP p = fieldStartP guard let tag = try getTagWithoutUpdatingFieldStart() else { - throw SwiftProtobufError.BinaryDecoding.truncated + throw SwiftProtobufError.BinaryDecoding.truncated() } try skipOver(tag: tag) fieldEndP = p @@ -1324,7 +1324,7 @@ internal struct BinaryDecoder: Decoder { /// Private: Parse the next raw varint from the input. private mutating func decodeVarint() throws -> UInt64 { if available < 1 { - throw SwiftProtobufError.BinaryDecoding.truncated + throw SwiftProtobufError.BinaryDecoding.truncated() } var start = p var length = available @@ -1340,7 +1340,7 @@ internal struct BinaryDecoder: Decoder { var shift = UInt64(7) while true { if length < 1 || shift > 63 { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() } c = start.load(fromByteOffset: 0, as: UInt8.self) start += 1 @@ -1373,13 +1373,13 @@ internal struct BinaryDecoder: Decoder { let t = try decodeVarint() if t < UInt64(UInt32.max) { guard let tag = FieldTag(rawValue: UInt32(truncatingIfNeeded: t)) else { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() } fieldWireFormat = tag.wireFormat fieldNumber = tag.fieldNumber return tag } else { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf + throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() } } @@ -1394,7 +1394,7 @@ internal struct BinaryDecoder: Decoder { private mutating func decodeLittleEndianInteger() throws -> T { let size = MemoryLayout.size assert(size == 4 || size == 8) - guard available >= size else {throw BinaryDecodingError.truncated} + guard available >= size else {throw SwiftProtobufError.BinaryDecoding.truncated()} defer { consume(length: size) } return T(littleEndian: p.loadUnaligned(as: T.self)) } @@ -1424,11 +1424,11 @@ internal struct BinaryDecoder: Decoder { // that is length delimited on the wire, so the spec would imply // the limit still applies. guard length < 0x7fffffff else { - throw SwiftProtobufError.BinaryDecoding.tooLarge + throw SwiftProtobufError.BinaryDecoding.tooLarge() } guard length <= UInt64(available) else { - throw SwiftProtobufError.BinaryDecoding.truncated + throw SwiftProtobufError.BinaryDecoding.truncated() } count = Int(length) diff --git a/Sources/SwiftProtobuf/BinaryDelimited.swift b/Sources/SwiftProtobuf/BinaryDelimited.swift index b1b8875d8..895860a79 100644 --- a/Sources/SwiftProtobuf/BinaryDelimited.swift +++ b/Sources/SwiftProtobuf/BinaryDelimited.swift @@ -21,20 +21,34 @@ extension SwiftProtobufError.BinaryDecoding { /// this error will be thrown instead since the stream didn't provide anything /// more specific. A common cause for this can be failing to open the stream /// before trying to read/write to it. - public static let unknownStreamError = SwiftProtobufError( - code: .binaryDecodingError, - message: "Unknown error when reading/writing binary-delimited message into stream." - ) + public static func unknownStreamError( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryDecodingError, + message: "Unknown error when reading/writing binary-delimited message into stream.", + location: .init(function: function, file: file, line: line) + ) + } /// While attempting to read the length of a message on the stream, the /// bytes were malformed for the protobuf format. - public static let malformedLength = SwiftProtobufError( - code: .binaryDecodingError, - message: """ - While attempting to read the length of a binary-delimited message \ - on the stream, the bytes were malformed for the protobuf format. - """ - ) + public static func malformedLength( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryDecodingError, + message: """ + While attempting to read the length of a binary-delimited message \ + on the stream, the bytes were malformed for the protobuf format. + """, + location: .init(function: function, file: file, line: line) + ) + } /// This isn't really an error. `InputStream` documents that /// `hasBytesAvailable` _may_ return `True` if a read is needed to @@ -43,13 +57,20 @@ extension SwiftProtobufError.BinaryDecoding { /// If this is raised, the callers should decide via what ever other means /// are correct if the stream has completely ended or if more bytes might /// eventually show up. - public static let noBytesAvailable = SwiftProtobufError( - code: .binaryDecodingError, - message: """ - This is not really an error: please read the documentation for - `SwiftProtobufError/BinaryDecoding/noBytesAvailable` for more information. - """ - ) + public static func noBytesAvailable( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryDecodingError, + message: """ + This is not really an error: please read the documentation for + `SwiftProtobufError/BinaryDecoding/noBytesAvailable` for more information. + """, + location: .init(function: function, file: file, line: line) + ) + } } /// Helper methods for reading/writing messages with a length prefix. @@ -115,9 +136,9 @@ public enum BinaryDelimited { if let streamError = stream.streamError { throw streamError } - throw SwiftProtobufError.BinaryDecoding.unknownStreamError + throw SwiftProtobufError.BinaryDecoding.unknownStreamError() } - throw SwiftProtobufError.BinaryEncoding.truncated + throw SwiftProtobufError.BinaryEncoding.truncated() } } @@ -195,7 +216,7 @@ public enum BinaryDelimited { return } guard unsignedLength <= 0x7fffffff else { - throw SwiftProtobufError.BinaryDecoding.tooLarge + throw SwiftProtobufError.BinaryDecoding.tooLarge() } let length = Int(unsignedLength) @@ -222,11 +243,11 @@ public enum BinaryDelimited { if let streamError = stream.streamError { throw streamError } - throw SwiftProtobufError.BinaryDecoding.unknownStreamError + throw SwiftProtobufError.BinaryDecoding.unknownStreamError() } if bytesRead == 0 { // Hit the end of the stream - throw SwiftProtobufError.BinaryDecoding.truncated + throw SwiftProtobufError.BinaryDecoding.truncated() } if bytesRead < chunk.count { data += chunk[0.. UInt64 { if let streamError = stream.streamError { throw streamError } - throw SwiftProtobufError.BinaryDecoding.unknownStreamError + throw SwiftProtobufError.BinaryDecoding.unknownStreamError() } } @@ -275,9 +296,9 @@ internal func decodeVarint(_ stream: InputStream) throws -> UInt64 { while true { guard let c = try nextByte() else { if shift == 0 { - throw SwiftProtobufError.BinaryDecoding.noBytesAvailable + throw SwiftProtobufError.BinaryDecoding.noBytesAvailable() } - throw SwiftProtobufError.BinaryDecoding.truncated + throw SwiftProtobufError.BinaryDecoding.truncated() } value |= UInt64(c & 0x7f) << shift if c & 0x80 == 0 { @@ -285,7 +306,7 @@ internal func decodeVarint(_ stream: InputStream) throws -> UInt64 { } shift += 7 if shift > 63 { - throw SwiftProtobufError.BinaryDecoding.malformedLength + throw SwiftProtobufError.BinaryDecoding.malformedLength() } } } diff --git a/Sources/SwiftProtobuf/Google_Protobuf_Any+Extensions.swift b/Sources/SwiftProtobuf/Google_Protobuf_Any+Extensions.swift index 56b001c9e..85878eb3c 100644 --- a/Sources/SwiftProtobuf/Google_Protobuf_Any+Extensions.swift +++ b/Sources/SwiftProtobuf/Google_Protobuf_Any+Extensions.swift @@ -43,7 +43,7 @@ extension Google_Protobuf_Any { typePrefix: String = defaultAnyTypeURLPrefix ) throws { if !partial && !message.isInitialized { - throw SwiftProtobufError.BinaryEncoding.missingRequiredFields + throw SwiftProtobufError.BinaryEncoding.missingRequiredFields() } self.init() typeURL = buildTypeURL(forMessage:message, typePrefix: typePrefix) @@ -78,7 +78,7 @@ extension Google_Protobuf_Any { extensions: extensions) try decodeTextFormat(decoder: &textDecoder) if !textDecoder.complete { - throw SwiftProtobufError.TextFormatDecoding.trailingGarbage + throw SwiftProtobufError.TextFormatDecoding.trailingGarbage() } } } diff --git a/Sources/SwiftProtobuf/Google_Protobuf_Duration+Extensions.swift b/Sources/SwiftProtobuf/Google_Protobuf_Duration+Extensions.swift index ae522ff7f..be46e1677 100644 --- a/Sources/SwiftProtobuf/Google_Protobuf_Duration+Extensions.swift +++ b/Sources/SwiftProtobuf/Google_Protobuf_Duration+Extensions.swift @@ -32,7 +32,7 @@ private func parseDuration(text: String) throws -> (Int64, Int32) { case "-": // Only accept '-' as very first character if total > 0 { - throw SwiftProtobufError.JSONDecoding.malformedDuration + throw SwiftProtobufError.JSONDecoding.malformedDuration() } digits.append(c) isNegative = true @@ -41,14 +41,14 @@ private func parseDuration(text: String) throws -> (Int64, Int32) { digitCount += 1 case ".": if let _ = seconds { - throw SwiftProtobufError.JSONDecoding.malformedDuration + throw SwiftProtobufError.JSONDecoding.malformedDuration() } let digitString = String(digits) if let s = Int64(digitString), - s >= minDurationSeconds && s <= maxDurationSeconds { + s >= minDurationSeconds && s <= maxDurationSeconds { seconds = s } else { - throw SwiftProtobufError.JSONDecoding.malformedDuration + throw SwiftProtobufError.JSONDecoding.malformedDuration() } digits.removeAll() digitCount = 0 @@ -71,29 +71,29 @@ private func parseDuration(text: String) throws -> (Int64, Int32) { nanos = rawNanos } } else { - throw SwiftProtobufError.JSONDecoding.malformedDuration + throw SwiftProtobufError.JSONDecoding.malformedDuration() } } else { // No fraction, we just have an integral number of seconds let digitString = String(digits) if let s = Int64(digitString), - s >= minDurationSeconds && s <= maxDurationSeconds { + s >= minDurationSeconds && s <= maxDurationSeconds { seconds = s } else { - throw SwiftProtobufError.JSONDecoding.malformedDuration + throw SwiftProtobufError.JSONDecoding.malformedDuration() } } // Fail if there are characters after 's' if chars.next() != nil { - throw SwiftProtobufError.JSONDecoding.malformedDuration + throw SwiftProtobufError.JSONDecoding.malformedDuration() } return (seconds!, nanos) default: - throw SwiftProtobufError.JSONDecoding.malformedDuration + throw SwiftProtobufError.JSONDecoding.malformedDuration() } total += 1 } - throw SwiftProtobufError.JSONDecoding.malformedDuration + throw SwiftProtobufError.JSONDecoding.malformedDuration() } private func formatDuration(seconds: Int64, nanos: Int32) -> String? { @@ -130,14 +130,14 @@ extension Google_Protobuf_Duration: _CustomJSONCodable { if let formatted = formatDuration(seconds: seconds, nanos: nanos) { return "\"\(formatted)\"" } else { - throw SwiftProtobufError.JSONEncoding.durationRange + throw SwiftProtobufError.JSONEncoding.durationRange() } } } extension Google_Protobuf_Duration: ExpressibleByFloatLiteral { public typealias FloatLiteralType = Double - + /// Creates a new `Google_Protobuf_Duration` from a floating point literal /// that is interpreted as a duration in seconds, rounded to the nearest /// nanosecond. @@ -160,11 +160,11 @@ extension Google_Protobuf_Duration { let (s, n) = normalizeForDuration(seconds: Int64(sd), nanos: Int32(nd)) self.init(seconds: s, nanos: n) } - + /// The `TimeInterval` (measured in seconds) equal to this duration. public var timeInterval: TimeInterval { return TimeInterval(self.seconds) + - TimeInterval(self.nanos) / TimeInterval(nanosPerSecond) + TimeInterval(self.nanos) / TimeInterval(nanosPerSecond) } } @@ -174,14 +174,14 @@ private func normalizeForDuration( ) -> (seconds: Int64, nanos: Int32) { var s = seconds var n = nanos - + // If the magnitude of n exceeds a second then // we need to factor it into s instead. if n >= nanosPerSecond || n <= -nanosPerSecond { s += Int64(n / nanosPerSecond) n = n % nanosPerSecond } - + // The Duration spec says that when s != 0, s and // n must have the same sign. if s > 0 && n < 0 { @@ -191,7 +191,7 @@ private func normalizeForDuration( n -= nanosPerSecond s += 1 } - + return (seconds: s, nanos: n) } diff --git a/Sources/SwiftProtobuf/Google_Protobuf_FieldMask+Extensions.swift b/Sources/SwiftProtobuf/Google_Protobuf_FieldMask+Extensions.swift index f625f78b0..6437a5b91 100644 --- a/Sources/SwiftProtobuf/Google_Protobuf_FieldMask+Extensions.swift +++ b/Sources/SwiftProtobuf/Google_Protobuf_FieldMask+Extensions.swift @@ -166,7 +166,7 @@ extension Google_Protobuf_FieldMask: _CustomJSONCodable { if let names = parseJSONFieldNames(names: s) { paths = names } else { - throw SwiftProtobufError.JSONDecoding.malformedFieldMask + throw SwiftProtobufError.JSONDecoding.malformedFieldMask() } } @@ -178,7 +178,7 @@ extension Google_Protobuf_FieldMask: _CustomJSONCodable { if let jsonPath = ProtoToJSON(name: p) { jsonPaths.append(jsonPath) } else { - throw SwiftProtobufError.JSONEncoding.fieldMaskConversion + throw SwiftProtobufError.JSONEncoding.fieldMaskConversion() } } return "\"" + jsonPaths.joined(separator: ",") + "\"" diff --git a/Sources/SwiftProtobuf/Google_Protobuf_Timestamp+Extensions.swift b/Sources/SwiftProtobuf/Google_Protobuf_Timestamp+Extensions.swift index d28de2213..891a282a9 100644 --- a/Sources/SwiftProtobuf/Google_Protobuf_Timestamp+Extensions.swift +++ b/Sources/SwiftProtobuf/Google_Protobuf_Timestamp+Extensions.swift @@ -29,7 +29,7 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { // Convert to an array of integer character values let value = s.utf8.map{Int($0)} if value.count < 20 { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp() } // Since the format is fixed-layout, we can just decode // directly as follows. @@ -44,7 +44,7 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { func fromAscii2(_ digit0: Int, _ digit1: Int) throws -> Int { if digit0 < zero || digit0 > nine || digit1 < zero || digit1 > nine { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp() } return digit0 * 10 + digit1 - 528 } @@ -59,7 +59,7 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { || digit1 < zero || digit1 > nine || digit2 < zero || digit2 > nine || digit3 < zero || digit3 > nine) { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp() } return digit0 * 1000 + digit1 * 100 + digit2 * 10 + digit3 - 53328 } @@ -67,37 +67,37 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { // Year: 4 digits followed by '-' let year = try fromAscii4(value[0], value[1], value[2], value[3]) if value[4] != dash || year < Int(1) || year > Int(9999) { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp() } // Month: 2 digits followed by '-' let month = try fromAscii2(value[5], value[6]) if value[7] != dash || month < Int(1) || month > Int(12) { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp() } // Day: 2 digits followed by 'T' let mday = try fromAscii2(value[8], value[9]) if value[10] != letterT || mday < Int(1) || mday > Int(31) { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp() } // Hour: 2 digits followed by ':' let hour = try fromAscii2(value[11], value[12]) if value[13] != colon || hour > Int(23) { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp() } // Minute: 2 digits followed by ':' let minute = try fromAscii2(value[14], value[15]) if value[16] != colon || minute > Int(59) { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp() } // Second: 2 digits (following char is checked below) let second = try fromAscii2(value[17], value[18]) if second > Int(61) { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp() } // timegm() is almost entirely useless. It's nonexistent on @@ -149,15 +149,15 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { var seconds: Int64 = 0 // "Z" or "+" or "-" starts Timezone offset if pos >= value.count { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp() } else if value[pos] == plus || value[pos] == dash { if pos + 6 > value.count { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp() } let hourOffset = try fromAscii2(value[pos + 1], value[pos + 2]) let minuteOffset = try fromAscii2(value[pos + 4], value[pos + 5]) if hourOffset > Int(13) || minuteOffset > Int(59) || value[pos + 3] != colon { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp() } var adjusted: Int64 = t if value[pos] == plus { @@ -168,7 +168,7 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { adjusted += Int64(minuteOffset) * Int64(60) } if adjusted < minTimestampSeconds || adjusted > maxTimestampSeconds { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp() } seconds = adjusted pos += 6 @@ -176,10 +176,10 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { seconds = t pos += 1 } else { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp() } if pos != value.count { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp + throw SwiftProtobufError.JSONDecoding.malformedTimestamp() } return (seconds, nanos) } @@ -223,7 +223,7 @@ extension Google_Protobuf_Timestamp: _CustomJSONCodable { if let formatted = formatTimestamp(seconds: seconds, nanos: nanos) { return "\"\(formatted)\"" } else { - throw SwiftProtobufError.JSONEncoding.timestampRange + throw SwiftProtobufError.JSONEncoding.timestampRange() } } } diff --git a/Sources/SwiftProtobuf/Google_Protobuf_Value+Extensions.swift b/Sources/SwiftProtobuf/Google_Protobuf_Value+Extensions.swift index 7fa3edb3e..994c418f5 100644 --- a/Sources/SwiftProtobuf/Google_Protobuf_Value+Extensions.swift +++ b/Sources/SwiftProtobuf/Google_Protobuf_Value+Extensions.swift @@ -80,7 +80,7 @@ extension Google_Protobuf_Value: _CustomJSONCodable { switch c { case "n": if !decoder.scanner.skipOptionalNull() { - throw SwiftProtobufError.JSONDecoding.failure + throw SwiftProtobufError.JSONDecoding.failure() } kind = .nullValue(.nullValue) case "[": @@ -154,14 +154,14 @@ extension Google_Protobuf_Value { case .nullValue?: encoder.putNullValue() case .numberValue(let v)?: guard v.isFinite else { - throw SwiftProtobufError.JSONEncoding.valueNumberNotFinite + throw SwiftProtobufError.JSONEncoding.valueNumberNotFinite() } encoder.putDoubleValue(value: v) case .stringValue(let v)?: encoder.putStringValue(value: v) case .boolValue(let v)?: encoder.putNonQuotedBoolValue(value: v) case .structValue(let v)?: encoder.append(text: try v.jsonString(options: options)) case .listValue(let v)?: encoder.append(text: try v.jsonString(options: options)) - case nil: throw SwiftProtobufError.JSONEncoding.missingValue + case nil: throw SwiftProtobufError.JSONEncoding.missingValue() } } } diff --git a/Sources/SwiftProtobuf/JSONDecoder.swift b/Sources/SwiftProtobuf/JSONDecoder.swift index fc501cb13..2948bc393 100644 --- a/Sources/SwiftProtobuf/JSONDecoder.swift +++ b/Sources/SwiftProtobuf/JSONDecoder.swift @@ -26,7 +26,7 @@ internal struct JSONDecoder: Decoder { } mutating func handleConflictingOneOf() throws { - throw SwiftProtobufError.JSONDecoding.conflictingOneOf + throw SwiftProtobufError.JSONDecoding.conflictingOneOf() } internal init(source: UnsafeRawBufferPointer, options: JSONDecodingOptions, @@ -133,7 +133,7 @@ internal struct JSONDecoder: Decoder { } let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw SwiftProtobufError.JSONDecoding.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange() } value = Int32(truncatingIfNeeded: n) } @@ -145,7 +145,7 @@ internal struct JSONDecoder: Decoder { } let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw SwiftProtobufError.JSONDecoding.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange() } value = Int32(truncatingIfNeeded: n) } @@ -161,7 +161,7 @@ internal struct JSONDecoder: Decoder { while true { let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw SwiftProtobufError.JSONDecoding.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange() } value.append(Int32(truncatingIfNeeded: n)) if scanner.skipOptionalArrayEnd() { @@ -212,7 +212,7 @@ internal struct JSONDecoder: Decoder { } let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw SwiftProtobufError.JSONDecoding.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange() } value = UInt32(truncatingIfNeeded: n) } @@ -224,7 +224,7 @@ internal struct JSONDecoder: Decoder { } let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw SwiftProtobufError.JSONDecoding.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange() } value = UInt32(truncatingIfNeeded: n) } @@ -240,7 +240,7 @@ internal struct JSONDecoder: Decoder { while true { let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw SwiftProtobufError.JSONDecoding.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange() } value.append(UInt32(truncatingIfNeeded: n)) if scanner.skipOptionalArrayEnd() { @@ -514,7 +514,7 @@ internal struct JSONDecoder: Decoder { let e = try customDecodable.decodedFromJSONNull() as! E value.append(e) } else { - throw SwiftProtobufError.JSONDecoding.illegalNull + throw SwiftProtobufError.JSONDecoding.illegalNull() } } else { if let e: E = try scanner.nextEnumValue() { @@ -530,7 +530,7 @@ internal struct JSONDecoder: Decoder { internal mutating func decodeFullObject(message: inout M) throws { guard let nameProviding = (M.self as? any _ProtoNameProviding.Type) else { - throw SwiftProtobufError.JSONDecoding.missingFieldNames + throw SwiftProtobufError.JSONDecoding.missingFieldNames() } fieldNameMap = nameProviding._protobuf_nameMap if let m = message as? (any _CustomJSONCodable) { @@ -587,7 +587,7 @@ internal struct JSONDecoder: Decoder { } } if !appended { - throw SwiftProtobufError.JSONDecoding.illegalNull + throw SwiftProtobufError.JSONDecoding.illegalNull() } } else { var message = M() @@ -628,7 +628,7 @@ internal struct JSONDecoder: Decoder { // map keys must always be quoted strings. let c = try scanner.peekOneCharacter() if c != "\"" { - throw SwiftProtobufError.JSONDecoding.unquotedMapKey + throw SwiftProtobufError.JSONDecoding.unquotedMapKey() } isMapKey = true var keyField: KeyType.BaseType? @@ -640,7 +640,7 @@ internal struct JSONDecoder: Decoder { if let keyField = keyField, let valueField = valueField { value[keyField] = valueField } else { - throw SwiftProtobufError.JSONDecoding.malformedMap + throw SwiftProtobufError.JSONDecoding.malformedMap() } if scanner.skipOptionalObjectEnd() { return @@ -665,13 +665,13 @@ internal struct JSONDecoder: Decoder { // map keys must always be quoted strings. let c = try scanner.peekOneCharacter() if c != "\"" { - throw SwiftProtobufError.JSONDecoding.unquotedMapKey + throw SwiftProtobufError.JSONDecoding.unquotedMapKey() } isMapKey = true var keyFieldOpt: KeyType.BaseType? try KeyType.decodeSingular(value: &keyFieldOpt, from: &self) guard let keyField = keyFieldOpt else { - throw SwiftProtobufError.JSONDecoding.malformedMap + throw SwiftProtobufError.JSONDecoding.malformedMap() } isMapKey = false try scanner.skipRequiredColon() @@ -707,7 +707,7 @@ internal struct JSONDecoder: Decoder { // map keys must always be quoted strings. let c = try scanner.peekOneCharacter() if c != "\"" { - throw SwiftProtobufError.JSONDecoding.unquotedMapKey + throw SwiftProtobufError.JSONDecoding.unquotedMapKey() } isMapKey = true var keyField: KeyType.BaseType? @@ -719,7 +719,7 @@ internal struct JSONDecoder: Decoder { if let keyField = keyField, let valueField = valueField { value[keyField] = valueField } else { - throw SwiftProtobufError.JSONDecoding.malformedMap + throw SwiftProtobufError.JSONDecoding.malformedMap() } if scanner.skipOptionalObjectEnd() { return diff --git a/Sources/SwiftProtobuf/JSONEncodingVisitor.swift b/Sources/SwiftProtobuf/JSONEncodingVisitor.swift index 2cd9f7287..6af97fc7b 100644 --- a/Sources/SwiftProtobuf/JSONEncodingVisitor.swift +++ b/Sources/SwiftProtobuf/JSONEncodingVisitor.swift @@ -38,7 +38,7 @@ internal struct JSONEncodingVisitor: Visitor { if let nameProviding = type as? any _ProtoNameProviding.Type { self.nameMap = nameProviding._protobuf_nameMap } else { - throw SwiftProtobufError.JSONEncoding.missingFieldNames + throw SwiftProtobufError.JSONEncoding.missingFieldNames() } self.options = options } @@ -186,7 +186,7 @@ internal struct JSONEncodingVisitor: Visitor { self.nameMap = oldNameMap self.extensions = oldExtensions } else { - throw SwiftProtobufError.JSONEncoding.missingFieldNames + throw SwiftProtobufError.JSONEncoding.missingFieldNames() } } @@ -345,7 +345,7 @@ internal struct JSONEncodingVisitor: Visitor { self.nameMap = oldNameMap self.extensions = oldExtensions } else { - throw SwiftProtobufError.JSONEncoding.missingFieldNames + throw SwiftProtobufError.JSONEncoding.missingFieldNames() } encoder.endArray() } @@ -421,7 +421,7 @@ internal struct JSONEncodingVisitor: Visitor { } else if let name = extensions?[number]?.protobufExtension.fieldName { encoder.startExtensionField(name: name) } else { - throw SwiftProtobufError.JSONEncoding.missingFieldNames + throw SwiftProtobufError.JSONEncoding.missingFieldNames() } } } diff --git a/Sources/SwiftProtobuf/JSONScanner.swift b/Sources/SwiftProtobuf/JSONScanner.swift index 4957375d4..04053c4dc 100644 --- a/Sources/SwiftProtobuf/JSONScanner.swift +++ b/Sources/SwiftProtobuf/JSONScanner.swift @@ -122,7 +122,7 @@ private func parseBytes( ) throws -> Data { let c = source[index] if c != asciiDoubleQuote { - throw SwiftProtobufError.JSONDecoding.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString() } source.formIndex(after: &index) @@ -142,7 +142,7 @@ private func parseBytes( if digit == asciiBackslash { source.formIndex(after: &index) if index == end { - throw SwiftProtobufError.JSONDecoding.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString() } let escaped = source[index] switch escaped { @@ -150,12 +150,12 @@ private func parseBytes( // TODO: Parse hex escapes such as \u0041. Note that // such escapes are going to be extremely rare, so // there's little point in optimizing for them. - throw SwiftProtobufError.JSONDecoding.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString() case asciiForwardSlash: digit = escaped default: // Reject \b \f \n \r \t \" or \\ and all illegal escapes - throw SwiftProtobufError.JSONDecoding.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString() } } @@ -173,11 +173,11 @@ private func parseBytes( // We reached the end without seeing the close quote if index == end { - throw SwiftProtobufError.JSONDecoding.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString() } // Reject mixed encodings. if sawSection4Characters && sawSection5Characters { - throw SwiftProtobufError.JSONDecoding.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString() } // Allocate a Data object of exactly the right size @@ -211,7 +211,7 @@ private func parseBytes( default: // Note: Invalid backslash escapes were caught // above; we should never get here. - throw SwiftProtobufError.JSONDecoding.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString() } case asciiSpace: source.formIndex(after: &index) @@ -226,12 +226,12 @@ private func parseBytes( case 61: padding += 1 default: // Only '=' and whitespace permitted - throw SwiftProtobufError.JSONDecoding.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString() } source.formIndex(after: &index) } default: - throw SwiftProtobufError.JSONDecoding.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString() } } n <<= 6 @@ -266,7 +266,7 @@ private func parseBytes( default: break } - throw SwiftProtobufError.JSONDecoding.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString() } } source.formIndex(after: &index) @@ -412,7 +412,7 @@ internal struct JSONScanner { internal mutating func incrementRecursionDepth() throws { recursionBudget -= 1 if recursionBudget < 0 { - throw SwiftProtobufError.JSONDecoding.messageDepthLimit + throw SwiftProtobufError.JSONDecoding.messageDepthLimit() } } @@ -449,7 +449,7 @@ internal struct JSONScanner { internal mutating func peekOneCharacter() throws -> Character { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } return Character(UnicodeScalar(UInt32(currentByte))!) } @@ -487,7 +487,7 @@ internal struct JSONScanner { end: UnsafeRawBufferPointer.Index ) throws -> UInt64? { if index == end { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } let start = index let c = source[index] @@ -499,7 +499,7 @@ internal struct JSONScanner { switch after { case asciiZero...asciiNine: // 0...9 // leading '0' forbidden unless it is the only digit - throw SwiftProtobufError.JSONDecoding.leadingZero + throw SwiftProtobufError.JSONDecoding.leadingZero() case asciiPeriod, asciiLowerE, asciiUpperE: // . e // Slow path: JSON numbers can be written in floating-point notation index = start @@ -510,7 +510,7 @@ internal struct JSONScanner { return u } } - throw SwiftProtobufError.JSONDecoding.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber() case asciiBackslash: return nil default: @@ -526,7 +526,7 @@ internal struct JSONScanner { case asciiZero...asciiNine: // 0...9 let val = UInt64(digit - asciiZero) if n > UInt64.max / 10 || n * 10 > UInt64.max - val { - throw SwiftProtobufError.JSONDecoding.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange() } source.formIndex(after: &index) n = n * 10 + val @@ -540,7 +540,7 @@ internal struct JSONScanner { return u } } - throw SwiftProtobufError.JSONDecoding.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber() case asciiBackslash: return nil default: @@ -551,7 +551,7 @@ internal struct JSONScanner { case asciiBackslash: return nil default: - throw SwiftProtobufError.JSONDecoding.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber() } } @@ -572,25 +572,25 @@ internal struct JSONScanner { end: UnsafeRawBufferPointer.Index ) throws -> Int64? { if index == end { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } let c = source[index] if c == asciiMinus { // - source.formIndex(after: &index) if index == end { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } // character after '-' must be digit let digit = source[index] if digit < asciiZero || digit > asciiNine { - throw SwiftProtobufError.JSONDecoding.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber() } if let n = try parseBareUInt64(source: source, index: &index, end: end) { let limit: UInt64 = 0x8000000000000000 // -Int64.min if n >= limit { if n > limit { // Too large negative number - throw SwiftProtobufError.JSONDecoding.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange() } else { return Int64.min // Special case for Int64.min } @@ -601,7 +601,7 @@ internal struct JSONScanner { } } else if let n = try parseBareUInt64(source: source, index: &index, end: end) { if n > UInt64(bitPattern: Int64.max) { - throw SwiftProtobufError.JSONDecoding.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange() } return Int64(bitPattern: n) } else { @@ -628,7 +628,7 @@ internal struct JSONScanner { // RFC 7159 defines the grammar for JSON numbers as: // number = [ minus ] int [ frac ] [ exp ] if index == end { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } let start = index var c = source[index] @@ -641,7 +641,7 @@ internal struct JSONScanner { source.formIndex(after: &index) if index == end { index = start - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } c = source[index] if c == asciiBackslash { @@ -671,7 +671,7 @@ internal struct JSONScanner { return nil } if c >= asciiZero && c <= asciiNine { - throw SwiftProtobufError.JSONDecoding.leadingZero + throw SwiftProtobufError.JSONDecoding.leadingZero() } case asciiOne...asciiNine: while c >= asciiZero && c <= asciiNine { @@ -680,7 +680,7 @@ internal struct JSONScanner { if let d = numberParser.utf8ToDouble(bytes: source, start: start, end: index) { return d } else { - throw SwiftProtobufError.JSONDecoding.invalidUTF8 + throw SwiftProtobufError.JSONDecoding.invalidUTF8() } } c = source[index] @@ -690,7 +690,7 @@ internal struct JSONScanner { } default: // Integer part cannot be empty - throw SwiftProtobufError.JSONDecoding.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber() } // frac = decimal-point 1*DIGIT @@ -698,7 +698,7 @@ internal struct JSONScanner { source.formIndex(after: &index) if index == end { // decimal point must have a following digit - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } c = source[index] switch c { @@ -709,7 +709,7 @@ internal struct JSONScanner { if let d = numberParser.utf8ToDouble(bytes: source, start: start, end: index) { return d } else { - throw SwiftProtobufError.JSONDecoding.invalidUTF8 + throw SwiftProtobufError.JSONDecoding.invalidUTF8() } } c = source[index] @@ -721,7 +721,7 @@ internal struct JSONScanner { return nil default: // decimal point must be followed by at least one digit - throw SwiftProtobufError.JSONDecoding.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber() } } @@ -730,7 +730,7 @@ internal struct JSONScanner { source.formIndex(after: &index) if index == end { // "e" must be followed by +,-, or digit - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } c = source[index] if c == asciiBackslash { @@ -740,7 +740,7 @@ internal struct JSONScanner { source.formIndex(after: &index) if index == end { // must be at least one digit in exponent - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } c = source[index] if c == asciiBackslash { @@ -755,7 +755,7 @@ internal struct JSONScanner { if let d = numberParser.utf8ToDouble(bytes: source, start: start, end: index) { return d } else { - throw SwiftProtobufError.JSONDecoding.invalidUTF8 + throw SwiftProtobufError.JSONDecoding.invalidUTF8() } } c = source[index] @@ -765,13 +765,13 @@ internal struct JSONScanner { } default: // must be at least one digit in exponent - throw SwiftProtobufError.JSONDecoding.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber() } } if let d = numberParser.utf8ToDouble(bytes: source, start: start, end: index) { return d } else { - throw SwiftProtobufError.JSONDecoding.invalidUTF8 + throw SwiftProtobufError.JSONDecoding.invalidUTF8() } } @@ -822,7 +822,7 @@ internal struct JSONScanner { internal mutating func nextUInt() throws -> UInt64 { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } let c = currentByte if c == asciiDoubleQuote { @@ -832,10 +832,10 @@ internal struct JSONScanner { index: &index, end: source.endIndex) { guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } if currentByte != asciiDoubleQuote { - throw SwiftProtobufError.JSONDecoding.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber() } advance() return u @@ -870,7 +870,7 @@ internal struct JSONScanner { end: source.endIndex) { return u } - throw SwiftProtobufError.JSONDecoding.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber() } /// Parse a signed integer, quoted or not, including handling @@ -882,7 +882,7 @@ internal struct JSONScanner { internal mutating func nextSInt() throws -> Int64 { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } let c = currentByte if c == asciiDoubleQuote { @@ -892,10 +892,10 @@ internal struct JSONScanner { index: &index, end: source.endIndex) { guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } if currentByte != asciiDoubleQuote { - throw SwiftProtobufError.JSONDecoding.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber() } advance() return s @@ -930,7 +930,7 @@ internal struct JSONScanner { end: source.endIndex) { return s } - throw SwiftProtobufError.JSONDecoding.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber() } /// Parse the next Float value, regardless of whether it @@ -939,7 +939,7 @@ internal struct JSONScanner { internal mutating func nextFloat() throws -> Float { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } let c = currentByte if c == asciiDoubleQuote { // " @@ -949,10 +949,10 @@ internal struct JSONScanner { index: &index, end: source.endIndex) { guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } if currentByte != asciiDoubleQuote { - throw SwiftProtobufError.JSONDecoding.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber() } advance() return Float(d) @@ -1002,7 +1002,7 @@ internal struct JSONScanner { } } } - throw SwiftProtobufError.JSONDecoding.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber() } /// Parse the next Double value, regardless of whether it @@ -1011,7 +1011,7 @@ internal struct JSONScanner { internal mutating func nextDouble() throws -> Double { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } let c = currentByte if c == asciiDoubleQuote { // " @@ -1021,10 +1021,10 @@ internal struct JSONScanner { index: &index, end: source.endIndex) { guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } if currentByte != asciiDoubleQuote { - throw SwiftProtobufError.JSONDecoding.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber() } advance() return d @@ -1070,7 +1070,7 @@ internal struct JSONScanner { return d } } - throw SwiftProtobufError.JSONDecoding.malformedNumber + throw SwiftProtobufError.JSONDecoding.malformedNumber() } /// Return the contents of the following quoted string, @@ -1078,16 +1078,16 @@ internal struct JSONScanner { internal mutating func nextQuotedString() throws -> String { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } let c = currentByte if c != asciiDoubleQuote { - throw SwiftProtobufError.JSONDecoding.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString() } if let s = parseOptionalQuotedString() { return s } else { - throw SwiftProtobufError.JSONDecoding.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString() } } @@ -1121,7 +1121,7 @@ internal struct JSONScanner { internal mutating func nextBytesValue() throws -> Data { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } return try parseBytes(source: source, index: &index, end: source.endIndex) } @@ -1169,7 +1169,7 @@ internal struct JSONScanner { internal mutating func nextBool() throws -> Bool { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } let c = currentByte switch c { @@ -1188,7 +1188,7 @@ internal struct JSONScanner { default: break } - throw SwiftProtobufError.JSONDecoding.malformedBool + throw SwiftProtobufError.JSONDecoding.malformedBool() } /// Return the following Bool "true" or "false", including @@ -1197,10 +1197,10 @@ internal struct JSONScanner { internal mutating func nextQuotedBool() throws -> Bool { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } if currentByte != asciiDoubleQuote { - throw SwiftProtobufError.JSONDecoding.unquotedMapKey + throw SwiftProtobufError.JSONDecoding.unquotedMapKey() } if let s = parseOptionalQuotedString() { switch s { @@ -1209,7 +1209,7 @@ internal struct JSONScanner { default: break } } - throw SwiftProtobufError.JSONDecoding.malformedBool + throw SwiftProtobufError.JSONDecoding.malformedBool() } /// Returns pointer/count spanning the UTF8 bytes of the next regular @@ -1219,7 +1219,7 @@ internal struct JSONScanner { skipWhitespace() let stringStart = index guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } if currentByte != asciiDoubleQuote { return nil @@ -1234,7 +1234,7 @@ internal struct JSONScanner { advance() } guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } let buff = UnsafeRawBufferPointer( start: source.baseAddress! + nameStart, @@ -1265,7 +1265,7 @@ internal struct JSONScanner { if let s = utf8ToString(bytes: key.baseAddress!, count: key.count) { fieldName = s } else { - throw SwiftProtobufError.JSONDecoding.invalidUTF8 + throw SwiftProtobufError.JSONDecoding.invalidUTF8() } } else { // Slow path: We parsed a String; lookups from String are slower. @@ -1304,12 +1304,12 @@ internal struct JSONScanner { if options.ignoreUnknownFields { return nil } else { - throw SwiftProtobufError.JSONDecoding.unrecognizedEnumValue + throw SwiftProtobufError.JSONDecoding.unrecognizedEnumValue() } } skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } if currentByte == asciiDoubleQuote { if let name = try nextOptionalKey() { @@ -1334,7 +1334,7 @@ internal struct JSONScanner { return try throwOrIgnore() } } else { - throw SwiftProtobufError.JSONDecoding.numberRange + throw SwiftProtobufError.JSONDecoding.numberRange() } } } @@ -1343,14 +1343,14 @@ internal struct JSONScanner { private mutating func skipRequiredCharacter(_ required: UInt8) throws { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } let next = currentByte if next == required { advance() return } - throw SwiftProtobufError.JSONDecoding.failure + throw SwiftProtobufError.JSONDecoding.failure() } /// Skip "{", throw if that's not the next character @@ -1419,7 +1419,7 @@ internal struct JSONScanner { if let s = utf8ToString(bytes: source, start: start, end: index) { return s } else { - throw SwiftProtobufError.JSONDecoding.invalidUTF8 + throw SwiftProtobufError.JSONDecoding.invalidUTF8() } } @@ -1437,7 +1437,7 @@ internal struct JSONScanner { arrayDepth += 1 } guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } switch currentByte { case asciiDoubleQuote: // " begins a string @@ -1446,7 +1446,7 @@ internal struct JSONScanner { try skipObject() case asciiCloseSquareBracket: // ] ends an empty array if arrayDepth == 0 { - throw SwiftProtobufError.JSONDecoding.failure + throw SwiftProtobufError.JSONDecoding.failure() } // We also close out [[]] or [[[]]] here while arrayDepth > 0 && skipOptionalArrayEnd() { @@ -1456,19 +1456,19 @@ internal struct JSONScanner { if !skipOptionalKeyword(bytes: [ asciiLowerN, asciiLowerU, asciiLowerL, asciiLowerL ]) { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } case asciiLowerF: // f must be false if !skipOptionalKeyword(bytes: [ asciiLowerF, asciiLowerA, asciiLowerL, asciiLowerS, asciiLowerE ]) { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } case asciiLowerT: // t must be true if !skipOptionalKeyword(bytes: [ asciiLowerT, asciiLowerR, asciiLowerU, asciiLowerE ]) { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } default: // everything else is a number token _ = try nextDouble() @@ -1516,10 +1516,10 @@ internal struct JSONScanner { // schema mismatches or other issues. private mutating func skipString() throws { guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } if currentByte != asciiDoubleQuote { - throw SwiftProtobufError.JSONDecoding.malformedString + throw SwiftProtobufError.JSONDecoding.malformedString() } advance() while hasMoreContent { @@ -1531,13 +1531,13 @@ internal struct JSONScanner { case asciiBackslash: advance() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } advance() default: advance() } } - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } } diff --git a/Sources/SwiftProtobuf/Message+BinaryAdditions.swift b/Sources/SwiftProtobuf/Message+BinaryAdditions.swift index 9701acd0b..8f8b84cc2 100644 --- a/Sources/SwiftProtobuf/Message+BinaryAdditions.swift +++ b/Sources/SwiftProtobuf/Message+BinaryAdditions.swift @@ -34,7 +34,7 @@ extension Message { options: BinaryEncodingOptions = BinaryEncodingOptions() ) throws -> Bytes { if !partial && !isInitialized { - throw SwiftProtobufError.BinaryEncoding.missingRequiredFields + throw SwiftProtobufError.BinaryEncoding.missingRequiredFields() } // Note that this assumes `options` will not change the required size. @@ -48,7 +48,7 @@ extension Message { // the places that encode message fields (or strings/bytes fields), keeping // the overhead of the check to a minimum. guard requiredSize < 0x7fffffff else { - throw SwiftProtobufError.BinaryEncoding.tooLarge + throw SwiftProtobufError.BinaryEncoding.tooLarge() } var data = Bytes(repeating: 0, count: requiredSize) @@ -149,7 +149,7 @@ extension Message { try decoder.decodeFullMessage(message: &self) } if !partial && !isInitialized { - throw SwiftProtobufError.BinaryDecoding.missingRequiredFields + throw SwiftProtobufError.BinaryDecoding.missingRequiredFields() } } } diff --git a/Sources/SwiftProtobuf/Message+JSONAdditions.swift b/Sources/SwiftProtobuf/Message+JSONAdditions.swift index 3df7098a3..814d4556b 100644 --- a/Sources/SwiftProtobuf/Message+JSONAdditions.swift +++ b/Sources/SwiftProtobuf/Message+JSONAdditions.swift @@ -84,12 +84,12 @@ extension Message { options: JSONDecodingOptions = JSONDecodingOptions() ) throws { if jsonString.isEmpty { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } if let data = jsonString.data(using: String.Encoding.utf8) { try self.init(jsonUTF8Bytes: data, extensions: extensions, options: options) } else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } } @@ -126,7 +126,7 @@ extension Message { try jsonUTF8Bytes.withUnsafeBytes { (body: UnsafeRawBufferPointer) in // Empty input is valid for binary, but not for JSON. guard body.count > 0 else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } var decoder = JSONDecoder(source: body, options: options, messageType: Self.self, extensions: extensions) @@ -135,13 +135,13 @@ extension Message { let message = try customCodable.decodedFromJSONNull() { self = message as! Self } else { - throw SwiftProtobufError.JSONDecoding.illegalNull + throw SwiftProtobufError.JSONDecoding.illegalNull() } } else { try decoder.decodeFullObject(message: &self) } if !decoder.scanner.complete { - throw SwiftProtobufError.JSONDecoding.trailingGarbage + throw SwiftProtobufError.JSONDecoding.trailingGarbage() } } } diff --git a/Sources/SwiftProtobuf/Message+JSONArrayAdditions.swift b/Sources/SwiftProtobuf/Message+JSONArrayAdditions.swift index dc9af7e51..2d94eed8d 100644 --- a/Sources/SwiftProtobuf/Message+JSONArrayAdditions.swift +++ b/Sources/SwiftProtobuf/Message+JSONArrayAdditions.swift @@ -87,12 +87,12 @@ extension Message { options: JSONDecodingOptions = JSONDecodingOptions() ) throws -> [Self] { if jsonString.isEmpty { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } if let data = jsonString.data(using: String.Encoding.utf8) { return try array(fromJSONUTF8Bytes: data, extensions: extensions, options: options) } else { - throw SwiftProtobufError.JSONDecoding.truncated + throw SwiftProtobufError.JSONDecoding.truncated() } } @@ -135,7 +135,7 @@ extension Message { messageType: Self.self, extensions: extensions) try decoder.decodeRepeatedMessageField(value: &array) if !decoder.scanner.complete { - throw SwiftProtobufError.JSONDecoding.trailingGarbage + throw SwiftProtobufError.JSONDecoding.trailingGarbage() } } diff --git a/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift b/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift index 2e1777b13..740ccb1e7 100644 --- a/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift +++ b/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift @@ -81,7 +81,7 @@ extension Message { extensions: extensions) try decodeMessage(decoder: &decoder) if !decoder.complete { - throw SwiftProtobufError.TextFormatDecoding.trailingGarbage + throw SwiftProtobufError.TextFormatDecoding.trailingGarbage() } } } diff --git a/Sources/SwiftProtobuf/SwiftProtobufError.swift b/Sources/SwiftProtobuf/SwiftProtobufError.swift index 0f47e2b43..1972d2abb 100644 --- a/Sources/SwiftProtobuf/SwiftProtobufError.swift +++ b/Sources/SwiftProtobuf/SwiftProtobufError.swift @@ -29,19 +29,23 @@ public struct SwiftProtobufError: Error, @unchecked Sendable { private final class Storage { var code: Code var message: String + var location: SourceLocation init( code: Code, - message: String + message: String, + location: SourceLocation ) { self.code = code self.message = message + self.location = location } func copy() -> Self { return Self( code: self.code, - message: self.message + message: self.message, + location: self.location ) } } @@ -63,12 +67,21 @@ public struct SwiftProtobufError: Error, @unchecked Sendable { self.storage.message = newValue } } + + private var location: SourceLocation { + get { self.storage.location } + set { + self.ensureStorageIsUnique() + self.storage.location = newValue + } + } public init( code: Code, - message: String + message: String, + location: SourceLocation ) { - self.storage = Storage(code: code, message: message) + self.storage = Storage(code: code, message: message, location: location) } } @@ -172,13 +185,13 @@ extension SwiftProtobufError { extension SwiftProtobufError: CustomStringConvertible { public var description: String { - "\(self.code): \(self.message)" + "\(self.code) (at \(self.location)): \(self.message)" } } extension SwiftProtobufError: CustomDebugStringConvertible { public var debugDescription: String { - "\(String(reflecting: self.code)): \(String(reflecting: self.message))" + "\(String(reflecting: self.code)) (at \(String(reflecting: self.location))): \(String(reflecting: self.message))" } } @@ -191,170 +204,299 @@ extension SwiftProtobufError { /// fields but the message being encoded did not include values for them. You /// must pass `partial: true` during encoding if you wish to explicitly ignore /// missing required fields. - public static let missingRequiredFields = SwiftProtobufError( - code: .binaryEncodingError, - message: """ + public static func missingRequiredFields( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryEncodingError, + message: """ The definition of the message or one of its nested messages has required fields, \ but the message being encoded did not include values for them. \ Decode with `partial: true` if you wish to explicitly ignore missing required fields. - """ - ) + """, + location: SourceLocation(function: function, file: file, line: line) + ) + } /// Messages are limited to a maximum of 2GB in encoded size. - public static let tooLarge = SwiftProtobufError( - code: .binaryEncodingError, - message: "Messages are limited to a maximum of 2GB in encoded size." - ) + public static func tooLarge( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryEncodingError, + message: "Messages are limited to a maximum of 2GB in encoded size.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// `Any` fields that were decoded from JSON cannot be re-encoded to binary /// unless the object they hold is a well-known type or a type registered via /// `Google_Protobuf_Any.register()`. - public static func anyTypeURLNotRegistered(typeURL: String) -> SwiftProtobufError { + public static func anyTypeURLNotRegistered( + typeURL: String, + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { SwiftProtobufError( code: .binaryEncodingError, message: """ Any fields that were decoded from JSON format cannot be re-encoded to binary \ unless the object they hold is a well-known type or a type registered via \ `Google_Protobuf_Any.register()`. Type URL is \(typeURL). - """ + """, + location: SourceLocation(function: function, file: file, line: line) ) } /// When writing a binary-delimited message into a stream, this error will be thrown if less than /// the expected number of bytes were written. - public static let truncated = SwiftProtobufError( - code: .binaryEncodingError, - message: """ - Less than the expected number of bytes were written when writing \ - a binary-delimited message into an output stream. - """ - ) - - + public static func truncated( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryEncodingError, + message: """ + Less than the expected number of bytes were written when writing \ + a binary-delimited message into an output stream. + """, + location: SourceLocation(function: function, file: file, line: line) + ) + } } /// Errors arising from binary decoding of data into protobufs. public enum BinaryDecoding { /// The end of the data was reached before it was expected. - public static let truncated = SwiftProtobufError( - code: .binaryDecodingError, - message: "The end of the data was reached before it was expected." - ) + public static func truncated( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryDecodingError, + message: "The end of the data was reached before it was expected.", + location: SourceLocation(function: function, file: file, line: line) + ) + } // Extraneous data remained after decoding should have been complete. - public static let trailingGarbage = SwiftProtobufError( - code: .binaryDecodingError, - message: "Extraneous data remained after decoding should have been complete." - ) + public static func trailingGarbage( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryDecodingError, + message: "Extraneous data remained after decoding should have been complete.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// Message is too large. Bytes and Strings have a max size of 2GB. - public static let tooLarge = SwiftProtobufError( - code: .binaryDecodingError, - message: "Message too large: Bytes and Strings have a max size of 2GB." - ) + public static func tooLarge( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryDecodingError, + message: "Message too large: Bytes and Strings have a max size of 2GB.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// A string field was not encoded as valid UTF-8. - public static let invalidUTF8 = SwiftProtobufError( - code: .binaryDecodingError, - message: "A string field was not encoded as valid UTF-8." - ) + public static func invalidUTF8( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryDecodingError, + message: "A string field was not encoded as valid UTF-8.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// The binary data was malformed in some way, such as an invalid wire format or field tag. - public static let malformedProtobuf = SwiftProtobufError( - code: .binaryDecodingError, - message: """ - The binary data was malformed in some way, such as an \ - invalid wire format or field tag. - """ - ) + public static func malformedProtobuf( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryDecodingError, + message: """ + The binary data was malformed in some way, such as an \ + invalid wire format or field tag. + """, + location: SourceLocation(function: function, file: file, line: line) + ) + } /// The definition of the message or one of its nested messages has required /// fields but the binary data did not include values for them. You must pass /// `partial: true` during decoding if you wish to explicitly ignore missing /// required fields. - public static let missingRequiredFields = SwiftProtobufError( - code: .binaryDecodingError, - message: """ - The definition of the message or one of its nested messages has required fields, \ - but the binary data did not include values for them. \ - Decode with `partial: true` if you wish to explicitly ignore missing required fields. - """ - ) + public static func missingRequiredFields( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryDecodingError, + message: """ + The definition of the message or one of its nested messages has required fields, \ + but the binary data did not include values for them. \ + Decode with `partial: true` if you wish to explicitly ignore missing required fields. + """, + location: SourceLocation(function: function, file: file, line: line) + ) + } /// An internal error happened while decoding. If this is ever encountered, /// please file an issue with SwiftProtobuf with as much details as possible /// for what happened (proto definitions, bytes being decoded (if possible)). - public static let internalExtensionError = SwiftProtobufError( - code: .binaryDecodingError, - message: "An internal error hapenned while decoding. Please file an issue with SwiftProtobuf." - ) + public static func internalExtensionError( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryDecodingError, + message: "An internal error hapenned while decoding. Please file an issue with SwiftProtobuf.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// Reached the nesting limit for messages within messages while decoding. - public static let messageDepthLimit = SwiftProtobufError( - code: .binaryDecodingError, - message: "Reached the nesting limit for messages within messages while decoding." - ) + public static func messageDepthLimit( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryDecodingError, + message: "Reached the nesting limit for messages within messages while decoding.", + location: SourceLocation(function: function, file: file, line: line) + ) + } } /// Errors arising from encoding protobufs into JSON. public enum JSONEncoding { /// Timestamp values can only be JSON encoded if they hold a value /// between 0001-01-01Z00:00:00 and 9999-12-31Z23:59:59. - public static let timestampRange = SwiftProtobufError( - code: .jsonEncodingError, - message: """ - Timestamp values can only be JSON encoded if they hold a value \ - between 0001-01-01Z00:00:00 and 9999-12-31Z23:59:59. - """ - ) + public static func timestampRange( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonEncodingError, + message: """ + Timestamp values can only be JSON encoded if they hold a value \ + between 0001-01-01Z00:00:00 and 9999-12-31Z23:59:59. + """, + location: SourceLocation(function: function, file: file, line: line) + ) + } /// Duration values can only be JSON encoded if they hold a value /// less than +/- 100 years. - public static let durationRange = SwiftProtobufError( - code: .jsonEncodingError, - message: "Duration values can only be JSON encoded if they hold a value less than +/- 100 years." - ) + public static func durationRange( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonEncodingError, + message: "Duration values can only be JSON encoded if they hold a value less than +/- 100 years.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// Field masks get edited when converting between JSON and protobuf. - public static let fieldMaskConversion = SwiftProtobufError( - code: .jsonEncodingError, - message: "Field masks get edited when converting between JSON and protobuf." - ) + public static func fieldMaskConversion( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonEncodingError, + message: "Field masks get edited when converting between JSON and protobuf.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// Field names were not compiled into the binary. - public static let missingFieldNames = SwiftProtobufError( - code: .jsonEncodingError, - message: "Field names were not compiled into the binary." - ) + public static func missingFieldNames( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonEncodingError, + message: "Field names were not compiled into the binary.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// Instances of `Google_Protobuf_Value` can only be encoded if they have a /// valid `kind` (that is, they represent a null value, number, boolean, /// string, struct, or list). - public static let missingValue = SwiftProtobufError( - code: .jsonEncodingError, - message: "Instances of `Google_Protobuf_Value` can only be encoded if they have a valid `kind`." - ) + public static func missingValue( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonEncodingError, + message: "Instances of `Google_Protobuf_Value` can only be encoded if they have a valid `kind`.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// `Google_Protobuf_Value` cannot encode double values for infinity or nan, /// because they would be parsed as a string. - public static let valueNumberNotFinite = SwiftProtobufError( - code: .jsonEncodingError, - message: """ - `Google_Protobuf_Value` cannot encode double values for \ - infinity or nan, because they would be parsed as a string. - """ - ) + public static func valueNumberNotFinite( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonEncodingError, + message: """ + `Google_Protobuf_Value` cannot encode double values for \ + infinity or nan, because they would be parsed as a string. + """, + location: SourceLocation(function: function, file: file, line: line) + ) + } /// Any fields that were decoded from binary format cannot be re-encoded into JSON unless the /// object they hold is a well-known type or a type registered via `Google_Protobuf_Any.register()`. - public static func anyTypeURLNotRegistered(typeURL: String) -> SwiftProtobufError { + public static func anyTypeURLNotRegistered( + typeURL: String, + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { SwiftProtobufError( code: .jsonEncodingError, message: """ Any fields that were decoded from binary format cannot be re-encoded into JSON \ unless the object they hold is a well-known type or a type registered via \ `Google_Protobuf_Any.register()`. Type URL is \(typeURL). - """ + """, + location: SourceLocation(function: function, file: file, line: line) ) } } @@ -362,134 +504,280 @@ extension SwiftProtobufError { /// Errors arising from JSON decoding of data into protobufs. public enum JSONDecoding { /// Something went wrong. - public static let failure = SwiftProtobufError( - code: .jsonDecodingError, - message: "Something went wrong." - ) + public static func failure( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "Something went wrong.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// A number could not be parsed. - public static let malformedNumber = SwiftProtobufError( - code: .jsonDecodingError, - message: "A number could not be parsed." - ) + public static func malformedNumber( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "A number could not be parsed.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// Numeric value was out of range or was not an integer value when expected. - public static let numberRange = SwiftProtobufError( - code: .jsonDecodingError, - message: "Numeric value was out of range or was not an integer value when expected." - ) + public static func numberRange( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "Numeric value was out of range or was not an integer value when expected.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// A map could not be parsed. - public static let malformedMap = SwiftProtobufError( - code: .jsonDecodingError, - message: "A map could not be parsed." - ) + public static func malformedMap( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "A map could not be parsed.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// A bool could not be parsed. - public static let malformedBool = SwiftProtobufError( - code: .jsonDecodingError, - message: "A bool could not be parsed." - ) + public static func malformedBool( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "A bool could not be parsed.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// We expected a quoted string, or a quoted string has a malformed backslash sequence. - public static let malformedString = SwiftProtobufError( - code: .jsonDecodingError, - message: "Expected a quoted string, or encountered a quoted string with a malformed backslash sequence." - ) + public static func malformedString( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "Expected a quoted string, or encountered a quoted string with a malformed backslash sequence.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// We encountered malformed UTF8. - public static let invalidUTF8 = SwiftProtobufError( - code: .jsonDecodingError, - message: "Encountered malformed UTF8." - ) + public static func invalidUTF8( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "Encountered malformed UTF8.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// The message does not have fieldName information. - public static let missingFieldNames = SwiftProtobufError( - code: .jsonDecodingError, - message: "The message does not have fieldName information." - ) + public static func missingFieldNames( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "The message does not have fieldName information.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// The data type does not match the schema description. - public static let schemaMismatch = SwiftProtobufError( - code: .jsonDecodingError, - message: "The data type does not match the schema description." - ) + public static func schemaMismatch( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "The data type does not match the schema description.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// A value (text or numeric) for an enum was not found on the enum. - public static let unrecognizedEnumValue = SwiftProtobufError( - code: .jsonDecodingError, - message: "A value (text or numeric) for an enum was not found on the enum." - ) + public static func unrecognizedEnumValue( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "A value (text or numeric) for an enum was not found on the enum.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// A 'null' token appeared in an illegal location. /// For example, Protobuf JSON does not allow 'null' tokens to appear in lists. - public static let illegalNull = SwiftProtobufError( - code: .jsonDecodingError, - message: "A 'null' token appeared in an illegal location." - ) + public static func illegalNull( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "A 'null' token appeared in an illegal location.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// A map key was not quoted. - public static let unquotedMapKey = SwiftProtobufError( - code: .jsonDecodingError, - message: "A map key was not quoted." - ) + public static func unquotedMapKey( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "A map key was not quoted.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// JSON RFC 7519 does not allow numbers to have extra leading zeros. - public static let leadingZero = SwiftProtobufError( - code: .jsonDecodingError, - message: "JSON RFC 7519 does not allow numbers to have extra leading zeros." - ) + public static func leadingZero( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "JSON RFC 7519 does not allow numbers to have extra leading zeros.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// We hit the end of the JSON string and expected something more. - public static let truncated = SwiftProtobufError( - code: .jsonDecodingError, - message: "Reached end of JSON string but expected something more." - ) + public static func truncated( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "Reached end of JSON string but expected something more.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// A JSON Duration could not be parsed. - public static let malformedDuration = SwiftProtobufError( - code: .jsonDecodingError, - message: "A JSON Duration could not be parsed." - ) + public static func malformedDuration( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "A JSON Duration could not be parsed.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// A JSON Timestamp could not be parsed. - public static let malformedTimestamp = SwiftProtobufError( - code: .jsonDecodingError, - message: "A JSON Timestamp could not be parsed." - ) + public static func malformedTimestamp( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "A JSON Timestamp could not be parsed.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// A FieldMask could not be parsed. - public static let malformedFieldMask = SwiftProtobufError( - code: .jsonDecodingError, - message: "A FieldMask could not be parsed." - ) + public static func malformedFieldMask( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "A FieldMask could not be parsed.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// Extraneous data remained after decoding should have been complete. - public static let trailingGarbage = SwiftProtobufError( - code: .jsonDecodingError, - message: "Extraneous data remained after decoding should have been complete." - ) + public static func trailingGarbage( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError{ + SwiftProtobufError( + code: .jsonDecodingError, + message: "Extraneous data remained after decoding should have been complete.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// More than one value was specified for the same oneof field. - public static let conflictingOneOf = SwiftProtobufError( - code: .jsonDecodingError, - message: "More than one value was specified for the same oneof field." - ) + public static func conflictingOneOf( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError{ + SwiftProtobufError( + code: .jsonDecodingError, + message: "More than one value was specified for the same oneof field.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// Reached the nesting limit for messages within messages while decoding. - public static let messageDepthLimit = SwiftProtobufError( - code: .jsonDecodingError, - message: "Reached the nesting limit for messages within messages while decoding." - ) + public static func messageDepthLimit( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: "Reached the nesting limit for messages within messages while decoding.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// Encountered an unknown field with the given name. /// - Parameter name: The name of the unknown field. /// - Note: When parsing JSON, you can instead instruct the library to ignore this via /// `JSONDecodingOptions.ignoreUnknownFields`. - public static func unknownField(_ name: String) -> SwiftProtobufError { + public static func unknownField( + _ name: String, + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { SwiftProtobufError( code: .jsonDecodingError, - message: "Encountered an unknown field with name '\(name)'." + message: "Encountered an unknown field with name '\(name)'.", + location: SourceLocation(function: function, file: file, line: line) ) } } @@ -497,78 +785,162 @@ extension SwiftProtobufError { /// Errors arising from text format decoding of data into protobufs. public enum TextFormatDecoding { /// Text data could not be parsed. - public static let malformedText = SwiftProtobufError( - code: .textFormatDecodingError, - message: "Text data could not be parsed" - ) + public static func malformedText( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .textFormatDecodingError, + message: "Text data could not be parsed", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// A number could not be parsed. - public static let malformedNumber = SwiftProtobufError( - code: .textFormatDecodingError, - message: "A number could not be parsed." - ) + public static func malformedNumber( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .textFormatDecodingError, + message: "A number could not be parsed.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// Extraneous data remained after decoding should have been complete. - public static let trailingGarbage = SwiftProtobufError( - code: .textFormatDecodingError, - message: "Extraneous data remained after decoding should have been complete." - ) + public static func trailingGarbage( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .textFormatDecodingError, + message: "Extraneous data remained after decoding should have been complete.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// The data stopped before we expected. - public static let truncated = SwiftProtobufError( - code: .textFormatDecodingError, - message: "The data stopped before we expected." - ) + public static func truncated( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .textFormatDecodingError, + message: "The data stopped before we expected.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// A string was not valid UTF8. - public static let invalidUTF8 = SwiftProtobufError( - code: .textFormatDecodingError, - message: "A string was not valid UTF8." - ) + public static func invalidUTF8( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .textFormatDecodingError, + message: "A string was not valid UTF8.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// The data being parsed does not match the type specified in the proto file. - public static let schemaMismatch = SwiftProtobufError( - code: .textFormatDecodingError, - message: "The data being parsed does not match the type specified in the proto file." - ) + public static func schemaMismatch( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .textFormatDecodingError, + message: "The data being parsed does not match the type specified in the proto file.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// Field names were not compiled into the binary. - public static let missingFieldNames = SwiftProtobufError( - code: .textFormatDecodingError, - message: "Field names were not compiled into the binary." - ) + public static func missingFieldNames( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .textFormatDecodingError, + message: "Field names were not compiled into the binary.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// A field identifier (name or number) was not found on the message. - public static let unknownField = SwiftProtobufError( - code: .textFormatDecodingError, - message: "A field identifier (name or number) was not found on the message." - ) + public static func unknownField( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .textFormatDecodingError, + message: "A field identifier (name or number) was not found on the message.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// The enum value was not recognized. - public static let unrecognizedEnumValue = SwiftProtobufError( - code: .textFormatDecodingError, - message: "The enum value was not recognized." - ) + public static func unrecognizedEnumValue( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .textFormatDecodingError, + message: "The enum value was not recognized.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// Text format rejects conflicting values for the same oneof field. - public static let conflictingOneOf = SwiftProtobufError( - code: .textFormatDecodingError, - message: "Text format rejects conflicting values for the same oneof field." - ) + public static func conflictingOneOf( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .textFormatDecodingError, + message: "Text format rejects conflicting values for the same oneof field.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// An internal error happened while decoding. If this is ever encountered, /// please file an issue with SwiftProtobuf with as much details as possible /// for what happened (proto definitions, bytes being decoded (if possible)). - public static let internalExtensionError = SwiftProtobufError( - code: .textFormatDecodingError, - message: "An internal error happened while decoding: please file an issue with SwiftProtobuf." - ) + public static func internalExtensionError( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .textFormatDecodingError, + message: "An internal error happened while decoding: please file an issue with SwiftProtobuf.", + location: SourceLocation(function: function, file: file, line: line) + ) + } /// Reached the nesting limit for messages within messages while decoding. - public static let messageDepthLimit = SwiftProtobufError( - code: .textFormatDecodingError, - message: "Reached the nesting limit for messages within messages while decoding." - ) + public static func messageDepthLimit( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .textFormatDecodingError, + message: "Reached the nesting limit for messages within messages while decoding.", + location: SourceLocation(function: function, file: file, line: line) + ) + } } /// Describes errors that can occur when unpacking a `Google_Protobuf_Any` @@ -583,31 +955,52 @@ extension SwiftProtobufError { public enum AnyUnpack { /// The `type_url` field in the `Google_Protobuf_Any` message did not match /// the message type provided to the `unpack()` method. - public static let typeMismatch = SwiftProtobufError( - code: .invalidArgument, - message: """ - The `type_url` field in the `Google_Protobuf_Any` message did not match - the message type provided to the `unpack()` method. - """ - ) + public static func typeMismatch( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .invalidArgument, + message: """ + The `type_url` field in the `Google_Protobuf_Any` message did not match + the message type provided to the `unpack()` method. + """, + location: SourceLocation(function: function, file: file, line: line) + ) + } /// Well-known types being decoded from JSON must have only two fields: the /// `@type` field and a `value` field containing the specialized JSON coding /// of the well-known type. - public static let malformedWellKnownTypeJSON = SwiftProtobufError( - code: .jsonDecodingError, - message: """ - Malformed JSON type: well-known types being decoded from JSON must have only two fields: - the `@type` field and a `value` field containing the specialized JSON coding - of the well-known type. - """ - ) + public static func malformedWellKnownTypeJSON( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .jsonDecodingError, + message: """ + Malformed JSON type: well-known types being decoded from JSON must have only two fields: + the `@type` field and a `value` field containing the specialized JSON coding + of the well-known type. + """, + location: SourceLocation(function: function, file: file, line: line) + ) + } /// The `Google_Protobuf_Any` message was malformed in some other way not /// covered by the other error cases. - public static let malformedAnyField = SwiftProtobufError( - code: .internalError, - message: "The `Google_Protobuf_Any` message was malformed." - ) + public static func malformedAnyField( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .internalError, + message: "The `Google_Protobuf_Any` message was malformed.", + location: SourceLocation(function: function, file: file, line: line) + ) + } } } diff --git a/Sources/SwiftProtobuf/TextFormatDecoder.swift b/Sources/SwiftProtobuf/TextFormatDecoder.swift index d2ebceacb..03a7d5e56 100644 --- a/Sources/SwiftProtobuf/TextFormatDecoder.swift +++ b/Sources/SwiftProtobuf/TextFormatDecoder.swift @@ -46,7 +46,7 @@ internal struct TextFormatDecoder: Decoder { ) throws { scanner = TextFormatScanner(utf8Pointer: utf8Pointer, count: count, options: options, extensions: extensions) guard let nameProviding = (messageType as? any _ProtoNameProviding.Type) else { - throw SwiftProtobufError.TextFormatDecoding.missingFieldNames + throw SwiftProtobufError.TextFormatDecoding.missingFieldNames() } fieldNameMap = nameProviding._protobuf_nameMap self.messageType = messageType @@ -56,14 +56,14 @@ internal struct TextFormatDecoder: Decoder { self.scanner = scanner self.terminator = terminator guard let nameProviding = (messageType as? any _ProtoNameProviding.Type) else { - throw SwiftProtobufError.TextFormatDecoding.missingFieldNames + throw SwiftProtobufError.TextFormatDecoding.missingFieldNames() } fieldNameMap = nameProviding._protobuf_nameMap self.messageType = messageType } mutating func handleConflictingOneOf() throws { - throw SwiftProtobufError.TextFormatDecoding.conflictingOneOf + throw SwiftProtobufError.TextFormatDecoding.conflictingOneOf() } mutating func nextFieldNumber() throws -> Int? { @@ -142,7 +142,7 @@ internal struct TextFormatDecoder: Decoder { try scanner.skipRequiredColon() let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } value = Int32(truncatingIfNeeded: n) } @@ -150,7 +150,7 @@ internal struct TextFormatDecoder: Decoder { try scanner.skipRequiredColon() let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } value = Int32(truncatingIfNeeded: n) } @@ -169,14 +169,14 @@ internal struct TextFormatDecoder: Decoder { } let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } value.append(Int32(truncatingIfNeeded: n)) } } else { let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } value.append(Int32(truncatingIfNeeded: n)) } @@ -214,7 +214,7 @@ internal struct TextFormatDecoder: Decoder { try scanner.skipRequiredColon() let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } value = UInt32(truncatingIfNeeded: n) } @@ -222,7 +222,7 @@ internal struct TextFormatDecoder: Decoder { try scanner.skipRequiredColon() let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } value = UInt32(truncatingIfNeeded: n) } @@ -241,14 +241,14 @@ internal struct TextFormatDecoder: Decoder { } let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } value.append(UInt32(truncatingIfNeeded: n)) } } else { let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } value.append(UInt32(truncatingIfNeeded: n)) } @@ -429,7 +429,7 @@ internal struct TextFormatDecoder: Decoder { if let b = E(rawUTF8: name) { return b } else { - throw SwiftProtobufError.TextFormatDecoding.unrecognizedEnumValue + throw SwiftProtobufError.TextFormatDecoding.unrecognizedEnumValue() } } let number = try scanner.nextSInt() @@ -438,10 +438,10 @@ internal struct TextFormatDecoder: Decoder { if let e = E(rawValue: Int(n)) { return e } else { - throw SwiftProtobufError.TextFormatDecoding.unrecognizedEnumValue + throw SwiftProtobufError.TextFormatDecoding.unrecognizedEnumValue() } } - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } @@ -560,7 +560,7 @@ internal struct TextFormatDecoder: Decoder { value[keyField] = valueField return } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } } if let key = try scanner.nextKey(allowExtensions: ignoreExtensionFields) { @@ -575,12 +575,12 @@ internal struct TextFormatDecoder: Decoder { } else if options.ignoreUnknownFields && !key.hasPrefix("[") { try scanner.skipUnknownFieldValue() } else { - throw SwiftProtobufError.TextFormatDecoding.unknownField + throw SwiftProtobufError.TextFormatDecoding.unknownField() } } scanner.skipOptionalSeparator() } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } } } @@ -616,7 +616,7 @@ internal struct TextFormatDecoder: Decoder { value[keyField] = valueField return } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } } if let key = try scanner.nextKey(allowExtensions: ignoreExtensionFields) { @@ -631,12 +631,12 @@ internal struct TextFormatDecoder: Decoder { } else if options.ignoreUnknownFields && !key.hasPrefix("[") { try scanner.skipUnknownFieldValue() } else { - throw SwiftProtobufError.TextFormatDecoding.unknownField + throw SwiftProtobufError.TextFormatDecoding.unknownField() } } scanner.skipOptionalSeparator() } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } } } @@ -672,7 +672,7 @@ internal struct TextFormatDecoder: Decoder { value[keyField] = valueField return } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } } if let key = try scanner.nextKey(allowExtensions: ignoreExtensionFields) { @@ -687,12 +687,12 @@ internal struct TextFormatDecoder: Decoder { } else if options.ignoreUnknownFields && !key.hasPrefix("[") { try scanner.skipUnknownFieldValue() } else { - throw SwiftProtobufError.TextFormatDecoding.unknownField + throw SwiftProtobufError.TextFormatDecoding.unknownField() } } scanner.skipOptionalSeparator() } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } } } @@ -729,7 +729,7 @@ internal struct TextFormatDecoder: Decoder { // Really things should never get here, for TextFormat, decoding // the value should always work or throw an error. This specific // error result is to allow this to be more detectable. - throw SwiftProtobufError.TextFormatDecoding.internalExtensionError + throw SwiftProtobufError.TextFormatDecoding.internalExtensionError() } } } diff --git a/Sources/SwiftProtobuf/TextFormatScanner.swift b/Sources/SwiftProtobuf/TextFormatScanner.swift index 5c8adc57b..449559774 100644 --- a/Sources/SwiftProtobuf/TextFormatScanner.swift +++ b/Sources/SwiftProtobuf/TextFormatScanner.swift @@ -270,7 +270,7 @@ internal struct TextFormatScanner { private mutating func incrementRecursionDepth() throws { recursionBudget -= 1 if recursionBudget < 0 { - throw SwiftProtobufError.TextFormatDecoding.messageDepthLimit + throw SwiftProtobufError.TextFormatDecoding.messageDepthLimit() } } @@ -355,7 +355,7 @@ internal struct TextFormatScanner { switch byte { case asciiNewLine, asciiCarriageReturn: // Can't have a newline in the middle of a bytes string. - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() case asciiBackslash: // "\\" sawBackslash = true if p != end { @@ -369,7 +369,7 @@ internal struct TextFormatScanner { if p != end, p[0] >= asciiZero, p[0] <= asciiSeven { if escaped > asciiThree { // Out of range octal: three digits and first digit is greater than 3 - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } p += 1 } @@ -378,14 +378,14 @@ internal struct TextFormatScanner { case asciiLowerU, asciiUpperU: // 'u' or 'U' unicode escape let numDigits = (escaped == asciiLowerU) ? 4 : 8 guard (end - p) >= numDigits else { - throw SwiftProtobufError.TextFormatDecoding.malformedText // unicode escape must 4/8 digits + throw SwiftProtobufError.TextFormatDecoding.malformedText() // unicode escape must 4/8 digits } var codePoint: UInt32 = 0 for i in 0.. UInt64 { if p == end { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } let c = p[0] p += 1 @@ -619,7 +619,7 @@ internal struct TextFormatScanner { return n } if n > UInt64.max / 16 { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } p += 1 n = n * 16 + val @@ -636,7 +636,7 @@ internal struct TextFormatScanner { } let val = UInt64(digit - asciiZero) if n > UInt64.max / 8 { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } p += 1 n = n * 8 + val @@ -654,7 +654,7 @@ internal struct TextFormatScanner { } let val = UInt64(digit - asciiZero) if n > UInt64.max / 10 || n * 10 > UInt64.max - val { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } p += 1 n = n * 10 + val @@ -662,30 +662,30 @@ internal struct TextFormatScanner { skipWhitespace() return n } - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } internal mutating func nextSInt() throws -> Int64 { if p == end { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } let c = p[0] if c == asciiMinus { // - p += 1 if p == end { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } // character after '-' must be digit let digit = p[0] if digit < asciiZero || digit > asciiNine { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } let n = try nextUInt() let limit: UInt64 = 0x8000000000000000 // -Int64.min if n >= limit { if n > limit { // Too large negative number - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } else { return Int64.min // Special case for Int64.min } @@ -694,7 +694,7 @@ internal struct TextFormatScanner { } else { let n = try nextUInt() if n > UInt64(bitPattern: Int64.max) { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } return Int64(bitPattern: n) } @@ -704,17 +704,17 @@ internal struct TextFormatScanner { var result: String skipWhitespace() if p == end { - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } let c = p[0] if c != asciiSingleQuote && c != asciiDoubleQuote { - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } p += 1 if let s = parseStringSegment(terminator: c) { result = s } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } while true { @@ -729,7 +729,7 @@ internal struct TextFormatScanner { if let s = parseStringSegment(terminator: c) { result.append(s) } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } } } @@ -744,11 +744,11 @@ internal struct TextFormatScanner { var result: Data skipWhitespace() if p == end { - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } let c = p[0] if c != asciiSingleQuote && c != asciiDoubleQuote { - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } p += 1 var sawBackslash = false @@ -947,7 +947,7 @@ internal struct TextFormatScanner { if let inf = skipOptionalInfinity() { return inf } - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } internal mutating func nextDouble() throws -> Double { @@ -960,13 +960,13 @@ internal struct TextFormatScanner { if let inf = skipOptionalInfinity() { return Double(inf) } - throw SwiftProtobufError.TextFormatDecoding.malformedNumber + throw SwiftProtobufError.TextFormatDecoding.malformedNumber() } internal mutating func nextBool() throws -> Bool { skipWhitespace() if p == end { - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } let c = p[0] p += 1 @@ -989,7 +989,7 @@ internal struct TextFormatScanner { } result = true default: - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } if p == end { return result @@ -1008,14 +1008,14 @@ internal struct TextFormatScanner { skipWhitespace() return result default: - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } } internal mutating func nextOptionalEnumName() throws -> UnsafeRawBufferPointer? { skipWhitespace() if p == end { - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } switch p[0] { case asciiLowerA...asciiLowerZ, asciiUpperA...asciiUpperZ: @@ -1060,14 +1060,14 @@ internal struct TextFormatScanner { assert(p[0] == asciiOpenSquareBracket) p += 1 if p == end { - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } let start = p switch p[0] { case asciiLowerA...asciiLowerZ, asciiUpperA...asciiUpperZ: p += 1 default: - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } loop: while p != end { switch p[0] { @@ -1081,14 +1081,14 @@ internal struct TextFormatScanner { case asciiCloseSquareBracket: // ] break loop default: - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } } if p == end || p[0] != asciiCloseSquareBracket { - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } guard let extensionName = utf8ToString(bytes: start, count: p - start) else { - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } p += 1 // Skip ] skipWhitespace() @@ -1107,7 +1107,7 @@ internal struct TextFormatScanner { if allowExtensions { return "[\(try parseExtensionKey())]" } - throw SwiftProtobufError.TextFormatDecoding.unknownField + throw SwiftProtobufError.TextFormatDecoding.unknownField() case asciiLowerA...asciiLowerZ, asciiUpperA...asciiUpperZ: // a...z, A...Z return parseIdentifier() @@ -1130,7 +1130,7 @@ internal struct TextFormatScanner { // Safe, can't be invalid UTF-8 given the input. return s! default: - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } } @@ -1156,7 +1156,7 @@ internal struct TextFormatScanner { return nil } else { // Never got the terminator. - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } } let c = p[0] @@ -1350,12 +1350,12 @@ internal struct TextFormatScanner { let terminator = try skipObjectStart() while !skipOptionalObjectEnd(terminator) { if p == end { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } if let _ = try nextKey(allowExtensions: true) { // Got a valid field name or extension name ("[ext.name]") } else { - throw TextFormatDecodingError.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } try skipUnknownFieldValue() skipOptionalSeparator() @@ -1368,7 +1368,7 @@ internal struct TextFormatScanner { p += 1 skipWhitespace() } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } } @@ -1436,6 +1436,6 @@ internal struct TextFormatScanner { break } } - throw SwiftProtobufError.TextFormatDecoding.malformedText + throw SwiftProtobufError.TextFormatDecoding.malformedText() } } diff --git a/Sources/SwiftProtobufPluginLibrary/ProtoFileToModuleMappings.swift b/Sources/SwiftProtobufPluginLibrary/ProtoFileToModuleMappings.swift index e3b80133e..a1ef6e964 100644 --- a/Sources/SwiftProtobufPluginLibrary/ProtoFileToModuleMappings.swift +++ b/Sources/SwiftProtobufPluginLibrary/ProtoFileToModuleMappings.swift @@ -21,28 +21,46 @@ extension SwiftProtobufError { public enum ProtoFileToModuleMapping { /// Raised if the path wasn't found. /// - Parameter path: The path that wasn't found. - public static func failToOpen(path: String) -> SwiftProtobufError { + public static func failToOpen( + path: String, + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { SwiftProtobufError( code: .invalidArgument, - message: "Path not found: \(path)" + message: "Path not found: \(path)", + location: .init(function: function, file: file, line: line) ) } /// Raised if a mapping entry in the protobuf doesn't have a module name. /// - Parameter mappingIndex: The index (0-N) of the mapping. - public static func entryMissingModuleName(mappingIndex: Int) -> SwiftProtobufError { + public static func entryMissingModuleName( + mappingIndex: Int, + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { SwiftProtobufError( code: .invalidArgument, - message: "Error with proto file to module mapping: mapping with index \(mappingIndex) doesn't have a module name." + message: "Error with proto file to module mapping: mapping with index \(mappingIndex) doesn't have a module name.", + location: .init(function: function, file: file, line: line) ) } /// Raised if a mapping entry in the protobuf doesn't have any proto files listed. /// - Parameter mappingIndex: The index (0-N) of the mapping. - public static func entryHasNoProtoPaths(mappingIndex: Int) -> SwiftProtobufError { + public static func entryHasNoProtoPaths( + mappingIndex: Int, + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { SwiftProtobufError( code: .invalidArgument, - message: "Error with proto file to module mapping: mapping with index \(mappingIndex) doesn't have any proto files listed." + message: "Error with proto file to module mapping: mapping with index \(mappingIndex) doesn't have any proto files listed.", + location: .init(function: function, file: file, line: line) ) } @@ -50,11 +68,15 @@ extension SwiftProtobufError { public static func duplicateProtoPathMapping( path: String, firstModule: String, - secondModule: String + secondModule: String, + function: String = #function, + file: String = #fileID, + line: Int = #line ) -> SwiftProtobufError { SwiftProtobufError( code: .invalidArgument, - message: "Error with proto file to module mapping - The given path (\(path)) was listed in two modules: '\(firstModule)' and '\(secondModule)'." + message: "Error with proto file to module mapping - The given path (\(path)) was listed in two modules: '\(firstModule)' and '\(secondModule)'.", + location: .init(function: function, file: file, line: line) ) } } diff --git a/Tests/SwiftProtobufTests/Test_AllTypes.swift b/Tests/SwiftProtobufTests/Test_AllTypes.swift index de7e0dace..d5c319fbe 100644 --- a/Tests/SwiftProtobufTests/Test_AllTypes.swift +++ b/Tests/SwiftProtobufTests/Test_AllTypes.swift @@ -824,7 +824,7 @@ final class Test_AllTypes: XCTestCase, PBTestHelpers { // Don't need all the bytes, want some to let the length issue trigger. 0x01, 0x02, 0x03, ])) { - XCTAssertTrue(self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .BinaryDecoding.tooLarge)) + XCTAssertTrue(self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .BinaryDecoding.tooLarge())) } let empty = MessageTestType() @@ -948,7 +948,7 @@ final class Test_AllTypes: XCTestCase, PBTestHelpers { // Don't need all the bytes, want some to let the length issue trigger. 0x01, 0x02, 0x03, ])) { - XCTAssertTrue(self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .BinaryDecoding.tooLarge)) + XCTAssertTrue(self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .BinaryDecoding.tooLarge())) } let empty = MessageTestType() @@ -1000,7 +1000,7 @@ final class Test_AllTypes: XCTestCase, PBTestHelpers { // Don't need all the bytes, want some to let the length issue trigger. 0x01, 0x02, 0x03, ])) { - XCTAssertTrue(self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .BinaryDecoding.tooLarge)) + XCTAssertTrue(self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .BinaryDecoding.tooLarge())) } // Ensure storage is uniqued for clear. @@ -1756,7 +1756,7 @@ final class Test_AllTypes: XCTestCase, PBTestHelpers { // Don't need all the bytes, want some to let the length issue trigger. 0x01, 0x02, 0x03, ])) { - XCTAssertTrue(self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .BinaryDecoding.tooLarge)) + XCTAssertTrue(self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .BinaryDecoding.tooLarge())) } assertDebugDescription("SwiftProtobufTests.SwiftProtoTesting_TestAllTypes:\nrepeated_nested_message {\n bb: 1\n}\nrepeated_nested_message {\n bb: 2\n}\n") {(o: inout MessageTestType) in diff --git a/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift b/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift index 32659d0f5..5c703edf9 100644 --- a/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift +++ b/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift @@ -126,7 +126,7 @@ final class Test_AsyncMessageSequence: XCTestCase { XCTFail("Shouldn't have returned a value for an empty stream.") } } catch { - if self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.truncated) { + if self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.truncated()) { truncatedThrown = true } } @@ -142,7 +142,7 @@ final class Test_AsyncMessageSequence: XCTestCase { XCTFail("Shouldn't have returned a value for an invalid stream.") } } catch { - XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.tooLarge)) + XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.tooLarge())) } } @@ -157,7 +157,7 @@ final class Test_AsyncMessageSequence: XCTestCase { XCTFail("Shouldn't have returned a value for an empty stream.") } } catch { - if self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.truncated) { + if self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.truncated()) { truncatedThrown = true } } @@ -189,7 +189,7 @@ final class Test_AsyncMessageSequence: XCTestCase { } XCTAssertEqual(count, 1, "One message should be deserialized") } catch { - if self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.truncated) { + if self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.truncated()) { truncatedThrown = true } } diff --git a/Tests/SwiftProtobufTests/Test_BinaryDecodingOptions.swift b/Tests/SwiftProtobufTests/Test_BinaryDecodingOptions.swift index cd6246fa0..ad30b7cd0 100644 --- a/Tests/SwiftProtobufTests/Test_BinaryDecodingOptions.swift +++ b/Tests/SwiftProtobufTests/Test_BinaryDecodingOptions.swift @@ -113,7 +113,7 @@ final class Test_BinaryDecodingOptions: XCTestCase { if !expectSuccess { XCTFail("Should not have succeed, pass: \(i), limit: \(limit)") } - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryDecoding.messageDepthLimit) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryDecoding.messageDepthLimit()) { if expectSuccess { XCTFail("Decode failed because of limit, but should *NOT* have, pass: \(i), limit: \(limit)") } else { diff --git a/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift b/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift index c040b6d94..c2c76c0fb 100644 --- a/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift +++ b/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift @@ -40,14 +40,14 @@ final class Test_BinaryDelimited: XCTestCase { func assertParseFails(atEndOfStream istream: InputStream) { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.noBytesAvailable)) + XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.noBytesAvailable())) } } func assertParsing(failsWithTruncatedStream istream: InputStream) { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.truncated)) + XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.truncated())) } } @@ -90,7 +90,7 @@ final class Test_BinaryDelimited: XCTestCase { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.tooLarge)) + XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.tooLarge())) } } @@ -99,7 +99,7 @@ final class Test_BinaryDelimited: XCTestCase { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.malformedLength)) + XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.malformedLength())) } } diff --git a/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift b/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift index 6c14daf58..d33485f61 100644 --- a/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift +++ b/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift @@ -46,7 +46,7 @@ final class Test_JSONDecodingOptions: XCTestCase { if !expectSuccess { XCTFail("Should not have succeed, pass: \(i), limit: \(limit)") } - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .JSONDecoding.messageDepthLimit) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .JSONDecoding.messageDepthLimit()) { if expectSuccess { XCTFail("Decode failed because of limit, but should *NOT* have, pass: \(i), limit: \(limit)") } else { diff --git a/Tests/SwiftProtobufTests/Test_JSON_Conformance.swift b/Tests/SwiftProtobufTests/Test_JSON_Conformance.swift index be93e06a4..50b1d55b4 100644 --- a/Tests/SwiftProtobufTests/Test_JSON_Conformance.swift +++ b/Tests/SwiftProtobufTests/Test_JSON_Conformance.swift @@ -284,21 +284,21 @@ final class Test_JSON_Conformance: XCTestCase { func testValue_DoubleNonFinite() { XCTAssertThrowsError(try Google_Protobuf_Value(numberValue: .nan).jsonString()) { XCTAssertTrue( - self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .JSONEncoding.valueNumberNotFinite), + self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .JSONEncoding.valueNumberNotFinite()), "Wrong error? - \($0)" ) } XCTAssertThrowsError(try Google_Protobuf_Value(numberValue: .infinity).jsonString()) { XCTAssertTrue( - self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .JSONEncoding.valueNumberNotFinite), + self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .JSONEncoding.valueNumberNotFinite()), "Wrong error? - \($0)" ) } XCTAssertThrowsError(try Google_Protobuf_Value(numberValue: -.infinity).jsonString()) { XCTAssertTrue( - self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .JSONEncoding.valueNumberNotFinite), + self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .JSONEncoding.valueNumberNotFinite()), "Wrong error? - \($0)" ) } diff --git a/Tests/SwiftProtobufTests/Test_Required.swift b/Tests/SwiftProtobufTests/Test_Required.swift index 45f0f3010..0ebcc44e5 100644 --- a/Tests/SwiftProtobufTests/Test_Required.swift +++ b/Tests/SwiftProtobufTests/Test_Required.swift @@ -157,7 +157,7 @@ final class Test_Required: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(serializedBytes: bytes) XCTFail("Swift decode should have failed: \(bytes)", file: file, line: line) - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryDecoding.missingRequiredFields) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryDecoding.missingRequiredFields()) { // Correct error! } catch let e { XCTFail("Decoding \(bytes) got wrong error: \(e)", file: file, line: line) @@ -254,7 +254,7 @@ final class Test_Required: XCTestCase, PBTestHelpers { do { let _: [UInt8] = try message.serializedBytes() XCTFail("Swift encode should have failed: \(message)", file: file, line: line) - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryEncoding.missingRequiredFields) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryEncoding.missingRequiredFields()) { // Correct error! print("sdfdsf") } catch let e { @@ -358,7 +358,7 @@ final class Test_SmallRequired: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(serializedBytes: bytes) XCTFail("Swift decode should have failed: \(bytes)", file: file, line: line) - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryDecoding.missingRequiredFields) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryDecoding.missingRequiredFields()) { // Correct error! } catch let e { XCTFail("Decoding \(bytes) got wrong error: \(e)", file: file, line: line) @@ -415,7 +415,7 @@ final class Test_SmallRequired: XCTestCase, PBTestHelpers { do { let _: [UInt8] = try message.serializedBytes() XCTFail("Swift encode should have failed: \(message)", file: file, line: line) - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryEncoding.missingRequiredFields) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryEncoding.missingRequiredFields()) { // Correct error! } catch let e { XCTFail("Encoding got wrong error: \(e) for \(message)", file: file, line: line) diff --git a/Tests/SwiftProtobufTests/Test_Struct.swift b/Tests/SwiftProtobufTests/Test_Struct.swift index e0f9007c9..08768a45b 100644 --- a/Tests/SwiftProtobufTests/Test_Struct.swift +++ b/Tests/SwiftProtobufTests/Test_Struct.swift @@ -221,7 +221,7 @@ final class Test_JSON_Value: XCTestCase, PBTestHelpers { do { _ = try empty.jsonString() XCTFail("Encoding should have thrown .missingValue, but it succeeded") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .JSONEncoding.missingValue) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .JSONEncoding.missingValue()) { // Nothing to do here; this is the expected error. } catch { XCTFail("Encoding should have thrown .missingValue, but instead it threw: \(error)") diff --git a/Tests/SwiftProtobufTests/Test_TextFormatDecodingOptions.swift b/Tests/SwiftProtobufTests/Test_TextFormatDecodingOptions.swift index f4a3fc66f..8b00e0987 100644 --- a/Tests/SwiftProtobufTests/Test_TextFormatDecodingOptions.swift +++ b/Tests/SwiftProtobufTests/Test_TextFormatDecodingOptions.swift @@ -38,7 +38,7 @@ final class Test_TextFormatDecodingOptions: XCTestCase { if !expectSuccess { XCTFail("Should not have succeed, limit: \(limit)") } - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.messageDepthLimit) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.messageDepthLimit()) { if expectSuccess { XCTFail("Decode failed because of limit, but should *NOT* have, limit: \(limit)") } else { diff --git a/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift b/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift index c342f489d..8b698005f 100644 --- a/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift +++ b/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift @@ -41,7 +41,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { // This is what should have happened. } @@ -61,7 +61,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { // This is what should have happened. } @@ -81,7 +81,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { // This is what should have happened. } @@ -102,7 +102,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { // This is what should have happened. } @@ -124,7 +124,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { // This is what should have happened. } @@ -186,7 +186,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { // This is what should have happened. } @@ -248,7 +248,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { // This is what should have happened. } @@ -281,7 +281,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { // This is what should have happened. } @@ -301,7 +301,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { // This is what should have happened. } @@ -352,7 +352,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { // This is what should have happened. } @@ -376,7 +376,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { // This is what should have happened. } diff --git a/Tests/SwiftProtobufTests/Test_Wrappers.swift b/Tests/SwiftProtobufTests/Test_Wrappers.swift index 7dc1a95a0..b0f389145 100644 --- a/Tests/SwiftProtobufTests/Test_Wrappers.swift +++ b/Tests/SwiftProtobufTests/Test_Wrappers.swift @@ -25,7 +25,7 @@ final class Test_Wrappers: XCTestCase { do { _ = try type.init(jsonString: "null") XCTFail("Expected decode to throw .illegalNull, but it succeeded") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .JSONDecoding.illegalNull) { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .JSONDecoding.illegalNull()) { // Nothing to do; this is the expected error. } catch { XCTFail("Expected decode to throw .illegalNull, but instead it threw: \(error)") From 3241a611b93b01dc31dcda9d88a3ce218b9e6bd1 Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Tue, 9 Apr 2024 14:55:11 +0100 Subject: [PATCH 07/19] Add binaryStreamDecodingError code --- .../SwiftProtobuf/AsyncMessageSequence.swift | 6 +- Sources/SwiftProtobuf/BinaryDelimited.swift | 81 +++------------- .../SwiftProtobuf/SwiftProtobufError.swift | 92 +++++++++++++++++++ .../Test_AsyncMessageSequence.swift | 12 +-- .../Test_BinaryDelimited.swift | 8 +- 5 files changed, 117 insertions(+), 82 deletions(-) diff --git a/Sources/SwiftProtobuf/AsyncMessageSequence.swift b/Sources/SwiftProtobuf/AsyncMessageSequence.swift index c94f8ebcb..370adc659 100644 --- a/Sources/SwiftProtobuf/AsyncMessageSequence.swift +++ b/Sources/SwiftProtobuf/AsyncMessageSequence.swift @@ -122,7 +122,7 @@ public struct AsyncMessageSequence< shift += UInt64(7) if shift > 35 { iterator = nil - throw SwiftProtobufError.BinaryDecoding.malformedLength() + throw SwiftProtobufError.BinaryStreamDecoding.malformedLength() } if (byte & 0x80 == 0) { return messageSize @@ -131,7 +131,7 @@ public struct AsyncMessageSequence< if (shift > 0) { // The stream has ended inside a varint. iterator = nil - throw SwiftProtobufError.BinaryDecoding.truncated() + throw SwiftProtobufError.BinaryStreamDecoding.truncated() } return nil // End of stream reached. } @@ -153,7 +153,7 @@ public struct AsyncMessageSequence< guard let byte = try await iterator?.next() else { // The iterator hit the end, but the chunk wasn't filled, so the full // payload wasn't read. - throw SwiftProtobufError.BinaryDecoding.truncated() + throw SwiftProtobufError.BinaryStreamDecoding.truncated() } chunk[consumedBytes] = byte consumedBytes += 1 diff --git a/Sources/SwiftProtobuf/BinaryDelimited.swift b/Sources/SwiftProtobuf/BinaryDelimited.swift index 895860a79..351e35929 100644 --- a/Sources/SwiftProtobuf/BinaryDelimited.swift +++ b/Sources/SwiftProtobuf/BinaryDelimited.swift @@ -16,63 +16,6 @@ import Foundation #endif -extension SwiftProtobufError.BinaryDecoding { - /// If a read/write to the stream fails, but the stream's `streamError` is nil, - /// this error will be thrown instead since the stream didn't provide anything - /// more specific. A common cause for this can be failing to open the stream - /// before trying to read/write to it. - public static func unknownStreamError( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .binaryDecodingError, - message: "Unknown error when reading/writing binary-delimited message into stream.", - location: .init(function: function, file: file, line: line) - ) - } - - /// While attempting to read the length of a message on the stream, the - /// bytes were malformed for the protobuf format. - public static func malformedLength( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .binaryDecodingError, - message: """ - While attempting to read the length of a binary-delimited message \ - on the stream, the bytes were malformed for the protobuf format. - """, - location: .init(function: function, file: file, line: line) - ) - } - - /// This isn't really an error. `InputStream` documents that - /// `hasBytesAvailable` _may_ return `True` if a read is needed to - /// determine if there really are bytes available. So this "error" is thrown - /// when a `parse` or `merge` fails because there were no bytes available. - /// If this is raised, the callers should decide via what ever other means - /// are correct if the stream has completely ended or if more bytes might - /// eventually show up. - public static func noBytesAvailable( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .binaryDecodingError, - message: """ - This is not really an error: please read the documentation for - `SwiftProtobufError/BinaryDecoding/noBytesAvailable` for more information. - """, - location: .init(function: function, file: file, line: line) - ) - } -} - /// Helper methods for reading/writing messages with a length prefix. public enum BinaryDelimited { /// Additional errors for delimited message handing. @@ -103,7 +46,7 @@ public enum BinaryDelimited { /// - partial: If `false` (the default), this method will check /// ``Message/isInitialized-6abgi`` before encoding to verify that all required /// fields are present. If any are missing, this method throws - /// ``SwiftProtobufError/BinaryEncoding/missingRequiredFields``. + /// ``SwiftProtobufError/BinaryStreamDecoding/missingRequiredFields``. /// - Throws: ``SwiftProtobufError`` if encoding fails or some writing errors occur; or the /// underlying `OutputStream.streamError` for a stream error. public static func serialize( @@ -136,9 +79,9 @@ public enum BinaryDelimited { if let streamError = stream.streamError { throw streamError } - throw SwiftProtobufError.BinaryDecoding.unknownStreamError() + throw SwiftProtobufError.BinaryStreamDecoding.unknownStreamError() } - throw SwiftProtobufError.BinaryEncoding.truncated() + throw SwiftProtobufError.BinaryStreamDecoding.truncated() } } @@ -158,7 +101,7 @@ public enum BinaryDelimited { /// - partial: If `false` (the default), this method will check /// ``Message/isInitialized-6abgi`` after decoding to verify that all required /// fields are present. If any are missing, this method throws - /// ``SwiftProtobufError/BinaryDecoding/missingRequiredFields``. + /// ``SwiftProtobufError/BinaryStreamDecoding/missingRequiredFields``. /// - options: The ``BinaryDecodingOptions`` to use. /// - Returns: The message read. /// - Throws: ``SwiftProtobufError`` if decoding fails, and for some reading errors; or the @@ -199,7 +142,7 @@ public enum BinaryDelimited { /// - partial: If `false` (the default), this method will check /// ``Message/isInitialized-6abgi`` after decoding to verify that all required /// fields are present. If any are missing, this method throws - /// ``SwiftProtobufError/BinaryDecoding/missingRequiredFields``. + /// ``SwiftProtobufError/BinaryStreamDecoding/missingRequiredFields``. /// - options: The BinaryDecodingOptions to use. /// - Throws: ``SwiftProtobufError`` if decoding fails, and for some reading errors; or the /// underlying `InputStream.streamError` for a stream error. @@ -216,7 +159,7 @@ public enum BinaryDelimited { return } guard unsignedLength <= 0x7fffffff else { - throw SwiftProtobufError.BinaryDecoding.tooLarge() + throw SwiftProtobufError.BinaryStreamDecoding.tooLarge() } let length = Int(unsignedLength) @@ -243,11 +186,11 @@ public enum BinaryDelimited { if let streamError = stream.streamError { throw streamError } - throw SwiftProtobufError.BinaryDecoding.unknownStreamError() + throw SwiftProtobufError.BinaryStreamDecoding.unknownStreamError() } if bytesRead == 0 { // Hit the end of the stream - throw SwiftProtobufError.BinaryDecoding.truncated() + throw SwiftProtobufError.BinaryStreamDecoding.truncated() } if bytesRead < chunk.count { data += chunk[0.. UInt64 { if let streamError = stream.streamError { throw streamError } - throw SwiftProtobufError.BinaryDecoding.unknownStreamError() + throw SwiftProtobufError.BinaryStreamDecoding.unknownStreamError() } } @@ -296,9 +239,9 @@ internal func decodeVarint(_ stream: InputStream) throws -> UInt64 { while true { guard let c = try nextByte() else { if shift == 0 { - throw SwiftProtobufError.BinaryDecoding.noBytesAvailable() + throw SwiftProtobufError.BinaryStreamDecoding.noBytesAvailable() } - throw SwiftProtobufError.BinaryDecoding.truncated() + throw SwiftProtobufError.BinaryStreamDecoding.truncated() } value |= UInt64(c & 0x7f) << shift if c & 0x80 == 0 { @@ -306,7 +249,7 @@ internal func decodeVarint(_ stream: InputStream) throws -> UInt64 { } shift += 7 if shift > 63 { - throw SwiftProtobufError.BinaryDecoding.malformedLength() + throw SwiftProtobufError.BinaryStreamDecoding.malformedLength() } } } diff --git a/Sources/SwiftProtobuf/SwiftProtobufError.swift b/Sources/SwiftProtobuf/SwiftProtobufError.swift index 1972d2abb..3665049b0 100644 --- a/Sources/SwiftProtobuf/SwiftProtobufError.swift +++ b/Sources/SwiftProtobuf/SwiftProtobufError.swift @@ -91,6 +91,7 @@ extension SwiftProtobufError { private enum Wrapped: Hashable, Sendable, CustomStringConvertible { case binaryEncodingError case binaryDecodingError + case binaryStreamDecodingError case jsonEncodingError case jsonDecodingError case textFormatDecodingError @@ -103,6 +104,8 @@ extension SwiftProtobufError { return "Binary encoding error" case .binaryDecodingError: return "Binary decoding error" + case .binaryStreamDecodingError: + return "Stream decoding error" case .jsonEncodingError: return "JSON encoding error" case .jsonDecodingError: @@ -134,6 +137,10 @@ extension SwiftProtobufError { Self(.binaryDecodingError) } + public static var binaryStreamDecodingError: Self { + Self(.binaryStreamDecodingError) + } + public static var jsonEncodingError: Self { Self(.jsonEncodingError) } @@ -390,6 +397,91 @@ extension SwiftProtobufError { } } + /// Errors arising from decoding streams of binary messages. These errors have to do with the framing + /// of the messages in the stream, or the stream as a whole. + public enum BinaryStreamDecoding { + /// If a read/write to the stream fails, but the stream's `streamError` is nil, + /// this error will be thrown instead since the stream didn't provide anything + /// more specific. A common cause for this can be failing to open the stream + /// before trying to read/write to it. + public static func unknownStreamError( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryStreamDecodingError, + message: "Unknown error when reading/writing binary-delimited message into stream.", + location: .init(function: function, file: file, line: line) + ) + } + + /// While reading/writing to the stream, less than the expected bytes was read/written. + public static func truncated( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryStreamDecodingError, + message: "The end of the data was reached before it was expected.", + location: SourceLocation(function: function, file: file, line: line) + ) + } + + /// Message is too large. Bytes and Strings have a max size of 2GB. + public static func tooLarge( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryStreamDecodingError, + message: "Message too large: Bytes and Strings have a max size of 2GB.", + location: SourceLocation(function: function, file: file, line: line) + ) + } + + /// While attempting to read the length of a message on the stream, the + /// bytes were malformed for the protobuf format. + public static func malformedLength( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryStreamDecodingError, + message: """ + While attempting to read the length of a binary-delimited message \ + on the stream, the bytes were malformed for the protobuf format. + """, + location: .init(function: function, file: file, line: line) + ) + } + + /// This isn't really an error. `InputStream` documents that + /// `hasBytesAvailable` _may_ return `True` if a read is needed to + /// determine if there really are bytes available. So this "error" is thrown + /// when a `parse` or `merge` fails because there were no bytes available. + /// If this is raised, the callers should decide via what ever other means + /// are correct if the stream has completely ended or if more bytes might + /// eventually show up. + public static func noBytesAvailable( + function: String = #function, + file: String = #fileID, + line: Int = #line + ) -> SwiftProtobufError { + SwiftProtobufError( + code: .binaryStreamDecodingError, + message: """ + This is not really an error: please read the documentation for + `SwiftProtobufError/BinaryStreamDecoding/noBytesAvailable` for more information. + """, + location: .init(function: function, file: file, line: line) + ) + } + } + /// Errors arising from encoding protobufs into JSON. public enum JSONEncoding { /// Timestamp values can only be JSON encoded if they hold a value diff --git a/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift b/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift index 5c703edf9..68990868e 100644 --- a/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift +++ b/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift @@ -126,11 +126,11 @@ final class Test_AsyncMessageSequence: XCTestCase { XCTFail("Shouldn't have returned a value for an empty stream.") } } catch { - if self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.truncated()) { + if self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryStreamDecoding.truncated()) { truncatedThrown = true } } - XCTAssertTrue(truncatedThrown, "Should throw a SwiftProtobufError.BinaryDecoding.truncated") + XCTAssertTrue(truncatedThrown, "Should throw a SwiftProtobufError.BinaryStreamDecoding.truncated") } // Single varint describing a 2GB message @@ -157,11 +157,11 @@ final class Test_AsyncMessageSequence: XCTestCase { XCTFail("Shouldn't have returned a value for an empty stream.") } } catch { - if self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.truncated()) { + if self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryStreamDecoding.truncated()) { truncatedThrown = true } } - XCTAssertTrue(truncatedThrown, "Should throw a BinaryDelimited.Error.truncated") + XCTAssertTrue(truncatedThrown, "Should throw a SwiftProtobufError.BinaryStreamDecoding.truncated") } // Stream with a valid varint and message, but the following varint is truncated @@ -189,11 +189,11 @@ final class Test_AsyncMessageSequence: XCTestCase { } XCTAssertEqual(count, 1, "One message should be deserialized") } catch { - if self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.truncated()) { + if self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryStreamDecoding.truncated()) { truncatedThrown = true } } - XCTAssertTrue(truncatedThrown, "Should throw a BinaryDelimited.Error.truncated") + XCTAssertTrue(truncatedThrown, "Should throw a SwiftProtobuf.BinaryStreamDecoding.truncated") } // Slow test case found by oss-fuzz: 1 million zero-sized messages diff --git a/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift b/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift index c2c76c0fb..d6e03678c 100644 --- a/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift +++ b/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift @@ -40,14 +40,14 @@ final class Test_BinaryDelimited: XCTestCase { func assertParseFails(atEndOfStream istream: InputStream) { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.noBytesAvailable())) + XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryStreamDecoding.noBytesAvailable())) } } func assertParsing(failsWithTruncatedStream istream: InputStream) { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.truncated())) + XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryStreamDecoding.truncated())) } } @@ -90,7 +90,7 @@ final class Test_BinaryDelimited: XCTestCase { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.tooLarge())) + XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryStreamDecoding.tooLarge())) } } @@ -99,7 +99,7 @@ final class Test_BinaryDelimited: XCTestCase { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryDecoding.malformedLength())) + XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryStreamDecoding.malformedLength())) } } From d017b138a94475b1b9a268154191ce0a675ba6ca Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Thu, 11 Apr 2024 17:23:34 +0100 Subject: [PATCH 08/19] Revert changes to ProtoFileToModuleMappings --- .../ProtoFileToModuleMappings.swift | 90 +++---------------- .../Test_ProtoFileToModuleMappings.swift | 45 ++++++---- 2 files changed, 38 insertions(+), 97 deletions(-) diff --git a/Sources/SwiftProtobufPluginLibrary/ProtoFileToModuleMappings.swift b/Sources/SwiftProtobufPluginLibrary/ProtoFileToModuleMappings.swift index a1ef6e964..5b8549521 100644 --- a/Sources/SwiftProtobufPluginLibrary/ProtoFileToModuleMappings.swift +++ b/Sources/SwiftProtobufPluginLibrary/ProtoFileToModuleMappings.swift @@ -13,81 +13,13 @@ // ----------------------------------------------------------------------------- import Foundation -import SwiftProtobuf private let defaultSwiftProtobufModuleName = "SwiftProtobuf" -extension SwiftProtobufError { - public enum ProtoFileToModuleMapping { - /// Raised if the path wasn't found. - /// - Parameter path: The path that wasn't found. - public static func failToOpen( - path: String, - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .invalidArgument, - message: "Path not found: \(path)", - location: .init(function: function, file: file, line: line) - ) - } - - /// Raised if a mapping entry in the protobuf doesn't have a module name. - /// - Parameter mappingIndex: The index (0-N) of the mapping. - public static func entryMissingModuleName( - mappingIndex: Int, - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .invalidArgument, - message: "Error with proto file to module mapping: mapping with index \(mappingIndex) doesn't have a module name.", - location: .init(function: function, file: file, line: line) - ) - } - - /// Raised if a mapping entry in the protobuf doesn't have any proto files listed. - /// - Parameter mappingIndex: The index (0-N) of the mapping. - public static func entryHasNoProtoPaths( - mappingIndex: Int, - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .invalidArgument, - message: "Error with proto file to module mapping: mapping with index \(mappingIndex) doesn't have any proto files listed.", - location: .init(function: function, file: file, line: line) - ) - } - - /// The given proto path was listed for both modules. - public static func duplicateProtoPathMapping( - path: String, - firstModule: String, - secondModule: String, - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .invalidArgument, - message: "Error with proto file to module mapping - The given path (\(path)) was listed in two modules: '\(firstModule)' and '\(secondModule)'.", - location: .init(function: function, file: file, line: line) - ) - } - } -} - - /// Handles the mapping of proto files to the modules they will be compiled into. public struct ProtoFileToModuleMappings { /// Errors raised from parsing mappings - @available(*, deprecated, message: "This error type has been deprecated and won't be thrown anymore; it has been replaced by `SwiftProtobufError`.") public enum LoadError: Error { /// Raised if the path wasn't found. case failToOpen(path: String) @@ -117,49 +49,47 @@ public struct ProtoFileToModuleMappings { /// We expect to find the WKTs in the module named here. public let swiftProtobufModuleName: String - /// Loads and parses the given module mapping from disk. - /// - Throws: ``SwiftProtobuf/SwiftProtobufError``. + /// Loads and parses the given module mapping from disk. Raises LoadError + /// or TextFormatDecodingError. public init(path: String) throws { try self.init(path: path, swiftProtobufModuleName: nil) } - /// Loads and parses the given module mapping from disk. - /// - Throws: ``SwiftProtobuf/SwiftProtobufError``. + /// Loads and parses the given module mapping from disk. Raises LoadError + /// or TextFormatDecodingError. public init(path: String, swiftProtobufModuleName: String?) throws { let content: String do { content = try String(contentsOfFile: path, encoding: String.Encoding.utf8) } catch { - throw SwiftProtobufError.ProtoFileToModuleMapping.failToOpen(path: path) + throw LoadError.failToOpen(path: path) } let mappingsProto = try SwiftProtobuf_GenSwift_ModuleMappings(textFormatString: content) try self.init(moduleMappingsProto: mappingsProto, swiftProtobufModuleName: swiftProtobufModuleName) } - /// Parses the given module mapping. - /// - Throws: ``SwiftProtobuf/SwiftProtobufError``. + /// Parses the given module mapping. Raises LoadError. public init(moduleMappingsProto mappings: SwiftProtobuf_GenSwift_ModuleMappings) throws { try self.init(moduleMappingsProto: mappings, swiftProtobufModuleName: nil) } - /// Parses the given module mapping - /// - Throws: ``SwiftProtobuf/SwiftProtobufError``. + /// Parses the given module mapping. Raises LoadError. public init(moduleMappingsProto mappings: SwiftProtobuf_GenSwift_ModuleMappings, swiftProtobufModuleName: String?) throws { self.swiftProtobufModuleName = swiftProtobufModuleName ?? defaultSwiftProtobufModuleName var builder = wktMappings(swiftProtobufModuleName: self.swiftProtobufModuleName) let initialCount = builder.count for (idx, mapping) in mappings.mapping.lazy.enumerated() { if mapping.moduleName.isEmpty { - throw SwiftProtobufError.ProtoFileToModuleMapping.entryMissingModuleName(mappingIndex: idx) + throw LoadError.entryMissingModuleName(mappingIndex: idx) } if mapping.protoFilePath.isEmpty { - throw SwiftProtobufError.ProtoFileToModuleMapping.entryHasNoProtoPaths(mappingIndex: idx) + throw LoadError.entryHasNoProtoPaths(mappingIndex: idx) } for path in mapping.protoFilePath { if let existing = builder[path] { if existing != mapping.moduleName { - throw SwiftProtobufError.ProtoFileToModuleMapping.duplicateProtoPathMapping(path: path, + throw LoadError.duplicateProtoPathMapping(path: path, firstModule: existing, secondModule: mapping.moduleName) } diff --git a/Tests/SwiftProtobufPluginLibraryTests/Test_ProtoFileToModuleMappings.swift b/Tests/SwiftProtobufPluginLibraryTests/Test_ProtoFileToModuleMappings.swift index 916530d90..5442db709 100644 --- a/Tests/SwiftProtobufPluginLibraryTests/Test_ProtoFileToModuleMappings.swift +++ b/Tests/SwiftProtobufPluginLibraryTests/Test_ProtoFileToModuleMappings.swift @@ -9,11 +9,23 @@ // ----------------------------------------------------------------------------- import XCTest +import SwiftProtobuf import SwiftProtobufTestHelpers - -@testable import SwiftProtobuf @testable import SwiftProtobufPluginLibrary +// Support equality to simplify testing of getting the correct errors. +extension ProtoFileToModuleMappings.LoadError: Equatable { + public static func ==(lhs: ProtoFileToModuleMappings.LoadError, rhs: ProtoFileToModuleMappings.LoadError) -> Bool { + switch (lhs, rhs) { + case (.entryMissingModuleName(let l), .entryMissingModuleName(let r)): return l == r + case (.entryHasNoProtoPaths(let l), .entryHasNoProtoPaths(let r)): return l == r + case (.duplicateProtoPathMapping(let l1, let l2, let l3), + .duplicateProtoPathMapping(let r1, let r2, let r3)): return l1 == r1 && l2 == r2 && l3 == r3 + default: return false + } + } +} + // Helpers to make test cases. fileprivate typealias FileDescriptorProto = Google_Protobuf_FileDescriptorProto @@ -74,40 +86,40 @@ final class Test_ProtoFileToModuleMappings: XCTestCase { func test_Initialization_InvalidConfigs() { // This are valid text format, but not valid config protos. // (input, expected_error_type) - let partialConfigs: [(String, SwiftProtobufError)] = [ + let partialConfigs: [(String, ProtoFileToModuleMappings.LoadError)] = [ // No module or proto files - ("mapping { }", .ProtoFileToModuleMapping.entryMissingModuleName(mappingIndex: 0)), + ("mapping { }", .entryMissingModuleName(mappingIndex: 0)), // No proto files - ("mapping { module_name: \"foo\" }", .ProtoFileToModuleMapping.entryHasNoProtoPaths(mappingIndex: 0)), + ("mapping { module_name: \"foo\" }", .entryHasNoProtoPaths(mappingIndex: 0)), // No module - ("mapping { proto_file_path: [\"foo\"] }", .ProtoFileToModuleMapping.entryMissingModuleName(mappingIndex: 0)), - ("mapping { proto_file_path: [\"foo\", \"bar\"] }", .ProtoFileToModuleMapping.entryMissingModuleName(mappingIndex: 0)), + ("mapping { proto_file_path: [\"foo\"] }", .entryMissingModuleName(mappingIndex: 0)), + ("mapping { proto_file_path: [\"foo\", \"bar\"] }", .entryMissingModuleName(mappingIndex: 0)), // Empty module name. - ("mapping { module_name: \"\" }", .ProtoFileToModuleMapping.entryMissingModuleName(mappingIndex: 0)), - ("mapping { module_name: \"\", proto_file_path: [\"foo\"] }", .ProtoFileToModuleMapping.entryMissingModuleName(mappingIndex: 0)), - ("mapping { module_name: \"\", proto_file_path: [\"foo\", \"bar\"] }", .ProtoFileToModuleMapping.entryMissingModuleName(mappingIndex: 0)), + ("mapping { module_name: \"\" }", .entryMissingModuleName(mappingIndex: 0)), + ("mapping { module_name: \"\", proto_file_path: [\"foo\"] }", .entryMissingModuleName(mappingIndex: 0)), + ("mapping { module_name: \"\", proto_file_path: [\"foo\", \"bar\"] }", .entryMissingModuleName(mappingIndex: 0)), // Throw some on a second entry just to check that also. ("mapping { module_name: \"good\", proto_file_path: \"file.proto\" }\n" + "mapping { }", - .ProtoFileToModuleMapping.entryMissingModuleName(mappingIndex: 1)), + .entryMissingModuleName(mappingIndex: 1)), ("mapping { module_name: \"good\", proto_file_path: \"file.proto\" }\n" + "mapping { module_name: \"foo\" }", - .ProtoFileToModuleMapping.entryHasNoProtoPaths(mappingIndex: 1)), + .entryHasNoProtoPaths(mappingIndex: 1)), // Duplicates ("mapping { module_name: \"foo\", proto_file_path: \"abc\" }\n" + "mapping { module_name: \"bar\", proto_file_path: \"abc\" }", - .ProtoFileToModuleMapping.duplicateProtoPathMapping(path: "abc", firstModule: "foo", secondModule: "bar")), + .duplicateProtoPathMapping(path: "abc", firstModule: "foo", secondModule: "bar")), ("mapping { module_name: \"foo\", proto_file_path: \"abc\" }\n" + "mapping { module_name: \"bar\", proto_file_path: \"xyz\" }\n" + "mapping { module_name: \"baz\", proto_file_path: \"abc\" }", - .ProtoFileToModuleMapping.duplicateProtoPathMapping(path: "abc", firstModule: "foo", secondModule: "baz")), + .duplicateProtoPathMapping(path: "abc", firstModule: "foo", secondModule: "baz")), ] for (idx, (configText, expected)) in partialConfigs.enumerated() { @@ -122,9 +134,8 @@ final class Test_ProtoFileToModuleMappings: XCTestCase { do { let _ = try ProtoFileToModuleMappings(moduleMappingsProto: config) XCTFail("Shouldn't have gotten here, index \(idx)") - } catch let error as SwiftProtobufError { - XCTAssertEqual(error.code, expected.code, "Index \(idx)") - XCTAssertEqual(error.message, expected.message, "Index \(idx)") + } catch let error as ProtoFileToModuleMappings.LoadError { + XCTAssertEqual(error, expected, "Index \(idx)") } catch let error { XCTFail("Index \(idx) - Unexpected error: \(error)") } From 3c411983d50c75c47fb3fc623ae57f59c64761c4 Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Thu, 11 Apr 2024 17:57:37 +0100 Subject: [PATCH 09/19] Add new Codes, getters, and documentation --- .../SwiftProtobuf/SwiftProtobufError.swift | 80 ++++++++++++++++++- .../Test_JSONDecodingOptions.swift | 2 +- 2 files changed, 78 insertions(+), 4 deletions(-) diff --git a/Sources/SwiftProtobuf/SwiftProtobufError.swift b/Sources/SwiftProtobuf/SwiftProtobufError.swift index 3665049b0..843926a17 100644 --- a/Sources/SwiftProtobuf/SwiftProtobufError.swift +++ b/Sources/SwiftProtobuf/SwiftProtobufError.swift @@ -97,6 +97,11 @@ extension SwiftProtobufError { case textFormatDecodingError case invalidArgument case internalError + + // These are not domains, but rather specific errors for which we + // want to have associated types, and thus require special treatment. + case anyTypeURLNotRegistered(typeURL: String) + case unknownField(name: String) var description: String { switch self { @@ -116,10 +121,15 @@ extension SwiftProtobufError { return "An argument provided by the user is invalid" case .internalError: return "Other internal error" + case .anyTypeURLNotRegistered(let typeURL): + return "Type URL not registered: \(typeURL)" + case .unknownField(let name): + return "Unknown field: \(name)" } } } + /// This Code's description. public var description: String { String(describing: self.code) } @@ -129,37 +139,101 @@ extension SwiftProtobufError { self.code = code } + /// Errors arising from encoding protobufs into binary data. public static var binaryEncodingError: Self { Self(.binaryEncodingError) } + /// Errors arising from binary decoding of data into protobufs. public static var binaryDecodingError: Self { Self(.binaryDecodingError) } + /// Errors arising from decoding streams of binary messages. These errors have to do with the framing + /// of the messages in the stream, or the stream as a whole. public static var binaryStreamDecodingError: Self { Self(.binaryStreamDecodingError) } + /// Errors arising from encoding protobufs into JSON. public static var jsonEncodingError: Self { Self(.jsonEncodingError) } + /// Errors arising from JSON decoding of data into protobufs. public static var jsonDecodingError: Self { Self(.jsonDecodingError) } + /// Errors arising from text format decoding of data into protobufs. public static var textFormatDecodingError: Self { Self(.textFormatDecodingError) } + /// Errors arising from an invalid argument being passed by the caller. public static var invalidArgument: Self { Self(.invalidArgument) } + /// Errors arising from some invalid internal state. public static var internalError: Self { Self(.internalError) } + + /// `Any` fields that were decoded from JSON cannot be re-encoded to binary + /// unless the object they hold is a well-known type or a type registered via + /// `Google_Protobuf_Any.register()`. + /// This Code refers to errors that arise from this scenario. + /// + /// - Parameter typeURL: The URL for the unregistered type. + /// - Returns: A `SwiftProtobufError.Code`. + public static func anyTypeURLNotRegistered(typeURL: String) -> Self { + Self(.anyTypeURLNotRegistered(typeURL: typeURL)) + } + + /// Errors arising from decoding JSON objects and encountering an unknown field. + /// + /// - Parameter name: The name of the encountered unknown field. + /// - Returns: A `SwiftProtobufError.Code`. + public static func unknownField(name: String) -> Self { + Self(.unknownField(name: name)) + } + + /// The unregistered type URL that caused the error, if any is associated with this `Code`. + public var unregisteredTypeURL: String? { + switch self.code { + case .anyTypeURLNotRegistered(let typeURL): + return typeURL + case .binaryEncodingError, + .binaryDecodingError, + .binaryStreamDecodingError, + .jsonEncodingError, + .jsonDecodingError, + .textFormatDecodingError, + .invalidArgument, + .internalError, + .unknownField: + return nil + } + } + + /// The unknown field name that caused the error, if any is associated with this `Code`. + public var unknownFieldName: String? { + switch self.code { + case .unknownField(let name): + return name + case .binaryEncodingError, + .binaryDecodingError, + .binaryStreamDecodingError, + .jsonEncodingError, + .jsonDecodingError, + .textFormatDecodingError, + .invalidArgument, + .internalError, + .anyTypeURLNotRegistered: + return nil + } + } } /// A location within source code. @@ -250,7 +324,7 @@ extension SwiftProtobufError { line: Int = #line ) -> SwiftProtobufError { SwiftProtobufError( - code: .binaryEncodingError, + code: .anyTypeURLNotRegistered(typeURL: typeURL), message: """ Any fields that were decoded from JSON format cannot be re-encoded to binary \ unless the object they hold is a well-known type or a type registered via \ @@ -582,7 +656,7 @@ extension SwiftProtobufError { line: Int = #line ) -> SwiftProtobufError { SwiftProtobufError( - code: .jsonEncodingError, + code: .anyTypeURLNotRegistered(typeURL: typeURL), message: """ Any fields that were decoded from binary format cannot be re-encoded into JSON \ unless the object they hold is a well-known type or a type registered via \ @@ -867,7 +941,7 @@ extension SwiftProtobufError { line: Int = #line ) -> SwiftProtobufError { SwiftProtobufError( - code: .jsonDecodingError, + code: .unknownField(name: name), message: "Encountered an unknown field with name '\(name)'.", location: SourceLocation(function: function, file: file, line: line) ) diff --git a/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift b/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift index d33485f61..d95ae2c23 100644 --- a/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift +++ b/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift @@ -137,7 +137,7 @@ final class Test_JSONDecodingOptions: XCTestCase { let _ = try SwiftProtoTesting_TestEmptyMessage(jsonString: jsonInput) XCTFail("Input \(i): Should not have gotten here! Input: \(jsonInput)") } catch let error as SwiftProtobufError { - XCTAssertEqual(error.code, .jsonDecodingError) + XCTAssertEqual(error.code, .unknownField(name: "unknown")) XCTAssertEqual(error.message, "Encountered an unknown field with name 'unknown'.") } catch let e { XCTFail("Input \(i): Error \(e) decoding into an empty message \(jsonInput)") From 70f1aa08df684270bfa42249e24fc4d6fb84199b Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Mon, 29 Apr 2024 13:23:02 +0100 Subject: [PATCH 10/19] Regenerate protos after rebase --- .../generated_swift_names_enums.proto | 58 +- .../generated_swift_names_messages.proto | 58 +- .../generated_swift_names_enums.pb.swift | 2024 +++++++++++++- .../generated_swift_names_messages.pb.swift | 2474 ++++++++++++++++- .../generated_swift_names_enums.pb.swift | 2024 +++++++++++++- .../generated_swift_names_messages.pb.swift | 2474 ++++++++++++++++- 6 files changed, 9092 insertions(+), 20 deletions(-) diff --git a/Protos/SwiftProtobufTests/generated_swift_names_enums.proto b/Protos/SwiftProtobufTests/generated_swift_names_enums.proto index e590eb066..2cf7884f8 100644 --- a/Protos/SwiftProtobufTests/generated_swift_names_enums.proto +++ b/Protos/SwiftProtobufTests/generated_swift_names_enums.proto @@ -15,6 +15,8 @@ message GeneratedSwiftReservedEnums { enum AnyExtensionField { NONE_AnyExtensionField = 0; } enum AnyMessageExtension { NONE_AnyMessageExtension = 0; } enum AnyMessageStorage { NONE_AnyMessageStorage = 0; } + enum anyTypeURLNotRegistered { NONE_anyTypeURLNotRegistered = 0; } + enum AnyUnpack { NONE_AnyUnpack = 0; } enum AnyUnpackError { NONE_AnyUnpackError = 0; } enum Api { NONE_Api = 0; } enum appended { NONE_appended = 0; } @@ -41,10 +43,12 @@ message GeneratedSwiftReservedEnums { enum begin { NONE_begin = 0; } enum binary { NONE_binary = 0; } enum BinaryDecoder { NONE_BinaryDecoder = 0; } + enum BinaryDecoding { NONE_BinaryDecoding = 0; } enum BinaryDecodingError { NONE_BinaryDecodingError = 0; } enum BinaryDecodingOptions { NONE_BinaryDecodingOptions = 0; } enum BinaryDelimited { NONE_BinaryDelimited = 0; } enum BinaryEncoder { NONE_BinaryEncoder = 0; } + enum BinaryEncoding { NONE_BinaryEncoding = 0; } enum BinaryEncodingError { NONE_BinaryEncodingError = 0; } enum BinaryEncodingMessageSetSizeVisitor { NONE_BinaryEncodingMessageSetSizeVisitor = 0; } enum BinaryEncodingMessageSetVisitor { NONE_BinaryEncodingMessageSetVisitor = 0; } @@ -53,6 +57,8 @@ message GeneratedSwiftReservedEnums { enum BinaryEncodingVisitor { NONE_BinaryEncodingVisitor = 0; } enum binaryOptions { NONE_binaryOptions = 0; } enum binaryProtobufDelimitedMessages { NONE_binaryProtobufDelimitedMessages = 0; } + enum BinaryStreamDecoding { NONE_BinaryStreamDecoding = 0; } + enum binaryStreamDecodingError { NONE_binaryStreamDecodingError = 0; } enum bitPattern { NONE_bitPattern = 0; } enum body { NONE_body = 0; } enum Bool { NONE_Bool = 0; } @@ -166,19 +172,23 @@ message GeneratedSwiftReservedEnums { enum clearVerification { NONE_clearVerification = 0; } enum clearWeak { NONE_clearWeak = 0; } enum clientStreaming { NONE_clientStreaming = 0; } + enum code { NONE_code = 0; } enum codePoint { NONE_codePoint = 0; } enum codeUnits { NONE_codeUnits = 0; } enum Collection { NONE_Collection = 0; } enum com { NONE_com = 0; } enum comma { NONE_comma = 0; } + enum conflictingOneOf { NONE_conflictingOneOf = 0; } enum consumedBytes { NONE_consumedBytes = 0; } enum contentsOf { NONE_contentsOf = 0; } + enum copy { NONE_copy = 0; } enum count { NONE_count = 0; } enum countVarintsInBuffer { NONE_countVarintsInBuffer = 0; } enum csharpNamespace { NONE_csharpNamespace = 0; } enum ctype { NONE_ctype = 0; } enum customCodable { NONE_customCodable = 0; } enum CustomDebugStringConvertible { NONE_CustomDebugStringConvertible = 0; } + enum CustomStringConvertible { NONE_CustomStringConvertible = 0; } enum d { NONE_d = 0; } enum Data { NONE_Data = 0; } enum dataResult { NONE_dataResult = 0; } @@ -257,6 +267,7 @@ message GeneratedSwiftReservedEnums { enum Double { NONE_Double = 0; } enum doubleValue { NONE_doubleValue = 0; } enum Duration { NONE_Duration = 0; } + enum durationRange { NONE_durationRange = 0; } enum E { NONE_E = 0; } enum edition { NONE_edition = 0; } enum EditionDefault { NONE_EditionDefault = 0; } @@ -309,6 +320,7 @@ message GeneratedSwiftReservedEnums { enum extensions { NONE_extensions = 0; } enum extras { NONE_extras = 0; } enum F { NONE_F = 0; } + enum failure { NONE_failure = 0; } enum false { NONE_false = 0; } enum features { NONE_features = 0; } enum FeatureSet { NONE_FeatureSet = 0; } @@ -319,6 +331,7 @@ message GeneratedSwiftReservedEnums { enum fieldData { NONE_fieldData = 0; } enum FieldDescriptorProto { NONE_FieldDescriptorProto = 0; } enum FieldMask { NONE_FieldMask = 0; } + enum fieldMaskConversion { NONE_fieldMaskConversion = 0; } enum fieldName { NONE_fieldName = 0; } enum fieldNameCount { NONE_fieldNameCount = 0; } enum fieldNum { NONE_fieldNum = 0; } @@ -358,6 +371,7 @@ message GeneratedSwiftReservedEnums { enum fromHexDigit { NONE_fromHexDigit = 0; } enum fullName { NONE_fullName = 0; } enum func { NONE_func = 0; } + enum function { NONE_function = 0; } enum G { NONE_G = 0; } enum GeneratedCodeInfo { NONE_GeneratedCodeInfo = 0; } enum get { NONE_get = 0; } @@ -522,6 +536,7 @@ message GeneratedSwiftReservedEnums { enum if { NONE_if = 0; } enum ignoreUnknownExtensionFields { NONE_ignoreUnknownExtensionFields = 0; } enum ignoreUnknownFields { NONE_ignoreUnknownFields = 0; } + enum illegalNull { NONE_illegalNull = 0; } enum index { NONE_index = 0; } enum init { NONE_init = 0; } enum inout { NONE_inout = 0; } @@ -537,9 +552,13 @@ message GeneratedSwiftReservedEnums { enum IntegerLiteralType { NONE_IntegerLiteralType = 0; } enum intern { NONE_intern = 0; } enum Internal { NONE_Internal = 0; } + enum internalError { NONE_internalError = 0; } + enum internalExtensionError { NONE_internalExtensionError = 0; } enum InternalState { NONE_InternalState = 0; } enum into { NONE_into = 0; } enum ints { NONE_ints = 0; } + enum invalidArgument { NONE_invalidArgument = 0; } + enum invalidUTF8 { NONE_invalidUTF8 = 0; } enum isA { NONE_isA = 0; } enum isEqual { NONE_isEqual = 0; } enum isEqualTo { NONE_isEqualTo = 0; } @@ -555,9 +574,11 @@ message GeneratedSwiftReservedEnums { enum javaPackage { NONE_javaPackage = 0; } enum javaStringCheckUtf8 { NONE_javaStringCheckUtf8 = 0; } enum JSONDecoder { NONE_JSONDecoder = 0; } + enum JSONDecoding { NONE_JSONDecoding = 0; } enum JSONDecodingError { NONE_JSONDecodingError = 0; } enum JSONDecodingOptions { NONE_JSONDecodingOptions = 0; } enum jsonEncoder { NONE_jsonEncoder = 0; } + enum JSONEncoding { NONE_JSONEncoding = 0; } enum JSONEncodingError { NONE_JSONEncodingError = 0; } enum JSONEncodingOptions { NONE_JSONEncodingOptions = 0; } enum JSONEncodingVisitor { NONE_JSONEncodingVisitor = 0; } @@ -584,10 +605,12 @@ message GeneratedSwiftReservedEnums { enum lazy { NONE_lazy = 0; } enum leadingComments { NONE_leadingComments = 0; } enum leadingDetachedComments { NONE_leadingDetachedComments = 0; } + enum leadingZero { NONE_leadingZero = 0; } enum length { NONE_length = 0; } enum lessThan { NONE_lessThan = 0; } enum let { NONE_let = 0; } enum lhs { NONE_lhs = 0; } + enum line { NONE_line = 0; } enum list { NONE_list = 0; } enum listOfMessages { NONE_listOfMessages = 0; } enum listValue { NONE_listValue = 0; } @@ -599,6 +622,18 @@ message GeneratedSwiftReservedEnums { enum major { NONE_major = 0; } enum makeAsyncIterator { NONE_makeAsyncIterator = 0; } enum makeIterator { NONE_makeIterator = 0; } + enum malformedAnyField { NONE_malformedAnyField = 0; } + enum malformedBool { NONE_malformedBool = 0; } + enum malformedDuration { NONE_malformedDuration = 0; } + enum malformedFieldMask { NONE_malformedFieldMask = 0; } + enum malformedLength { NONE_malformedLength = 0; } + enum malformedMap { NONE_malformedMap = 0; } + enum malformedNumber { NONE_malformedNumber = 0; } + enum malformedProtobuf { NONE_malformedProtobuf = 0; } + enum malformedString { NONE_malformedString = 0; } + enum malformedText { NONE_malformedText = 0; } + enum malformedTimestamp { NONE_malformedTimestamp = 0; } + enum malformedWellKnownTypeJSON { NONE_malformedWellKnownTypeJSON = 0; } enum mapEntry { NONE_mapEntry = 0; } enum MapKeyType { NONE_MapKeyType = 0; } enum mapToMessages { NONE_mapToMessages = 0; } @@ -624,6 +659,9 @@ message GeneratedSwiftReservedEnums { enum min { NONE_min = 0; } enum minimumEdition { NONE_minimumEdition = 0; } enum minor { NONE_minor = 0; } + enum missingFieldNames { NONE_missingFieldNames = 0; } + enum missingRequiredFields { NONE_missingRequiredFields = 0; } + enum missingValue { NONE_missingValue = 0; } enum Mixin { NONE_Mixin = 0; } enum mixins { NONE_mixins = 0; } enum modifier { NONE_modifier = 0; } @@ -649,9 +687,11 @@ message GeneratedSwiftReservedEnums { enum nextVarInt { NONE_nextVarInt = 0; } enum nil { NONE_nil = 0; } enum nilLiteral { NONE_nilLiteral = 0; } + enum noBytesAvailable { NONE_noBytesAvailable = 0; } enum noStandardDescriptorAccessor { NONE_noStandardDescriptorAccessor = 0; } enum nullValue { NONE_nullValue = 0; } enum number { NONE_number = 0; } + enum numberRange { NONE_numberRange = 0; } enum numberValue { NONE_numberValue = 0; } enum objcClassPrefix { NONE_objcClassPrefix = 0; } enum of { NONE_of = 0; } @@ -782,6 +822,7 @@ message GeneratedSwiftReservedEnums { enum sawSection5Characters { NONE_sawSection5Characters = 0; } enum scan { NONE_scan = 0; } enum scanner { NONE_scanner = 0; } + enum schemaMismatch { NONE_schemaMismatch = 0; } enum seconds { NONE_seconds = 0; } enum self { NONE_self = 0; } enum semantic { NONE_semantic = 0; } @@ -806,6 +847,7 @@ message GeneratedSwiftReservedEnums { enum sourceContext { NONE_sourceContext = 0; } enum sourceEncoding { NONE_sourceEncoding = 0; } enum sourceFile { NONE_sourceFile = 0; } + enum SourceLocation { NONE_SourceLocation = 0; } enum span { NONE_span = 0; } enum split { NONE_split = 0; } enum start { NONE_start = 0; } @@ -833,6 +875,7 @@ message GeneratedSwiftReservedEnums { enum Swift { NONE_Swift = 0; } enum swiftPrefix { NONE_swiftPrefix = 0; } enum SwiftProtobufContiguousBytes { NONE_SwiftProtobufContiguousBytes = 0; } + enum SwiftProtobufError { NONE_SwiftProtobufError = 0; } enum syntax { NONE_syntax = 0; } enum T { NONE_T = 0; } enum tag { NONE_tag = 0; } @@ -842,7 +885,8 @@ message GeneratedSwiftReservedEnums { enum text { NONE_text = 0; } enum textDecoder { NONE_textDecoder = 0; } enum TextFormatDecoder { NONE_TextFormatDecoder = 0; } - enum TextFormatDecodingError { NONE_TextFormatDecodingError = 0; } + enum TextFormatDecoding { NONE_TextFormatDecoding = 0; } + enum textFormatDecodingError { NONE_textFormatDecodingError = 0; } enum TextFormatDecodingOptions { NONE_TextFormatDecodingOptions = 0; } enum TextFormatEncodingOptions { NONE_TextFormatEncodingOptions = 0; } enum TextFormatEncodingVisitor { NONE_TextFormatEncodingVisitor = 0; } @@ -853,16 +897,21 @@ message GeneratedSwiftReservedEnums { enum timeIntervalSince1970 { NONE_timeIntervalSince1970 = 0; } enum timeIntervalSinceReferenceDate { NONE_timeIntervalSinceReferenceDate = 0; } enum Timestamp { NONE_Timestamp = 0; } + enum timestampRange { NONE_timestampRange = 0; } + enum tooLarge { NONE_tooLarge = 0; } enum total { NONE_total = 0; } enum totalArrayDepth { NONE_totalArrayDepth = 0; } enum totalSize { NONE_totalSize = 0; } enum trailingComments { NONE_trailingComments = 0; } + enum trailingGarbage { NONE_trailingGarbage = 0; } enum traverse { NONE_traverse = 0; } enum true { NONE_true = 0; } + enum truncated { NONE_truncated = 0; } enum try { NONE_try = 0; } enum type { NONE_type = 0; } enum typealias { NONE_typealias = 0; } enum TypeEnum { NONE_TypeEnum = 0; } + enum typeMismatch { NONE_typeMismatch = 0; } enum typeName { NONE_typeName = 0; } enum typePrefix { NONE_typePrefix = 0; } enum typeStart { NONE_typeStart = 0; } @@ -882,9 +931,15 @@ message GeneratedSwiftReservedEnums { enum union { NONE_union = 0; } enum uniqueStorage { NONE_uniqueStorage = 0; } enum unknown { NONE_unknown = 0; } + enum unknownField { NONE_unknownField = 0; } + enum unknownFieldName { NONE_unknownFieldName = 0; } enum unknownFields { NONE_unknownFields = 0; } enum UnknownStorage { NONE_UnknownStorage = 0; } + enum unknownStreamError { NONE_unknownStreamError = 0; } enum unpackTo { NONE_unpackTo = 0; } + enum unquotedMapKey { NONE_unquotedMapKey = 0; } + enum unrecognizedEnumValue { NONE_unrecognizedEnumValue = 0; } + enum unregisteredTypeURL { NONE_unregisteredTypeURL = 0; } enum UnsafeBufferPointer { NONE_UnsafeBufferPointer = 0; } enum UnsafeMutablePointer { NONE_UnsafeMutablePointer = 0; } enum UnsafeMutableRawBufferPointer { NONE_UnsafeMutableRawBufferPointer = 0; } @@ -902,6 +957,7 @@ message GeneratedSwiftReservedEnums { enum v { NONE_v = 0; } enum value { NONE_value = 0; } enum valueField { NONE_valueField = 0; } + enum valueNumberNotFinite { NONE_valueNumberNotFinite = 0; } enum values { NONE_values = 0; } enum ValueType { NONE_ValueType = 0; } enum var { NONE_var = 0; } diff --git a/Protos/SwiftProtobufTests/generated_swift_names_messages.proto b/Protos/SwiftProtobufTests/generated_swift_names_messages.proto index a830cd9ec..64738c188 100644 --- a/Protos/SwiftProtobufTests/generated_swift_names_messages.proto +++ b/Protos/SwiftProtobufTests/generated_swift_names_messages.proto @@ -15,6 +15,8 @@ message GeneratedSwiftReservedMessages { message AnyExtensionField { int32 AnyExtensionField = 1; } message AnyMessageExtension { int32 AnyMessageExtension = 1; } message AnyMessageStorage { int32 AnyMessageStorage = 1; } + message anyTypeURLNotRegistered { int32 anyTypeURLNotRegistered = 1; } + message AnyUnpack { int32 AnyUnpack = 1; } message AnyUnpackError { int32 AnyUnpackError = 1; } message Api { int32 Api = 1; } message appended { int32 appended = 1; } @@ -41,10 +43,12 @@ message GeneratedSwiftReservedMessages { message begin { int32 begin = 1; } message binary { int32 binary = 1; } message BinaryDecoder { int32 BinaryDecoder = 1; } + message BinaryDecoding { int32 BinaryDecoding = 1; } message BinaryDecodingError { int32 BinaryDecodingError = 1; } message BinaryDecodingOptions { int32 BinaryDecodingOptions = 1; } message BinaryDelimited { int32 BinaryDelimited = 1; } message BinaryEncoder { int32 BinaryEncoder = 1; } + message BinaryEncoding { int32 BinaryEncoding = 1; } message BinaryEncodingError { int32 BinaryEncodingError = 1; } message BinaryEncodingMessageSetSizeVisitor { int32 BinaryEncodingMessageSetSizeVisitor = 1; } message BinaryEncodingMessageSetVisitor { int32 BinaryEncodingMessageSetVisitor = 1; } @@ -53,6 +57,8 @@ message GeneratedSwiftReservedMessages { message BinaryEncodingVisitor { int32 BinaryEncodingVisitor = 1; } message binaryOptions { int32 binaryOptions = 1; } message binaryProtobufDelimitedMessages { int32 binaryProtobufDelimitedMessages = 1; } + message BinaryStreamDecoding { int32 BinaryStreamDecoding = 1; } + message binaryStreamDecodingError { int32 binaryStreamDecodingError = 1; } message bitPattern { int32 bitPattern = 1; } message body { int32 body = 1; } message Bool { int32 Bool = 1; } @@ -166,19 +172,23 @@ message GeneratedSwiftReservedMessages { message clearVerification { int32 clearVerification = 1; } message clearWeak { int32 clearWeak = 1; } message clientStreaming { int32 clientStreaming = 1; } + message code { int32 code = 1; } message codePoint { int32 codePoint = 1; } message codeUnits { int32 codeUnits = 1; } message Collection { int32 Collection = 1; } message com { int32 com = 1; } message comma { int32 comma = 1; } + message conflictingOneOf { int32 conflictingOneOf = 1; } message consumedBytes { int32 consumedBytes = 1; } message contentsOf { int32 contentsOf = 1; } + message copy { int32 copy = 1; } message count { int32 count = 1; } message countVarintsInBuffer { int32 countVarintsInBuffer = 1; } message csharpNamespace { int32 csharpNamespace = 1; } message ctype { int32 ctype = 1; } message customCodable { int32 customCodable = 1; } message CustomDebugStringConvertible { int32 CustomDebugStringConvertible = 1; } + message CustomStringConvertible { int32 CustomStringConvertible = 1; } message d { int32 d = 1; } message Data { int32 Data = 1; } message dataResult { int32 dataResult = 1; } @@ -257,6 +267,7 @@ message GeneratedSwiftReservedMessages { message Double { int32 Double = 1; } message doubleValue { int32 doubleValue = 1; } message Duration { int32 Duration = 1; } + message durationRange { int32 durationRange = 1; } message E { int32 E = 1; } message edition { int32 edition = 1; } message EditionDefault { int32 EditionDefault = 1; } @@ -309,6 +320,7 @@ message GeneratedSwiftReservedMessages { message extensions { int32 extensions = 1; } message extras { int32 extras = 1; } message F { int32 F = 1; } + message failure { int32 failure = 1; } message false { int32 false = 1; } message features { int32 features = 1; } message FeatureSet { int32 FeatureSet = 1; } @@ -319,6 +331,7 @@ message GeneratedSwiftReservedMessages { message fieldData { int32 fieldData = 1; } message FieldDescriptorProto { int32 FieldDescriptorProto = 1; } message FieldMask { int32 FieldMask = 1; } + message fieldMaskConversion { int32 fieldMaskConversion = 1; } message fieldName { int32 fieldName = 1; } message fieldNameCount { int32 fieldNameCount = 1; } message fieldNum { int32 fieldNum = 1; } @@ -358,6 +371,7 @@ message GeneratedSwiftReservedMessages { message fromHexDigit { int32 fromHexDigit = 1; } message fullName { int32 fullName = 1; } message func { int32 func = 1; } + message function { int32 function = 1; } message G { int32 G = 1; } message GeneratedCodeInfo { int32 GeneratedCodeInfo = 1; } message get { int32 get = 1; } @@ -522,6 +536,7 @@ message GeneratedSwiftReservedMessages { message if { int32 if = 1; } message ignoreUnknownExtensionFields { int32 ignoreUnknownExtensionFields = 1; } message ignoreUnknownFields { int32 ignoreUnknownFields = 1; } + message illegalNull { int32 illegalNull = 1; } message index { int32 index = 1; } message init { int32 init = 1; } message inout { int32 inout = 1; } @@ -537,9 +552,13 @@ message GeneratedSwiftReservedMessages { message IntegerLiteralType { int32 IntegerLiteralType = 1; } message intern { int32 intern = 1; } message Internal { int32 Internal = 1; } + message internalError { int32 internalError = 1; } + message internalExtensionError { int32 internalExtensionError = 1; } message InternalState { int32 InternalState = 1; } message into { int32 into = 1; } message ints { int32 ints = 1; } + message invalidArgument { int32 invalidArgument = 1; } + message invalidUTF8 { int32 invalidUTF8 = 1; } message isA { int32 isA = 1; } message isEqual { int32 isEqual = 1; } message isEqualTo { int32 isEqualTo = 1; } @@ -555,9 +574,11 @@ message GeneratedSwiftReservedMessages { message javaPackage { int32 javaPackage = 1; } message javaStringCheckUtf8 { int32 javaStringCheckUtf8 = 1; } message JSONDecoder { int32 JSONDecoder = 1; } + message JSONDecoding { int32 JSONDecoding = 1; } message JSONDecodingError { int32 JSONDecodingError = 1; } message JSONDecodingOptions { int32 JSONDecodingOptions = 1; } message jsonEncoder { int32 jsonEncoder = 1; } + message JSONEncoding { int32 JSONEncoding = 1; } message JSONEncodingError { int32 JSONEncodingError = 1; } message JSONEncodingOptions { int32 JSONEncodingOptions = 1; } message JSONEncodingVisitor { int32 JSONEncodingVisitor = 1; } @@ -584,10 +605,12 @@ message GeneratedSwiftReservedMessages { message lazy { int32 lazy = 1; } message leadingComments { int32 leadingComments = 1; } message leadingDetachedComments { int32 leadingDetachedComments = 1; } + message leadingZero { int32 leadingZero = 1; } message length { int32 length = 1; } message lessThan { int32 lessThan = 1; } message let { int32 let = 1; } message lhs { int32 lhs = 1; } + message line { int32 line = 1; } message list { int32 list = 1; } message listOfMessages { int32 listOfMessages = 1; } message listValue { int32 listValue = 1; } @@ -599,6 +622,18 @@ message GeneratedSwiftReservedMessages { message major { int32 major = 1; } message makeAsyncIterator { int32 makeAsyncIterator = 1; } message makeIterator { int32 makeIterator = 1; } + message malformedAnyField { int32 malformedAnyField = 1; } + message malformedBool { int32 malformedBool = 1; } + message malformedDuration { int32 malformedDuration = 1; } + message malformedFieldMask { int32 malformedFieldMask = 1; } + message malformedLength { int32 malformedLength = 1; } + message malformedMap { int32 malformedMap = 1; } + message malformedNumber { int32 malformedNumber = 1; } + message malformedProtobuf { int32 malformedProtobuf = 1; } + message malformedString { int32 malformedString = 1; } + message malformedText { int32 malformedText = 1; } + message malformedTimestamp { int32 malformedTimestamp = 1; } + message malformedWellKnownTypeJSON { int32 malformedWellKnownTypeJSON = 1; } message mapEntry { int32 mapEntry = 1; } message MapKeyType { int32 MapKeyType = 1; } message mapToMessages { int32 mapToMessages = 1; } @@ -624,6 +659,9 @@ message GeneratedSwiftReservedMessages { message min { int32 min = 1; } message minimumEdition { int32 minimumEdition = 1; } message minor { int32 minor = 1; } + message missingFieldNames { int32 missingFieldNames = 1; } + message missingRequiredFields { int32 missingRequiredFields = 1; } + message missingValue { int32 missingValue = 1; } message Mixin { int32 Mixin = 1; } message mixins { int32 mixins = 1; } message modifier { int32 modifier = 1; } @@ -649,9 +687,11 @@ message GeneratedSwiftReservedMessages { message nextVarInt { int32 nextVarInt = 1; } message nil { int32 nil = 1; } message nilLiteral { int32 nilLiteral = 1; } + message noBytesAvailable { int32 noBytesAvailable = 1; } message noStandardDescriptorAccessor { int32 noStandardDescriptorAccessor = 1; } message nullValue { int32 nullValue = 1; } message number { int32 number = 1; } + message numberRange { int32 numberRange = 1; } message numberValue { int32 numberValue = 1; } message objcClassPrefix { int32 objcClassPrefix = 1; } message of { int32 of = 1; } @@ -782,6 +822,7 @@ message GeneratedSwiftReservedMessages { message sawSection5Characters { int32 sawSection5Characters = 1; } message scan { int32 scan = 1; } message scanner { int32 scanner = 1; } + message schemaMismatch { int32 schemaMismatch = 1; } message seconds { int32 seconds = 1; } message self { int32 self = 1; } message semantic { int32 semantic = 1; } @@ -806,6 +847,7 @@ message GeneratedSwiftReservedMessages { message sourceContext { int32 sourceContext = 1; } message sourceEncoding { int32 sourceEncoding = 1; } message sourceFile { int32 sourceFile = 1; } + message SourceLocation { int32 SourceLocation = 1; } message span { int32 span = 1; } message split { int32 split = 1; } message start { int32 start = 1; } @@ -833,6 +875,7 @@ message GeneratedSwiftReservedMessages { message Swift { int32 Swift = 1; } message swiftPrefix { int32 swiftPrefix = 1; } message SwiftProtobufContiguousBytes { int32 SwiftProtobufContiguousBytes = 1; } + message SwiftProtobufError { int32 SwiftProtobufError = 1; } message syntax { int32 syntax = 1; } message T { int32 T = 1; } message tag { int32 tag = 1; } @@ -842,7 +885,8 @@ message GeneratedSwiftReservedMessages { message text { int32 text = 1; } message textDecoder { int32 textDecoder = 1; } message TextFormatDecoder { int32 TextFormatDecoder = 1; } - message TextFormatDecodingError { int32 TextFormatDecodingError = 1; } + message TextFormatDecoding { int32 TextFormatDecoding = 1; } + message textFormatDecodingError { int32 textFormatDecodingError = 1; } message TextFormatDecodingOptions { int32 TextFormatDecodingOptions = 1; } message TextFormatEncodingOptions { int32 TextFormatEncodingOptions = 1; } message TextFormatEncodingVisitor { int32 TextFormatEncodingVisitor = 1; } @@ -853,16 +897,21 @@ message GeneratedSwiftReservedMessages { message timeIntervalSince1970 { int32 timeIntervalSince1970 = 1; } message timeIntervalSinceReferenceDate { int32 timeIntervalSinceReferenceDate = 1; } message Timestamp { int32 Timestamp = 1; } + message timestampRange { int32 timestampRange = 1; } + message tooLarge { int32 tooLarge = 1; } message total { int32 total = 1; } message totalArrayDepth { int32 totalArrayDepth = 1; } message totalSize { int32 totalSize = 1; } message trailingComments { int32 trailingComments = 1; } + message trailingGarbage { int32 trailingGarbage = 1; } message traverse { int32 traverse = 1; } message true { int32 true = 1; } + message truncated { int32 truncated = 1; } message try { int32 try = 1; } message type { int32 type = 1; } message typealias { int32 typealias = 1; } message TypeEnum { int32 TypeEnum = 1; } + message typeMismatch { int32 typeMismatch = 1; } message typeName { int32 typeName = 1; } message typePrefix { int32 typePrefix = 1; } message typeStart { int32 typeStart = 1; } @@ -882,9 +931,15 @@ message GeneratedSwiftReservedMessages { message union { int32 union = 1; } message uniqueStorage { int32 uniqueStorage = 1; } message unknown { int32 unknown = 1; } + message unknownField { int32 unknownField = 1; } + message unknownFieldName { int32 unknownFieldName = 1; } message unknownFields { int32 unknownFields = 1; } message UnknownStorage { int32 UnknownStorage = 1; } + message unknownStreamError { int32 unknownStreamError = 1; } message unpackTo { int32 unpackTo = 1; } + message unquotedMapKey { int32 unquotedMapKey = 1; } + message unrecognizedEnumValue { int32 unrecognizedEnumValue = 1; } + message unregisteredTypeURL { int32 unregisteredTypeURL = 1; } message UnsafeBufferPointer { int32 UnsafeBufferPointer = 1; } message UnsafeMutablePointer { int32 UnsafeMutablePointer = 1; } message UnsafeMutableRawBufferPointer { int32 UnsafeMutableRawBufferPointer = 1; } @@ -902,6 +957,7 @@ message GeneratedSwiftReservedMessages { message v { int32 v = 1; } message value { int32 value = 1; } message valueField { int32 valueField = 1; } + message valueNumberNotFinite { int32 valueNumberNotFinite = 1; } message values { int32 values = 1; } message ValueType { int32 ValueType = 1; } message var { int32 var = 1; } diff --git a/Reference/SwiftProtobufTests/generated_swift_names_enums.pb.swift b/Reference/SwiftProtobufTests/generated_swift_names_enums.pb.swift index 6400b19a8..d9bf96fff 100644 --- a/Reference/SwiftProtobufTests/generated_swift_names_enums.pb.swift +++ b/Reference/SwiftProtobufTests/generated_swift_names_enums.pb.swift @@ -361,6 +361,66 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum anyTypeURLNotRegistered: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneAnyTypeUrlnotRegistered // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneAnyTypeUrlnotRegistered + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneAnyTypeUrlnotRegistered + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneAnyTypeUrlnotRegistered: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.anyTypeURLNotRegistered] = [ + .noneAnyTypeUrlnotRegistered, + ] + + } + + enum AnyUnpack: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneAnyUnpack // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneAnyUnpack + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneAnyUnpack + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneAnyUnpack: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.AnyUnpack] = [ + .noneAnyUnpack, + ] + + } + enum AnyUnpackError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneAnyUnpackError // = 0 @@ -1141,6 +1201,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum BinaryDecoding: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneBinaryDecoding // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneBinaryDecoding + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneBinaryDecoding + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneBinaryDecoding: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryDecoding] = [ + .noneBinaryDecoding, + ] + + } + enum BinaryDecodingError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneBinaryDecodingError // = 0 @@ -1261,6 +1351,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum BinaryEncoding: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneBinaryEncoding // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneBinaryEncoding + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneBinaryEncoding + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneBinaryEncoding: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryEncoding] = [ + .noneBinaryEncoding, + ] + + } + enum BinaryEncodingError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneBinaryEncodingError // = 0 @@ -1501,6 +1621,66 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum BinaryStreamDecoding: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneBinaryStreamDecoding // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneBinaryStreamDecoding + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneBinaryStreamDecoding + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneBinaryStreamDecoding: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryStreamDecoding] = [ + .noneBinaryStreamDecoding, + ] + + } + + enum binaryStreamDecodingError: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneBinaryStreamDecodingError // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneBinaryStreamDecodingError + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneBinaryStreamDecodingError + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneBinaryStreamDecodingError: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.binaryStreamDecodingError] = [ + .noneBinaryStreamDecodingError, + ] + + } + enum bitPattern: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneBitPattern // = 0 @@ -4891,6 +5071,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum code: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneCode // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneCode + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneCode + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneCode: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.code] = [ + .noneCode, + ] + + } + enum codePoint: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneCodePoint // = 0 @@ -5041,6 +5251,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum conflictingOneOf: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneConflictingOneOf // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneConflictingOneOf + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneConflictingOneOf + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneConflictingOneOf: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.conflictingOneOf] = [ + .noneConflictingOneOf, + ] + + } + enum consumedBytes: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneConsumedBytes // = 0 @@ -5101,6 +5341,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum copy: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneCopy // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneCopy + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneCopy + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneCopy: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.copy] = [ + .noneCopy, + ] + + } + enum count: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneCount // = 0 @@ -5281,6 +5551,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum CustomStringConvertible: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneCustomStringConvertible // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneCustomStringConvertible + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneCustomStringConvertible + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneCustomStringConvertible: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.CustomStringConvertible] = [ + .noneCustomStringConvertible, + ] + + } + enum d: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneD // = 0 @@ -7621,6 +7921,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum durationRange: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneDurationRange // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneDurationRange + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneDurationRange + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneDurationRange: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.durationRange] = [ + .noneDurationRange, + ] + + } + enum E: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneE // = 0 @@ -9181,6 +9511,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum failure: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneFailure // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneFailure + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneFailure + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneFailure: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.failure] = [ + .noneFailure, + ] + + } + enum falseEnum: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneFalse // = 0 @@ -9481,6 +9841,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum fieldMaskConversion: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneFieldMaskConversion // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneFieldMaskConversion + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneFieldMaskConversion + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneFieldMaskConversion: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.fieldMaskConversion] = [ + .noneFieldMaskConversion, + ] + + } + enum fieldName: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneFieldName // = 0 @@ -10651,6 +11041,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum function: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneFunction // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneFunction + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneFunction + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneFunction: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.function] = [ + .noneFunction, + ] + + } + enum G: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneG // = 0 @@ -15571,6 +15991,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum illegalNull: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneIllegalNull // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneIllegalNull + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneIllegalNull + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneIllegalNull: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.illegalNull] = [ + .noneIllegalNull, + ] + + } + enum index: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneIndex // = 0 @@ -16021,6 +16471,66 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum internalError: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneInternalError // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneInternalError + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneInternalError + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneInternalError: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.internalError] = [ + .noneInternalError, + ] + + } + + enum internalExtensionError: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneInternalExtensionError // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneInternalExtensionError + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneInternalExtensionError + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneInternalExtensionError: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.internalExtensionError] = [ + .noneInternalExtensionError, + ] + + } + enum InternalState: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneInternalState // = 0 @@ -16111,6 +16621,66 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum invalidArgument: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneInvalidArgument // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneInvalidArgument + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneInvalidArgument + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneInvalidArgument: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.invalidArgument] = [ + .noneInvalidArgument, + ] + + } + + enum invalidUTF8: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneInvalidUtf8 // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneInvalidUtf8 + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneInvalidUtf8 + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneInvalidUtf8: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.invalidUTF8] = [ + .noneInvalidUtf8, + ] + + } + enum isA: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneIsA // = 0 @@ -16561,6 +17131,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum JSONDecoding: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneJsondecoding // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneJsondecoding + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneJsondecoding + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneJsondecoding: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONDecoding] = [ + .noneJsondecoding, + ] + + } + enum JSONDecodingError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneJsondecodingError // = 0 @@ -16651,6 +17251,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum JSONEncoding: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneJsonencoding // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneJsonencoding + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneJsonencoding + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneJsonencoding: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONEncoding] = [ + .noneJsonencoding, + ] + + } + enum JSONEncodingError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneJsonencodingError // = 0 @@ -17431,6 +18061,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum leadingZero: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneLeadingZero // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneLeadingZero + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneLeadingZero + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneLeadingZero: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.leadingZero] = [ + .noneLeadingZero, + ] + + } + enum length: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneLength // = 0 @@ -17551,6 +18211,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum line: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneLine // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneLine + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneLine + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneLine: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.line] = [ + .noneLine, + ] + + } + enum list: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneList // = 0 @@ -17881,6 +18571,366 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum malformedAnyField: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedAnyField // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedAnyField + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedAnyField + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedAnyField: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedAnyField] = [ + .noneMalformedAnyField, + ] + + } + + enum malformedBool: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedBool // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedBool + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedBool + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedBool: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedBool] = [ + .noneMalformedBool, + ] + + } + + enum malformedDuration: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedDuration // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedDuration + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedDuration + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedDuration: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedDuration] = [ + .noneMalformedDuration, + ] + + } + + enum malformedFieldMask: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedFieldMask // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedFieldMask + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedFieldMask + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedFieldMask: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedFieldMask] = [ + .noneMalformedFieldMask, + ] + + } + + enum malformedLength: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedLength // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedLength + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedLength + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedLength: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedLength] = [ + .noneMalformedLength, + ] + + } + + enum malformedMap: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedMap // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedMap + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedMap + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedMap: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedMap] = [ + .noneMalformedMap, + ] + + } + + enum malformedNumber: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedNumber // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedNumber + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedNumber + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedNumber: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedNumber] = [ + .noneMalformedNumber, + ] + + } + + enum malformedProtobuf: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedProtobuf // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedProtobuf + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedProtobuf + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedProtobuf: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedProtobuf] = [ + .noneMalformedProtobuf, + ] + + } + + enum malformedString: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedString // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedString + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedString + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedString: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedString] = [ + .noneMalformedString, + ] + + } + + enum malformedText: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedText // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedText + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedText + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedText: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedText] = [ + .noneMalformedText, + ] + + } + + enum malformedTimestamp: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedTimestamp // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedTimestamp + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedTimestamp + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedTimestamp: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedTimestamp] = [ + .noneMalformedTimestamp, + ] + + } + + enum malformedWellKnownTypeJSON: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedWellKnownTypeJson // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedWellKnownTypeJson + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedWellKnownTypeJson + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedWellKnownTypeJson: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedWellKnownTypeJSON] = [ + .noneMalformedWellKnownTypeJson, + ] + + } + enum mapEntry: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneMapEntry // = 0 @@ -18631,6 +19681,96 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum missingFieldNames: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMissingFieldNames // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMissingFieldNames + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMissingFieldNames + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMissingFieldNames: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingFieldNames] = [ + .noneMissingFieldNames, + ] + + } + + enum missingRequiredFields: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMissingRequiredFields // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMissingRequiredFields + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMissingRequiredFields + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMissingRequiredFields: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingRequiredFields] = [ + .noneMissingRequiredFields, + ] + + } + + enum missingValue: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMissingValue // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMissingValue + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMissingValue + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMissingValue: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingValue] = [ + .noneMissingValue, + ] + + } + enum Mixin: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneMixin // = 0 @@ -19381,6 +20521,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum noBytesAvailable: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneNoBytesAvailable // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneNoBytesAvailable + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneNoBytesAvailable + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneNoBytesAvailable: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.noBytesAvailable] = [ + .noneNoBytesAvailable, + ] + + } + enum noStandardDescriptorAccessor: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneNoStandardDescriptorAccessor // = 0 @@ -19471,6 +20641,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum numberRange: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneNumberRange // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneNumberRange + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneNumberRange + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneNumberRange: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.numberRange] = [ + .noneNumberRange, + ] + + } + enum numberValue: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneNumberValue // = 0 @@ -23371,6 +24571,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum schemaMismatch: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneSchemaMismatch // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneSchemaMismatch + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneSchemaMismatch + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneSchemaMismatch: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.schemaMismatch] = [ + .noneSchemaMismatch, + ] + + } + enum seconds: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneSeconds // = 0 @@ -24091,6 +25321,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum SourceLocation: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneSourceLocation // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneSourceLocation + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneSourceLocation + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneSourceLocation: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.SourceLocation] = [ + .noneSourceLocation, + ] + + } + enum span: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneSpan // = 0 @@ -24901,6 +26161,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum SwiftProtobufError: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneSwiftProtobufError // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneSwiftProtobufError + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneSwiftProtobufError + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneSwiftProtobufError: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.SwiftProtobufError] = [ + .noneSwiftProtobufError, + ] + + } + enum syntax: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneSyntax // = 0 @@ -25171,7 +26461,37 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum TextFormatDecodingError: SwiftProtobuf.Enum, Swift.CaseIterable { + enum TextFormatDecoding: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneTextFormatDecoding // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneTextFormatDecoding + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneTextFormatDecoding + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneTextFormatDecoding: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDecoding] = [ + .noneTextFormatDecoding, + ] + + } + + enum textFormatDecodingError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTextFormatDecodingError // = 0 case UNRECOGNIZED(Int) @@ -25195,7 +26515,7 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDecodingError] = [ + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.textFormatDecodingError] = [ .noneTextFormatDecodingError, ] @@ -25501,6 +26821,66 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum timestampRange: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneTimestampRange // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneTimestampRange + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneTimestampRange + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneTimestampRange: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.timestampRange] = [ + .noneTimestampRange, + ] + + } + + enum tooLarge: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneTooLarge // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneTooLarge + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneTooLarge + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneTooLarge: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.tooLarge] = [ + .noneTooLarge, + ] + + } + enum total: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTotal // = 0 @@ -25621,6 +27001,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum trailingGarbage: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneTrailingGarbage // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneTrailingGarbage + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneTrailingGarbage + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneTrailingGarbage: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.trailingGarbage] = [ + .noneTrailingGarbage, + ] + + } + enum traverseEnum: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTraverse // = 0 @@ -25681,6 +27091,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum truncated: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneTruncated // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneTruncated + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneTruncated + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneTruncated: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.truncated] = [ + .noneTruncated, + ] + + } + enum tryEnum: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTry // = 0 @@ -25801,6 +27241,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum typeMismatch: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneTypeMismatch // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneTypeMismatch + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneTypeMismatch + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneTypeMismatch: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.typeMismatch] = [ + .noneTypeMismatch, + ] + + } + enum typeName: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTypeName // = 0 @@ -26371,6 +27841,66 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum unknownField: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneUnknownField // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneUnknownField + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneUnknownField + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneUnknownField: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownField] = [ + .noneUnknownField, + ] + + } + + enum unknownFieldName: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneUnknownFieldName // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneUnknownFieldName + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneUnknownFieldName + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneUnknownFieldName: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownFieldName] = [ + .noneUnknownFieldName, + ] + + } + enum unknownFieldsEnum: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneUnknownFields // = 0 @@ -26431,6 +27961,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum unknownStreamError: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneUnknownStreamError // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneUnknownStreamError + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneUnknownStreamError + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneUnknownStreamError: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownStreamError] = [ + .noneUnknownStreamError, + ] + + } + enum unpackTo: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneUnpackTo // = 0 @@ -26461,6 +28021,96 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum unquotedMapKey: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneUnquotedMapKey // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneUnquotedMapKey + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneUnquotedMapKey + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneUnquotedMapKey: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unquotedMapKey] = [ + .noneUnquotedMapKey, + ] + + } + + enum unrecognizedEnumValue: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneUnrecognizedEnumValue // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneUnrecognizedEnumValue + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneUnrecognizedEnumValue + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneUnrecognizedEnumValue: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unrecognizedEnumValue] = [ + .noneUnrecognizedEnumValue, + ] + + } + + enum unregisteredTypeURL: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneUnregisteredTypeURL // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneUnregisteredTypeURL + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneUnregisteredTypeURL + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneUnregisteredTypeURL: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unregisteredTypeURL] = [ + .noneUnregisteredTypeURL, + ] + + } + enum UnsafeBufferPointer: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneUnsafeBufferPointer // = 0 @@ -26971,6 +28621,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum valueNumberNotFinite: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneValueNumberNotFinite // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneValueNumberNotFinite + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneValueNumberNotFinite + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneValueNumberNotFinite: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.valueNumberNotFinite] = [ + .noneValueNumberNotFinite, + ] + + } + enum values: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneValues // = 0 @@ -29433,6 +31113,18 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.AnyMessageStor ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.anyTypeURLNotRegistered: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_anyTypeURLNotRegistered"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.AnyUnpack: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_AnyUnpack"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.AnyUnpackError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_AnyUnpackError"), @@ -29589,6 +31281,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryDecoder: ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryDecoding: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_BinaryDecoding"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryDecodingError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_BinaryDecodingError"), @@ -29613,6 +31311,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryEncoder: ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryEncoding: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_BinaryEncoding"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryEncodingError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_BinaryEncodingError"), @@ -29661,6 +31365,18 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.binaryProtobuf ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryStreamDecoding: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_BinaryStreamDecoding"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.binaryStreamDecodingError: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_binaryStreamDecodingError"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.bitPattern: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_bitPattern"), @@ -30339,6 +32055,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.clientStreamin ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.code: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_code"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.codePoint: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_codePoint"), @@ -30369,6 +32091,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.comma: SwiftPr ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.conflictingOneOf: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_conflictingOneOf"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.consumedBytes: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_consumedBytes"), @@ -30381,6 +32109,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.contentsOf: Sw ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.copy: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_copy"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.count: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_count"), @@ -30417,6 +32151,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.CustomDebugStr ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.CustomStringConvertible: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_CustomStringConvertible"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.d: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_d"), @@ -30885,6 +32625,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.Duration: Swif ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.durationRange: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_durationRange"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.E: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_E"), @@ -31197,6 +32943,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.F: SwiftProtob ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.failure: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_failure"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.falseEnum: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_false"), @@ -31257,6 +33009,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.FieldMask: Swi ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.fieldMaskConversion: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_fieldMaskConversion"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.fieldName: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_fieldName"), @@ -31491,6 +33249,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.funcEnum: Swif ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.function: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_function"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.G: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_G"), @@ -32475,6 +34239,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.ignoreUnknownF ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.illegalNull: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_illegalNull"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.index: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_index"), @@ -32565,6 +34335,18 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.Internal: Swif ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.internalError: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_internalError"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.internalExtensionError: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_internalExtensionError"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.InternalState: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_InternalState"), @@ -32583,6 +34365,18 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.ints: SwiftPro ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.invalidArgument: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_invalidArgument"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.invalidUTF8: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_invalidUTF8"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.isA: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_isA"), @@ -32673,6 +34467,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONDecoder: S ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONDecoding: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_JSONDecoding"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONDecodingError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_JSONDecodingError"), @@ -32691,6 +34491,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.jsonEncoder: S ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONEncoding: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_JSONEncoding"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONEncodingError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_JSONEncodingError"), @@ -32847,6 +34653,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.leadingDetache ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.leadingZero: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_leadingZero"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.length: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_length"), @@ -32871,6 +34683,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.lhs: SwiftProt ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.line: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_line"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.list: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_list"), @@ -32937,6 +34755,78 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.makeIterator: ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedAnyField: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedAnyField"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedBool: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedBool"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedDuration: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedDuration"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedFieldMask: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedFieldMask"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedLength: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedLength"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedMap: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedMap"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedNumber: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedNumber"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedProtobuf: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedProtobuf"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedString: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedString"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedText: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedText"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedTimestamp: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedTimestamp"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedWellKnownTypeJSON: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedWellKnownTypeJSON"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.mapEntry: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_mapEntry"), @@ -33087,6 +34977,24 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.minor: SwiftPr ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingFieldNames: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_missingFieldNames"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingRequiredFields: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_missingRequiredFields"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingValue: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_missingValue"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.Mixin: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_Mixin"), @@ -33237,6 +35145,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.nilLiteral: Sw ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.noBytesAvailable: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_noBytesAvailable"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.noStandardDescriptorAccessor: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_noStandardDescriptorAccessor"), @@ -33255,6 +35169,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.number: SwiftP ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.numberRange: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_numberRange"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.numberValue: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_numberValue"), @@ -34035,6 +35955,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.scanner: Swift ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.schemaMismatch: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_schemaMismatch"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.seconds: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_seconds"), @@ -34179,6 +36105,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.sourceFile: Sw ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.SourceLocation: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_SourceLocation"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.span: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_span"), @@ -34341,6 +36273,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.SwiftProtobufC ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.SwiftProtobufError: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_SwiftProtobufError"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.syntax: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_syntax"), @@ -34395,9 +36333,15 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDeco ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDecodingError: SwiftProtobuf._ProtoNameProviding { +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDecoding: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_TextFormatDecoding"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.textFormatDecodingError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_TextFormatDecodingError"), + 0: .same(proto: "NONE_textFormatDecodingError"), ] } @@ -34461,6 +36405,18 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.Timestamp: Swi ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.timestampRange: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_timestampRange"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.tooLarge: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_tooLarge"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.total: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_total"), @@ -34485,6 +36441,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.trailingCommen ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.trailingGarbage: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_trailingGarbage"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.traverseEnum: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_traverse"), @@ -34497,6 +36459,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.trueEnum: Swif ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.truncated: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_truncated"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.tryEnum: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_try"), @@ -34521,6 +36489,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TypeEnumEnum: ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.typeMismatch: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_typeMismatch"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.typeName: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_typeName"), @@ -34635,6 +36609,18 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknown: Swift ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownField: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_unknownField"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownFieldName: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_unknownFieldName"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownFieldsEnum: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_unknownFields"), @@ -34647,12 +36633,36 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.UnknownStorage ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownStreamError: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_unknownStreamError"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unpackTo: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_unpackTo"), ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unquotedMapKey: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_unquotedMapKey"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unrecognizedEnumValue: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_unrecognizedEnumValue"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unregisteredTypeURL: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_unregisteredTypeURL"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.UnsafeBufferPointer: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_UnsafeBufferPointer"), @@ -34755,6 +36765,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.valueField: Sw ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.valueNumberNotFinite: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_valueNumberNotFinite"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.values: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_values"), diff --git a/Reference/SwiftProtobufTests/generated_swift_names_messages.pb.swift b/Reference/SwiftProtobufTests/generated_swift_names_messages.pb.swift index b6c7fa674..871fff23b 100644 --- a/Reference/SwiftProtobufTests/generated_swift_names_messages.pb.swift +++ b/Reference/SwiftProtobufTests/generated_swift_names_messages.pb.swift @@ -163,6 +163,30 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct anyTypeURLNotRegistered: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var anyTypeUrlnotRegistered: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct AnyUnpack: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var anyUnpack: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct AnyUnpackError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -475,6 +499,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct BinaryDecoding: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var binaryDecoding: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct BinaryDecodingError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -523,6 +559,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct BinaryEncoding: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var binaryEncoding: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct BinaryEncodingError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -619,6 +667,30 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct BinaryStreamDecoding: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var binaryStreamDecoding: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct binaryStreamDecodingError: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var binaryStreamDecodingError: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct bitPattern: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -1975,6 +2047,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct code: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var code: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct codePoint: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -2035,6 +2119,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct conflictingOneOf: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var conflictingOneOf: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct consumedBytes: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -2059,6 +2155,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct copy: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var copy: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct count: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -2131,6 +2239,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct CustomStringConvertible: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var customStringConvertible: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct d: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -3067,6 +3187,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct durationRange: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var durationRange: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct E: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -3691,6 +3823,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct failure: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var failure: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct falseMessage: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -3811,6 +3955,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct fieldMaskConversion: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var fieldMaskConversion: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct fieldName: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -4279,6 +4435,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct function: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var function: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct G: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6247,6 +6415,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct illegalNull: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var illegalNull: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct index: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6427,6 +6607,30 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct internalError: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var internalError: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct internalExtensionError: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var internalExtensionError: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct InternalState: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6463,6 +6667,30 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct invalidArgument: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var invalidArgument: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct invalidUTF8: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var invalidUtf8: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct isA: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6643,6 +6871,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct JSONDecoding: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var jsondecoding: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct JSONDecodingError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6679,6 +6919,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct JSONEncoding: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var jsonencoding: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct JSONEncodingError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6991,6 +7243,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct leadingZero: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var leadingZero: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct length: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -7039,6 +7303,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct line: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var line: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct list: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -7171,6 +7447,150 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct malformedAnyField: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedAnyField: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedBool: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedBool: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedDuration: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedDuration: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedFieldMask: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedFieldMask: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedLength: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedLength: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedMap: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedMap: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedNumber: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedNumber: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedProtobuf: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedProtobuf: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedString: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedString: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedText: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedText: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedTimestamp: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedTimestamp: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedWellKnownTypeJSON: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedWellKnownTypeJson: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct mapEntry: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -7471,6 +7891,42 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct missingFieldNames: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var missingFieldNames: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct missingRequiredFields: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var missingRequiredFields: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct missingValue: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var missingValue: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct Mixin: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -7771,6 +8227,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct noBytesAvailable: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var noBytesAvailable: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct noStandardDescriptorAccessor: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -7807,6 +8275,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct numberRange: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var numberRange: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct numberValue: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -9367,6 +9847,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct schemaMismatch: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var schemaMismatch: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct seconds: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -9655,6 +10147,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct SourceLocation: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var sourceLocation: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct span: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -9979,6 +10483,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct SwiftProtobufError: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var swiftProtobufError: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct syntax: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10087,7 +10603,19 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct TextFormatDecodingError: Sendable { + struct TextFormatDecoding: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var textFormatDecoding: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct textFormatDecodingError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -10219,6 +10747,30 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct timestampRange: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var timestampRange: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct tooLarge: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var tooLarge: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct total: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10267,6 +10819,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct trailingGarbage: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var trailingGarbage: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct traverseMessage: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10291,6 +10855,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct truncated: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var truncated: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct tryMessage: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10339,6 +10915,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct typeMismatch: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var typeMismatch: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct typeName: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10567,6 +11155,30 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct unknownField: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var unknownField: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct unknownFieldName: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var unknownFieldName: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct unknownFieldsMessage: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10591,6 +11203,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct unknownStreamError: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var unknownStreamError: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct unpackTo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10603,6 +11227,42 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct unquotedMapKey: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var unquotedMapKey: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct unrecognizedEnumValue: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var unrecognizedEnumValue: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct unregisteredTypeURL: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var unregisteredTypeURL: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct UnsafeBufferPointer: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10807,6 +11467,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct valueNumberNotFinite: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var valueNumberNotFinite: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct values: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -12133,6 +12805,70 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyMessageS } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.anyTypeURLNotRegistered: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".anyTypeURLNotRegistered" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "anyTypeURLNotRegistered"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.anyTypeUrlnotRegistered) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.anyTypeUrlnotRegistered != 0 { + try visitor.visitSingularInt32Field(value: self.anyTypeUrlnotRegistered, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.anyTypeURLNotRegistered, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.anyTypeURLNotRegistered) -> Bool { + if lhs.anyTypeUrlnotRegistered != rhs.anyTypeUrlnotRegistered {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyUnpack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".AnyUnpack" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "AnyUnpack"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.anyUnpack) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.anyUnpack != 0 { + try visitor.visitSingularInt32Field(value: self.anyUnpack, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyUnpack, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyUnpack) -> Bool { + if lhs.anyUnpack != rhs.anyUnpack {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyUnpackError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".AnyUnpackError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -12965,6 +13701,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryDecod } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryDecoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".BinaryDecoding" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "BinaryDecoding"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.binaryDecoding) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.binaryDecoding != 0 { + try visitor.visitSingularInt32Field(value: self.binaryDecoding, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryDecoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryDecoding) -> Bool { + if lhs.binaryDecoding != rhs.binaryDecoding {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryDecodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".BinaryDecodingError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -13093,6 +13861,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncod } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".BinaryEncoding" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "BinaryEncoding"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.binaryEncoding) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.binaryEncoding != 0 { + try visitor.visitSingularInt32Field(value: self.binaryEncoding, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncoding) -> Bool { + if lhs.binaryEncoding != rhs.binaryEncoding {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".BinaryEncodingError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -13349,6 +14149,70 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.binaryProto } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryStreamDecoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".BinaryStreamDecoding" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "BinaryStreamDecoding"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.binaryStreamDecoding) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.binaryStreamDecoding != 0 { + try visitor.visitSingularInt32Field(value: self.binaryStreamDecoding, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryStreamDecoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryStreamDecoding) -> Bool { + if lhs.binaryStreamDecoding != rhs.binaryStreamDecoding {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.binaryStreamDecodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".binaryStreamDecodingError" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "binaryStreamDecodingError"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.binaryStreamDecodingError) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.binaryStreamDecodingError != 0 { + try visitor.visitSingularInt32Field(value: self.binaryStreamDecodingError, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.binaryStreamDecodingError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.binaryStreamDecodingError) -> Bool { + if lhs.binaryStreamDecodingError != rhs.binaryStreamDecodingError {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.bitPattern: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".bitPattern" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -16965,6 +17829,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.clientStrea } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.code: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".code" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "code"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.code) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.code != 0 { + try visitor.visitSingularInt32Field(value: self.code, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.code, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.code) -> Bool { + if lhs.code != rhs.code {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.codePoint: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".codePoint" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -17125,6 +18021,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.comma: Swif } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.conflictingOneOf: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".conflictingOneOf" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "conflictingOneOf"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.conflictingOneOf) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.conflictingOneOf != 0 { + try visitor.visitSingularInt32Field(value: self.conflictingOneOf, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.conflictingOneOf, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.conflictingOneOf) -> Bool { + if lhs.conflictingOneOf != rhs.conflictingOneOf {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.consumedBytes: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".consumedBytes" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -17189,6 +18117,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.contentsOf: } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.copy: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".copy" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "copy"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.copy) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.copy != 0 { + try visitor.visitSingularInt32Field(value: self.copy, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.copy, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.copy) -> Bool { + if lhs.copy != rhs.copy {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.count: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".count" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -17381,6 +18341,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.CustomDebug } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.CustomStringConvertible: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".CustomStringConvertible" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "CustomStringConvertible"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.customStringConvertible) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.customStringConvertible != 0 { + try visitor.visitSingularInt32Field(value: self.customStringConvertible, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.CustomStringConvertible, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.CustomStringConvertible) -> Bool { + if lhs.customStringConvertible != rhs.customStringConvertible {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.d: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".d" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -19877,6 +20869,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.Duration: S } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.durationRange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".durationRange" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "durationRange"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.durationRange) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.durationRange != 0 { + try visitor.visitSingularInt32Field(value: self.durationRange, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.durationRange, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.durationRange) -> Bool { + if lhs.durationRange != rhs.durationRange {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.E: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".E" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -21541,6 +22565,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.F: SwiftPro } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.failure: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".failure" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "failure"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.failure) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.failure != 0 { + try visitor.visitSingularInt32Field(value: self.failure, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.failure, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.failure) -> Bool { + if lhs.failure != rhs.failure {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.falseMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".false" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -21861,6 +22917,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.FieldMask: } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.fieldMaskConversion: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".fieldMaskConversion" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "fieldMaskConversion"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.fieldMaskConversion) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.fieldMaskConversion != 0 { + try visitor.visitSingularInt32Field(value: self.fieldMaskConversion, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.fieldMaskConversion, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.fieldMaskConversion) -> Bool { + if lhs.fieldMaskConversion != rhs.fieldMaskConversion {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.fieldName: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".fieldName" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -23109,6 +24197,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.funcMessage } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.function: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".function" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "function"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.function) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.function != 0 { + try visitor.visitSingularInt32Field(value: self.function, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.function, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.function) -> Bool { + if lhs.function != rhs.function {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.G: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".G" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -28357,6 +29477,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.ignoreUnkno } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.illegalNull: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".illegalNull" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "illegalNull"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.illegalNull) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.illegalNull != 0 { + try visitor.visitSingularInt32Field(value: self.illegalNull, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.illegalNull, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.illegalNull) -> Bool { + if lhs.illegalNull != rhs.illegalNull {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.index: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".index" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -28837,6 +29989,70 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.Internal: S } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".internalError" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "internalError"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.internalError) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.internalError != 0 { + try visitor.visitSingularInt32Field(value: self.internalError, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalError) -> Bool { + if lhs.internalError != rhs.internalError {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalExtensionError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".internalExtensionError" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "internalExtensionError"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.internalExtensionError) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.internalExtensionError != 0 { + try visitor.visitSingularInt32Field(value: self.internalExtensionError, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalExtensionError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalExtensionError) -> Bool { + if lhs.internalExtensionError != rhs.internalExtensionError {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.InternalState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".InternalState" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -28933,6 +30149,70 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.ints: Swift } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidArgument: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".invalidArgument" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "invalidArgument"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.invalidArgument) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.invalidArgument != 0 { + try visitor.visitSingularInt32Field(value: self.invalidArgument, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidArgument, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidArgument) -> Bool { + if lhs.invalidArgument != rhs.invalidArgument {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidUTF8: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".invalidUTF8" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "invalidUTF8"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.invalidUtf8) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.invalidUtf8 != 0 { + try visitor.visitSingularInt32Field(value: self.invalidUtf8, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidUTF8, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidUTF8) -> Bool { + if lhs.invalidUtf8 != rhs.invalidUtf8 {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.isA: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".isA" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -29413,6 +30693,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecoder } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".JSONDecoding" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "JSONDecoding"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.jsondecoding) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.jsondecoding != 0 { + try visitor.visitSingularInt32Field(value: self.jsondecoding, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecoding) -> Bool { + if lhs.jsondecoding != rhs.jsondecoding {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".JSONDecodingError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -29509,6 +30821,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.jsonEncoder } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONEncoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".JSONEncoding" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "JSONEncoding"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.jsonencoding) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.jsonencoding != 0 { + try visitor.visitSingularInt32Field(value: self.jsonencoding, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONEncoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONEncoding) -> Bool { + if lhs.jsonencoding != rhs.jsonencoding {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONEncodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".JSONEncodingError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -30341,6 +31685,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.leadingDeta } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.leadingZero: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".leadingZero" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "leadingZero"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.leadingZero) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.leadingZero != 0 { + try visitor.visitSingularInt32Field(value: self.leadingZero, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.leadingZero, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.leadingZero) -> Bool { + if lhs.leadingZero != rhs.leadingZero {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.length: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".length" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -30469,6 +31845,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.lhs: SwiftP } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.line: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".line" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "line"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.line) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.line != 0 { + try visitor.visitSingularInt32Field(value: self.line, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.line, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.line) -> Bool { + if lhs.line != rhs.line {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.list: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".list" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -30821,6 +32229,390 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.makeIterato } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedAnyField: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedAnyField" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedAnyField"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedAnyField) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedAnyField != 0 { + try visitor.visitSingularInt32Field(value: self.malformedAnyField, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedAnyField, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedAnyField) -> Bool { + if lhs.malformedAnyField != rhs.malformedAnyField {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedBool: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedBool" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedBool"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedBool) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedBool != 0 { + try visitor.visitSingularInt32Field(value: self.malformedBool, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedBool, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedBool) -> Bool { + if lhs.malformedBool != rhs.malformedBool {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedDuration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedDuration" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedDuration"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedDuration) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedDuration != 0 { + try visitor.visitSingularInt32Field(value: self.malformedDuration, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedDuration, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedDuration) -> Bool { + if lhs.malformedDuration != rhs.malformedDuration {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedFieldMask: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedFieldMask" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedFieldMask"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedFieldMask) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedFieldMask != 0 { + try visitor.visitSingularInt32Field(value: self.malformedFieldMask, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedFieldMask, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedFieldMask) -> Bool { + if lhs.malformedFieldMask != rhs.malformedFieldMask {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedLength: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedLength" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedLength"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedLength) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedLength != 0 { + try visitor.visitSingularInt32Field(value: self.malformedLength, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedLength, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedLength) -> Bool { + if lhs.malformedLength != rhs.malformedLength {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedMap: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedMap" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedMap"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedMap) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedMap != 0 { + try visitor.visitSingularInt32Field(value: self.malformedMap, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedMap, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedMap) -> Bool { + if lhs.malformedMap != rhs.malformedMap {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedNumber: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedNumber" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedNumber"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedNumber) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedNumber != 0 { + try visitor.visitSingularInt32Field(value: self.malformedNumber, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedNumber, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedNumber) -> Bool { + if lhs.malformedNumber != rhs.malformedNumber {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedProtobuf: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedProtobuf" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedProtobuf"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedProtobuf) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedProtobuf != 0 { + try visitor.visitSingularInt32Field(value: self.malformedProtobuf, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedProtobuf, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedProtobuf) -> Bool { + if lhs.malformedProtobuf != rhs.malformedProtobuf {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedString: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedString" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedString"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedString) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedString != 0 { + try visitor.visitSingularInt32Field(value: self.malformedString, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedString, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedString) -> Bool { + if lhs.malformedString != rhs.malformedString {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedText: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedText" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedText"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedText) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedText != 0 { + try visitor.visitSingularInt32Field(value: self.malformedText, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedText, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedText) -> Bool { + if lhs.malformedText != rhs.malformedText {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedTimestamp: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedTimestamp" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedTimestamp"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedTimestamp) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedTimestamp != 0 { + try visitor.visitSingularInt32Field(value: self.malformedTimestamp, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedTimestamp, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedTimestamp) -> Bool { + if lhs.malformedTimestamp != rhs.malformedTimestamp {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedWellKnownTypeJSON: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedWellKnownTypeJSON" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedWellKnownTypeJSON"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedWellKnownTypeJson) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedWellKnownTypeJson != 0 { + try visitor.visitSingularInt32Field(value: self.malformedWellKnownTypeJson, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedWellKnownTypeJSON, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedWellKnownTypeJSON) -> Bool { + if lhs.malformedWellKnownTypeJson != rhs.malformedWellKnownTypeJson {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.mapEntry: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".mapEntry" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -31621,6 +33413,102 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.minor: Swif } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingFieldNames: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".missingFieldNames" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "missingFieldNames"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.missingFieldNames) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.missingFieldNames != 0 { + try visitor.visitSingularInt32Field(value: self.missingFieldNames, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingFieldNames, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingFieldNames) -> Bool { + if lhs.missingFieldNames != rhs.missingFieldNames {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingRequiredFields: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".missingRequiredFields" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "missingRequiredFields"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.missingRequiredFields) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.missingRequiredFields != 0 { + try visitor.visitSingularInt32Field(value: self.missingRequiredFields, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingRequiredFields, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingRequiredFields) -> Bool { + if lhs.missingRequiredFields != rhs.missingRequiredFields {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingValue: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".missingValue" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "missingValue"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.missingValue) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.missingValue != 0 { + try visitor.visitSingularInt32Field(value: self.missingValue, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingValue, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingValue) -> Bool { + if lhs.missingValue != rhs.missingValue {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.Mixin: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".Mixin" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -32421,6 +34309,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.nilLiteral: } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.noBytesAvailable: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".noBytesAvailable" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "noBytesAvailable"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.noBytesAvailable) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.noBytesAvailable != 0 { + try visitor.visitSingularInt32Field(value: self.noBytesAvailable, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.noBytesAvailable, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.noBytesAvailable) -> Bool { + if lhs.noBytesAvailable != rhs.noBytesAvailable {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.noStandardDescriptorAccessor: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".noStandardDescriptorAccessor" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -32517,6 +34437,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.number: Swi } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.numberRange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".numberRange" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "numberRange"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.numberRange) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.numberRange != 0 { + try visitor.visitSingularInt32Field(value: self.numberRange, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.numberRange, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.numberRange) -> Bool { + if lhs.numberRange != rhs.numberRange {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.numberValue: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".numberValue" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -36677,6 +38629,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.scanner: Sw } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.schemaMismatch: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".schemaMismatch" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "schemaMismatch"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.schemaMismatch) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.schemaMismatch != 0 { + try visitor.visitSingularInt32Field(value: self.schemaMismatch, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.schemaMismatch, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.schemaMismatch) -> Bool { + if lhs.schemaMismatch != rhs.schemaMismatch {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.seconds: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".seconds" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -37445,6 +39429,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.sourceFile: } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.SourceLocation: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".SourceLocation" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "SourceLocation"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.sourceLocation) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.sourceLocation != 0 { + try visitor.visitSingularInt32Field(value: self.sourceLocation, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.SourceLocation, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.SourceLocation) -> Bool { + if lhs.sourceLocation != rhs.sourceLocation {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.span: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".span" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -38309,6 +40325,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.SwiftProtob } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.SwiftProtobufError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".SwiftProtobufError" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "SwiftProtobufError"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.swiftProtobufError) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.swiftProtobufError != 0 { + try visitor.visitSingularInt32Field(value: self.swiftProtobufError, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.SwiftProtobufError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.SwiftProtobufError) -> Bool { + if lhs.swiftProtobufError != rhs.swiftProtobufError {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.syntax: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".syntax" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -38597,10 +40645,42 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatD } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".TextFormatDecodingError" +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".TextFormatDecoding" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "TextFormatDecoding"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.textFormatDecoding) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.textFormatDecoding != 0 { + try visitor.visitSingularInt32Field(value: self.textFormatDecoding, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecoding) -> Bool { + if lhs.textFormatDecoding != rhs.textFormatDecoding {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.textFormatDecodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".textFormatDecodingError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "TextFormatDecodingError"), + 1: .same(proto: "textFormatDecodingError"), ] mutating func decodeMessage(decoder: inout D) throws { @@ -38622,7 +40702,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatD try unknownFields.traverse(visitor: &visitor) } - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecodingError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecodingError) -> Bool { + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.textFormatDecodingError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.textFormatDecodingError) -> Bool { if lhs.textFormatDecodingError != rhs.textFormatDecodingError {return false} if lhs.unknownFields != rhs.unknownFields {return false} return true @@ -38949,6 +41029,70 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.Timestamp: } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.timestampRange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".timestampRange" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "timestampRange"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.timestampRange) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.timestampRange != 0 { + try visitor.visitSingularInt32Field(value: self.timestampRange, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.timestampRange, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.timestampRange) -> Bool { + if lhs.timestampRange != rhs.timestampRange {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.tooLarge: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".tooLarge" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "tooLarge"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.tooLarge) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.tooLarge != 0 { + try visitor.visitSingularInt32Field(value: self.tooLarge, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.tooLarge, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.tooLarge) -> Bool { + if lhs.tooLarge != rhs.tooLarge {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.total: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".total" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -39077,6 +41221,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trailingCom } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trailingGarbage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".trailingGarbage" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "trailingGarbage"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.trailingGarbage) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.trailingGarbage != 0 { + try visitor.visitSingularInt32Field(value: self.trailingGarbage, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trailingGarbage, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trailingGarbage) -> Bool { + if lhs.trailingGarbage != rhs.trailingGarbage {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.traverseMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".traverse" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -39141,6 +41317,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trueMessage } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.truncated: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".truncated" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "truncated"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.truncated) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.truncated != 0 { + try visitor.visitSingularInt32Field(value: self.truncated, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.truncated, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.truncated) -> Bool { + if lhs.truncated != rhs.truncated {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.tryMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".try" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -39269,6 +41477,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TypeEnum: S } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.typeMismatch: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".typeMismatch" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "typeMismatch"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.typeMismatch) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.typeMismatch != 0 { + try visitor.visitSingularInt32Field(value: self.typeMismatch, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.typeMismatch, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.typeMismatch) -> Bool { + if lhs.typeMismatch != rhs.typeMismatch {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.typeName: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".typeName" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -39877,6 +42117,70 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknown: Sw } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownField: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unknownField" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "unknownField"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.unknownField) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.unknownField != 0 { + try visitor.visitSingularInt32Field(value: self.unknownField, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownField, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownField) -> Bool { + if lhs.unknownField != rhs.unknownField {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownFieldName: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unknownFieldName" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "unknownFieldName"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.unknownFieldName) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.unknownFieldName != 0 { + try visitor.visitSingularInt32Field(value: self.unknownFieldName, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownFieldName, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownFieldName) -> Bool { + if lhs.unknownFieldName != rhs.unknownFieldName {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownFieldsMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unknownFields" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -39941,6 +42245,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.UnknownStor } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownStreamError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unknownStreamError" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "unknownStreamError"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.unknownStreamError) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.unknownStreamError != 0 { + try visitor.visitSingularInt32Field(value: self.unknownStreamError, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownStreamError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownStreamError) -> Bool { + if lhs.unknownStreamError != rhs.unknownStreamError {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unpackTo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unpackTo" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -39973,6 +42309,102 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unpackTo: S } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unquotedMapKey: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unquotedMapKey" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "unquotedMapKey"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.unquotedMapKey) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.unquotedMapKey != 0 { + try visitor.visitSingularInt32Field(value: self.unquotedMapKey, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unquotedMapKey, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unquotedMapKey) -> Bool { + if lhs.unquotedMapKey != rhs.unquotedMapKey {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unrecognizedEnumValue: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unrecognizedEnumValue" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "unrecognizedEnumValue"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.unrecognizedEnumValue) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.unrecognizedEnumValue != 0 { + try visitor.visitSingularInt32Field(value: self.unrecognizedEnumValue, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unrecognizedEnumValue, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unrecognizedEnumValue) -> Bool { + if lhs.unrecognizedEnumValue != rhs.unrecognizedEnumValue {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unregisteredTypeURL: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unregisteredTypeURL" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "unregisteredTypeURL"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.unregisteredTypeURL) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.unregisteredTypeURL != 0 { + try visitor.visitSingularInt32Field(value: self.unregisteredTypeURL, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unregisteredTypeURL, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unregisteredTypeURL) -> Bool { + if lhs.unregisteredTypeURL != rhs.unregisteredTypeURL {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.UnsafeBufferPointer: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".UnsafeBufferPointer" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -40517,6 +42949,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.valueField: } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.valueNumberNotFinite: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".valueNumberNotFinite" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "valueNumberNotFinite"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.valueNumberNotFinite) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.valueNumberNotFinite != 0 { + try visitor.visitSingularInt32Field(value: self.valueNumberNotFinite, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.valueNumberNotFinite, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.valueNumberNotFinite) -> Bool { + if lhs.valueNumberNotFinite != rhs.valueNumberNotFinite {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.values: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".values" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ diff --git a/Tests/SwiftProtobufTests/generated_swift_names_enums.pb.swift b/Tests/SwiftProtobufTests/generated_swift_names_enums.pb.swift index 6400b19a8..d9bf96fff 100644 --- a/Tests/SwiftProtobufTests/generated_swift_names_enums.pb.swift +++ b/Tests/SwiftProtobufTests/generated_swift_names_enums.pb.swift @@ -361,6 +361,66 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum anyTypeURLNotRegistered: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneAnyTypeUrlnotRegistered // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneAnyTypeUrlnotRegistered + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneAnyTypeUrlnotRegistered + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneAnyTypeUrlnotRegistered: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.anyTypeURLNotRegistered] = [ + .noneAnyTypeUrlnotRegistered, + ] + + } + + enum AnyUnpack: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneAnyUnpack // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneAnyUnpack + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneAnyUnpack + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneAnyUnpack: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.AnyUnpack] = [ + .noneAnyUnpack, + ] + + } + enum AnyUnpackError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneAnyUnpackError // = 0 @@ -1141,6 +1201,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum BinaryDecoding: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneBinaryDecoding // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneBinaryDecoding + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneBinaryDecoding + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneBinaryDecoding: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryDecoding] = [ + .noneBinaryDecoding, + ] + + } + enum BinaryDecodingError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneBinaryDecodingError // = 0 @@ -1261,6 +1351,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum BinaryEncoding: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneBinaryEncoding // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneBinaryEncoding + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneBinaryEncoding + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneBinaryEncoding: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryEncoding] = [ + .noneBinaryEncoding, + ] + + } + enum BinaryEncodingError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneBinaryEncodingError // = 0 @@ -1501,6 +1621,66 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum BinaryStreamDecoding: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneBinaryStreamDecoding // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneBinaryStreamDecoding + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneBinaryStreamDecoding + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneBinaryStreamDecoding: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryStreamDecoding] = [ + .noneBinaryStreamDecoding, + ] + + } + + enum binaryStreamDecodingError: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneBinaryStreamDecodingError // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneBinaryStreamDecodingError + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneBinaryStreamDecodingError + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneBinaryStreamDecodingError: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.binaryStreamDecodingError] = [ + .noneBinaryStreamDecodingError, + ] + + } + enum bitPattern: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneBitPattern // = 0 @@ -4891,6 +5071,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum code: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneCode // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneCode + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneCode + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneCode: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.code] = [ + .noneCode, + ] + + } + enum codePoint: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneCodePoint // = 0 @@ -5041,6 +5251,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum conflictingOneOf: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneConflictingOneOf // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneConflictingOneOf + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneConflictingOneOf + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneConflictingOneOf: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.conflictingOneOf] = [ + .noneConflictingOneOf, + ] + + } + enum consumedBytes: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneConsumedBytes // = 0 @@ -5101,6 +5341,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum copy: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneCopy // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneCopy + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneCopy + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneCopy: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.copy] = [ + .noneCopy, + ] + + } + enum count: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneCount // = 0 @@ -5281,6 +5551,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum CustomStringConvertible: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneCustomStringConvertible // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneCustomStringConvertible + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneCustomStringConvertible + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneCustomStringConvertible: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.CustomStringConvertible] = [ + .noneCustomStringConvertible, + ] + + } + enum d: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneD // = 0 @@ -7621,6 +7921,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum durationRange: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneDurationRange // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneDurationRange + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneDurationRange + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneDurationRange: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.durationRange] = [ + .noneDurationRange, + ] + + } + enum E: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneE // = 0 @@ -9181,6 +9511,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum failure: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneFailure // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneFailure + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneFailure + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneFailure: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.failure] = [ + .noneFailure, + ] + + } + enum falseEnum: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneFalse // = 0 @@ -9481,6 +9841,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum fieldMaskConversion: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneFieldMaskConversion // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneFieldMaskConversion + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneFieldMaskConversion + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneFieldMaskConversion: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.fieldMaskConversion] = [ + .noneFieldMaskConversion, + ] + + } + enum fieldName: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneFieldName // = 0 @@ -10651,6 +11041,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum function: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneFunction // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneFunction + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneFunction + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneFunction: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.function] = [ + .noneFunction, + ] + + } + enum G: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneG // = 0 @@ -15571,6 +15991,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum illegalNull: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneIllegalNull // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneIllegalNull + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneIllegalNull + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneIllegalNull: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.illegalNull] = [ + .noneIllegalNull, + ] + + } + enum index: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneIndex // = 0 @@ -16021,6 +16471,66 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum internalError: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneInternalError // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneInternalError + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneInternalError + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneInternalError: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.internalError] = [ + .noneInternalError, + ] + + } + + enum internalExtensionError: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneInternalExtensionError // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneInternalExtensionError + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneInternalExtensionError + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneInternalExtensionError: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.internalExtensionError] = [ + .noneInternalExtensionError, + ] + + } + enum InternalState: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneInternalState // = 0 @@ -16111,6 +16621,66 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum invalidArgument: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneInvalidArgument // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneInvalidArgument + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneInvalidArgument + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneInvalidArgument: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.invalidArgument] = [ + .noneInvalidArgument, + ] + + } + + enum invalidUTF8: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneInvalidUtf8 // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneInvalidUtf8 + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneInvalidUtf8 + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneInvalidUtf8: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.invalidUTF8] = [ + .noneInvalidUtf8, + ] + + } + enum isA: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneIsA // = 0 @@ -16561,6 +17131,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum JSONDecoding: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneJsondecoding // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneJsondecoding + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneJsondecoding + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneJsondecoding: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONDecoding] = [ + .noneJsondecoding, + ] + + } + enum JSONDecodingError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneJsondecodingError // = 0 @@ -16651,6 +17251,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum JSONEncoding: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneJsonencoding // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneJsonencoding + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneJsonencoding + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneJsonencoding: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONEncoding] = [ + .noneJsonencoding, + ] + + } + enum JSONEncodingError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneJsonencodingError // = 0 @@ -17431,6 +18061,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum leadingZero: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneLeadingZero // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneLeadingZero + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneLeadingZero + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneLeadingZero: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.leadingZero] = [ + .noneLeadingZero, + ] + + } + enum length: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneLength // = 0 @@ -17551,6 +18211,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum line: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneLine // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneLine + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneLine + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneLine: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.line] = [ + .noneLine, + ] + + } + enum list: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneList // = 0 @@ -17881,6 +18571,366 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum malformedAnyField: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedAnyField // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedAnyField + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedAnyField + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedAnyField: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedAnyField] = [ + .noneMalformedAnyField, + ] + + } + + enum malformedBool: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedBool // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedBool + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedBool + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedBool: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedBool] = [ + .noneMalformedBool, + ] + + } + + enum malformedDuration: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedDuration // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedDuration + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedDuration + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedDuration: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedDuration] = [ + .noneMalformedDuration, + ] + + } + + enum malformedFieldMask: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedFieldMask // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedFieldMask + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedFieldMask + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedFieldMask: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedFieldMask] = [ + .noneMalformedFieldMask, + ] + + } + + enum malformedLength: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedLength // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedLength + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedLength + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedLength: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedLength] = [ + .noneMalformedLength, + ] + + } + + enum malformedMap: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedMap // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedMap + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedMap + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedMap: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedMap] = [ + .noneMalformedMap, + ] + + } + + enum malformedNumber: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedNumber // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedNumber + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedNumber + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedNumber: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedNumber] = [ + .noneMalformedNumber, + ] + + } + + enum malformedProtobuf: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedProtobuf // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedProtobuf + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedProtobuf + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedProtobuf: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedProtobuf] = [ + .noneMalformedProtobuf, + ] + + } + + enum malformedString: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedString // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedString + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedString + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedString: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedString] = [ + .noneMalformedString, + ] + + } + + enum malformedText: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedText // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedText + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedText + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedText: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedText] = [ + .noneMalformedText, + ] + + } + + enum malformedTimestamp: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedTimestamp // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedTimestamp + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedTimestamp + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedTimestamp: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedTimestamp] = [ + .noneMalformedTimestamp, + ] + + } + + enum malformedWellKnownTypeJSON: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMalformedWellKnownTypeJson // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMalformedWellKnownTypeJson + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMalformedWellKnownTypeJson + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMalformedWellKnownTypeJson: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedWellKnownTypeJSON] = [ + .noneMalformedWellKnownTypeJson, + ] + + } + enum mapEntry: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneMapEntry // = 0 @@ -18631,6 +19681,96 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum missingFieldNames: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMissingFieldNames // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMissingFieldNames + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMissingFieldNames + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMissingFieldNames: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingFieldNames] = [ + .noneMissingFieldNames, + ] + + } + + enum missingRequiredFields: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMissingRequiredFields // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMissingRequiredFields + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMissingRequiredFields + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMissingRequiredFields: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingRequiredFields] = [ + .noneMissingRequiredFields, + ] + + } + + enum missingValue: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneMissingValue // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneMissingValue + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneMissingValue + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneMissingValue: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingValue] = [ + .noneMissingValue, + ] + + } + enum Mixin: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneMixin // = 0 @@ -19381,6 +20521,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum noBytesAvailable: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneNoBytesAvailable // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneNoBytesAvailable + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneNoBytesAvailable + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneNoBytesAvailable: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.noBytesAvailable] = [ + .noneNoBytesAvailable, + ] + + } + enum noStandardDescriptorAccessor: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneNoStandardDescriptorAccessor // = 0 @@ -19471,6 +20641,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum numberRange: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneNumberRange // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneNumberRange + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneNumberRange + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneNumberRange: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.numberRange] = [ + .noneNumberRange, + ] + + } + enum numberValue: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneNumberValue // = 0 @@ -23371,6 +24571,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum schemaMismatch: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneSchemaMismatch // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneSchemaMismatch + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneSchemaMismatch + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneSchemaMismatch: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.schemaMismatch] = [ + .noneSchemaMismatch, + ] + + } + enum seconds: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneSeconds // = 0 @@ -24091,6 +25321,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum SourceLocation: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneSourceLocation // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneSourceLocation + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneSourceLocation + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneSourceLocation: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.SourceLocation] = [ + .noneSourceLocation, + ] + + } + enum span: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneSpan // = 0 @@ -24901,6 +26161,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum SwiftProtobufError: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneSwiftProtobufError // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneSwiftProtobufError + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneSwiftProtobufError + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneSwiftProtobufError: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.SwiftProtobufError] = [ + .noneSwiftProtobufError, + ] + + } + enum syntax: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneSyntax // = 0 @@ -25171,7 +26461,37 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum TextFormatDecodingError: SwiftProtobuf.Enum, Swift.CaseIterable { + enum TextFormatDecoding: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneTextFormatDecoding // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneTextFormatDecoding + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneTextFormatDecoding + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneTextFormatDecoding: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDecoding] = [ + .noneTextFormatDecoding, + ] + + } + + enum textFormatDecodingError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTextFormatDecodingError // = 0 case UNRECOGNIZED(Int) @@ -25195,7 +26515,7 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDecodingError] = [ + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.textFormatDecodingError] = [ .noneTextFormatDecodingError, ] @@ -25501,6 +26821,66 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum timestampRange: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneTimestampRange // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneTimestampRange + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneTimestampRange + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneTimestampRange: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.timestampRange] = [ + .noneTimestampRange, + ] + + } + + enum tooLarge: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneTooLarge // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneTooLarge + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneTooLarge + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneTooLarge: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.tooLarge] = [ + .noneTooLarge, + ] + + } + enum total: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTotal // = 0 @@ -25621,6 +27001,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum trailingGarbage: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneTrailingGarbage // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneTrailingGarbage + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneTrailingGarbage + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneTrailingGarbage: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.trailingGarbage] = [ + .noneTrailingGarbage, + ] + + } + enum traverseEnum: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTraverse // = 0 @@ -25681,6 +27091,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum truncated: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneTruncated // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneTruncated + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneTruncated + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneTruncated: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.truncated] = [ + .noneTruncated, + ] + + } + enum tryEnum: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTry // = 0 @@ -25801,6 +27241,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum typeMismatch: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneTypeMismatch // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneTypeMismatch + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneTypeMismatch + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneTypeMismatch: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.typeMismatch] = [ + .noneTypeMismatch, + ] + + } + enum typeName: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTypeName // = 0 @@ -26371,6 +27841,66 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum unknownField: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneUnknownField // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneUnknownField + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneUnknownField + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneUnknownField: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownField] = [ + .noneUnknownField, + ] + + } + + enum unknownFieldName: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneUnknownFieldName // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneUnknownFieldName + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneUnknownFieldName + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneUnknownFieldName: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownFieldName] = [ + .noneUnknownFieldName, + ] + + } + enum unknownFieldsEnum: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneUnknownFields // = 0 @@ -26431,6 +27961,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum unknownStreamError: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneUnknownStreamError // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneUnknownStreamError + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneUnknownStreamError + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneUnknownStreamError: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownStreamError] = [ + .noneUnknownStreamError, + ] + + } + enum unpackTo: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneUnpackTo // = 0 @@ -26461,6 +28021,96 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum unquotedMapKey: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneUnquotedMapKey // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneUnquotedMapKey + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneUnquotedMapKey + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneUnquotedMapKey: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unquotedMapKey] = [ + .noneUnquotedMapKey, + ] + + } + + enum unrecognizedEnumValue: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneUnrecognizedEnumValue // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneUnrecognizedEnumValue + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneUnrecognizedEnumValue + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneUnrecognizedEnumValue: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unrecognizedEnumValue] = [ + .noneUnrecognizedEnumValue, + ] + + } + + enum unregisteredTypeURL: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneUnregisteredTypeURL // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneUnregisteredTypeURL + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneUnregisteredTypeURL + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneUnregisteredTypeURL: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unregisteredTypeURL] = [ + .noneUnregisteredTypeURL, + ] + + } + enum UnsafeBufferPointer: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneUnsafeBufferPointer // = 0 @@ -26971,6 +28621,36 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } + enum valueNumberNotFinite: SwiftProtobuf.Enum, Swift.CaseIterable { + typealias RawValue = Int + case noneValueNumberNotFinite // = 0 + case UNRECOGNIZED(Int) + + init() { + self = .noneValueNumberNotFinite + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .noneValueNumberNotFinite + default: self = .UNRECOGNIZED(rawValue) + } + } + + var rawValue: Int { + switch self { + case .noneValueNumberNotFinite: return 0 + case .UNRECOGNIZED(let i): return i + } + } + + // The compiler won't synthesize support with the UNRECOGNIZED case. + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.valueNumberNotFinite] = [ + .noneValueNumberNotFinite, + ] + + } + enum values: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneValues // = 0 @@ -29433,6 +31113,18 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.AnyMessageStor ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.anyTypeURLNotRegistered: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_anyTypeURLNotRegistered"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.AnyUnpack: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_AnyUnpack"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.AnyUnpackError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_AnyUnpackError"), @@ -29589,6 +31281,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryDecoder: ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryDecoding: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_BinaryDecoding"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryDecodingError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_BinaryDecodingError"), @@ -29613,6 +31311,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryEncoder: ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryEncoding: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_BinaryEncoding"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryEncodingError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_BinaryEncodingError"), @@ -29661,6 +31365,18 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.binaryProtobuf ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryStreamDecoding: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_BinaryStreamDecoding"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.binaryStreamDecodingError: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_binaryStreamDecodingError"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.bitPattern: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_bitPattern"), @@ -30339,6 +32055,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.clientStreamin ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.code: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_code"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.codePoint: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_codePoint"), @@ -30369,6 +32091,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.comma: SwiftPr ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.conflictingOneOf: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_conflictingOneOf"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.consumedBytes: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_consumedBytes"), @@ -30381,6 +32109,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.contentsOf: Sw ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.copy: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_copy"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.count: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_count"), @@ -30417,6 +32151,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.CustomDebugStr ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.CustomStringConvertible: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_CustomStringConvertible"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.d: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_d"), @@ -30885,6 +32625,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.Duration: Swif ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.durationRange: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_durationRange"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.E: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_E"), @@ -31197,6 +32943,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.F: SwiftProtob ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.failure: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_failure"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.falseEnum: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_false"), @@ -31257,6 +33009,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.FieldMask: Swi ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.fieldMaskConversion: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_fieldMaskConversion"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.fieldName: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_fieldName"), @@ -31491,6 +33249,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.funcEnum: Swif ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.function: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_function"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.G: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_G"), @@ -32475,6 +34239,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.ignoreUnknownF ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.illegalNull: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_illegalNull"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.index: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_index"), @@ -32565,6 +34335,18 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.Internal: Swif ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.internalError: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_internalError"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.internalExtensionError: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_internalExtensionError"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.InternalState: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_InternalState"), @@ -32583,6 +34365,18 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.ints: SwiftPro ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.invalidArgument: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_invalidArgument"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.invalidUTF8: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_invalidUTF8"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.isA: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_isA"), @@ -32673,6 +34467,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONDecoder: S ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONDecoding: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_JSONDecoding"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONDecodingError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_JSONDecodingError"), @@ -32691,6 +34491,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.jsonEncoder: S ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONEncoding: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_JSONEncoding"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONEncodingError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_JSONEncodingError"), @@ -32847,6 +34653,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.leadingDetache ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.leadingZero: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_leadingZero"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.length: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_length"), @@ -32871,6 +34683,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.lhs: SwiftProt ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.line: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_line"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.list: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_list"), @@ -32937,6 +34755,78 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.makeIterator: ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedAnyField: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedAnyField"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedBool: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedBool"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedDuration: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedDuration"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedFieldMask: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedFieldMask"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedLength: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedLength"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedMap: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedMap"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedNumber: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedNumber"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedProtobuf: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedProtobuf"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedString: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedString"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedText: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedText"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedTimestamp: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedTimestamp"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedWellKnownTypeJSON: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_malformedWellKnownTypeJSON"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.mapEntry: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_mapEntry"), @@ -33087,6 +34977,24 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.minor: SwiftPr ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingFieldNames: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_missingFieldNames"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingRequiredFields: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_missingRequiredFields"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingValue: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_missingValue"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.Mixin: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_Mixin"), @@ -33237,6 +35145,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.nilLiteral: Sw ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.noBytesAvailable: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_noBytesAvailable"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.noStandardDescriptorAccessor: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_noStandardDescriptorAccessor"), @@ -33255,6 +35169,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.number: SwiftP ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.numberRange: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_numberRange"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.numberValue: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_numberValue"), @@ -34035,6 +35955,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.scanner: Swift ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.schemaMismatch: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_schemaMismatch"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.seconds: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_seconds"), @@ -34179,6 +36105,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.sourceFile: Sw ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.SourceLocation: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_SourceLocation"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.span: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_span"), @@ -34341,6 +36273,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.SwiftProtobufC ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.SwiftProtobufError: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_SwiftProtobufError"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.syntax: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_syntax"), @@ -34395,9 +36333,15 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDeco ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDecodingError: SwiftProtobuf._ProtoNameProviding { +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDecoding: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_TextFormatDecoding"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.textFormatDecodingError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_TextFormatDecodingError"), + 0: .same(proto: "NONE_textFormatDecodingError"), ] } @@ -34461,6 +36405,18 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.Timestamp: Swi ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.timestampRange: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_timestampRange"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.tooLarge: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_tooLarge"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.total: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_total"), @@ -34485,6 +36441,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.trailingCommen ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.trailingGarbage: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_trailingGarbage"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.traverseEnum: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_traverse"), @@ -34497,6 +36459,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.trueEnum: Swif ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.truncated: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_truncated"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.tryEnum: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_try"), @@ -34521,6 +36489,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TypeEnumEnum: ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.typeMismatch: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_typeMismatch"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.typeName: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_typeName"), @@ -34635,6 +36609,18 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknown: Swift ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownField: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_unknownField"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownFieldName: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_unknownFieldName"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownFieldsEnum: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_unknownFields"), @@ -34647,12 +36633,36 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.UnknownStorage ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownStreamError: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_unknownStreamError"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unpackTo: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_unpackTo"), ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unquotedMapKey: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_unquotedMapKey"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unrecognizedEnumValue: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_unrecognizedEnumValue"), + ] +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unregisteredTypeURL: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_unregisteredTypeURL"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.UnsafeBufferPointer: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_UnsafeBufferPointer"), @@ -34755,6 +36765,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.valueField: Sw ] } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.valueNumberNotFinite: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "NONE_valueNumberNotFinite"), + ] +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.values: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_values"), diff --git a/Tests/SwiftProtobufTests/generated_swift_names_messages.pb.swift b/Tests/SwiftProtobufTests/generated_swift_names_messages.pb.swift index b6c7fa674..871fff23b 100644 --- a/Tests/SwiftProtobufTests/generated_swift_names_messages.pb.swift +++ b/Tests/SwiftProtobufTests/generated_swift_names_messages.pb.swift @@ -163,6 +163,30 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct anyTypeURLNotRegistered: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var anyTypeUrlnotRegistered: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct AnyUnpack: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var anyUnpack: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct AnyUnpackError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -475,6 +499,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct BinaryDecoding: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var binaryDecoding: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct BinaryDecodingError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -523,6 +559,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct BinaryEncoding: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var binaryEncoding: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct BinaryEncodingError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -619,6 +667,30 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct BinaryStreamDecoding: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var binaryStreamDecoding: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct binaryStreamDecodingError: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var binaryStreamDecodingError: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct bitPattern: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -1975,6 +2047,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct code: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var code: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct codePoint: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -2035,6 +2119,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct conflictingOneOf: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var conflictingOneOf: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct consumedBytes: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -2059,6 +2155,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct copy: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var copy: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct count: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -2131,6 +2239,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct CustomStringConvertible: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var customStringConvertible: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct d: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -3067,6 +3187,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct durationRange: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var durationRange: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct E: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -3691,6 +3823,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct failure: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var failure: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct falseMessage: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -3811,6 +3955,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct fieldMaskConversion: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var fieldMaskConversion: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct fieldName: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -4279,6 +4435,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct function: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var function: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct G: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6247,6 +6415,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct illegalNull: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var illegalNull: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct index: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6427,6 +6607,30 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct internalError: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var internalError: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct internalExtensionError: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var internalExtensionError: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct InternalState: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6463,6 +6667,30 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct invalidArgument: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var invalidArgument: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct invalidUTF8: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var invalidUtf8: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct isA: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6643,6 +6871,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct JSONDecoding: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var jsondecoding: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct JSONDecodingError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6679,6 +6919,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct JSONEncoding: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var jsonencoding: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct JSONEncodingError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6991,6 +7243,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct leadingZero: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var leadingZero: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct length: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -7039,6 +7303,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct line: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var line: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct list: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -7171,6 +7447,150 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct malformedAnyField: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedAnyField: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedBool: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedBool: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedDuration: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedDuration: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedFieldMask: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedFieldMask: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedLength: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedLength: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedMap: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedMap: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedNumber: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedNumber: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedProtobuf: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedProtobuf: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedString: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedString: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedText: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedText: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedTimestamp: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedTimestamp: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct malformedWellKnownTypeJSON: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var malformedWellKnownTypeJson: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct mapEntry: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -7471,6 +7891,42 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct missingFieldNames: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var missingFieldNames: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct missingRequiredFields: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var missingRequiredFields: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct missingValue: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var missingValue: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct Mixin: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -7771,6 +8227,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct noBytesAvailable: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var noBytesAvailable: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct noStandardDescriptorAccessor: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -7807,6 +8275,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct numberRange: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var numberRange: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct numberValue: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -9367,6 +9847,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct schemaMismatch: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var schemaMismatch: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct seconds: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -9655,6 +10147,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct SourceLocation: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var sourceLocation: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct span: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -9979,6 +10483,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct SwiftProtobufError: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var swiftProtobufError: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct syntax: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10087,7 +10603,19 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct TextFormatDecodingError: Sendable { + struct TextFormatDecoding: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var textFormatDecoding: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct textFormatDecodingError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -10219,6 +10747,30 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct timestampRange: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var timestampRange: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct tooLarge: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var tooLarge: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct total: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10267,6 +10819,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct trailingGarbage: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var trailingGarbage: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct traverseMessage: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10291,6 +10855,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct truncated: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var truncated: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct tryMessage: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10339,6 +10915,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct typeMismatch: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var typeMismatch: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct typeName: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10567,6 +11155,30 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct unknownField: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var unknownField: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct unknownFieldName: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var unknownFieldName: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct unknownFieldsMessage: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10591,6 +11203,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct unknownStreamError: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var unknownStreamError: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct unpackTo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10603,6 +11227,42 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct unquotedMapKey: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var unquotedMapKey: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct unrecognizedEnumValue: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var unrecognizedEnumValue: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + + struct unregisteredTypeURL: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var unregisteredTypeURL: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct UnsafeBufferPointer: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10807,6 +11467,18 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } + struct valueNumberNotFinite: Sendable { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var valueNumberNotFinite: Int32 = 0 + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + } + struct values: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -12133,6 +12805,70 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyMessageS } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.anyTypeURLNotRegistered: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".anyTypeURLNotRegistered" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "anyTypeURLNotRegistered"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.anyTypeUrlnotRegistered) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.anyTypeUrlnotRegistered != 0 { + try visitor.visitSingularInt32Field(value: self.anyTypeUrlnotRegistered, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.anyTypeURLNotRegistered, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.anyTypeURLNotRegistered) -> Bool { + if lhs.anyTypeUrlnotRegistered != rhs.anyTypeUrlnotRegistered {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyUnpack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".AnyUnpack" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "AnyUnpack"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.anyUnpack) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.anyUnpack != 0 { + try visitor.visitSingularInt32Field(value: self.anyUnpack, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyUnpack, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyUnpack) -> Bool { + if lhs.anyUnpack != rhs.anyUnpack {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyUnpackError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".AnyUnpackError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -12965,6 +13701,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryDecod } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryDecoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".BinaryDecoding" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "BinaryDecoding"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.binaryDecoding) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.binaryDecoding != 0 { + try visitor.visitSingularInt32Field(value: self.binaryDecoding, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryDecoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryDecoding) -> Bool { + if lhs.binaryDecoding != rhs.binaryDecoding {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryDecodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".BinaryDecodingError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -13093,6 +13861,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncod } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".BinaryEncoding" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "BinaryEncoding"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.binaryEncoding) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.binaryEncoding != 0 { + try visitor.visitSingularInt32Field(value: self.binaryEncoding, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncoding) -> Bool { + if lhs.binaryEncoding != rhs.binaryEncoding {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".BinaryEncodingError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -13349,6 +14149,70 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.binaryProto } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryStreamDecoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".BinaryStreamDecoding" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "BinaryStreamDecoding"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.binaryStreamDecoding) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.binaryStreamDecoding != 0 { + try visitor.visitSingularInt32Field(value: self.binaryStreamDecoding, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryStreamDecoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryStreamDecoding) -> Bool { + if lhs.binaryStreamDecoding != rhs.binaryStreamDecoding {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.binaryStreamDecodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".binaryStreamDecodingError" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "binaryStreamDecodingError"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.binaryStreamDecodingError) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.binaryStreamDecodingError != 0 { + try visitor.visitSingularInt32Field(value: self.binaryStreamDecodingError, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.binaryStreamDecodingError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.binaryStreamDecodingError) -> Bool { + if lhs.binaryStreamDecodingError != rhs.binaryStreamDecodingError {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.bitPattern: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".bitPattern" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -16965,6 +17829,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.clientStrea } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.code: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".code" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "code"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.code) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.code != 0 { + try visitor.visitSingularInt32Field(value: self.code, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.code, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.code) -> Bool { + if lhs.code != rhs.code {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.codePoint: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".codePoint" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -17125,6 +18021,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.comma: Swif } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.conflictingOneOf: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".conflictingOneOf" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "conflictingOneOf"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.conflictingOneOf) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.conflictingOneOf != 0 { + try visitor.visitSingularInt32Field(value: self.conflictingOneOf, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.conflictingOneOf, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.conflictingOneOf) -> Bool { + if lhs.conflictingOneOf != rhs.conflictingOneOf {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.consumedBytes: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".consumedBytes" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -17189,6 +18117,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.contentsOf: } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.copy: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".copy" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "copy"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.copy) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.copy != 0 { + try visitor.visitSingularInt32Field(value: self.copy, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.copy, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.copy) -> Bool { + if lhs.copy != rhs.copy {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.count: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".count" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -17381,6 +18341,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.CustomDebug } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.CustomStringConvertible: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".CustomStringConvertible" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "CustomStringConvertible"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.customStringConvertible) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.customStringConvertible != 0 { + try visitor.visitSingularInt32Field(value: self.customStringConvertible, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.CustomStringConvertible, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.CustomStringConvertible) -> Bool { + if lhs.customStringConvertible != rhs.customStringConvertible {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.d: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".d" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -19877,6 +20869,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.Duration: S } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.durationRange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".durationRange" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "durationRange"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.durationRange) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.durationRange != 0 { + try visitor.visitSingularInt32Field(value: self.durationRange, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.durationRange, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.durationRange) -> Bool { + if lhs.durationRange != rhs.durationRange {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.E: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".E" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -21541,6 +22565,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.F: SwiftPro } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.failure: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".failure" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "failure"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.failure) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.failure != 0 { + try visitor.visitSingularInt32Field(value: self.failure, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.failure, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.failure) -> Bool { + if lhs.failure != rhs.failure {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.falseMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".false" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -21861,6 +22917,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.FieldMask: } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.fieldMaskConversion: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".fieldMaskConversion" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "fieldMaskConversion"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.fieldMaskConversion) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.fieldMaskConversion != 0 { + try visitor.visitSingularInt32Field(value: self.fieldMaskConversion, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.fieldMaskConversion, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.fieldMaskConversion) -> Bool { + if lhs.fieldMaskConversion != rhs.fieldMaskConversion {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.fieldName: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".fieldName" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -23109,6 +24197,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.funcMessage } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.function: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".function" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "function"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.function) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.function != 0 { + try visitor.visitSingularInt32Field(value: self.function, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.function, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.function) -> Bool { + if lhs.function != rhs.function {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.G: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".G" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -28357,6 +29477,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.ignoreUnkno } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.illegalNull: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".illegalNull" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "illegalNull"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.illegalNull) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.illegalNull != 0 { + try visitor.visitSingularInt32Field(value: self.illegalNull, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.illegalNull, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.illegalNull) -> Bool { + if lhs.illegalNull != rhs.illegalNull {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.index: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".index" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -28837,6 +29989,70 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.Internal: S } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".internalError" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "internalError"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.internalError) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.internalError != 0 { + try visitor.visitSingularInt32Field(value: self.internalError, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalError) -> Bool { + if lhs.internalError != rhs.internalError {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalExtensionError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".internalExtensionError" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "internalExtensionError"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.internalExtensionError) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.internalExtensionError != 0 { + try visitor.visitSingularInt32Field(value: self.internalExtensionError, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalExtensionError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalExtensionError) -> Bool { + if lhs.internalExtensionError != rhs.internalExtensionError {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.InternalState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".InternalState" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -28933,6 +30149,70 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.ints: Swift } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidArgument: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".invalidArgument" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "invalidArgument"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.invalidArgument) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.invalidArgument != 0 { + try visitor.visitSingularInt32Field(value: self.invalidArgument, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidArgument, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidArgument) -> Bool { + if lhs.invalidArgument != rhs.invalidArgument {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidUTF8: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".invalidUTF8" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "invalidUTF8"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.invalidUtf8) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.invalidUtf8 != 0 { + try visitor.visitSingularInt32Field(value: self.invalidUtf8, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidUTF8, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidUTF8) -> Bool { + if lhs.invalidUtf8 != rhs.invalidUtf8 {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.isA: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".isA" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -29413,6 +30693,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecoder } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".JSONDecoding" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "JSONDecoding"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.jsondecoding) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.jsondecoding != 0 { + try visitor.visitSingularInt32Field(value: self.jsondecoding, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecoding) -> Bool { + if lhs.jsondecoding != rhs.jsondecoding {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".JSONDecodingError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -29509,6 +30821,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.jsonEncoder } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONEncoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".JSONEncoding" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "JSONEncoding"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.jsonencoding) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.jsonencoding != 0 { + try visitor.visitSingularInt32Field(value: self.jsonencoding, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONEncoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONEncoding) -> Bool { + if lhs.jsonencoding != rhs.jsonencoding {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONEncodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".JSONEncodingError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -30341,6 +31685,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.leadingDeta } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.leadingZero: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".leadingZero" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "leadingZero"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.leadingZero) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.leadingZero != 0 { + try visitor.visitSingularInt32Field(value: self.leadingZero, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.leadingZero, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.leadingZero) -> Bool { + if lhs.leadingZero != rhs.leadingZero {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.length: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".length" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -30469,6 +31845,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.lhs: SwiftP } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.line: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".line" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "line"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.line) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.line != 0 { + try visitor.visitSingularInt32Field(value: self.line, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.line, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.line) -> Bool { + if lhs.line != rhs.line {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.list: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".list" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -30821,6 +32229,390 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.makeIterato } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedAnyField: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedAnyField" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedAnyField"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedAnyField) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedAnyField != 0 { + try visitor.visitSingularInt32Field(value: self.malformedAnyField, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedAnyField, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedAnyField) -> Bool { + if lhs.malformedAnyField != rhs.malformedAnyField {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedBool: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedBool" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedBool"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedBool) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedBool != 0 { + try visitor.visitSingularInt32Field(value: self.malformedBool, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedBool, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedBool) -> Bool { + if lhs.malformedBool != rhs.malformedBool {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedDuration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedDuration" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedDuration"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedDuration) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedDuration != 0 { + try visitor.visitSingularInt32Field(value: self.malformedDuration, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedDuration, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedDuration) -> Bool { + if lhs.malformedDuration != rhs.malformedDuration {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedFieldMask: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedFieldMask" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedFieldMask"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedFieldMask) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedFieldMask != 0 { + try visitor.visitSingularInt32Field(value: self.malformedFieldMask, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedFieldMask, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedFieldMask) -> Bool { + if lhs.malformedFieldMask != rhs.malformedFieldMask {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedLength: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedLength" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedLength"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedLength) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedLength != 0 { + try visitor.visitSingularInt32Field(value: self.malformedLength, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedLength, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedLength) -> Bool { + if lhs.malformedLength != rhs.malformedLength {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedMap: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedMap" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedMap"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedMap) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedMap != 0 { + try visitor.visitSingularInt32Field(value: self.malformedMap, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedMap, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedMap) -> Bool { + if lhs.malformedMap != rhs.malformedMap {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedNumber: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedNumber" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedNumber"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedNumber) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedNumber != 0 { + try visitor.visitSingularInt32Field(value: self.malformedNumber, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedNumber, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedNumber) -> Bool { + if lhs.malformedNumber != rhs.malformedNumber {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedProtobuf: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedProtobuf" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedProtobuf"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedProtobuf) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedProtobuf != 0 { + try visitor.visitSingularInt32Field(value: self.malformedProtobuf, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedProtobuf, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedProtobuf) -> Bool { + if lhs.malformedProtobuf != rhs.malformedProtobuf {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedString: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedString" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedString"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedString) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedString != 0 { + try visitor.visitSingularInt32Field(value: self.malformedString, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedString, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedString) -> Bool { + if lhs.malformedString != rhs.malformedString {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedText: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedText" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedText"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedText) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedText != 0 { + try visitor.visitSingularInt32Field(value: self.malformedText, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedText, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedText) -> Bool { + if lhs.malformedText != rhs.malformedText {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedTimestamp: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedTimestamp" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedTimestamp"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedTimestamp) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedTimestamp != 0 { + try visitor.visitSingularInt32Field(value: self.malformedTimestamp, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedTimestamp, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedTimestamp) -> Bool { + if lhs.malformedTimestamp != rhs.malformedTimestamp {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedWellKnownTypeJSON: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedWellKnownTypeJSON" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "malformedWellKnownTypeJSON"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedWellKnownTypeJson) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.malformedWellKnownTypeJson != 0 { + try visitor.visitSingularInt32Field(value: self.malformedWellKnownTypeJson, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedWellKnownTypeJSON, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedWellKnownTypeJSON) -> Bool { + if lhs.malformedWellKnownTypeJson != rhs.malformedWellKnownTypeJson {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.mapEntry: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".mapEntry" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -31621,6 +33413,102 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.minor: Swif } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingFieldNames: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".missingFieldNames" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "missingFieldNames"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.missingFieldNames) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.missingFieldNames != 0 { + try visitor.visitSingularInt32Field(value: self.missingFieldNames, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingFieldNames, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingFieldNames) -> Bool { + if lhs.missingFieldNames != rhs.missingFieldNames {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingRequiredFields: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".missingRequiredFields" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "missingRequiredFields"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.missingRequiredFields) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.missingRequiredFields != 0 { + try visitor.visitSingularInt32Field(value: self.missingRequiredFields, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingRequiredFields, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingRequiredFields) -> Bool { + if lhs.missingRequiredFields != rhs.missingRequiredFields {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingValue: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".missingValue" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "missingValue"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.missingValue) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.missingValue != 0 { + try visitor.visitSingularInt32Field(value: self.missingValue, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingValue, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingValue) -> Bool { + if lhs.missingValue != rhs.missingValue {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.Mixin: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".Mixin" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -32421,6 +34309,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.nilLiteral: } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.noBytesAvailable: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".noBytesAvailable" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "noBytesAvailable"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.noBytesAvailable) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.noBytesAvailable != 0 { + try visitor.visitSingularInt32Field(value: self.noBytesAvailable, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.noBytesAvailable, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.noBytesAvailable) -> Bool { + if lhs.noBytesAvailable != rhs.noBytesAvailable {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.noStandardDescriptorAccessor: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".noStandardDescriptorAccessor" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -32517,6 +34437,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.number: Swi } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.numberRange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".numberRange" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "numberRange"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.numberRange) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.numberRange != 0 { + try visitor.visitSingularInt32Field(value: self.numberRange, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.numberRange, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.numberRange) -> Bool { + if lhs.numberRange != rhs.numberRange {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.numberValue: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".numberValue" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -36677,6 +38629,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.scanner: Sw } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.schemaMismatch: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".schemaMismatch" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "schemaMismatch"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.schemaMismatch) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.schemaMismatch != 0 { + try visitor.visitSingularInt32Field(value: self.schemaMismatch, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.schemaMismatch, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.schemaMismatch) -> Bool { + if lhs.schemaMismatch != rhs.schemaMismatch {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.seconds: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".seconds" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -37445,6 +39429,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.sourceFile: } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.SourceLocation: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".SourceLocation" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "SourceLocation"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.sourceLocation) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.sourceLocation != 0 { + try visitor.visitSingularInt32Field(value: self.sourceLocation, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.SourceLocation, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.SourceLocation) -> Bool { + if lhs.sourceLocation != rhs.sourceLocation {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.span: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".span" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -38309,6 +40325,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.SwiftProtob } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.SwiftProtobufError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".SwiftProtobufError" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "SwiftProtobufError"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.swiftProtobufError) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.swiftProtobufError != 0 { + try visitor.visitSingularInt32Field(value: self.swiftProtobufError, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.SwiftProtobufError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.SwiftProtobufError) -> Bool { + if lhs.swiftProtobufError != rhs.swiftProtobufError {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.syntax: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".syntax" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -38597,10 +40645,42 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatD } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".TextFormatDecodingError" +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".TextFormatDecoding" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "TextFormatDecoding"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.textFormatDecoding) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.textFormatDecoding != 0 { + try visitor.visitSingularInt32Field(value: self.textFormatDecoding, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecoding) -> Bool { + if lhs.textFormatDecoding != rhs.textFormatDecoding {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.textFormatDecodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".textFormatDecodingError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "TextFormatDecodingError"), + 1: .same(proto: "textFormatDecodingError"), ] mutating func decodeMessage(decoder: inout D) throws { @@ -38622,7 +40702,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatD try unknownFields.traverse(visitor: &visitor) } - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecodingError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecodingError) -> Bool { + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.textFormatDecodingError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.textFormatDecodingError) -> Bool { if lhs.textFormatDecodingError != rhs.textFormatDecodingError {return false} if lhs.unknownFields != rhs.unknownFields {return false} return true @@ -38949,6 +41029,70 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.Timestamp: } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.timestampRange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".timestampRange" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "timestampRange"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.timestampRange) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.timestampRange != 0 { + try visitor.visitSingularInt32Field(value: self.timestampRange, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.timestampRange, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.timestampRange) -> Bool { + if lhs.timestampRange != rhs.timestampRange {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.tooLarge: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".tooLarge" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "tooLarge"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.tooLarge) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.tooLarge != 0 { + try visitor.visitSingularInt32Field(value: self.tooLarge, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.tooLarge, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.tooLarge) -> Bool { + if lhs.tooLarge != rhs.tooLarge {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.total: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".total" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -39077,6 +41221,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trailingCom } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trailingGarbage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".trailingGarbage" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "trailingGarbage"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.trailingGarbage) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.trailingGarbage != 0 { + try visitor.visitSingularInt32Field(value: self.trailingGarbage, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trailingGarbage, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trailingGarbage) -> Bool { + if lhs.trailingGarbage != rhs.trailingGarbage {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.traverseMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".traverse" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -39141,6 +41317,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trueMessage } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.truncated: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".truncated" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "truncated"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.truncated) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.truncated != 0 { + try visitor.visitSingularInt32Field(value: self.truncated, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.truncated, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.truncated) -> Bool { + if lhs.truncated != rhs.truncated {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.tryMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".try" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -39269,6 +41477,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TypeEnum: S } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.typeMismatch: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".typeMismatch" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "typeMismatch"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.typeMismatch) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.typeMismatch != 0 { + try visitor.visitSingularInt32Field(value: self.typeMismatch, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.typeMismatch, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.typeMismatch) -> Bool { + if lhs.typeMismatch != rhs.typeMismatch {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.typeName: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".typeName" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -39877,6 +42117,70 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknown: Sw } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownField: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unknownField" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "unknownField"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.unknownField) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.unknownField != 0 { + try visitor.visitSingularInt32Field(value: self.unknownField, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownField, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownField) -> Bool { + if lhs.unknownField != rhs.unknownField {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownFieldName: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unknownFieldName" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "unknownFieldName"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.unknownFieldName) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.unknownFieldName != 0 { + try visitor.visitSingularInt32Field(value: self.unknownFieldName, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownFieldName, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownFieldName) -> Bool { + if lhs.unknownFieldName != rhs.unknownFieldName {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownFieldsMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unknownFields" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -39941,6 +42245,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.UnknownStor } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownStreamError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unknownStreamError" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "unknownStreamError"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.unknownStreamError) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.unknownStreamError != 0 { + try visitor.visitSingularInt32Field(value: self.unknownStreamError, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownStreamError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownStreamError) -> Bool { + if lhs.unknownStreamError != rhs.unknownStreamError {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unpackTo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unpackTo" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -39973,6 +42309,102 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unpackTo: S } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unquotedMapKey: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unquotedMapKey" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "unquotedMapKey"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.unquotedMapKey) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.unquotedMapKey != 0 { + try visitor.visitSingularInt32Field(value: self.unquotedMapKey, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unquotedMapKey, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unquotedMapKey) -> Bool { + if lhs.unquotedMapKey != rhs.unquotedMapKey {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unrecognizedEnumValue: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unrecognizedEnumValue" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "unrecognizedEnumValue"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.unrecognizedEnumValue) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.unrecognizedEnumValue != 0 { + try visitor.visitSingularInt32Field(value: self.unrecognizedEnumValue, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unrecognizedEnumValue, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unrecognizedEnumValue) -> Bool { + if lhs.unrecognizedEnumValue != rhs.unrecognizedEnumValue {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unregisteredTypeURL: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unregisteredTypeURL" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "unregisteredTypeURL"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.unregisteredTypeURL) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.unregisteredTypeURL != 0 { + try visitor.visitSingularInt32Field(value: self.unregisteredTypeURL, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unregisteredTypeURL, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unregisteredTypeURL) -> Bool { + if lhs.unregisteredTypeURL != rhs.unregisteredTypeURL {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.UnsafeBufferPointer: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".UnsafeBufferPointer" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -40517,6 +42949,38 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.valueField: } } +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.valueNumberNotFinite: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".valueNumberNotFinite" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 1: .same(proto: "valueNumberNotFinite"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 1: try { try decoder.decodeSingularInt32Field(value: &self.valueNumberNotFinite) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + if self.valueNumberNotFinite != 0 { + try visitor.visitSingularInt32Field(value: self.valueNumberNotFinite, fieldNumber: 1) + } + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.valueNumberNotFinite, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.valueNumberNotFinite) -> Bool { + if lhs.valueNumberNotFinite != rhs.valueNumberNotFinite {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.values: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".values" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ From 4ff8768205d00dff46eaab79c2c56a2b4de6c150 Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Mon, 29 Apr 2024 13:32:30 +0100 Subject: [PATCH 11/19] Fix tests after rebase --- Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift b/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift index 8b698005f..57d5dbf6e 100644 --- a/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift +++ b/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift @@ -144,7 +144,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch TextFormatDecodingError.unknownField { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { // This is what should have happened. } @@ -165,7 +165,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch TextFormatDecodingError.unknownField { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { // This is what should have happened. } @@ -206,7 +206,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch TextFormatDecodingError.unknownField { + } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { // This is what should have happened. } From 330beeccd46fc6929d2314dccc9f33ed6ad41e2e Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Thu, 9 May 2024 17:54:34 +0100 Subject: [PATCH 12/19] Keep existing errors and move only new ones to SwiftProtobufError --- Sources/SwiftProtobuf/AnyMessageStorage.swift | 10 +- Sources/SwiftProtobuf/AnyUnpackError.swift | 1 - .../SwiftProtobuf/AsyncMessageSequence.swift | 4 +- Sources/SwiftProtobuf/BinaryDecoder.swift | 74 +- .../SwiftProtobuf/BinaryDecodingError.swift | 1 - Sources/SwiftProtobuf/BinaryDelimited.swift | 13 +- .../SwiftProtobuf/BinaryEncodingError.swift | 1 - .../Google_Protobuf_Any+Extensions.swift | 4 +- .../Google_Protobuf_Duration+Extensions.swift | 18 +- ...Google_Protobuf_FieldMask+Extensions.swift | 4 +- ...Google_Protobuf_Timestamp+Extensions.swift | 32 +- .../Google_Protobuf_Value+Extensions.swift | 6 +- Sources/SwiftProtobuf/JSONDecoder.swift | 32 +- Sources/SwiftProtobuf/JSONDecodingError.swift | 1 - Sources/SwiftProtobuf/JSONEncodingError.swift | 1 - .../SwiftProtobuf/JSONEncodingVisitor.swift | 8 +- Sources/SwiftProtobuf/JSONScanner.swift | 160 ++-- .../Message+BinaryAdditions.swift | 4 +- .../SwiftProtobuf/Message+JSONAdditions.swift | 10 +- .../Message+JSONArrayAdditions.swift | 6 +- .../Message+TextFormatAdditions.swift | 2 +- .../SwiftProtobuf/SwiftProtobufError.swift | 761 ------------------ Sources/SwiftProtobuf/TextFormatDecoder.swift | 48 +- .../TextFormatDecodingError.swift | 1 - Sources/SwiftProtobuf/TextFormatScanner.swift | 88 +- .../Test_AsyncMessageSequence.swift | 6 +- .../Test_BinaryDecodingOptions.swift | 2 +- .../Test_BinaryDelimited.swift | 2 +- .../Test_JSONDecodingOptions.swift | 11 +- .../Test_JSON_Conformance.swift | 21 +- Tests/SwiftProtobufTests/Test_Required.swift | 8 +- Tests/SwiftProtobufTests/Test_Struct.swift | 2 +- .../Test_TextFormatDecodingOptions.swift | 2 +- .../Test_TextFormat_Unknown.swift | 28 +- Tests/SwiftProtobufTests/Test_Wrappers.swift | 2 +- 35 files changed, 304 insertions(+), 1070 deletions(-) diff --git a/Sources/SwiftProtobuf/AnyMessageStorage.swift b/Sources/SwiftProtobuf/AnyMessageStorage.swift index 75555378a..2f2c181f4 100644 --- a/Sources/SwiftProtobuf/AnyMessageStorage.swift +++ b/Sources/SwiftProtobuf/AnyMessageStorage.swift @@ -76,7 +76,7 @@ fileprivate func unpack(contentJSON: [UInt8], } if !options.ignoreUnknownFields { // The only thing within a WKT should be "value". - throw SwiftProtobufError.AnyUnpack.malformedWellKnownTypeJSON() + throw AnyUnpackError.malformedWellKnownTypeJSON } let _ = try scanner.skip() try scanner.skipRequiredComma() @@ -84,7 +84,7 @@ fileprivate func unpack(contentJSON: [UInt8], if !options.ignoreUnknownFields && !scanner.complete { // If that wasn't the end, then there was another key, and WKTs should // only have the one when not skipping unknowns. - throw SwiftProtobufError.AnyUnpack.malformedWellKnownTypeJSON() + throw AnyUnpackError.malformedWellKnownTypeJSON } } } @@ -174,7 +174,7 @@ internal class AnyMessageStorage { options: BinaryDecodingOptions ) throws { guard isA(M.self) else { - throw SwiftProtobufError.AnyUnpack.typeMismatch() + throw AnyUnpackError.typeMismatch } switch state { @@ -243,7 +243,7 @@ extension AnyMessageStorage { _typeURL = url guard let messageType = Google_Protobuf_Any.messageType(forTypeURL: url) else { // The type wasn't registered, can't parse it. - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } let terminator = try decoder.scanner.skipObjectStart() var subDecoder = try TextFormatDecoder(messageType: messageType, scanner: decoder.scanner, terminator: terminator) @@ -259,7 +259,7 @@ extension AnyMessageStorage { decoder.scanner = subDecoder.scanner if try decoder.nextFieldNumber() != nil { // Verbose any can never have additional keys. - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } } diff --git a/Sources/SwiftProtobuf/AnyUnpackError.swift b/Sources/SwiftProtobuf/AnyUnpackError.swift index a3c521cf1..738b0fe9a 100644 --- a/Sources/SwiftProtobuf/AnyUnpackError.swift +++ b/Sources/SwiftProtobuf/AnyUnpackError.swift @@ -21,7 +21,6 @@ /// message. At this time, any error can occur that might have occurred from a /// regular decoding operation. There are also other errors that can occur due /// to problems with the `Any` value's structure. -@available(*, deprecated, message: "This error type has been deprecated and won't be thrown anymore; it has been replaced by `SwiftProtobufError`.") public enum AnyUnpackError: Error { /// The `type_url` field in the `Google_Protobuf_Any` message did not match /// the message type provided to the `unpack()` method. diff --git a/Sources/SwiftProtobuf/AsyncMessageSequence.swift b/Sources/SwiftProtobuf/AsyncMessageSequence.swift index 370adc659..1582ec2cf 100644 --- a/Sources/SwiftProtobuf/AsyncMessageSequence.swift +++ b/Sources/SwiftProtobuf/AsyncMessageSequence.swift @@ -131,7 +131,7 @@ public struct AsyncMessageSequence< if (shift > 0) { // The stream has ended inside a varint. iterator = nil - throw SwiftProtobufError.BinaryStreamDecoding.truncated() + throw BinaryDelimited.Error.truncated } return nil // End of stream reached. } @@ -153,7 +153,7 @@ public struct AsyncMessageSequence< guard let byte = try await iterator?.next() else { // The iterator hit the end, but the chunk wasn't filled, so the full // payload wasn't read. - throw SwiftProtobufError.BinaryStreamDecoding.truncated() + throw BinaryDelimited.Error.truncated } chunk[consumedBytes] = byte consumedBytes += 1 diff --git a/Sources/SwiftProtobuf/BinaryDecoder.swift b/Sources/SwiftProtobuf/BinaryDecoder.swift index d05ed93b5..751e7b4ca 100644 --- a/Sources/SwiftProtobuf/BinaryDecoder.swift +++ b/Sources/SwiftProtobuf/BinaryDecoder.swift @@ -80,7 +80,7 @@ internal struct BinaryDecoder: Decoder { private mutating func incrementRecursionDepth() throws { recursionBudget -= 1 if recursionBudget < 0 { - throw SwiftProtobufError.BinaryDecoding.messageDepthLimit() + throw BinaryDecodingError.messageDepthLimit } } @@ -139,7 +139,7 @@ internal struct BinaryDecoder: Decoder { if let wireFormat = WireFormat(rawValue: c0 & 7) { fieldWireFormat = wireFormat } else { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() + throw BinaryDecodingError.malformedProtobuf } if (c0 & 0x80) == 0 { p += 1 @@ -148,7 +148,7 @@ internal struct BinaryDecoder: Decoder { } else { fieldNumber = Int(c0 & 0x7f) >> 3 if available < 2 { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() + throw BinaryDecodingError.malformedProtobuf } let c1 = start[1] if (c1 & 0x80) == 0 { @@ -158,7 +158,7 @@ internal struct BinaryDecoder: Decoder { } else { fieldNumber |= Int(c1 & 0x7f) << 4 if available < 3 { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() + throw BinaryDecodingError.malformedProtobuf } let c2 = start[2] fieldNumber |= Int(c2 & 0x7f) << 11 @@ -167,7 +167,7 @@ internal struct BinaryDecoder: Decoder { available -= 3 } else { if available < 4 { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() + throw BinaryDecodingError.malformedProtobuf } let c3 = start[3] fieldNumber |= Int(c3 & 0x7f) << 18 @@ -176,11 +176,11 @@ internal struct BinaryDecoder: Decoder { available -= 4 } else { if available < 5 { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() + throw BinaryDecodingError.malformedProtobuf } let c4 = start[4] if c4 > 15 { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() + throw BinaryDecodingError.malformedProtobuf } fieldNumber |= Int(c4 & 0x7f) << 25 p += 5 @@ -200,12 +200,12 @@ internal struct BinaryDecoder: Decoder { } else { // .endGroup when not in a group or for a different // group is an invalid binary. - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() + throw BinaryDecodingError.malformedProtobuf } } return fieldNumber } - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() + throw BinaryDecodingError.malformedProtobuf } internal mutating func decodeSingularFloatField(value: inout Float) throws { @@ -236,7 +236,7 @@ internal struct BinaryDecoder: Decoder { let itemSize = UInt64(MemoryLayout.size) let itemCount = bodyBytes / itemSize if bodyBytes % itemSize != 0 || bodyBytes > available { - throw SwiftProtobufError.BinaryDecoding.truncated() + throw BinaryDecodingError.truncated } value.reserveCapacity(value.count + Int(truncatingIfNeeded: itemCount)) for _ in 1...itemCount { @@ -277,7 +277,7 @@ internal struct BinaryDecoder: Decoder { let itemSize = UInt64(MemoryLayout.size) let itemCount = bodyBytes / itemSize if bodyBytes % itemSize != 0 || bodyBytes > available { - throw SwiftProtobufError.BinaryDecoding.truncated() + throw BinaryDecodingError.truncated } value.reserveCapacity(value.count + Int(truncatingIfNeeded: itemCount)) for _ in 1...itemCount { @@ -721,7 +721,7 @@ internal struct BinaryDecoder: Decoder { value = s consumed = true } else { - throw SwiftProtobufError.BinaryDecoding.invalidUTF8() + throw BinaryDecodingError.invalidUTF8 } } @@ -735,7 +735,7 @@ internal struct BinaryDecoder: Decoder { value = s consumed = true } else { - throw SwiftProtobufError.BinaryDecoding.invalidUTF8() + throw BinaryDecodingError.invalidUTF8 } } @@ -748,7 +748,7 @@ internal struct BinaryDecoder: Decoder { value.append(s) consumed = true } else { - throw SwiftProtobufError.BinaryDecoding.invalidUTF8() + throw BinaryDecodingError.invalidUTF8 } default: return @@ -890,7 +890,7 @@ internal struct BinaryDecoder: Decoder { try message.decodeMessage(decoder: &self) decrementRecursionDepth() guard complete else { - throw SwiftProtobufError.BinaryDecoding.trailingGarbage() + throw BinaryDecodingError.trailingGarbage } if let unknownData = unknownData { message.unknownFields.append(protobufData: unknownData) @@ -935,7 +935,7 @@ internal struct BinaryDecoder: Decoder { subDecoder.unknownData = nil try group.decodeMessage(decoder: &subDecoder) guard subDecoder.fieldNumber == fieldNumber && subDecoder.fieldWireFormat == .endGroup else { - throw SwiftProtobufError.BinaryDecoding.truncated() + throw BinaryDecodingError.truncated } if let groupUnknowns = subDecoder.unknownData { group.unknownFields.append(protobufData: groupUnknowns) @@ -958,7 +958,7 @@ internal struct BinaryDecoder: Decoder { var subdecoder = BinaryDecoder(forReadingFrom: p, count: count, parent: self) while let tag = try subdecoder.getTag() { if tag.wireFormat == .endGroup { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() + throw BinaryDecodingError.malformedProtobuf } let fieldNumber = tag.fieldNumber switch fieldNumber { @@ -971,7 +971,7 @@ internal struct BinaryDecoder: Decoder { } } if !subdecoder.complete { - throw SwiftProtobufError.BinaryDecoding.trailingGarbage() + throw BinaryDecodingError.trailingGarbage } // A map<> definition can't provide a default value for the keys/values, // so it is safe to use the proto3 default to get the right @@ -993,7 +993,7 @@ internal struct BinaryDecoder: Decoder { var subdecoder = BinaryDecoder(forReadingFrom: p, count: count, parent: self) while let tag = try subdecoder.getTag() { if tag.wireFormat == .endGroup { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() + throw BinaryDecodingError.malformedProtobuf } let fieldNumber = tag.fieldNumber switch fieldNumber { @@ -1014,7 +1014,7 @@ internal struct BinaryDecoder: Decoder { } } if !subdecoder.complete { - throw SwiftProtobufError.BinaryDecoding.trailingGarbage() + throw BinaryDecodingError.trailingGarbage } // A map<> definition can't provide a default value for the keys, so it // is safe to use the proto3 default to get the right integer/string/bytes. @@ -1033,7 +1033,7 @@ internal struct BinaryDecoder: Decoder { var subdecoder = BinaryDecoder(forReadingFrom: p, count: count, parent: self) while let tag = try subdecoder.getTag() { if tag.wireFormat == .endGroup { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() + throw BinaryDecodingError.malformedProtobuf } let fieldNumber = tag.fieldNumber switch fieldNumber { @@ -1046,7 +1046,7 @@ internal struct BinaryDecoder: Decoder { } } if !subdecoder.complete { - throw SwiftProtobufError.BinaryDecoding.trailingGarbage() + throw BinaryDecodingError.trailingGarbage } // A map<> definition can't provide a default value for the keys, so it // is safe to use the proto3 default to get the right integer/string/bytes. @@ -1090,7 +1090,7 @@ internal struct BinaryDecoder: Decoder { // the bytes were consumed, then there should have been a // field that consumed them (existing or created). This // specific error result is to allow this to be more detectable. - throw SwiftProtobufError.BinaryDecoding.internalExtensionError() + throw BinaryDecodingError.internalExtensionError } } } @@ -1125,7 +1125,7 @@ internal struct BinaryDecoder: Decoder { break case .malformed: - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() + throw BinaryDecodingError.malformedProtobuf } assert(recursionBudget == subDecoder.recursionBudget) @@ -1256,7 +1256,7 @@ internal struct BinaryDecoder: Decoder { let _ = try decodeVarint() case .fixed64: if available < 8 { - throw SwiftProtobufError.BinaryDecoding.truncated() + throw BinaryDecodingError.truncated } p += 8 available -= 8 @@ -1266,7 +1266,7 @@ internal struct BinaryDecoder: Decoder { p += Int(n) available -= Int(n) } else { - throw SwiftProtobufError.BinaryDecoding.truncated() + throw BinaryDecodingError.truncated } case .startGroup: try incrementRecursionDepth() @@ -1279,20 +1279,20 @@ internal struct BinaryDecoder: Decoder { } else { // .endGroup for a something other than the current // group is an invalid binary. - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() + throw BinaryDecodingError.malformedProtobuf } } else { try skipOver(tag: innerTag) } } else { - throw SwiftProtobufError.BinaryDecoding.truncated() + throw BinaryDecodingError.truncated } } case .endGroup: - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() + throw BinaryDecodingError.truncated case .fixed32: if available < 4 { - throw SwiftProtobufError.BinaryDecoding.truncated() + throw BinaryDecodingError.truncated } p += 4 available -= 4 @@ -1314,7 +1314,7 @@ internal struct BinaryDecoder: Decoder { available += p - fieldStartP p = fieldStartP guard let tag = try getTagWithoutUpdatingFieldStart() else { - throw SwiftProtobufError.BinaryDecoding.truncated() + throw BinaryDecodingError.truncated } try skipOver(tag: tag) fieldEndP = p @@ -1324,7 +1324,7 @@ internal struct BinaryDecoder: Decoder { /// Private: Parse the next raw varint from the input. private mutating func decodeVarint() throws -> UInt64 { if available < 1 { - throw SwiftProtobufError.BinaryDecoding.truncated() + throw BinaryDecodingError.truncated } var start = p var length = available @@ -1340,7 +1340,7 @@ internal struct BinaryDecoder: Decoder { var shift = UInt64(7) while true { if length < 1 || shift > 63 { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() + throw BinaryDecodingError.malformedProtobuf } c = start.load(fromByteOffset: 0, as: UInt8.self) start += 1 @@ -1373,13 +1373,13 @@ internal struct BinaryDecoder: Decoder { let t = try decodeVarint() if t < UInt64(UInt32.max) { guard let tag = FieldTag(rawValue: UInt32(truncatingIfNeeded: t)) else { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() + throw BinaryDecodingError.malformedProtobuf } fieldWireFormat = tag.wireFormat fieldNumber = tag.fieldNumber return tag } else { - throw SwiftProtobufError.BinaryDecoding.malformedProtobuf() + throw BinaryDecodingError.malformedProtobuf } } @@ -1394,7 +1394,7 @@ internal struct BinaryDecoder: Decoder { private mutating func decodeLittleEndianInteger() throws -> T { let size = MemoryLayout.size assert(size == 4 || size == 8) - guard available >= size else {throw SwiftProtobufError.BinaryDecoding.truncated()} + guard available >= size else {throw BinaryDecodingError.truncated} defer { consume(length: size) } return T(littleEndian: p.loadUnaligned(as: T.self)) } @@ -1428,7 +1428,7 @@ internal struct BinaryDecoder: Decoder { } guard length <= UInt64(available) else { - throw SwiftProtobufError.BinaryDecoding.truncated() + throw BinaryDecodingError.truncated } count = Int(length) diff --git a/Sources/SwiftProtobuf/BinaryDecodingError.swift b/Sources/SwiftProtobuf/BinaryDecodingError.swift index 9e2fcb49b..016d8ad70 100644 --- a/Sources/SwiftProtobuf/BinaryDecodingError.swift +++ b/Sources/SwiftProtobuf/BinaryDecodingError.swift @@ -13,7 +13,6 @@ // ----------------------------------------------------------------------------- /// Describes errors that can occur when decoding a message from binary format. -@available(*, deprecated, message: "This error type has been deprecated and won't be thrown anymore; it has been replaced by `SwiftProtobufError`.") public enum BinaryDecodingError: Error { /// Extraneous data remained after decoding should have been complete. case trailingGarbage diff --git a/Sources/SwiftProtobuf/BinaryDelimited.swift b/Sources/SwiftProtobuf/BinaryDelimited.swift index 351e35929..b5292eb37 100644 --- a/Sources/SwiftProtobuf/BinaryDelimited.swift +++ b/Sources/SwiftProtobuf/BinaryDelimited.swift @@ -19,7 +19,6 @@ import Foundation /// Helper methods for reading/writing messages with a length prefix. public enum BinaryDelimited { /// Additional errors for delimited message handing. - @available(*, deprecated, message: "This error type has been deprecated and won't be thrown anymore; it has been replaced by `SwiftProtobufError`.") public enum Error: Swift.Error { /// If a read/write to the stream fails, but the stream's `streamError` is nil, /// this error will be throw instead since the stream didn't provide anything @@ -79,9 +78,9 @@ public enum BinaryDelimited { if let streamError = stream.streamError { throw streamError } - throw SwiftProtobufError.BinaryStreamDecoding.unknownStreamError() + throw BinaryDelimited.Error.unknownStreamError } - throw SwiftProtobufError.BinaryStreamDecoding.truncated() + throw BinaryDelimited.Error.truncated } } @@ -186,11 +185,11 @@ public enum BinaryDelimited { if let streamError = stream.streamError { throw streamError } - throw SwiftProtobufError.BinaryStreamDecoding.unknownStreamError() + throw BinaryDelimited.Error.unknownStreamError } if bytesRead == 0 { // Hit the end of the stream - throw SwiftProtobufError.BinaryStreamDecoding.truncated() + throw BinaryDelimited.Error.truncated } if bytesRead < chunk.count { data += chunk[0.. UInt64 { if let streamError = stream.streamError { throw streamError } - throw SwiftProtobufError.BinaryStreamDecoding.unknownStreamError() + throw BinaryDelimited.Error.unknownStreamError } } @@ -241,7 +240,7 @@ internal func decodeVarint(_ stream: InputStream) throws -> UInt64 { if shift == 0 { throw SwiftProtobufError.BinaryStreamDecoding.noBytesAvailable() } - throw SwiftProtobufError.BinaryStreamDecoding.truncated() + throw BinaryDelimited.Error.truncated } value |= UInt64(c & 0x7f) << shift if c & 0x80 == 0 { diff --git a/Sources/SwiftProtobuf/BinaryEncodingError.swift b/Sources/SwiftProtobuf/BinaryEncodingError.swift index 22c57176c..9dd433018 100644 --- a/Sources/SwiftProtobuf/BinaryEncodingError.swift +++ b/Sources/SwiftProtobuf/BinaryEncodingError.swift @@ -13,7 +13,6 @@ // ----------------------------------------------------------------------------- /// Describes errors that can occur when decoding a message from binary format. -@available(*, deprecated, message: "This error type has been deprecated and won't be thrown anymore; it has been replaced by `SwiftProtobufError`.") public enum BinaryEncodingError: Error, Hashable { /// An unexpected failure when deserializing a `Google_Protobuf_Any`. case anyTranscodeFailure diff --git a/Sources/SwiftProtobuf/Google_Protobuf_Any+Extensions.swift b/Sources/SwiftProtobuf/Google_Protobuf_Any+Extensions.swift index 85878eb3c..8b80cd15f 100644 --- a/Sources/SwiftProtobuf/Google_Protobuf_Any+Extensions.swift +++ b/Sources/SwiftProtobuf/Google_Protobuf_Any+Extensions.swift @@ -43,7 +43,7 @@ extension Google_Protobuf_Any { typePrefix: String = defaultAnyTypeURLPrefix ) throws { if !partial && !message.isInitialized { - throw SwiftProtobufError.BinaryEncoding.missingRequiredFields() + throw BinaryEncodingError.missingRequiredFields } self.init() typeURL = buildTypeURL(forMessage:message, typePrefix: typePrefix) @@ -78,7 +78,7 @@ extension Google_Protobuf_Any { extensions: extensions) try decodeTextFormat(decoder: &textDecoder) if !textDecoder.complete { - throw SwiftProtobufError.TextFormatDecoding.trailingGarbage() + throw TextFormatDecodingError.trailingGarbage } } } diff --git a/Sources/SwiftProtobuf/Google_Protobuf_Duration+Extensions.swift b/Sources/SwiftProtobuf/Google_Protobuf_Duration+Extensions.swift index be46e1677..684809412 100644 --- a/Sources/SwiftProtobuf/Google_Protobuf_Duration+Extensions.swift +++ b/Sources/SwiftProtobuf/Google_Protobuf_Duration+Extensions.swift @@ -32,7 +32,7 @@ private func parseDuration(text: String) throws -> (Int64, Int32) { case "-": // Only accept '-' as very first character if total > 0 { - throw SwiftProtobufError.JSONDecoding.malformedDuration() + throw JSONDecodingError.malformedDuration } digits.append(c) isNegative = true @@ -41,14 +41,14 @@ private func parseDuration(text: String) throws -> (Int64, Int32) { digitCount += 1 case ".": if let _ = seconds { - throw SwiftProtobufError.JSONDecoding.malformedDuration() + throw JSONDecodingError.malformedDuration } let digitString = String(digits) if let s = Int64(digitString), s >= minDurationSeconds && s <= maxDurationSeconds { seconds = s } else { - throw SwiftProtobufError.JSONDecoding.malformedDuration() + throw JSONDecodingError.malformedDuration } digits.removeAll() digitCount = 0 @@ -71,7 +71,7 @@ private func parseDuration(text: String) throws -> (Int64, Int32) { nanos = rawNanos } } else { - throw SwiftProtobufError.JSONDecoding.malformedDuration() + throw JSONDecodingError.malformedDuration } } else { // No fraction, we just have an integral number of seconds @@ -80,20 +80,20 @@ private func parseDuration(text: String) throws -> (Int64, Int32) { s >= minDurationSeconds && s <= maxDurationSeconds { seconds = s } else { - throw SwiftProtobufError.JSONDecoding.malformedDuration() + throw JSONDecodingError.malformedDuration } } // Fail if there are characters after 's' if chars.next() != nil { - throw SwiftProtobufError.JSONDecoding.malformedDuration() + throw JSONDecodingError.malformedDuration } return (seconds!, nanos) default: - throw SwiftProtobufError.JSONDecoding.malformedDuration() + throw JSONDecodingError.malformedDuration } total += 1 } - throw SwiftProtobufError.JSONDecoding.malformedDuration() + throw JSONDecodingError.malformedDuration } private func formatDuration(seconds: Int64, nanos: Int32) -> String? { @@ -130,7 +130,7 @@ extension Google_Protobuf_Duration: _CustomJSONCodable { if let formatted = formatDuration(seconds: seconds, nanos: nanos) { return "\"\(formatted)\"" } else { - throw SwiftProtobufError.JSONEncoding.durationRange() + throw JSONEncodingError.durationRange } } } diff --git a/Sources/SwiftProtobuf/Google_Protobuf_FieldMask+Extensions.swift b/Sources/SwiftProtobuf/Google_Protobuf_FieldMask+Extensions.swift index 6437a5b91..1d1e7f73c 100644 --- a/Sources/SwiftProtobuf/Google_Protobuf_FieldMask+Extensions.swift +++ b/Sources/SwiftProtobuf/Google_Protobuf_FieldMask+Extensions.swift @@ -166,7 +166,7 @@ extension Google_Protobuf_FieldMask: _CustomJSONCodable { if let names = parseJSONFieldNames(names: s) { paths = names } else { - throw SwiftProtobufError.JSONDecoding.malformedFieldMask() + throw JSONDecodingError.malformedFieldMask } } @@ -178,7 +178,7 @@ extension Google_Protobuf_FieldMask: _CustomJSONCodable { if let jsonPath = ProtoToJSON(name: p) { jsonPaths.append(jsonPath) } else { - throw SwiftProtobufError.JSONEncoding.fieldMaskConversion() + throw JSONEncodingError.fieldMaskConversion } } return "\"" + jsonPaths.joined(separator: ",") + "\"" diff --git a/Sources/SwiftProtobuf/Google_Protobuf_Timestamp+Extensions.swift b/Sources/SwiftProtobuf/Google_Protobuf_Timestamp+Extensions.swift index 891a282a9..ab0a68b87 100644 --- a/Sources/SwiftProtobuf/Google_Protobuf_Timestamp+Extensions.swift +++ b/Sources/SwiftProtobuf/Google_Protobuf_Timestamp+Extensions.swift @@ -29,7 +29,7 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { // Convert to an array of integer character values let value = s.utf8.map{Int($0)} if value.count < 20 { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp() + throw JSONDecodingError.malformedTimestamp } // Since the format is fixed-layout, we can just decode // directly as follows. @@ -44,7 +44,7 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { func fromAscii2(_ digit0: Int, _ digit1: Int) throws -> Int { if digit0 < zero || digit0 > nine || digit1 < zero || digit1 > nine { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp() + throw JSONDecodingError.malformedTimestamp } return digit0 * 10 + digit1 - 528 } @@ -59,7 +59,7 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { || digit1 < zero || digit1 > nine || digit2 < zero || digit2 > nine || digit3 < zero || digit3 > nine) { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp() + throw JSONDecodingError.malformedTimestamp } return digit0 * 1000 + digit1 * 100 + digit2 * 10 + digit3 - 53328 } @@ -67,37 +67,37 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { // Year: 4 digits followed by '-' let year = try fromAscii4(value[0], value[1], value[2], value[3]) if value[4] != dash || year < Int(1) || year > Int(9999) { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp() + throw JSONDecodingError.malformedTimestamp } // Month: 2 digits followed by '-' let month = try fromAscii2(value[5], value[6]) if value[7] != dash || month < Int(1) || month > Int(12) { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp() + throw JSONDecodingError.malformedTimestamp } // Day: 2 digits followed by 'T' let mday = try fromAscii2(value[8], value[9]) if value[10] != letterT || mday < Int(1) || mday > Int(31) { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp() + throw JSONDecodingError.malformedTimestamp } // Hour: 2 digits followed by ':' let hour = try fromAscii2(value[11], value[12]) if value[13] != colon || hour > Int(23) { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp() + throw JSONDecodingError.malformedTimestamp } // Minute: 2 digits followed by ':' let minute = try fromAscii2(value[14], value[15]) if value[16] != colon || minute > Int(59) { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp() + throw JSONDecodingError.malformedTimestamp } // Second: 2 digits (following char is checked below) let second = try fromAscii2(value[17], value[18]) if second > Int(61) { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp() + throw JSONDecodingError.malformedTimestamp } // timegm() is almost entirely useless. It's nonexistent on @@ -149,15 +149,15 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { var seconds: Int64 = 0 // "Z" or "+" or "-" starts Timezone offset if pos >= value.count { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp() + throw JSONDecodingError.malformedTimestamp } else if value[pos] == plus || value[pos] == dash { if pos + 6 > value.count { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp() + throw JSONDecodingError.malformedTimestamp } let hourOffset = try fromAscii2(value[pos + 1], value[pos + 2]) let minuteOffset = try fromAscii2(value[pos + 4], value[pos + 5]) if hourOffset > Int(13) || minuteOffset > Int(59) || value[pos + 3] != colon { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp() + throw JSONDecodingError.malformedTimestamp } var adjusted: Int64 = t if value[pos] == plus { @@ -168,7 +168,7 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { adjusted += Int64(minuteOffset) * Int64(60) } if adjusted < minTimestampSeconds || adjusted > maxTimestampSeconds { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp() + throw JSONDecodingError.malformedTimestamp } seconds = adjusted pos += 6 @@ -176,10 +176,10 @@ private func parseTimestamp(s: String) throws -> (Int64, Int32) { seconds = t pos += 1 } else { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp() + throw JSONDecodingError.malformedTimestamp } if pos != value.count { - throw SwiftProtobufError.JSONDecoding.malformedTimestamp() + throw JSONDecodingError.malformedTimestamp } return (seconds, nanos) } @@ -223,7 +223,7 @@ extension Google_Protobuf_Timestamp: _CustomJSONCodable { if let formatted = formatTimestamp(seconds: seconds, nanos: nanos) { return "\"\(formatted)\"" } else { - throw SwiftProtobufError.JSONEncoding.timestampRange() + throw JSONEncodingError.timestampRange } } } diff --git a/Sources/SwiftProtobuf/Google_Protobuf_Value+Extensions.swift b/Sources/SwiftProtobuf/Google_Protobuf_Value+Extensions.swift index 994c418f5..0bc90f8e8 100644 --- a/Sources/SwiftProtobuf/Google_Protobuf_Value+Extensions.swift +++ b/Sources/SwiftProtobuf/Google_Protobuf_Value+Extensions.swift @@ -80,7 +80,7 @@ extension Google_Protobuf_Value: _CustomJSONCodable { switch c { case "n": if !decoder.scanner.skipOptionalNull() { - throw SwiftProtobufError.JSONDecoding.failure() + throw JSONDecodingError.failure } kind = .nullValue(.nullValue) case "[": @@ -154,14 +154,14 @@ extension Google_Protobuf_Value { case .nullValue?: encoder.putNullValue() case .numberValue(let v)?: guard v.isFinite else { - throw SwiftProtobufError.JSONEncoding.valueNumberNotFinite() + throw JSONEncodingError.valueNumberNotFinite } encoder.putDoubleValue(value: v) case .stringValue(let v)?: encoder.putStringValue(value: v) case .boolValue(let v)?: encoder.putNonQuotedBoolValue(value: v) case .structValue(let v)?: encoder.append(text: try v.jsonString(options: options)) case .listValue(let v)?: encoder.append(text: try v.jsonString(options: options)) - case nil: throw SwiftProtobufError.JSONEncoding.missingValue() + case nil: throw JSONEncodingError.missingValue } } } diff --git a/Sources/SwiftProtobuf/JSONDecoder.swift b/Sources/SwiftProtobuf/JSONDecoder.swift index 2948bc393..3b22cc31e 100644 --- a/Sources/SwiftProtobuf/JSONDecoder.swift +++ b/Sources/SwiftProtobuf/JSONDecoder.swift @@ -26,7 +26,7 @@ internal struct JSONDecoder: Decoder { } mutating func handleConflictingOneOf() throws { - throw SwiftProtobufError.JSONDecoding.conflictingOneOf() + throw JSONDecodingError.conflictingOneOf } internal init(source: UnsafeRawBufferPointer, options: JSONDecodingOptions, @@ -133,7 +133,7 @@ internal struct JSONDecoder: Decoder { } let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw SwiftProtobufError.JSONDecoding.numberRange() + throw JSONDecodingError.numberRange } value = Int32(truncatingIfNeeded: n) } @@ -145,7 +145,7 @@ internal struct JSONDecoder: Decoder { } let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw SwiftProtobufError.JSONDecoding.numberRange() + throw JSONDecodingError.numberRange } value = Int32(truncatingIfNeeded: n) } @@ -161,7 +161,7 @@ internal struct JSONDecoder: Decoder { while true { let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw SwiftProtobufError.JSONDecoding.numberRange() + throw JSONDecodingError.numberRange } value.append(Int32(truncatingIfNeeded: n)) if scanner.skipOptionalArrayEnd() { @@ -212,7 +212,7 @@ internal struct JSONDecoder: Decoder { } let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw SwiftProtobufError.JSONDecoding.numberRange() + throw JSONDecodingError.numberRange } value = UInt32(truncatingIfNeeded: n) } @@ -224,7 +224,7 @@ internal struct JSONDecoder: Decoder { } let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw SwiftProtobufError.JSONDecoding.numberRange() + throw JSONDecodingError.numberRange } value = UInt32(truncatingIfNeeded: n) } @@ -240,7 +240,7 @@ internal struct JSONDecoder: Decoder { while true { let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw SwiftProtobufError.JSONDecoding.numberRange() + throw JSONDecodingError.numberRange } value.append(UInt32(truncatingIfNeeded: n)) if scanner.skipOptionalArrayEnd() { @@ -514,7 +514,7 @@ internal struct JSONDecoder: Decoder { let e = try customDecodable.decodedFromJSONNull() as! E value.append(e) } else { - throw SwiftProtobufError.JSONDecoding.illegalNull() + throw JSONDecodingError.illegalNull } } else { if let e: E = try scanner.nextEnumValue() { @@ -530,7 +530,7 @@ internal struct JSONDecoder: Decoder { internal mutating func decodeFullObject(message: inout M) throws { guard let nameProviding = (M.self as? any _ProtoNameProviding.Type) else { - throw SwiftProtobufError.JSONDecoding.missingFieldNames() + throw JSONDecodingError.missingFieldNames } fieldNameMap = nameProviding._protobuf_nameMap if let m = message as? (any _CustomJSONCodable) { @@ -587,7 +587,7 @@ internal struct JSONDecoder: Decoder { } } if !appended { - throw SwiftProtobufError.JSONDecoding.illegalNull() + throw JSONDecodingError.illegalNull } } else { var message = M() @@ -628,7 +628,7 @@ internal struct JSONDecoder: Decoder { // map keys must always be quoted strings. let c = try scanner.peekOneCharacter() if c != "\"" { - throw SwiftProtobufError.JSONDecoding.unquotedMapKey() + throw JSONDecodingError.unquotedMapKey } isMapKey = true var keyField: KeyType.BaseType? @@ -640,7 +640,7 @@ internal struct JSONDecoder: Decoder { if let keyField = keyField, let valueField = valueField { value[keyField] = valueField } else { - throw SwiftProtobufError.JSONDecoding.malformedMap() + throw JSONDecodingError.malformedMap } if scanner.skipOptionalObjectEnd() { return @@ -665,13 +665,13 @@ internal struct JSONDecoder: Decoder { // map keys must always be quoted strings. let c = try scanner.peekOneCharacter() if c != "\"" { - throw SwiftProtobufError.JSONDecoding.unquotedMapKey() + throw JSONDecodingError.unquotedMapKey } isMapKey = true var keyFieldOpt: KeyType.BaseType? try KeyType.decodeSingular(value: &keyFieldOpt, from: &self) guard let keyField = keyFieldOpt else { - throw SwiftProtobufError.JSONDecoding.malformedMap() + throw JSONDecodingError.malformedMap } isMapKey = false try scanner.skipRequiredColon() @@ -707,7 +707,7 @@ internal struct JSONDecoder: Decoder { // map keys must always be quoted strings. let c = try scanner.peekOneCharacter() if c != "\"" { - throw SwiftProtobufError.JSONDecoding.unquotedMapKey() + throw JSONDecodingError.unquotedMapKey } isMapKey = true var keyField: KeyType.BaseType? @@ -719,7 +719,7 @@ internal struct JSONDecoder: Decoder { if let keyField = keyField, let valueField = valueField { value[keyField] = valueField } else { - throw SwiftProtobufError.JSONDecoding.malformedMap() + throw JSONDecodingError.malformedMap } if scanner.skipOptionalObjectEnd() { return diff --git a/Sources/SwiftProtobuf/JSONDecodingError.swift b/Sources/SwiftProtobuf/JSONDecodingError.swift index d2650fbc9..35a407c5d 100644 --- a/Sources/SwiftProtobuf/JSONDecodingError.swift +++ b/Sources/SwiftProtobuf/JSONDecodingError.swift @@ -12,7 +12,6 @@ /// // ----------------------------------------------------------------------------- -@available(*, deprecated, message: "This error type has been deprecated and won't be thrown anymore; it has been replaced by `SwiftProtobufError`.") public enum JSONDecodingError: Error { /// Something was wrong case failure diff --git a/Sources/SwiftProtobuf/JSONEncodingError.swift b/Sources/SwiftProtobuf/JSONEncodingError.swift index 6d6b959fb..aec00d5d1 100644 --- a/Sources/SwiftProtobuf/JSONEncodingError.swift +++ b/Sources/SwiftProtobuf/JSONEncodingError.swift @@ -12,7 +12,6 @@ /// // ----------------------------------------------------------------------------- -@available(*, deprecated, message: "This error type has been deprecated and won't be thrown anymore; it has been replaced by `SwiftProtobufError`.") public enum JSONEncodingError: Error, Hashable { /// Any fields that were decoded from binary format cannot be /// re-encoded into JSON unless the object they hold is a diff --git a/Sources/SwiftProtobuf/JSONEncodingVisitor.swift b/Sources/SwiftProtobuf/JSONEncodingVisitor.swift index 6af97fc7b..cd84cf725 100644 --- a/Sources/SwiftProtobuf/JSONEncodingVisitor.swift +++ b/Sources/SwiftProtobuf/JSONEncodingVisitor.swift @@ -38,7 +38,7 @@ internal struct JSONEncodingVisitor: Visitor { if let nameProviding = type as? any _ProtoNameProviding.Type { self.nameMap = nameProviding._protobuf_nameMap } else { - throw SwiftProtobufError.JSONEncoding.missingFieldNames() + throw JSONEncodingError.missingFieldNames } self.options = options } @@ -186,7 +186,7 @@ internal struct JSONEncodingVisitor: Visitor { self.nameMap = oldNameMap self.extensions = oldExtensions } else { - throw SwiftProtobufError.JSONEncoding.missingFieldNames() + throw JSONEncodingError.missingFieldNames } } @@ -345,7 +345,7 @@ internal struct JSONEncodingVisitor: Visitor { self.nameMap = oldNameMap self.extensions = oldExtensions } else { - throw SwiftProtobufError.JSONEncoding.missingFieldNames() + throw JSONEncodingError.missingFieldNames } encoder.endArray() } @@ -421,7 +421,7 @@ internal struct JSONEncodingVisitor: Visitor { } else if let name = extensions?[number]?.protobufExtension.fieldName { encoder.startExtensionField(name: name) } else { - throw SwiftProtobufError.JSONEncoding.missingFieldNames() + throw JSONEncodingError.missingFieldNames } } } diff --git a/Sources/SwiftProtobuf/JSONScanner.swift b/Sources/SwiftProtobuf/JSONScanner.swift index 04053c4dc..583752856 100644 --- a/Sources/SwiftProtobuf/JSONScanner.swift +++ b/Sources/SwiftProtobuf/JSONScanner.swift @@ -122,7 +122,7 @@ private func parseBytes( ) throws -> Data { let c = source[index] if c != asciiDoubleQuote { - throw SwiftProtobufError.JSONDecoding.malformedString() + throw JSONDecodingError.malformedString } source.formIndex(after: &index) @@ -142,7 +142,7 @@ private func parseBytes( if digit == asciiBackslash { source.formIndex(after: &index) if index == end { - throw SwiftProtobufError.JSONDecoding.malformedString() + throw JSONDecodingError.malformedString } let escaped = source[index] switch escaped { @@ -150,12 +150,12 @@ private func parseBytes( // TODO: Parse hex escapes such as \u0041. Note that // such escapes are going to be extremely rare, so // there's little point in optimizing for them. - throw SwiftProtobufError.JSONDecoding.malformedString() + throw JSONDecodingError.malformedString case asciiForwardSlash: digit = escaped default: // Reject \b \f \n \r \t \" or \\ and all illegal escapes - throw SwiftProtobufError.JSONDecoding.malformedString() + throw JSONDecodingError.malformedString } } @@ -173,11 +173,11 @@ private func parseBytes( // We reached the end without seeing the close quote if index == end { - throw SwiftProtobufError.JSONDecoding.malformedString() + throw JSONDecodingError.malformedString } // Reject mixed encodings. if sawSection4Characters && sawSection5Characters { - throw SwiftProtobufError.JSONDecoding.malformedString() + throw JSONDecodingError.malformedString } // Allocate a Data object of exactly the right size @@ -211,7 +211,7 @@ private func parseBytes( default: // Note: Invalid backslash escapes were caught // above; we should never get here. - throw SwiftProtobufError.JSONDecoding.malformedString() + throw JSONDecodingError.malformedString } case asciiSpace: source.formIndex(after: &index) @@ -226,12 +226,12 @@ private func parseBytes( case 61: padding += 1 default: // Only '=' and whitespace permitted - throw SwiftProtobufError.JSONDecoding.malformedString() + throw JSONDecodingError.malformedString } source.formIndex(after: &index) } default: - throw SwiftProtobufError.JSONDecoding.malformedString() + throw JSONDecodingError.malformedString } } n <<= 6 @@ -266,7 +266,7 @@ private func parseBytes( default: break } - throw SwiftProtobufError.JSONDecoding.malformedString() + throw JSONDecodingError.malformedString } } source.formIndex(after: &index) @@ -412,7 +412,7 @@ internal struct JSONScanner { internal mutating func incrementRecursionDepth() throws { recursionBudget -= 1 if recursionBudget < 0 { - throw SwiftProtobufError.JSONDecoding.messageDepthLimit() + throw JSONDecodingError.messageDepthLimit } } @@ -449,7 +449,7 @@ internal struct JSONScanner { internal mutating func peekOneCharacter() throws -> Character { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } return Character(UnicodeScalar(UInt32(currentByte))!) } @@ -487,7 +487,7 @@ internal struct JSONScanner { end: UnsafeRawBufferPointer.Index ) throws -> UInt64? { if index == end { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } let start = index let c = source[index] @@ -499,7 +499,7 @@ internal struct JSONScanner { switch after { case asciiZero...asciiNine: // 0...9 // leading '0' forbidden unless it is the only digit - throw SwiftProtobufError.JSONDecoding.leadingZero() + throw JSONDecodingError.leadingZero case asciiPeriod, asciiLowerE, asciiUpperE: // . e // Slow path: JSON numbers can be written in floating-point notation index = start @@ -510,7 +510,7 @@ internal struct JSONScanner { return u } } - throw SwiftProtobufError.JSONDecoding.malformedNumber() + throw JSONDecodingError.malformedNumber case asciiBackslash: return nil default: @@ -526,7 +526,7 @@ internal struct JSONScanner { case asciiZero...asciiNine: // 0...9 let val = UInt64(digit - asciiZero) if n > UInt64.max / 10 || n * 10 > UInt64.max - val { - throw SwiftProtobufError.JSONDecoding.numberRange() + throw JSONDecodingError.numberRange } source.formIndex(after: &index) n = n * 10 + val @@ -540,7 +540,7 @@ internal struct JSONScanner { return u } } - throw SwiftProtobufError.JSONDecoding.malformedNumber() + throw JSONDecodingError.malformedNumber case asciiBackslash: return nil default: @@ -551,7 +551,7 @@ internal struct JSONScanner { case asciiBackslash: return nil default: - throw SwiftProtobufError.JSONDecoding.malformedNumber() + throw JSONDecodingError.malformedNumber } } @@ -572,25 +572,25 @@ internal struct JSONScanner { end: UnsafeRawBufferPointer.Index ) throws -> Int64? { if index == end { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } let c = source[index] if c == asciiMinus { // - source.formIndex(after: &index) if index == end { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } // character after '-' must be digit let digit = source[index] if digit < asciiZero || digit > asciiNine { - throw SwiftProtobufError.JSONDecoding.malformedNumber() + throw JSONDecodingError.malformedNumber } if let n = try parseBareUInt64(source: source, index: &index, end: end) { let limit: UInt64 = 0x8000000000000000 // -Int64.min if n >= limit { if n > limit { // Too large negative number - throw SwiftProtobufError.JSONDecoding.numberRange() + throw JSONDecodingError.numberRange } else { return Int64.min // Special case for Int64.min } @@ -601,7 +601,7 @@ internal struct JSONScanner { } } else if let n = try parseBareUInt64(source: source, index: &index, end: end) { if n > UInt64(bitPattern: Int64.max) { - throw SwiftProtobufError.JSONDecoding.numberRange() + throw JSONDecodingError.numberRange } return Int64(bitPattern: n) } else { @@ -628,7 +628,7 @@ internal struct JSONScanner { // RFC 7159 defines the grammar for JSON numbers as: // number = [ minus ] int [ frac ] [ exp ] if index == end { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } let start = index var c = source[index] @@ -641,7 +641,7 @@ internal struct JSONScanner { source.formIndex(after: &index) if index == end { index = start - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } c = source[index] if c == asciiBackslash { @@ -671,7 +671,7 @@ internal struct JSONScanner { return nil } if c >= asciiZero && c <= asciiNine { - throw SwiftProtobufError.JSONDecoding.leadingZero() + throw JSONDecodingError.leadingZero } case asciiOne...asciiNine: while c >= asciiZero && c <= asciiNine { @@ -680,7 +680,7 @@ internal struct JSONScanner { if let d = numberParser.utf8ToDouble(bytes: source, start: start, end: index) { return d } else { - throw SwiftProtobufError.JSONDecoding.invalidUTF8() + throw JSONDecodingError.invalidUTF8 } } c = source[index] @@ -690,7 +690,7 @@ internal struct JSONScanner { } default: // Integer part cannot be empty - throw SwiftProtobufError.JSONDecoding.malformedNumber() + throw JSONDecodingError.malformedNumber } // frac = decimal-point 1*DIGIT @@ -698,7 +698,7 @@ internal struct JSONScanner { source.formIndex(after: &index) if index == end { // decimal point must have a following digit - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } c = source[index] switch c { @@ -709,7 +709,7 @@ internal struct JSONScanner { if let d = numberParser.utf8ToDouble(bytes: source, start: start, end: index) { return d } else { - throw SwiftProtobufError.JSONDecoding.invalidUTF8() + throw JSONDecodingError.invalidUTF8 } } c = source[index] @@ -721,7 +721,7 @@ internal struct JSONScanner { return nil default: // decimal point must be followed by at least one digit - throw SwiftProtobufError.JSONDecoding.malformedNumber() + throw JSONDecodingError.malformedNumber } } @@ -730,7 +730,7 @@ internal struct JSONScanner { source.formIndex(after: &index) if index == end { // "e" must be followed by +,-, or digit - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } c = source[index] if c == asciiBackslash { @@ -740,7 +740,7 @@ internal struct JSONScanner { source.formIndex(after: &index) if index == end { // must be at least one digit in exponent - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } c = source[index] if c == asciiBackslash { @@ -755,7 +755,7 @@ internal struct JSONScanner { if let d = numberParser.utf8ToDouble(bytes: source, start: start, end: index) { return d } else { - throw SwiftProtobufError.JSONDecoding.invalidUTF8() + throw JSONDecodingError.invalidUTF8 } } c = source[index] @@ -765,13 +765,13 @@ internal struct JSONScanner { } default: // must be at least one digit in exponent - throw SwiftProtobufError.JSONDecoding.malformedNumber() + throw JSONDecodingError.malformedNumber } } if let d = numberParser.utf8ToDouble(bytes: source, start: start, end: index) { return d } else { - throw SwiftProtobufError.JSONDecoding.invalidUTF8() + throw JSONDecodingError.invalidUTF8 } } @@ -822,7 +822,7 @@ internal struct JSONScanner { internal mutating func nextUInt() throws -> UInt64 { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } let c = currentByte if c == asciiDoubleQuote { @@ -832,10 +832,10 @@ internal struct JSONScanner { index: &index, end: source.endIndex) { guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } if currentByte != asciiDoubleQuote { - throw SwiftProtobufError.JSONDecoding.malformedNumber() + throw JSONDecodingError.malformedNumber } advance() return u @@ -870,7 +870,7 @@ internal struct JSONScanner { end: source.endIndex) { return u } - throw SwiftProtobufError.JSONDecoding.malformedNumber() + throw JSONDecodingError.malformedNumber } /// Parse a signed integer, quoted or not, including handling @@ -882,7 +882,7 @@ internal struct JSONScanner { internal mutating func nextSInt() throws -> Int64 { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } let c = currentByte if c == asciiDoubleQuote { @@ -892,10 +892,10 @@ internal struct JSONScanner { index: &index, end: source.endIndex) { guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } if currentByte != asciiDoubleQuote { - throw SwiftProtobufError.JSONDecoding.malformedNumber() + throw JSONDecodingError.malformedNumber } advance() return s @@ -930,7 +930,7 @@ internal struct JSONScanner { end: source.endIndex) { return s } - throw SwiftProtobufError.JSONDecoding.malformedNumber() + throw JSONDecodingError.malformedNumber } /// Parse the next Float value, regardless of whether it @@ -939,7 +939,7 @@ internal struct JSONScanner { internal mutating func nextFloat() throws -> Float { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } let c = currentByte if c == asciiDoubleQuote { // " @@ -949,10 +949,10 @@ internal struct JSONScanner { index: &index, end: source.endIndex) { guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } if currentByte != asciiDoubleQuote { - throw SwiftProtobufError.JSONDecoding.malformedNumber() + throw JSONDecodingError.malformedNumber } advance() return Float(d) @@ -1002,7 +1002,7 @@ internal struct JSONScanner { } } } - throw SwiftProtobufError.JSONDecoding.malformedNumber() + throw JSONDecodingError.malformedNumber } /// Parse the next Double value, regardless of whether it @@ -1011,7 +1011,7 @@ internal struct JSONScanner { internal mutating func nextDouble() throws -> Double { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } let c = currentByte if c == asciiDoubleQuote { // " @@ -1021,10 +1021,10 @@ internal struct JSONScanner { index: &index, end: source.endIndex) { guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } if currentByte != asciiDoubleQuote { - throw SwiftProtobufError.JSONDecoding.malformedNumber() + throw JSONDecodingError.malformedNumber } advance() return d @@ -1070,7 +1070,7 @@ internal struct JSONScanner { return d } } - throw SwiftProtobufError.JSONDecoding.malformedNumber() + throw JSONDecodingError.malformedNumber } /// Return the contents of the following quoted string, @@ -1078,16 +1078,16 @@ internal struct JSONScanner { internal mutating func nextQuotedString() throws -> String { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } let c = currentByte if c != asciiDoubleQuote { - throw SwiftProtobufError.JSONDecoding.malformedString() + throw JSONDecodingError.malformedString } if let s = parseOptionalQuotedString() { return s } else { - throw SwiftProtobufError.JSONDecoding.malformedString() + throw JSONDecodingError.malformedString } } @@ -1121,7 +1121,7 @@ internal struct JSONScanner { internal mutating func nextBytesValue() throws -> Data { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } return try parseBytes(source: source, index: &index, end: source.endIndex) } @@ -1169,7 +1169,7 @@ internal struct JSONScanner { internal mutating func nextBool() throws -> Bool { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } let c = currentByte switch c { @@ -1188,7 +1188,7 @@ internal struct JSONScanner { default: break } - throw SwiftProtobufError.JSONDecoding.malformedBool() + throw JSONDecodingError.malformedBool } /// Return the following Bool "true" or "false", including @@ -1197,10 +1197,10 @@ internal struct JSONScanner { internal mutating func nextQuotedBool() throws -> Bool { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } if currentByte != asciiDoubleQuote { - throw SwiftProtobufError.JSONDecoding.unquotedMapKey() + throw JSONDecodingError.unquotedMapKey } if let s = parseOptionalQuotedString() { switch s { @@ -1209,7 +1209,7 @@ internal struct JSONScanner { default: break } } - throw SwiftProtobufError.JSONDecoding.malformedBool() + throw JSONDecodingError.malformedBool } /// Returns pointer/count spanning the UTF8 bytes of the next regular @@ -1219,7 +1219,7 @@ internal struct JSONScanner { skipWhitespace() let stringStart = index guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } if currentByte != asciiDoubleQuote { return nil @@ -1234,7 +1234,7 @@ internal struct JSONScanner { advance() } guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } let buff = UnsafeRawBufferPointer( start: source.baseAddress! + nameStart, @@ -1265,7 +1265,7 @@ internal struct JSONScanner { if let s = utf8ToString(bytes: key.baseAddress!, count: key.count) { fieldName = s } else { - throw SwiftProtobufError.JSONDecoding.invalidUTF8() + throw JSONDecodingError.invalidUTF8 } } else { // Slow path: We parsed a String; lookups from String are slower. @@ -1285,7 +1285,7 @@ internal struct JSONScanner { } } if !options.ignoreUnknownFields { - throw SwiftProtobufError.JSONDecoding.unknownField(fieldName) + throw JSONDecodingError.unknownField(fieldName) } // Unknown field, skip it and try to parse the next field name try skipValue() @@ -1304,12 +1304,12 @@ internal struct JSONScanner { if options.ignoreUnknownFields { return nil } else { - throw SwiftProtobufError.JSONDecoding.unrecognizedEnumValue() + throw JSONDecodingError.unrecognizedEnumValue } } skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } if currentByte == asciiDoubleQuote { if let name = try nextOptionalKey() { @@ -1334,7 +1334,7 @@ internal struct JSONScanner { return try throwOrIgnore() } } else { - throw SwiftProtobufError.JSONDecoding.numberRange() + throw JSONDecodingError.numberRange } } } @@ -1343,14 +1343,14 @@ internal struct JSONScanner { private mutating func skipRequiredCharacter(_ required: UInt8) throws { skipWhitespace() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } let next = currentByte if next == required { advance() return } - throw SwiftProtobufError.JSONDecoding.failure() + throw JSONDecodingError.failure } /// Skip "{", throw if that's not the next character @@ -1419,7 +1419,7 @@ internal struct JSONScanner { if let s = utf8ToString(bytes: source, start: start, end: index) { return s } else { - throw SwiftProtobufError.JSONDecoding.invalidUTF8() + throw JSONDecodingError.invalidUTF8 } } @@ -1437,7 +1437,7 @@ internal struct JSONScanner { arrayDepth += 1 } guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } switch currentByte { case asciiDoubleQuote: // " begins a string @@ -1446,7 +1446,7 @@ internal struct JSONScanner { try skipObject() case asciiCloseSquareBracket: // ] ends an empty array if arrayDepth == 0 { - throw SwiftProtobufError.JSONDecoding.failure() + throw JSONDecodingError.failure } // We also close out [[]] or [[[]]] here while arrayDepth > 0 && skipOptionalArrayEnd() { @@ -1456,19 +1456,19 @@ internal struct JSONScanner { if !skipOptionalKeyword(bytes: [ asciiLowerN, asciiLowerU, asciiLowerL, asciiLowerL ]) { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } case asciiLowerF: // f must be false if !skipOptionalKeyword(bytes: [ asciiLowerF, asciiLowerA, asciiLowerL, asciiLowerS, asciiLowerE ]) { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } case asciiLowerT: // t must be true if !skipOptionalKeyword(bytes: [ asciiLowerT, asciiLowerR, asciiLowerU, asciiLowerE ]) { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } default: // everything else is a number token _ = try nextDouble() @@ -1516,10 +1516,10 @@ internal struct JSONScanner { // schema mismatches or other issues. private mutating func skipString() throws { guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } if currentByte != asciiDoubleQuote { - throw SwiftProtobufError.JSONDecoding.malformedString() + throw JSONDecodingError.malformedString } advance() while hasMoreContent { @@ -1531,13 +1531,13 @@ internal struct JSONScanner { case asciiBackslash: advance() guard hasMoreContent else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } advance() default: advance() } } - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } } diff --git a/Sources/SwiftProtobuf/Message+BinaryAdditions.swift b/Sources/SwiftProtobuf/Message+BinaryAdditions.swift index 8f8b84cc2..81b34f118 100644 --- a/Sources/SwiftProtobuf/Message+BinaryAdditions.swift +++ b/Sources/SwiftProtobuf/Message+BinaryAdditions.swift @@ -34,7 +34,7 @@ extension Message { options: BinaryEncodingOptions = BinaryEncodingOptions() ) throws -> Bytes { if !partial && !isInitialized { - throw SwiftProtobufError.BinaryEncoding.missingRequiredFields() + throw BinaryEncodingError.missingRequiredFields } // Note that this assumes `options` will not change the required size. @@ -149,7 +149,7 @@ extension Message { try decoder.decodeFullMessage(message: &self) } if !partial && !isInitialized { - throw SwiftProtobufError.BinaryDecoding.missingRequiredFields() + throw BinaryDecodingError.missingRequiredFields } } } diff --git a/Sources/SwiftProtobuf/Message+JSONAdditions.swift b/Sources/SwiftProtobuf/Message+JSONAdditions.swift index 814d4556b..6c4bdad00 100644 --- a/Sources/SwiftProtobuf/Message+JSONAdditions.swift +++ b/Sources/SwiftProtobuf/Message+JSONAdditions.swift @@ -84,12 +84,12 @@ extension Message { options: JSONDecodingOptions = JSONDecodingOptions() ) throws { if jsonString.isEmpty { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } if let data = jsonString.data(using: String.Encoding.utf8) { try self.init(jsonUTF8Bytes: data, extensions: extensions, options: options) } else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } } @@ -126,7 +126,7 @@ extension Message { try jsonUTF8Bytes.withUnsafeBytes { (body: UnsafeRawBufferPointer) in // Empty input is valid for binary, but not for JSON. guard body.count > 0 else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } var decoder = JSONDecoder(source: body, options: options, messageType: Self.self, extensions: extensions) @@ -135,13 +135,13 @@ extension Message { let message = try customCodable.decodedFromJSONNull() { self = message as! Self } else { - throw SwiftProtobufError.JSONDecoding.illegalNull() + throw JSONDecodingError.illegalNull } } else { try decoder.decodeFullObject(message: &self) } if !decoder.scanner.complete { - throw SwiftProtobufError.JSONDecoding.trailingGarbage() + throw JSONDecodingError.trailingGarbage } } } diff --git a/Sources/SwiftProtobuf/Message+JSONArrayAdditions.swift b/Sources/SwiftProtobuf/Message+JSONArrayAdditions.swift index 2d94eed8d..88c53fa52 100644 --- a/Sources/SwiftProtobuf/Message+JSONArrayAdditions.swift +++ b/Sources/SwiftProtobuf/Message+JSONArrayAdditions.swift @@ -87,12 +87,12 @@ extension Message { options: JSONDecodingOptions = JSONDecodingOptions() ) throws -> [Self] { if jsonString.isEmpty { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } if let data = jsonString.data(using: String.Encoding.utf8) { return try array(fromJSONUTF8Bytes: data, extensions: extensions, options: options) } else { - throw SwiftProtobufError.JSONDecoding.truncated() + throw JSONDecodingError.truncated } } @@ -135,7 +135,7 @@ extension Message { messageType: Self.self, extensions: extensions) try decoder.decodeRepeatedMessageField(value: &array) if !decoder.scanner.complete { - throw SwiftProtobufError.JSONDecoding.trailingGarbage() + throw JSONDecodingError.trailingGarbage } } diff --git a/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift b/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift index 740ccb1e7..81b916e96 100644 --- a/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift +++ b/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift @@ -81,7 +81,7 @@ extension Message { extensions: extensions) try decodeMessage(decoder: &decoder) if !decoder.complete { - throw SwiftProtobufError.TextFormatDecoding.trailingGarbage() + throw TextFormatDecodingError.trailingGarbage } } } diff --git a/Sources/SwiftProtobuf/SwiftProtobufError.swift b/Sources/SwiftProtobuf/SwiftProtobufError.swift index 843926a17..c207748c2 100644 --- a/Sources/SwiftProtobuf/SwiftProtobufError.swift +++ b/Sources/SwiftProtobuf/SwiftProtobufError.swift @@ -281,26 +281,6 @@ extension SwiftProtobufError: CustomDebugStringConvertible { extension SwiftProtobufError { /// Errors arising from encoding protobufs into binary data. public enum BinaryEncoding { - /// The definition of the message or one of its nested messages has required - /// fields but the message being encoded did not include values for them. You - /// must pass `partial: true` during encoding if you wish to explicitly ignore - /// missing required fields. - public static func missingRequiredFields( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .binaryEncodingError, - message: """ - The definition of the message or one of its nested messages has required fields, \ - but the message being encoded did not include values for them. \ - Decode with `partial: true` if you wish to explicitly ignore missing required fields. - """, - location: SourceLocation(function: function, file: file, line: line) - ) - } - /// Messages are limited to a maximum of 2GB in encoded size. public static func tooLarge( function: String = #function, @@ -333,53 +313,10 @@ extension SwiftProtobufError { location: SourceLocation(function: function, file: file, line: line) ) } - - /// When writing a binary-delimited message into a stream, this error will be thrown if less than - /// the expected number of bytes were written. - public static func truncated( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .binaryEncodingError, - message: """ - Less than the expected number of bytes were written when writing \ - a binary-delimited message into an output stream. - """, - location: SourceLocation(function: function, file: file, line: line) - ) - } } /// Errors arising from binary decoding of data into protobufs. public enum BinaryDecoding { - /// The end of the data was reached before it was expected. - public static func truncated( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .binaryDecodingError, - message: "The end of the data was reached before it was expected.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - // Extraneous data remained after decoding should have been complete. - public static func trailingGarbage( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .binaryDecodingError, - message: "Extraneous data remained after decoding should have been complete.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - /// Message is too large. Bytes and Strings have a max size of 2GB. public static func tooLarge( function: String = #function, @@ -392,117 +329,11 @@ extension SwiftProtobufError { location: SourceLocation(function: function, file: file, line: line) ) } - - /// A string field was not encoded as valid UTF-8. - public static func invalidUTF8( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .binaryDecodingError, - message: "A string field was not encoded as valid UTF-8.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// The binary data was malformed in some way, such as an invalid wire format or field tag. - public static func malformedProtobuf( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .binaryDecodingError, - message: """ - The binary data was malformed in some way, such as an \ - invalid wire format or field tag. - """, - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// The definition of the message or one of its nested messages has required - /// fields but the binary data did not include values for them. You must pass - /// `partial: true` during decoding if you wish to explicitly ignore missing - /// required fields. - public static func missingRequiredFields( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .binaryDecodingError, - message: """ - The definition of the message or one of its nested messages has required fields, \ - but the binary data did not include values for them. \ - Decode with `partial: true` if you wish to explicitly ignore missing required fields. - """, - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// An internal error happened while decoding. If this is ever encountered, - /// please file an issue with SwiftProtobuf with as much details as possible - /// for what happened (proto definitions, bytes being decoded (if possible)). - public static func internalExtensionError( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .binaryDecodingError, - message: "An internal error hapenned while decoding. Please file an issue with SwiftProtobuf.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// Reached the nesting limit for messages within messages while decoding. - public static func messageDepthLimit( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .binaryDecodingError, - message: "Reached the nesting limit for messages within messages while decoding.", - location: SourceLocation(function: function, file: file, line: line) - ) - } } /// Errors arising from decoding streams of binary messages. These errors have to do with the framing /// of the messages in the stream, or the stream as a whole. public enum BinaryStreamDecoding { - /// If a read/write to the stream fails, but the stream's `streamError` is nil, - /// this error will be thrown instead since the stream didn't provide anything - /// more specific. A common cause for this can be failing to open the stream - /// before trying to read/write to it. - public static func unknownStreamError( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .binaryStreamDecodingError, - message: "Unknown error when reading/writing binary-delimited message into stream.", - location: .init(function: function, file: file, line: line) - ) - } - - /// While reading/writing to the stream, less than the expected bytes was read/written. - public static func truncated( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .binaryStreamDecodingError, - message: "The end of the data was reached before it was expected.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - /// Message is too large. Bytes and Strings have a max size of 2GB. public static func tooLarge( function: String = #function, @@ -558,95 +389,6 @@ extension SwiftProtobufError { /// Errors arising from encoding protobufs into JSON. public enum JSONEncoding { - /// Timestamp values can only be JSON encoded if they hold a value - /// between 0001-01-01Z00:00:00 and 9999-12-31Z23:59:59. - public static func timestampRange( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonEncodingError, - message: """ - Timestamp values can only be JSON encoded if they hold a value \ - between 0001-01-01Z00:00:00 and 9999-12-31Z23:59:59. - """, - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// Duration values can only be JSON encoded if they hold a value - /// less than +/- 100 years. - public static func durationRange( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonEncodingError, - message: "Duration values can only be JSON encoded if they hold a value less than +/- 100 years.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// Field masks get edited when converting between JSON and protobuf. - public static func fieldMaskConversion( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonEncodingError, - message: "Field masks get edited when converting between JSON and protobuf.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// Field names were not compiled into the binary. - public static func missingFieldNames( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonEncodingError, - message: "Field names were not compiled into the binary.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// Instances of `Google_Protobuf_Value` can only be encoded if they have a - /// valid `kind` (that is, they represent a null value, number, boolean, - /// string, struct, or list). - public static func missingValue( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonEncodingError, - message: "Instances of `Google_Protobuf_Value` can only be encoded if they have a valid `kind`.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// `Google_Protobuf_Value` cannot encode double values for infinity or nan, - /// because they would be parsed as a string. - public static func valueNumberNotFinite( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonEncodingError, - message: """ - `Google_Protobuf_Value` cannot encode double values for \ - infinity or nan, because they would be parsed as a string. - """, - location: SourceLocation(function: function, file: file, line: line) - ) - } - /// Any fields that were decoded from binary format cannot be re-encoded into JSON unless the /// object they hold is a well-known type or a type registered via `Google_Protobuf_Any.register()`. public static func anyTypeURLNotRegistered( @@ -666,507 +408,4 @@ extension SwiftProtobufError { ) } } - - /// Errors arising from JSON decoding of data into protobufs. - public enum JSONDecoding { - /// Something went wrong. - public static func failure( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: "Something went wrong.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// A number could not be parsed. - public static func malformedNumber( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: "A number could not be parsed.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// Numeric value was out of range or was not an integer value when expected. - public static func numberRange( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: "Numeric value was out of range or was not an integer value when expected.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// A map could not be parsed. - public static func malformedMap( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: "A map could not be parsed.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// A bool could not be parsed. - public static func malformedBool( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: "A bool could not be parsed.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// We expected a quoted string, or a quoted string has a malformed backslash sequence. - public static func malformedString( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: "Expected a quoted string, or encountered a quoted string with a malformed backslash sequence.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// We encountered malformed UTF8. - public static func invalidUTF8( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: "Encountered malformed UTF8.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// The message does not have fieldName information. - public static func missingFieldNames( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: "The message does not have fieldName information.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// The data type does not match the schema description. - public static func schemaMismatch( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: "The data type does not match the schema description.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// A value (text or numeric) for an enum was not found on the enum. - public static func unrecognizedEnumValue( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: "A value (text or numeric) for an enum was not found on the enum.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// A 'null' token appeared in an illegal location. - /// For example, Protobuf JSON does not allow 'null' tokens to appear in lists. - public static func illegalNull( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: "A 'null' token appeared in an illegal location.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// A map key was not quoted. - public static func unquotedMapKey( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: "A map key was not quoted.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// JSON RFC 7519 does not allow numbers to have extra leading zeros. - public static func leadingZero( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: "JSON RFC 7519 does not allow numbers to have extra leading zeros.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// We hit the end of the JSON string and expected something more. - public static func truncated( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: "Reached end of JSON string but expected something more.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// A JSON Duration could not be parsed. - public static func malformedDuration( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: "A JSON Duration could not be parsed.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// A JSON Timestamp could not be parsed. - public static func malformedTimestamp( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: "A JSON Timestamp could not be parsed.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// A FieldMask could not be parsed. - public static func malformedFieldMask( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: "A FieldMask could not be parsed.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// Extraneous data remained after decoding should have been complete. - public static func trailingGarbage( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError{ - SwiftProtobufError( - code: .jsonDecodingError, - message: "Extraneous data remained after decoding should have been complete.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// More than one value was specified for the same oneof field. - public static func conflictingOneOf( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError{ - SwiftProtobufError( - code: .jsonDecodingError, - message: "More than one value was specified for the same oneof field.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// Reached the nesting limit for messages within messages while decoding. - public static func messageDepthLimit( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: "Reached the nesting limit for messages within messages while decoding.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// Encountered an unknown field with the given name. - /// - Parameter name: The name of the unknown field. - /// - Note: When parsing JSON, you can instead instruct the library to ignore this via - /// `JSONDecodingOptions.ignoreUnknownFields`. - public static func unknownField( - _ name: String, - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .unknownField(name: name), - message: "Encountered an unknown field with name '\(name)'.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - } - - /// Errors arising from text format decoding of data into protobufs. - public enum TextFormatDecoding { - /// Text data could not be parsed. - public static func malformedText( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .textFormatDecodingError, - message: "Text data could not be parsed", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// A number could not be parsed. - public static func malformedNumber( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .textFormatDecodingError, - message: "A number could not be parsed.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// Extraneous data remained after decoding should have been complete. - public static func trailingGarbage( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .textFormatDecodingError, - message: "Extraneous data remained after decoding should have been complete.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// The data stopped before we expected. - public static func truncated( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .textFormatDecodingError, - message: "The data stopped before we expected.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// A string was not valid UTF8. - public static func invalidUTF8( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .textFormatDecodingError, - message: "A string was not valid UTF8.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// The data being parsed does not match the type specified in the proto file. - public static func schemaMismatch( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .textFormatDecodingError, - message: "The data being parsed does not match the type specified in the proto file.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// Field names were not compiled into the binary. - public static func missingFieldNames( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .textFormatDecodingError, - message: "Field names were not compiled into the binary.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// A field identifier (name or number) was not found on the message. - public static func unknownField( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .textFormatDecodingError, - message: "A field identifier (name or number) was not found on the message.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// The enum value was not recognized. - public static func unrecognizedEnumValue( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .textFormatDecodingError, - message: "The enum value was not recognized.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// Text format rejects conflicting values for the same oneof field. - public static func conflictingOneOf( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .textFormatDecodingError, - message: "Text format rejects conflicting values for the same oneof field.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// An internal error happened while decoding. If this is ever encountered, - /// please file an issue with SwiftProtobuf with as much details as possible - /// for what happened (proto definitions, bytes being decoded (if possible)). - public static func internalExtensionError( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .textFormatDecodingError, - message: "An internal error happened while decoding: please file an issue with SwiftProtobuf.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// Reached the nesting limit for messages within messages while decoding. - public static func messageDepthLimit( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .textFormatDecodingError, - message: "Reached the nesting limit for messages within messages while decoding.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - } - - /// Describes errors that can occur when unpacking a `Google_Protobuf_Any` - /// message. - /// - /// `Google_Protobuf_Any` messages can be decoded from protobuf binary, text - /// format, or JSON. The contents are not parsed immediately; the raw data is - /// held in the `Google_Protobuf_Any` message until you `unpack()` it into a - /// message. At this time, any error can occur that might have occurred from a - /// regular decoding operation. There are also other errors that can occur due - /// to problems with the `Any` value's structure. - public enum AnyUnpack { - /// The `type_url` field in the `Google_Protobuf_Any` message did not match - /// the message type provided to the `unpack()` method. - public static func typeMismatch( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .invalidArgument, - message: """ - The `type_url` field in the `Google_Protobuf_Any` message did not match - the message type provided to the `unpack()` method. - """, - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// Well-known types being decoded from JSON must have only two fields: the - /// `@type` field and a `value` field containing the specialized JSON coding - /// of the well-known type. - public static func malformedWellKnownTypeJSON( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .jsonDecodingError, - message: """ - Malformed JSON type: well-known types being decoded from JSON must have only two fields: - the `@type` field and a `value` field containing the specialized JSON coding - of the well-known type. - """, - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// The `Google_Protobuf_Any` message was malformed in some other way not - /// covered by the other error cases. - public static func malformedAnyField( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .internalError, - message: "The `Google_Protobuf_Any` message was malformed.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - } } diff --git a/Sources/SwiftProtobuf/TextFormatDecoder.swift b/Sources/SwiftProtobuf/TextFormatDecoder.swift index 03a7d5e56..e96d59c05 100644 --- a/Sources/SwiftProtobuf/TextFormatDecoder.swift +++ b/Sources/SwiftProtobuf/TextFormatDecoder.swift @@ -46,7 +46,7 @@ internal struct TextFormatDecoder: Decoder { ) throws { scanner = TextFormatScanner(utf8Pointer: utf8Pointer, count: count, options: options, extensions: extensions) guard let nameProviding = (messageType as? any _ProtoNameProviding.Type) else { - throw SwiftProtobufError.TextFormatDecoding.missingFieldNames() + throw TextFormatDecodingError.missingFieldNames } fieldNameMap = nameProviding._protobuf_nameMap self.messageType = messageType @@ -56,14 +56,14 @@ internal struct TextFormatDecoder: Decoder { self.scanner = scanner self.terminator = terminator guard let nameProviding = (messageType as? any _ProtoNameProviding.Type) else { - throw SwiftProtobufError.TextFormatDecoding.missingFieldNames() + throw TextFormatDecodingError.missingFieldNames } fieldNameMap = nameProviding._protobuf_nameMap self.messageType = messageType } mutating func handleConflictingOneOf() throws { - throw SwiftProtobufError.TextFormatDecoding.conflictingOneOf() + throw TextFormatDecodingError.conflictingOneOf } mutating func nextFieldNumber() throws -> Int? { @@ -142,7 +142,7 @@ internal struct TextFormatDecoder: Decoder { try scanner.skipRequiredColon() let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } value = Int32(truncatingIfNeeded: n) } @@ -150,7 +150,7 @@ internal struct TextFormatDecoder: Decoder { try scanner.skipRequiredColon() let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } value = Int32(truncatingIfNeeded: n) } @@ -169,14 +169,14 @@ internal struct TextFormatDecoder: Decoder { } let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } value.append(Int32(truncatingIfNeeded: n)) } } else { let n = try scanner.nextSInt() if n > Int64(Int32.max) || n < Int64(Int32.min) { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } value.append(Int32(truncatingIfNeeded: n)) } @@ -214,7 +214,7 @@ internal struct TextFormatDecoder: Decoder { try scanner.skipRequiredColon() let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } value = UInt32(truncatingIfNeeded: n) } @@ -222,7 +222,7 @@ internal struct TextFormatDecoder: Decoder { try scanner.skipRequiredColon() let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } value = UInt32(truncatingIfNeeded: n) } @@ -241,14 +241,14 @@ internal struct TextFormatDecoder: Decoder { } let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } value.append(UInt32(truncatingIfNeeded: n)) } } else { let n = try scanner.nextUInt() if n > UInt64(UInt32.max) { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } value.append(UInt32(truncatingIfNeeded: n)) } @@ -429,7 +429,7 @@ internal struct TextFormatDecoder: Decoder { if let b = E(rawUTF8: name) { return b } else { - throw SwiftProtobufError.TextFormatDecoding.unrecognizedEnumValue() + throw TextFormatDecodingError.unrecognizedEnumValue } } let number = try scanner.nextSInt() @@ -438,10 +438,10 @@ internal struct TextFormatDecoder: Decoder { if let e = E(rawValue: Int(n)) { return e } else { - throw SwiftProtobufError.TextFormatDecoding.unrecognizedEnumValue() + throw TextFormatDecodingError.unrecognizedEnumValue } } - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } @@ -560,7 +560,7 @@ internal struct TextFormatDecoder: Decoder { value[keyField] = valueField return } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } } if let key = try scanner.nextKey(allowExtensions: ignoreExtensionFields) { @@ -575,12 +575,12 @@ internal struct TextFormatDecoder: Decoder { } else if options.ignoreUnknownFields && !key.hasPrefix("[") { try scanner.skipUnknownFieldValue() } else { - throw SwiftProtobufError.TextFormatDecoding.unknownField() + throw TextFormatDecodingError.unknownField } } scanner.skipOptionalSeparator() } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } } } @@ -616,7 +616,7 @@ internal struct TextFormatDecoder: Decoder { value[keyField] = valueField return } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } } if let key = try scanner.nextKey(allowExtensions: ignoreExtensionFields) { @@ -631,12 +631,12 @@ internal struct TextFormatDecoder: Decoder { } else if options.ignoreUnknownFields && !key.hasPrefix("[") { try scanner.skipUnknownFieldValue() } else { - throw SwiftProtobufError.TextFormatDecoding.unknownField() + throw TextFormatDecodingError.unknownField } } scanner.skipOptionalSeparator() } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } } } @@ -672,7 +672,7 @@ internal struct TextFormatDecoder: Decoder { value[keyField] = valueField return } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } } if let key = try scanner.nextKey(allowExtensions: ignoreExtensionFields) { @@ -687,12 +687,12 @@ internal struct TextFormatDecoder: Decoder { } else if options.ignoreUnknownFields && !key.hasPrefix("[") { try scanner.skipUnknownFieldValue() } else { - throw SwiftProtobufError.TextFormatDecoding.unknownField() + throw TextFormatDecodingError.unknownField } } scanner.skipOptionalSeparator() } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } } } @@ -729,7 +729,7 @@ internal struct TextFormatDecoder: Decoder { // Really things should never get here, for TextFormat, decoding // the value should always work or throw an error. This specific // error result is to allow this to be more detectable. - throw SwiftProtobufError.TextFormatDecoding.internalExtensionError() + throw TextFormatDecodingError.internalExtensionError } } } diff --git a/Sources/SwiftProtobuf/TextFormatDecodingError.swift b/Sources/SwiftProtobuf/TextFormatDecodingError.swift index 014a8e956..ea57bf569 100644 --- a/Sources/SwiftProtobuf/TextFormatDecodingError.swift +++ b/Sources/SwiftProtobuf/TextFormatDecodingError.swift @@ -12,7 +12,6 @@ /// // ----------------------------------------------------------------------------- -@available(*, deprecated, message: "This error type has been deprecated and won't be thrown anymore; it has been replaced by `SwiftProtobufError`.") public enum TextFormatDecodingError: Error { /// Text data could not be parsed case malformedText diff --git a/Sources/SwiftProtobuf/TextFormatScanner.swift b/Sources/SwiftProtobuf/TextFormatScanner.swift index 449559774..84c2763ff 100644 --- a/Sources/SwiftProtobuf/TextFormatScanner.swift +++ b/Sources/SwiftProtobuf/TextFormatScanner.swift @@ -270,7 +270,7 @@ internal struct TextFormatScanner { private mutating func incrementRecursionDepth() throws { recursionBudget -= 1 if recursionBudget < 0 { - throw SwiftProtobufError.TextFormatDecoding.messageDepthLimit() + throw TextFormatDecodingError.messageDepthLimit } } @@ -355,7 +355,7 @@ internal struct TextFormatScanner { switch byte { case asciiNewLine, asciiCarriageReturn: // Can't have a newline in the middle of a bytes string. - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText case asciiBackslash: // "\\" sawBackslash = true if p != end { @@ -369,7 +369,7 @@ internal struct TextFormatScanner { if p != end, p[0] >= asciiZero, p[0] <= asciiSeven { if escaped > asciiThree { // Out of range octal: three digits and first digit is greater than 3 - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } p += 1 } @@ -378,14 +378,14 @@ internal struct TextFormatScanner { case asciiLowerU, asciiUpperU: // 'u' or 'U' unicode escape let numDigits = (escaped == asciiLowerU) ? 4 : 8 guard (end - p) >= numDigits else { - throw SwiftProtobufError.TextFormatDecoding.malformedText() // unicode escape must 4/8 digits + throw TextFormatDecodingError.malformedText // unicode escape must 4/8 digits } var codePoint: UInt32 = 0 for i in 0.. UInt64 { if p == end { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } let c = p[0] p += 1 @@ -619,7 +619,7 @@ internal struct TextFormatScanner { return n } if n > UInt64.max / 16 { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } p += 1 n = n * 16 + val @@ -636,7 +636,7 @@ internal struct TextFormatScanner { } let val = UInt64(digit - asciiZero) if n > UInt64.max / 8 { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } p += 1 n = n * 8 + val @@ -654,7 +654,7 @@ internal struct TextFormatScanner { } let val = UInt64(digit - asciiZero) if n > UInt64.max / 10 || n * 10 > UInt64.max - val { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } p += 1 n = n * 10 + val @@ -662,30 +662,30 @@ internal struct TextFormatScanner { skipWhitespace() return n } - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } internal mutating func nextSInt() throws -> Int64 { if p == end { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } let c = p[0] if c == asciiMinus { // - p += 1 if p == end { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } // character after '-' must be digit let digit = p[0] if digit < asciiZero || digit > asciiNine { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } let n = try nextUInt() let limit: UInt64 = 0x8000000000000000 // -Int64.min if n >= limit { if n > limit { // Too large negative number - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } else { return Int64.min // Special case for Int64.min } @@ -694,7 +694,7 @@ internal struct TextFormatScanner { } else { let n = try nextUInt() if n > UInt64(bitPattern: Int64.max) { - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } return Int64(bitPattern: n) } @@ -704,17 +704,17 @@ internal struct TextFormatScanner { var result: String skipWhitespace() if p == end { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } let c = p[0] if c != asciiSingleQuote && c != asciiDoubleQuote { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } p += 1 if let s = parseStringSegment(terminator: c) { result = s } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } while true { @@ -729,7 +729,7 @@ internal struct TextFormatScanner { if let s = parseStringSegment(terminator: c) { result.append(s) } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } } } @@ -744,11 +744,11 @@ internal struct TextFormatScanner { var result: Data skipWhitespace() if p == end { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } let c = p[0] if c != asciiSingleQuote && c != asciiDoubleQuote { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } p += 1 var sawBackslash = false @@ -947,7 +947,7 @@ internal struct TextFormatScanner { if let inf = skipOptionalInfinity() { return inf } - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } internal mutating func nextDouble() throws -> Double { @@ -960,13 +960,13 @@ internal struct TextFormatScanner { if let inf = skipOptionalInfinity() { return Double(inf) } - throw SwiftProtobufError.TextFormatDecoding.malformedNumber() + throw TextFormatDecodingError.malformedNumber } internal mutating func nextBool() throws -> Bool { skipWhitespace() if p == end { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } let c = p[0] p += 1 @@ -989,7 +989,7 @@ internal struct TextFormatScanner { } result = true default: - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } if p == end { return result @@ -1008,14 +1008,14 @@ internal struct TextFormatScanner { skipWhitespace() return result default: - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } } internal mutating func nextOptionalEnumName() throws -> UnsafeRawBufferPointer? { skipWhitespace() if p == end { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } switch p[0] { case asciiLowerA...asciiLowerZ, asciiUpperA...asciiUpperZ: @@ -1060,14 +1060,14 @@ internal struct TextFormatScanner { assert(p[0] == asciiOpenSquareBracket) p += 1 if p == end { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } let start = p switch p[0] { case asciiLowerA...asciiLowerZ, asciiUpperA...asciiUpperZ: p += 1 default: - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } loop: while p != end { switch p[0] { @@ -1081,14 +1081,14 @@ internal struct TextFormatScanner { case asciiCloseSquareBracket: // ] break loop default: - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } } if p == end || p[0] != asciiCloseSquareBracket { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } guard let extensionName = utf8ToString(bytes: start, count: p - start) else { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } p += 1 // Skip ] skipWhitespace() @@ -1107,7 +1107,7 @@ internal struct TextFormatScanner { if allowExtensions { return "[\(try parseExtensionKey())]" } - throw SwiftProtobufError.TextFormatDecoding.unknownField() + throw TextFormatDecodingError.unknownField case asciiLowerA...asciiLowerZ, asciiUpperA...asciiUpperZ: // a...z, A...Z return parseIdentifier() @@ -1130,7 +1130,7 @@ internal struct TextFormatScanner { // Safe, can't be invalid UTF-8 given the input. return s! default: - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } } @@ -1156,7 +1156,7 @@ internal struct TextFormatScanner { return nil } else { // Never got the terminator. - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } } let c = p[0] @@ -1350,12 +1350,12 @@ internal struct TextFormatScanner { let terminator = try skipObjectStart() while !skipOptionalObjectEnd(terminator) { if p == end { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } if let _ = try nextKey(allowExtensions: true) { // Got a valid field name or extension name ("[ext.name]") } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } try skipUnknownFieldValue() skipOptionalSeparator() @@ -1368,7 +1368,7 @@ internal struct TextFormatScanner { p += 1 skipWhitespace() } else { - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } } @@ -1436,6 +1436,6 @@ internal struct TextFormatScanner { break } } - throw SwiftProtobufError.TextFormatDecoding.malformedText() + throw TextFormatDecodingError.malformedText } } diff --git a/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift b/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift index 68990868e..375b18b27 100644 --- a/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift +++ b/Tests/SwiftProtobufTests/Test_AsyncMessageSequence.swift @@ -126,7 +126,7 @@ final class Test_AsyncMessageSequence: XCTestCase { XCTFail("Shouldn't have returned a value for an empty stream.") } } catch { - if self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryStreamDecoding.truncated()) { + if error as! BinaryDelimited.Error == .truncated { truncatedThrown = true } } @@ -157,7 +157,7 @@ final class Test_AsyncMessageSequence: XCTestCase { XCTFail("Shouldn't have returned a value for an empty stream.") } } catch { - if self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryStreamDecoding.truncated()) { + if error as! BinaryDelimited.Error == .truncated { truncatedThrown = true } } @@ -189,7 +189,7 @@ final class Test_AsyncMessageSequence: XCTestCase { } XCTAssertEqual(count, 1, "One message should be deserialized") } catch { - if self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryStreamDecoding.truncated()) { + if error as! BinaryDelimited.Error == .truncated { truncatedThrown = true } } diff --git a/Tests/SwiftProtobufTests/Test_BinaryDecodingOptions.swift b/Tests/SwiftProtobufTests/Test_BinaryDecodingOptions.swift index ad30b7cd0..8285db8b0 100644 --- a/Tests/SwiftProtobufTests/Test_BinaryDecodingOptions.swift +++ b/Tests/SwiftProtobufTests/Test_BinaryDecodingOptions.swift @@ -113,7 +113,7 @@ final class Test_BinaryDecodingOptions: XCTestCase { if !expectSuccess { XCTFail("Should not have succeed, pass: \(i), limit: \(limit)") } - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryDecoding.messageDepthLimit()) { + } catch BinaryDecodingError.messageDepthLimit { if expectSuccess { XCTFail("Decode failed because of limit, but should *NOT* have, pass: \(i), limit: \(limit)") } else { diff --git a/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift b/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift index d6e03678c..8931214ae 100644 --- a/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift +++ b/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift @@ -47,7 +47,7 @@ final class Test_BinaryDelimited: XCTestCase { func assertParsing(failsWithTruncatedStream istream: InputStream) { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryStreamDecoding.truncated())) + XCTAssertEqual(error as? BinaryDelimited.Error, BinaryDelimited.Error.truncated) } } diff --git a/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift b/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift index d95ae2c23..bd8656e53 100644 --- a/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift +++ b/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift @@ -46,7 +46,7 @@ final class Test_JSONDecodingOptions: XCTestCase { if !expectSuccess { XCTFail("Should not have succeed, pass: \(i), limit: \(limit)") } - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .JSONDecoding.messageDepthLimit()) { + } catch JSONDecodingError.messageDepthLimit { if expectSuccess { XCTFail("Decode failed because of limit, but should *NOT* have, pass: \(i), limit: \(limit)") } else { @@ -136,9 +136,8 @@ final class Test_JSONDecodingOptions: XCTestCase { do { let _ = try SwiftProtoTesting_TestEmptyMessage(jsonString: jsonInput) XCTFail("Input \(i): Should not have gotten here! Input: \(jsonInput)") - } catch let error as SwiftProtobufError { - XCTAssertEqual(error.code, .unknownField(name: "unknown")) - XCTAssertEqual(error.message, "Encountered an unknown field with name 'unknown'.") + } catch JSONDecodingError.unknownField(let field) { + XCTAssertEqual(field, "unknown", "Input \(i): got field \(field)") } catch let e { XCTFail("Input \(i): Error \(e) decoding into an empty message \(jsonInput)") } @@ -149,8 +148,8 @@ final class Test_JSONDecodingOptions: XCTestCase { options:options) XCTAssertTrue(isValidJSON, "Input \(i): Should not have been able to parse: \(jsonInput)") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .JSONDecoding.unknownField("unknown")) { - XCTFail("Input \(i): should not have gotten unknown field, input \(jsonInput)") + } catch JSONDecodingError.unknownField(let field) { + XCTFail("Input \(i): should not have gotten unknown field \(field), input \(jsonInput)") } catch let e { XCTAssertFalse(isValidJSON, "Input \(i): Error \(e): Should have been able to parse: \(jsonInput)") diff --git a/Tests/SwiftProtobufTests/Test_JSON_Conformance.swift b/Tests/SwiftProtobufTests/Test_JSON_Conformance.swift index 50b1d55b4..3c3039618 100644 --- a/Tests/SwiftProtobufTests/Test_JSON_Conformance.swift +++ b/Tests/SwiftProtobufTests/Test_JSON_Conformance.swift @@ -283,23 +283,26 @@ final class Test_JSON_Conformance: XCTestCase { func testValue_DoubleNonFinite() { XCTAssertThrowsError(try Google_Protobuf_Value(numberValue: .nan).jsonString()) { - XCTAssertTrue( - self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .JSONEncoding.valueNumberNotFinite()), - "Wrong error? - \($0)" + XCTAssertEqual( + $0 as? JSONEncodingError, + JSONEncodingError.valueNumberNotFinite, + "Wrong error? - \($0)" ) } XCTAssertThrowsError(try Google_Protobuf_Value(numberValue: .infinity).jsonString()) { - XCTAssertTrue( - self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .JSONEncoding.valueNumberNotFinite()), - "Wrong error? - \($0)" + XCTAssertEqual( + $0 as? JSONEncodingError, + JSONEncodingError.valueNumberNotFinite, + "Wrong error? - \($0)" ) } XCTAssertThrowsError(try Google_Protobuf_Value(numberValue: -.infinity).jsonString()) { - XCTAssertTrue( - self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .JSONEncoding.valueNumberNotFinite()), - "Wrong error? - \($0)" + XCTAssertEqual( + $0 as? JSONEncodingError, + JSONEncodingError.valueNumberNotFinite, + "Wrong error? - \($0)" ) } } diff --git a/Tests/SwiftProtobufTests/Test_Required.swift b/Tests/SwiftProtobufTests/Test_Required.swift index 0ebcc44e5..a82706562 100644 --- a/Tests/SwiftProtobufTests/Test_Required.swift +++ b/Tests/SwiftProtobufTests/Test_Required.swift @@ -157,7 +157,7 @@ final class Test_Required: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(serializedBytes: bytes) XCTFail("Swift decode should have failed: \(bytes)", file: file, line: line) - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryDecoding.missingRequiredFields()) { + } catch BinaryDecodingError.missingRequiredFields { // Correct error! } catch let e { XCTFail("Decoding \(bytes) got wrong error: \(e)", file: file, line: line) @@ -254,7 +254,7 @@ final class Test_Required: XCTestCase, PBTestHelpers { do { let _: [UInt8] = try message.serializedBytes() XCTFail("Swift encode should have failed: \(message)", file: file, line: line) - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryEncoding.missingRequiredFields()) { + } catch BinaryEncodingError.missingRequiredFields { // Correct error! print("sdfdsf") } catch let e { @@ -358,7 +358,7 @@ final class Test_SmallRequired: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(serializedBytes: bytes) XCTFail("Swift decode should have failed: \(bytes)", file: file, line: line) - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryDecoding.missingRequiredFields()) { + } catch BinaryDecodingError.missingRequiredFields { // Correct error! } catch let e { XCTFail("Decoding \(bytes) got wrong error: \(e)", file: file, line: line) @@ -415,7 +415,7 @@ final class Test_SmallRequired: XCTestCase, PBTestHelpers { do { let _: [UInt8] = try message.serializedBytes() XCTFail("Swift encode should have failed: \(message)", file: file, line: line) - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .BinaryEncoding.missingRequiredFields()) { + } catch BinaryEncodingError.missingRequiredFields { // Correct error! } catch let e { XCTFail("Encoding got wrong error: \(e) for \(message)", file: file, line: line) diff --git a/Tests/SwiftProtobufTests/Test_Struct.swift b/Tests/SwiftProtobufTests/Test_Struct.swift index 08768a45b..7868b9425 100644 --- a/Tests/SwiftProtobufTests/Test_Struct.swift +++ b/Tests/SwiftProtobufTests/Test_Struct.swift @@ -221,7 +221,7 @@ final class Test_JSON_Value: XCTestCase, PBTestHelpers { do { _ = try empty.jsonString() XCTFail("Encoding should have thrown .missingValue, but it succeeded") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .JSONEncoding.missingValue()) { + } catch JSONEncodingError.missingValue { // Nothing to do here; this is the expected error. } catch { XCTFail("Encoding should have thrown .missingValue, but instead it threw: \(error)") diff --git a/Tests/SwiftProtobufTests/Test_TextFormatDecodingOptions.swift b/Tests/SwiftProtobufTests/Test_TextFormatDecodingOptions.swift index 8b00e0987..b18ea4d28 100644 --- a/Tests/SwiftProtobufTests/Test_TextFormatDecodingOptions.swift +++ b/Tests/SwiftProtobufTests/Test_TextFormatDecodingOptions.swift @@ -38,7 +38,7 @@ final class Test_TextFormatDecodingOptions: XCTestCase { if !expectSuccess { XCTFail("Should not have succeed, limit: \(limit)") } - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.messageDepthLimit()) { + } catch TextFormatDecodingError.messageDepthLimit { if expectSuccess { XCTFail("Decode failed because of limit, but should *NOT* have, limit: \(limit)") } else { diff --git a/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift b/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift index 57d5dbf6e..53d905f90 100644 --- a/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift +++ b/Tests/SwiftProtobufTests/Test_TextFormat_Unknown.swift @@ -41,7 +41,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { + } catch TextFormatDecodingError.unknownField { // This is what should have happened. } @@ -61,7 +61,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { + } catch TextFormatDecodingError.unknownField { // This is what should have happened. } @@ -81,7 +81,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { + } catch TextFormatDecodingError.unknownField { // This is what should have happened. } @@ -102,7 +102,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { + } catch TextFormatDecodingError.unknownField { // This is what should have happened. } @@ -124,7 +124,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { + } catch TextFormatDecodingError.unknownField { // This is what should have happened. } @@ -144,7 +144,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { + } catch TextFormatDecodingError.unknownField { // This is what should have happened. } @@ -165,7 +165,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { + } catch TextFormatDecodingError.unknownField { // This is what should have happened. } @@ -186,7 +186,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { + } catch TextFormatDecodingError.unknownField { // This is what should have happened. } @@ -206,7 +206,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { + } catch TextFormatDecodingError.unknownField { // This is what should have happened. } @@ -248,7 +248,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { + } catch TextFormatDecodingError.unknownField { // This is what should have happened. } @@ -281,7 +281,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { + } catch TextFormatDecodingError.unknownField { // This is what should have happened. } @@ -301,7 +301,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { + } catch TextFormatDecodingError.unknownField { // This is what should have happened. } @@ -352,7 +352,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { + } catch TextFormatDecodingError.unknownField { // This is what should have happened. } @@ -376,7 +376,7 @@ final class Test_TextFormat_Unknown: XCTestCase, PBTestHelpers { do { let _ = try MessageTestType(textFormatString: text) XCTFail("Shouldn't get here") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .TextFormatDecoding.unknownField()) { + } catch TextFormatDecodingError.unknownField { // This is what should have happened. } diff --git a/Tests/SwiftProtobufTests/Test_Wrappers.swift b/Tests/SwiftProtobufTests/Test_Wrappers.swift index b0f389145..8ff6156e7 100644 --- a/Tests/SwiftProtobufTests/Test_Wrappers.swift +++ b/Tests/SwiftProtobufTests/Test_Wrappers.swift @@ -25,7 +25,7 @@ final class Test_Wrappers: XCTestCase { do { _ = try type.init(jsonString: "null") XCTFail("Expected decode to throw .illegalNull, but it succeeded") - } catch let error as SwiftProtobufError where self.isSwiftProtobufErrorEqual(error, .JSONDecoding.illegalNull()) { + } catch JSONDecodingError.illegalNull { // Nothing to do; this is the expected error. } catch { XCTFail("Expected decode to throw .illegalNull, but instead it threw: \(error)") From 3062c69376965b7b019cb78be48ec5d6dfa9a812 Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Fri, 10 May 2024 10:46:22 +0100 Subject: [PATCH 13/19] Fix docs --- .../SwiftProtobuf/AsyncMessageSequence.swift | 10 +-- Sources/SwiftProtobuf/BinaryDelimited.swift | 18 ++--- .../Google_Protobuf_Any+Extensions.swift | 6 +- .../SwiftProtobuf/Message+AnyAdditions.swift | 3 +- .../Message+BinaryAdditions.swift | 12 ++-- .../Message+BinaryAdditions_Data.swift | 12 ++-- .../SwiftProtobuf/Message+JSONAdditions.swift | 12 ++-- .../Message+JSONAdditions_Data.swift | 6 +- .../Message+JSONArrayAdditions.swift | 12 ++-- .../Message+JSONArrayAdditions_Data.swift | 6 +- .../Message+TextFormatAdditions.swift | 2 +- .../SwiftProtobuf/SwiftProtobufError.swift | 68 +------------------ 12 files changed, 48 insertions(+), 119 deletions(-) diff --git a/Sources/SwiftProtobuf/AsyncMessageSequence.swift b/Sources/SwiftProtobuf/AsyncMessageSequence.swift index 1582ec2cf..e05635757 100644 --- a/Sources/SwiftProtobuf/AsyncMessageSequence.swift +++ b/Sources/SwiftProtobuf/AsyncMessageSequence.swift @@ -24,12 +24,9 @@ extension AsyncSequence where Element == UInt8 { /// - extensions: An ``ExtensionMap`` used to look up and decode any extensions in /// messages encoded by this sequence, or in messages nested within these messages. /// - partial: If `false` (the default), after decoding a message, ``Message/isInitialized-6abgi` - /// will be checked to ensure all fields are present. If any are missing, - /// ``SwiftProtobufError/BinaryDecoding/missingRequiredFields`` will be thrown. + /// will be checked to ensure all fields are present. /// - options: The ``BinaryDecodingOptions`` to use. /// - Returns: An asynchronous sequence of messages read from the `AsyncSequence` of bytes. - /// - Throws: ``SwiftProtobufError`` for errors in the framing of the messages in the sequence - /// or while decoding messages. @inlinable public func binaryProtobufDelimitedMessages( of messageType: M.Type = M.self, @@ -70,12 +67,9 @@ public struct AsyncMessageSequence< /// - extensions: An ``ExtensionMap`` used to look up and decode any extensions in /// messages encoded by this sequence, or in messages nested within these messages. /// - partial: If `false` (the default), after decoding a message, ``Message/isInitialized-6abgi`` - /// will be checked to ensure all fields are present. If any are missing, - /// ``SwiftProtobufError/BinaryDecoding/missingRequiredFields`` will be thrown. + /// will be checked to ensure all fields are present. /// - options: The ``BinaryDecodingOptions`` to use. /// - Returns: An asynchronous sequence of messages read from the `AsyncSequence` of bytes. - /// - Throws: ``SwiftProtobufError`` for errors in the framing of the messages in the sequence - /// or while decoding messages. public init( base: Base, extensions: (any ExtensionMap)? = nil, diff --git a/Sources/SwiftProtobuf/BinaryDelimited.swift b/Sources/SwiftProtobuf/BinaryDelimited.swift index b5292eb37..39661e874 100644 --- a/Sources/SwiftProtobuf/BinaryDelimited.swift +++ b/Sources/SwiftProtobuf/BinaryDelimited.swift @@ -45,9 +45,9 @@ public enum BinaryDelimited { /// - partial: If `false` (the default), this method will check /// ``Message/isInitialized-6abgi`` before encoding to verify that all required /// fields are present. If any are missing, this method throws - /// ``SwiftProtobufError/BinaryStreamDecoding/missingRequiredFields``. - /// - Throws: ``SwiftProtobufError`` if encoding fails or some writing errors occur; or the - /// underlying `OutputStream.streamError` for a stream error. + /// ``BinaryDelimited/Error/missingRequiredFields``. + /// - Throws: ``BinaryDelimited/Error`` if encoding fails or some writing errors occur; or the + /// underlying `OutputStream.streamError` for a stream error. public static func serialize( message: any Message, to stream: OutputStream, @@ -100,11 +100,11 @@ public enum BinaryDelimited { /// - partial: If `false` (the default), this method will check /// ``Message/isInitialized-6abgi`` after decoding to verify that all required /// fields are present. If any are missing, this method throws - /// ``SwiftProtobufError/BinaryStreamDecoding/missingRequiredFields``. + /// ``BinaryDecodingError/missingRequiredFields``. /// - options: The ``BinaryDecodingOptions`` to use. /// - Returns: The message read. - /// - Throws: ``SwiftProtobufError`` if decoding fails, and for some reading errors; or the - /// underlying `InputStream.streamError` for a stream error. + /// - Throws: ``BinaryDelimited/Error`` or ``SwiftProtobufError`` if decoding fails, + /// some reading errors; or the underlying `InputStream.streamError` for a stream error. public static func parse( messageType: M.Type, from stream: InputStream, @@ -141,10 +141,10 @@ public enum BinaryDelimited { /// - partial: If `false` (the default), this method will check /// ``Message/isInitialized-6abgi`` after decoding to verify that all required /// fields are present. If any are missing, this method throws - /// ``SwiftProtobufError/BinaryStreamDecoding/missingRequiredFields``. + /// ``BinaryDelimited/Error/missingRequiredFields``. /// - options: The BinaryDecodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if decoding fails, and for some reading errors; or the - /// underlying `InputStream.streamError` for a stream error. + /// - Throws: ``BinaryDelimited/Error`` or ``SwiftProtobufError`` if decoding fails, + /// and for some reading errors; or the underlying `InputStream.streamError` for a stream error. public static func merge( into message: inout M, from stream: InputStream, diff --git a/Sources/SwiftProtobuf/Google_Protobuf_Any+Extensions.swift b/Sources/SwiftProtobuf/Google_Protobuf_Any+Extensions.swift index 8b80cd15f..1b2c70892 100644 --- a/Sources/SwiftProtobuf/Google_Protobuf_Any+Extensions.swift +++ b/Sources/SwiftProtobuf/Google_Protobuf_Any+Extensions.swift @@ -32,10 +32,10 @@ extension Google_Protobuf_Any { /// - partial: If `false` (the default), this method will check /// ``Message/isInitialized-6abgi`` before encoding to verify that all required /// fields are present. If any are missing, this method throws - /// ``SwiftProtobufError/BinaryEncoding/missingRequiredFields``. + /// ``BinaryEncodingError/missingRequiredFields``. /// - typePrefix: The prefix to be used when building the `type_url`. /// Defaults to "type.googleapis.com". - /// - Throws: ``SwiftProtobufError/BinaryEncoding/missingRequiredFields`` if + /// - Throws: ``BinaryEncodingError/missingRequiredFields`` if /// `partial` is false and `message` wasn't fully initialized. public init( message: any Message, @@ -59,7 +59,7 @@ extension Google_Protobuf_Any { /// - extensions: An ``ExtensionMap`` used to look up and decode any /// extensions in this message or messages nested within this message's /// fields. - /// - Throws: ``SwiftProtobufError`` on failure. + /// - Throws: ``TextFormatDecodingError`` on failure. public init( textFormatString: String, options: TextFormatDecodingOptions = TextFormatDecodingOptions(), diff --git a/Sources/SwiftProtobuf/Message+AnyAdditions.swift b/Sources/SwiftProtobuf/Message+AnyAdditions.swift index b6342e8e9..3db9bbe5f 100644 --- a/Sources/SwiftProtobuf/Message+AnyAdditions.swift +++ b/Sources/SwiftProtobuf/Message+AnyAdditions.swift @@ -32,7 +32,8 @@ extension Message { /// extensions in this message or messages nested within this message's /// fields. /// - Parameter options: The BinaryDecodingOptions to use. - /// - Throws: `SwiftProtobufError` on failure. + /// - Throws: an instance of ``AnyUnpackError``, ``JSONDecodingError``, or + /// ``BinaryDecodingError`` on failure. public init( unpackingAny: Google_Protobuf_Any, extensions: (any ExtensionMap)? = nil, diff --git a/Sources/SwiftProtobuf/Message+BinaryAdditions.swift b/Sources/SwiftProtobuf/Message+BinaryAdditions.swift index 81b34f118..b85fecc05 100644 --- a/Sources/SwiftProtobuf/Message+BinaryAdditions.swift +++ b/Sources/SwiftProtobuf/Message+BinaryAdditions.swift @@ -23,12 +23,12 @@ extension Message { /// - partial: If `false` (the default), this method will check /// `Message.isInitialized` before encoding to verify that all required /// fields are present. If any are missing, this method throws. - /// ``SwiftProtobufError/BinaryEncoding/missingRequiredFields``. + /// ``BinaryEncodingError/missingRequiredFields``. /// - options: The ``BinaryEncodingOptions`` to use. /// - Returns: A ``SwiftProtobufContiguousBytes`` instance containing the binary serialization /// of the message. /// - /// - Throws: ``SwiftProtobufError`` if encoding fails. + /// - Throws: ``SwiftProtobufError`` or ``BinaryEncodingError`` if encoding fails. public func serializedBytes( partial: Bool = false, options: BinaryEncodingOptions = BinaryEncodingOptions() @@ -85,9 +85,9 @@ extension Message { /// - partial: If `false` (the default), this method will check /// ``Message/isInitialized-6abgi`` after decoding to verify that all required /// fields are present. If any are missing, this method throws - /// ``SwiftProtobufError/BinaryDecoding/missingRequiredFields``. + /// ``BinaryDecodingError/missingRequiredFields``. /// - options: The ``BinaryDecodingOptions`` to use. - /// - Throws: ``SwiftProtobufError`` if decoding fails. + /// - Throws: ``BinaryDecodingError`` if decoding fails. @inlinable public init( serializedBytes bytes: Bytes, @@ -115,9 +115,9 @@ extension Message { /// - partial: If `false` (the default), this method will check /// ``Message/isInitialized-6abgi`` after decoding to verify that all required /// fields are present. If any are missing, this method throws - /// ``SwiftProtobufError/BinaryDecoding/missingRequiredFields``. + /// ``BinaryDecodingError/missingRequiredFields``. /// - options: The ``BinaryDecodingOptions`` to use. - /// - Throws: ``SwiftProtobufError`` if decoding fails. + /// - Throws: ``BinaryDecodingError`` if decoding fails. @inlinable public mutating func merge( serializedBytes bytes: Bytes, diff --git a/Sources/SwiftProtobuf/Message+BinaryAdditions_Data.swift b/Sources/SwiftProtobuf/Message+BinaryAdditions_Data.swift index 4ef33574b..108092c2b 100644 --- a/Sources/SwiftProtobuf/Message+BinaryAdditions_Data.swift +++ b/Sources/SwiftProtobuf/Message+BinaryAdditions_Data.swift @@ -27,9 +27,9 @@ extension Message { /// - partial: If `false` (the default), this method will check /// ``Message/isInitialized-6abgi`` after decoding to verify that all required /// fields are present. If any are missing, this method throws - /// ``SwiftProtobufError/BinaryDecoding/missingRequiredFields``. + /// ``BinaryDecodingError/missingRequiredFields``. /// - options: The ``BinaryDecodingOptions`` to use. - /// - Throws: ``SwiftProtobufError`` if decoding fails. + /// - Throws: ``BinaryDecodingError`` if decoding fails. @inlinable public init( serializedData data: Data, @@ -57,9 +57,9 @@ extension Message { /// - partial: If `false` (the default), this method will check /// ``Message/isInitialized-6abgi`` after decoding to verify that all required /// fields are present. If any are missing, this method throws - /// ``SwiftProtobufError/BinaryDecoding/missingRequiredFields``. + /// ``BinaryDecodingError/missingRequiredFields``. /// - options: The ``BinaryDecodingOptions`` to use. - /// - Throws: ``SwiftProtobufError`` if decoding fails. + /// - Throws: ``BinaryDecodingError`` if decoding fails. @inlinable public mutating func merge( serializedData data: Data, @@ -77,10 +77,10 @@ extension Message { /// - partial: If `false` (the default), this method will check /// ``Message/isInitialized-6abgi`` before encoding to verify that all required /// fields are present. If any are missing, this method throws - /// ``SwiftProtobufError/BinaryEncoding/missingRequiredFields``. + /// ``BinaryEncodingError/missingRequiredFields``. /// - options: The `BinaryEncodingOptions` to use. /// - Returns: A `Data` instance containing the binary serialization of the message. - /// - Throws: ``SwiftProtobufError`` if encoding fails. + /// - Throws: ``BinaryEncodingError`` if encoding fails. public func serializedData( partial: Bool = false, options: BinaryEncodingOptions = BinaryEncodingOptions() diff --git a/Sources/SwiftProtobuf/Message+JSONAdditions.swift b/Sources/SwiftProtobuf/Message+JSONAdditions.swift index 6c4bdad00..a283f8e3b 100644 --- a/Sources/SwiftProtobuf/Message+JSONAdditions.swift +++ b/Sources/SwiftProtobuf/Message+JSONAdditions.swift @@ -24,7 +24,7 @@ extension Message { /// - Returns: A string containing the JSON serialization of the message. /// - Parameters: /// - options: The JSONEncodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if encoding fails. + /// - Throws: ``JSONEncodingError`` if encoding fails. public func jsonString( options: JSONEncodingOptions = JSONEncodingOptions() ) throws -> String { @@ -43,7 +43,7 @@ extension Message { /// - Returns: A `SwiftProtobufContiguousBytes` containing the JSON serialization of the message. /// - Parameters: /// - options: The JSONEncodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if encoding fails. + /// - Throws: ``JSONEncodingError`` if encoding fails. public func jsonUTF8Bytes( options: JSONEncodingOptions = JSONEncodingOptions() ) throws -> Bytes { @@ -63,7 +63,7 @@ extension Message { /// /// - Parameter jsonString: The JSON-formatted string to decode. /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if decoding fails. + /// - Throws: ``JSONDecodingError`` if decoding fails. public init( jsonString: String, options: JSONDecodingOptions = JSONDecodingOptions() @@ -77,7 +77,7 @@ extension Message { /// - Parameter jsonString: The JSON-formatted string to decode. /// - Parameter extensions: An ExtensionMap for looking up extensions by name /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if decoding fails. + /// - Throws: ``JSONDecodingError`` if decoding fails. public init( jsonString: String, extensions: (any ExtensionMap)? = nil, @@ -100,7 +100,7 @@ extension Message { /// - Parameter jsonUTF8Bytes: The JSON-formatted data to decode, represented /// as UTF-8 encoded text. /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if decoding fails. + /// - Throws: ``JSONDecodingError`` if decoding fails. public init( jsonUTF8Bytes: Bytes, options: JSONDecodingOptions = JSONDecodingOptions() @@ -116,7 +116,7 @@ extension Message { /// as UTF-8 encoded text. /// - Parameter extensions: The extension map to use with this decode /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if decoding fails. + /// - Throws: ``JSONDecodingError`` if decoding fails. public init( jsonUTF8Bytes: Bytes, extensions: (any ExtensionMap)? = nil, diff --git a/Sources/SwiftProtobuf/Message+JSONAdditions_Data.swift b/Sources/SwiftProtobuf/Message+JSONAdditions_Data.swift index dd8736cfb..ecc0d2f2f 100644 --- a/Sources/SwiftProtobuf/Message+JSONAdditions_Data.swift +++ b/Sources/SwiftProtobuf/Message+JSONAdditions_Data.swift @@ -22,7 +22,7 @@ extension Message { /// - Parameter jsonUTF8Data: The JSON-formatted data to decode, represented /// as UTF-8 encoded text. /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if decoding fails. + /// - Throws: ``JSONDecodingError`` if decoding fails. public init( jsonUTF8Data: Data, options: JSONDecodingOptions = JSONDecodingOptions() @@ -37,7 +37,7 @@ extension Message { /// as UTF-8 encoded text. /// - Parameter extensions: The extension map to use with this decode /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if decoding fails. + /// - Throws: ``JSONDecodingError`` if decoding fails. public init( jsonUTF8Data: Data, extensions: (any ExtensionMap)? = nil, @@ -54,7 +54,7 @@ extension Message { /// - Returns: A Data containing the JSON serialization of the message. /// - Parameters: /// - options: The JSONEncodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if encoding fails. + /// - Throws: ``JSONDecodingError`` if encoding fails. public func jsonUTF8Data( options: JSONEncodingOptions = JSONEncodingOptions() ) throws -> Data { diff --git a/Sources/SwiftProtobuf/Message+JSONArrayAdditions.swift b/Sources/SwiftProtobuf/Message+JSONArrayAdditions.swift index 88c53fa52..ad243015d 100644 --- a/Sources/SwiftProtobuf/Message+JSONArrayAdditions.swift +++ b/Sources/SwiftProtobuf/Message+JSONArrayAdditions.swift @@ -25,7 +25,7 @@ extension Message { /// - Parameters: /// - collection: The list of messages to encode. /// - options: The JSONEncodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if encoding fails. + /// - Throws: ``JSONEncodingError`` if encoding fails. public static func jsonString( from collection: C, options: JSONEncodingOptions = JSONEncodingOptions() @@ -43,7 +43,7 @@ extension Message { /// - Parameters: /// - collection: The list of messages to encode. /// - options: The JSONEncodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if encoding fails. + /// - Throws: ``JSONEncodingError`` if encoding fails. public static func jsonUTF8Bytes( from collection: C, options: JSONEncodingOptions = JSONEncodingOptions() @@ -64,7 +64,7 @@ extension Message { /// /// - Parameter jsonString: The JSON-formatted string to decode. /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if decoding fails. + /// - Throws: ``JSONDecodingError`` if decoding fails. public static func array( fromJSONString jsonString: String, options: JSONDecodingOptions = JSONDecodingOptions() @@ -80,7 +80,7 @@ extension Message { /// - Parameter jsonString: The JSON-formatted string to decode. /// - Parameter extensions: The extension map to use with this decode /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if decoding fails. + /// - Throws: ``JSONDecodingError`` if decoding fails. public static func array( fromJSONString jsonString: String, extensions: any ExtensionMap = SimpleExtensionMap(), @@ -103,7 +103,7 @@ extension Message { /// - Parameter jsonUTF8Bytes: The JSON-formatted data to decode, represented /// as UTF-8 encoded text. /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if decoding fails. + /// - Throws: ``JSONDecodingError`` if decoding fails. public static func array( fromJSONUTF8Bytes jsonUTF8Bytes: Bytes, options: JSONDecodingOptions = JSONDecodingOptions() @@ -121,7 +121,7 @@ extension Message { /// as UTF-8 encoded text. /// - Parameter extensions: The extension map to use with this decode /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if decoding fails. + /// - Throws: ``JSONDecodingError`` if decoding fails. public static func array( fromJSONUTF8Bytes jsonUTF8Bytes: Bytes, extensions: any ExtensionMap = SimpleExtensionMap(), diff --git a/Sources/SwiftProtobuf/Message+JSONArrayAdditions_Data.swift b/Sources/SwiftProtobuf/Message+JSONArrayAdditions_Data.swift index 1d3a69585..be41e50f6 100644 --- a/Sources/SwiftProtobuf/Message+JSONArrayAdditions_Data.swift +++ b/Sources/SwiftProtobuf/Message+JSONArrayAdditions_Data.swift @@ -23,7 +23,7 @@ extension Message { /// - Parameter jsonUTF8Data: The JSON-formatted data to decode, represented /// as UTF-8 encoded text. /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if decoding fails. + /// - Throws: ``JSONDecodingError`` if decoding fails. public static func array( fromJSONUTF8Data jsonUTF8Data: Data, options: JSONDecodingOptions = JSONDecodingOptions() @@ -41,7 +41,7 @@ extension Message { /// as UTF-8 encoded text. /// - Parameter extensions: The extension map to use with this decode /// - Parameter options: The JSONDecodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if decoding fails. + /// - Throws: ``JSONDecodingError`` if decoding fails. public static func array( fromJSONUTF8Data jsonUTF8Data: Data, extensions: any ExtensionMap = SimpleExtensionMap(), @@ -61,7 +61,7 @@ extension Message { /// - Parameters: /// - collection: The list of messages to encode. /// - options: The JSONEncodingOptions to use. - /// - Throws: ``SwiftProtobufError`` if encoding fails. + /// - Throws: ``JSONEncodingError`` if encoding fails. public static func jsonUTF8Data( from collection: C, options: JSONEncodingOptions = JSONEncodingOptions() diff --git a/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift b/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift index 81b916e96..da0673ea7 100644 --- a/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift +++ b/Sources/SwiftProtobuf/Message+TextFormatAdditions.swift @@ -63,7 +63,7 @@ extension Message { /// - extensions: An ``ExtensionMap`` used to look up and decode any /// extensions in this message or messages nested within this message's /// fields. - /// - Throws: ``SwiftProtobufError`` on failure. + /// - Throws: ``TextFormatDecodingError`` on failure. public init( textFormatString: String, options: TextFormatDecodingOptions = TextFormatDecodingOptions(), diff --git a/Sources/SwiftProtobuf/SwiftProtobufError.swift b/Sources/SwiftProtobuf/SwiftProtobufError.swift index c207748c2..2dcd4a630 100644 --- a/Sources/SwiftProtobuf/SwiftProtobufError.swift +++ b/Sources/SwiftProtobuf/SwiftProtobufError.swift @@ -93,15 +93,10 @@ extension SwiftProtobufError { case binaryDecodingError case binaryStreamDecodingError case jsonEncodingError - case jsonDecodingError - case textFormatDecodingError - case invalidArgument - case internalError // These are not domains, but rather specific errors for which we // want to have associated types, and thus require special treatment. case anyTypeURLNotRegistered(typeURL: String) - case unknownField(name: String) var description: String { switch self { @@ -113,18 +108,8 @@ extension SwiftProtobufError { return "Stream decoding error" case .jsonEncodingError: return "JSON encoding error" - case .jsonDecodingError: - return "JSON decoding error" - case .textFormatDecodingError: - return "Text format decoding error" - case .invalidArgument: - return "An argument provided by the user is invalid" - case .internalError: - return "Other internal error" case .anyTypeURLNotRegistered(let typeURL): return "Type URL not registered: \(typeURL)" - case .unknownField(let name): - return "Unknown field: \(name)" } } } @@ -160,26 +145,6 @@ extension SwiftProtobufError { Self(.jsonEncodingError) } - /// Errors arising from JSON decoding of data into protobufs. - public static var jsonDecodingError: Self { - Self(.jsonDecodingError) - } - - /// Errors arising from text format decoding of data into protobufs. - public static var textFormatDecodingError: Self { - Self(.textFormatDecodingError) - } - - /// Errors arising from an invalid argument being passed by the caller. - public static var invalidArgument: Self { - Self(.invalidArgument) - } - - /// Errors arising from some invalid internal state. - public static var internalError: Self { - Self(.internalError) - } - /// `Any` fields that were decoded from JSON cannot be re-encoded to binary /// unless the object they hold is a well-known type or a type registered via /// `Google_Protobuf_Any.register()`. @@ -191,14 +156,6 @@ extension SwiftProtobufError { Self(.anyTypeURLNotRegistered(typeURL: typeURL)) } - /// Errors arising from decoding JSON objects and encountering an unknown field. - /// - /// - Parameter name: The name of the encountered unknown field. - /// - Returns: A `SwiftProtobufError.Code`. - public static func unknownField(name: String) -> Self { - Self(.unknownField(name: name)) - } - /// The unregistered type URL that caused the error, if any is associated with this `Code`. public var unregisteredTypeURL: String? { switch self.code { @@ -207,30 +164,7 @@ extension SwiftProtobufError { case .binaryEncodingError, .binaryDecodingError, .binaryStreamDecodingError, - .jsonEncodingError, - .jsonDecodingError, - .textFormatDecodingError, - .invalidArgument, - .internalError, - .unknownField: - return nil - } - } - - /// The unknown field name that caused the error, if any is associated with this `Code`. - public var unknownFieldName: String? { - switch self.code { - case .unknownField(let name): - return name - case .binaryEncodingError, - .binaryDecodingError, - .binaryStreamDecodingError, - .jsonEncodingError, - .jsonDecodingError, - .textFormatDecodingError, - .invalidArgument, - .internalError, - .anyTypeURLNotRegistered: + .jsonEncodingError: return nil } } From d2e89c9b26f9bb4690901936d66c952a8200c709 Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Fri, 10 May 2024 10:55:25 +0100 Subject: [PATCH 14/19] Regenerate --- .../generated_swift_names_enum_cases.proto | 1949 ++-- .../generated_swift_names_enums.proto | 41 +- .../generated_swift_names_fields.proto | 1949 ++-- .../generated_swift_names_messages.proto | 41 +- Tests/SwiftProtobufTests/Test_Required.swift | 1 - .../generated_swift_names_enum_cases.pb.swift | 7813 +++++++++-------- .../generated_swift_names_enums.pb.swift | 1412 +-- .../generated_swift_names_fields.pb.swift | 6017 +++++++------ .../generated_swift_names_messages.pb.swift | 1726 +--- 9 files changed, 9045 insertions(+), 11904 deletions(-) diff --git a/Protos/SwiftProtobufTests/generated_swift_names_enum_cases.proto b/Protos/SwiftProtobufTests/generated_swift_names_enum_cases.proto index 7a85c1b38..4d617a937 100644 --- a/Protos/SwiftProtobufTests/generated_swift_names_enum_cases.proto +++ b/Protos/SwiftProtobufTests/generated_swift_names_enum_cases.proto @@ -16,970 +16,987 @@ enum GeneratedSwiftReservedEnum { AnyExtensionField = 9; AnyMessageExtension = 10; AnyMessageStorage = 11; - AnyUnpackError = 12; - Api = 13; - appended = 14; - appendUIntHex = 15; - appendUnknown = 16; - areAllInitialized = 17; - Array = 18; - arrayDepth = 19; - arrayLiteral = 20; - arraySeparator = 21; - as = 22; - asciiOpenCurlyBracket = 23; - asciiZero = 24; - async = 25; - AsyncIterator = 26; - AsyncIteratorProtocol = 27; - AsyncMessageSequence = 28; - available = 29; - b = 30; - Base = 31; - base64Values = 32; - baseAddress = 33; - BaseType = 34; - begin = 35; - binary = 36; - BinaryDecoder = 37; - BinaryDecodingError = 38; - BinaryDecodingOptions = 39; - BinaryDelimited = 40; - BinaryEncoder = 41; - BinaryEncodingError = 42; - BinaryEncodingMessageSetSizeVisitor = 43; - BinaryEncodingMessageSetVisitor = 44; - BinaryEncodingOptions = 45; - BinaryEncodingSizeVisitor = 46; - BinaryEncodingVisitor = 47; - binaryOptions = 48; - binaryProtobufDelimitedMessages = 49; - bitPattern = 50; - body = 51; - Bool = 52; - booleanLiteral = 53; - BooleanLiteralType = 54; - boolValue = 55; - buffer = 56; - bytes = 57; - bytesInGroup = 58; - bytesNeeded = 59; - bytesRead = 60; - BytesValue = 61; - c = 62; - capitalizeNext = 63; - cardinality = 64; - CaseIterable = 65; - ccEnableArenas = 66; - ccGenericServices = 67; - Character = 68; - chars = 69; - chunk = 70; - class = 71; - clearAggregateValue = 72; - clearAllowAlias = 73; - clearBegin = 74; - clearCcEnableArenas = 75; - clearCcGenericServices = 76; - clearClientStreaming = 77; - clearCsharpNamespace = 78; - clearCtype = 79; - clearDebugRedact = 80; - clearDefaultValue = 81; - clearDeprecated = 82; - clearDeprecatedLegacyJsonFieldConflicts = 83; - clearDeprecationWarning = 84; - clearDoubleValue = 85; - clearEdition = 86; - clearEditionDeprecated = 87; - clearEditionIntroduced = 88; - clearEditionRemoved = 89; - clearEnd = 90; - clearEnumType = 91; - clearExtendee = 92; - clearExtensionValue = 93; - clearFeatures = 94; - clearFeatureSupport = 95; - clearFieldPresence = 96; - clearFixedFeatures = 97; - clearFullName = 98; - clearGoPackage = 99; - clearIdempotencyLevel = 100; - clearIdentifierValue = 101; - clearInputType = 102; - clearIsExtension = 103; - clearJavaGenerateEqualsAndHash = 104; - clearJavaGenericServices = 105; - clearJavaMultipleFiles = 106; - clearJavaOuterClassname = 107; - clearJavaPackage = 108; - clearJavaStringCheckUtf8 = 109; - clearJsonFormat = 110; - clearJsonName = 111; - clearJstype = 112; - clearLabel = 113; - clearLazy = 114; - clearLeadingComments = 115; - clearMapEntry = 116; - clearMaximumEdition = 117; - clearMessageEncoding = 118; - clearMessageSetWireFormat = 119; - clearMinimumEdition = 120; - clearName = 121; - clearNamePart = 122; - clearNegativeIntValue = 123; - clearNoStandardDescriptorAccessor = 124; - clearNumber = 125; - clearObjcClassPrefix = 126; - clearOneofIndex = 127; - clearOptimizeFor = 128; - clearOptions = 129; - clearOutputType = 130; - clearOverridableFeatures = 131; - clearPackage = 132; - clearPacked = 133; - clearPhpClassPrefix = 134; - clearPhpMetadataNamespace = 135; - clearPhpNamespace = 136; - clearPositiveIntValue = 137; - clearProto3Optional = 138; - clearPyGenericServices = 139; - clearRepeated = 140; - clearRepeatedFieldEncoding = 141; - clearReserved = 142; - clearRetention = 143; - clearRubyPackage = 144; - clearSemantic = 145; - clearServerStreaming = 146; - clearSourceCodeInfo = 147; - clearSourceContext = 148; - clearSourceFile = 149; - clearStart = 150; - clearStringValue = 151; - clearSwiftPrefix = 152; - clearSyntax = 153; - clearTrailingComments = 154; - clearType = 155; - clearTypeName = 156; - clearUnverifiedLazy = 157; - clearUtf8Validation = 158; - clearValue = 159; - clearVerification = 160; - clearWeak = 161; - clientStreaming = 162; - codePoint = 163; - codeUnits = 164; - Collection = 165; - com = 166; - comma = 167; - consumedBytes = 168; - contentsOf = 169; - count = 170; - countVarintsInBuffer = 171; - csharpNamespace = 172; - ctype = 173; - customCodable = 174; - CustomDebugStringConvertible = 175; - d = 176; - Data = 177; - dataResult = 178; - date = 179; - daySec = 180; - daysSinceEpoch = 181; - debugDescription = 182; - debugRedact = 183; - declaration = 184; - decoded = 185; - decodedFromJSONNull = 186; - decodeExtensionField = 187; - decodeExtensionFieldsAsMessageSet = 188; - decodeJSON = 189; - decodeMapField = 190; - decodeMessage = 191; - decoder = 192; - decodeRepeated = 193; - decodeRepeatedBoolField = 194; - decodeRepeatedBytesField = 195; - decodeRepeatedDoubleField = 196; - decodeRepeatedEnumField = 197; - decodeRepeatedFixed32Field = 198; - decodeRepeatedFixed64Field = 199; - decodeRepeatedFloatField = 200; - decodeRepeatedGroupField = 201; - decodeRepeatedInt32Field = 202; - decodeRepeatedInt64Field = 203; - decodeRepeatedMessageField = 204; - decodeRepeatedSFixed32Field = 205; - decodeRepeatedSFixed64Field = 206; - decodeRepeatedSInt32Field = 207; - decodeRepeatedSInt64Field = 208; - decodeRepeatedStringField = 209; - decodeRepeatedUInt32Field = 210; - decodeRepeatedUInt64Field = 211; - decodeSingular = 212; - decodeSingularBoolField = 213; - decodeSingularBytesField = 214; - decodeSingularDoubleField = 215; - decodeSingularEnumField = 216; - decodeSingularFixed32Field = 217; - decodeSingularFixed64Field = 218; - decodeSingularFloatField = 219; - decodeSingularGroupField = 220; - decodeSingularInt32Field = 221; - decodeSingularInt64Field = 222; - decodeSingularMessageField = 223; - decodeSingularSFixed32Field = 224; - decodeSingularSFixed64Field = 225; - decodeSingularSInt32Field = 226; - decodeSingularSInt64Field = 227; - decodeSingularStringField = 228; - decodeSingularUInt32Field = 229; - decodeSingularUInt64Field = 230; - decodeTextFormat = 231; - defaultAnyTypeURLPrefix = 232; - defaults = 233; - defaultValue = 234; - dependency = 235; - deprecated = 236; - deprecatedLegacyJsonFieldConflicts = 237; - deprecationWarning = 238; - description = 239; - DescriptorProto = 240; - Dictionary = 241; - dictionaryLiteral = 242; - digit = 243; - digit0 = 244; - digit1 = 245; - digitCount = 246; - digits = 247; - digitValue = 248; - discardableResult = 249; - discardUnknownFields = 250; - Double = 251; - doubleValue = 252; - Duration = 253; - E = 254; - edition = 255; - EditionDefault = 256; - editionDefaults = 257; - editionDeprecated = 258; - editionIntroduced = 259; - editionRemoved = 260; - Element = 261; - elements = 262; - emitExtensionFieldName = 263; - emitFieldName = 264; - emitFieldNumber = 265; - Empty = 266; - encodeAsBytes = 267; - encoded = 268; - encodedJSONString = 269; - encodedSize = 270; - encodeField = 271; - encoder = 272; - end = 273; - endArray = 274; - endMessageField = 275; - endObject = 276; - endRegularField = 277; - enum = 278; - EnumDescriptorProto = 279; - EnumOptions = 280; - EnumReservedRange = 281; - enumType = 282; - enumvalue = 283; - EnumValueDescriptorProto = 284; - EnumValueOptions = 285; - Equatable = 286; - Error = 287; - ExpressibleByArrayLiteral = 288; - ExpressibleByDictionaryLiteral = 289; - ext = 290; - extDecoder = 291; - extendedGraphemeClusterLiteral = 292; - ExtendedGraphemeClusterLiteralType = 293; - extendee = 294; - ExtensibleMessage = 295; - extension = 296; - ExtensionField = 297; - extensionFieldNumber = 298; - ExtensionFieldValueSet = 299; - ExtensionMap = 300; - extensionRange = 301; - ExtensionRangeOptions = 302; - extensions = 303; - extras = 304; - F = 305; - false = 306; - features = 307; - FeatureSet = 308; - FeatureSetDefaults = 309; - FeatureSetEditionDefault = 310; - featureSupport = 311; - field = 312; - fieldData = 313; - FieldDescriptorProto = 314; - FieldMask = 315; - fieldName = 316; - fieldNameCount = 317; - fieldNum = 318; - fieldNumber = 319; - fieldNumberForProto = 320; - FieldOptions = 321; - fieldPresence = 322; - fields = 323; - fieldSize = 324; - FieldTag = 325; - fieldType = 326; - file = 327; - FileDescriptorProto = 328; - FileDescriptorSet = 329; - fileName = 330; - FileOptions = 331; - filter = 332; - final = 333; - finiteOnly = 334; - first = 335; - firstItem = 336; - fixedFeatures = 337; - Float = 338; - floatLiteral = 339; - FloatLiteralType = 340; - FloatValue = 341; - forMessageName = 342; - formUnion = 343; - forReadingFrom = 344; - forTypeURL = 345; - ForwardParser = 346; - forWritingInto = 347; - from = 348; - fromAscii2 = 349; - fromAscii4 = 350; - fromByteOffset = 351; - fromHexDigit = 352; - fullName = 353; - func = 354; - G = 355; - GeneratedCodeInfo = 356; - get = 357; - getExtensionValue = 358; - googleapis = 359; - Google_Protobuf_Any = 360; - Google_Protobuf_Api = 361; - Google_Protobuf_BoolValue = 362; - Google_Protobuf_BytesValue = 363; - Google_Protobuf_DescriptorProto = 364; - Google_Protobuf_DoubleValue = 365; - Google_Protobuf_Duration = 366; - Google_Protobuf_Edition = 367; - Google_Protobuf_Empty = 368; - Google_Protobuf_Enum = 369; - Google_Protobuf_EnumDescriptorProto = 370; - Google_Protobuf_EnumOptions = 371; - Google_Protobuf_EnumValue = 372; - Google_Protobuf_EnumValueDescriptorProto = 373; - Google_Protobuf_EnumValueOptions = 374; - Google_Protobuf_ExtensionRangeOptions = 375; - Google_Protobuf_FeatureSet = 376; - Google_Protobuf_FeatureSetDefaults = 377; - Google_Protobuf_Field = 378; - Google_Protobuf_FieldDescriptorProto = 379; - Google_Protobuf_FieldMask = 380; - Google_Protobuf_FieldOptions = 381; - Google_Protobuf_FileDescriptorProto = 382; - Google_Protobuf_FileDescriptorSet = 383; - Google_Protobuf_FileOptions = 384; - Google_Protobuf_FloatValue = 385; - Google_Protobuf_GeneratedCodeInfo = 386; - Google_Protobuf_Int32Value = 387; - Google_Protobuf_Int64Value = 388; - Google_Protobuf_ListValue = 389; - Google_Protobuf_MessageOptions = 390; - Google_Protobuf_Method = 391; - Google_Protobuf_MethodDescriptorProto = 392; - Google_Protobuf_MethodOptions = 393; - Google_Protobuf_Mixin = 394; - Google_Protobuf_NullValue = 395; - Google_Protobuf_OneofDescriptorProto = 396; - Google_Protobuf_OneofOptions = 397; - Google_Protobuf_Option = 398; - Google_Protobuf_ServiceDescriptorProto = 399; - Google_Protobuf_ServiceOptions = 400; - Google_Protobuf_SourceCodeInfo = 401; - Google_Protobuf_SourceContext = 402; - Google_Protobuf_StringValue = 403; - Google_Protobuf_Struct = 404; - Google_Protobuf_Syntax = 405; - Google_Protobuf_Timestamp = 406; - Google_Protobuf_Type = 407; - Google_Protobuf_UInt32Value = 408; - Google_Protobuf_UInt64Value = 409; - Google_Protobuf_UninterpretedOption = 410; - Google_Protobuf_Value = 411; - goPackage = 412; - group = 413; - groupFieldNumberStack = 414; - groupSize = 415; - hadOneofValue = 416; - handleConflictingOneOf = 417; - hasAggregateValue = 418; - hasAllowAlias = 419; - hasBegin = 420; - hasCcEnableArenas = 421; - hasCcGenericServices = 422; - hasClientStreaming = 423; - hasCsharpNamespace = 424; - hasCtype = 425; - hasDebugRedact = 426; - hasDefaultValue = 427; - hasDeprecated = 428; - hasDeprecatedLegacyJsonFieldConflicts = 429; - hasDeprecationWarning = 430; - hasDoubleValue = 431; - hasEdition = 432; - hasEditionDeprecated = 433; - hasEditionIntroduced = 434; - hasEditionRemoved = 435; - hasEnd = 436; - hasEnumType = 437; - hasExtendee = 438; - hasExtensionValue = 439; - hasFeatures = 440; - hasFeatureSupport = 441; - hasFieldPresence = 442; - hasFixedFeatures = 443; - hasFullName = 444; - hasGoPackage = 445; - hash = 446; - Hashable = 447; - hasher = 448; - HashVisitor = 449; - hasIdempotencyLevel = 450; - hasIdentifierValue = 451; - hasInputType = 452; - hasIsExtension = 453; - hasJavaGenerateEqualsAndHash = 454; - hasJavaGenericServices = 455; - hasJavaMultipleFiles = 456; - hasJavaOuterClassname = 457; - hasJavaPackage = 458; - hasJavaStringCheckUtf8 = 459; - hasJsonFormat = 460; - hasJsonName = 461; - hasJstype = 462; - hasLabel = 463; - hasLazy = 464; - hasLeadingComments = 465; - hasMapEntry = 466; - hasMaximumEdition = 467; - hasMessageEncoding = 468; - hasMessageSetWireFormat = 469; - hasMinimumEdition = 470; - hasName = 471; - hasNamePart = 472; - hasNegativeIntValue = 473; - hasNoStandardDescriptorAccessor = 474; - hasNumber = 475; - hasObjcClassPrefix = 476; - hasOneofIndex = 477; - hasOptimizeFor = 478; - hasOptions = 479; - hasOutputType = 480; - hasOverridableFeatures = 481; - hasPackage = 482; - hasPacked = 483; - hasPhpClassPrefix = 484; - hasPhpMetadataNamespace = 485; - hasPhpNamespace = 486; - hasPositiveIntValue = 487; - hasProto3Optional = 488; - hasPyGenericServices = 489; - hasRepeated = 490; - hasRepeatedFieldEncoding = 491; - hasReserved = 492; - hasRetention = 493; - hasRubyPackage = 494; - hasSemantic = 495; - hasServerStreaming = 496; - hasSourceCodeInfo = 497; - hasSourceContext = 498; - hasSourceFile = 499; - hasStart = 500; - hasStringValue = 501; - hasSwiftPrefix = 502; - hasSyntax = 503; - hasTrailingComments = 504; - hasType = 505; - hasTypeName = 506; - hasUnverifiedLazy = 507; - hasUtf8Validation = 508; - hasValue = 509; - hasVerification = 510; - hasWeak = 511; - hour = 512; - i = 513; - idempotencyLevel = 514; - identifierValue = 515; - if = 516; - ignoreUnknownExtensionFields = 517; - ignoreUnknownFields = 518; - index = 519; - init = 520; - inout = 521; - inputType = 522; - insert = 523; - Int = 524; - Int32 = 525; - Int32Value = 526; - Int64 = 527; - Int64Value = 528; - Int8 = 529; - integerLiteral = 530; - IntegerLiteralType = 531; - intern = 532; - Internal = 533; - InternalState = 534; - into = 535; - ints = 536; - isA = 537; - isEqual = 538; - isEqualTo = 539; - isExtension = 540; - isInitialized = 541; - isNegative = 542; - itemTagsEncodedSize = 543; - iterator = 544; - javaGenerateEqualsAndHash = 545; - javaGenericServices = 546; - javaMultipleFiles = 547; - javaOuterClassname = 548; - javaPackage = 549; - javaStringCheckUtf8 = 550; - JSONDecoder = 551; - JSONDecodingError = 552; - JSONDecodingOptions = 553; - jsonEncoder = 554; - JSONEncodingError = 555; - JSONEncodingOptions = 556; - JSONEncodingVisitor = 557; - jsonFormat = 558; - JSONMapEncodingVisitor = 559; - jsonName = 560; - jsonPath = 561; - jsonPaths = 562; - JSONScanner = 563; - jsonString = 564; - jsonText = 565; - jsonUTF8Bytes = 566; - jsonUTF8Data = 567; - jstype = 568; - k = 569; - kChunkSize = 570; - Key = 571; - keyField = 572; - keyFieldOpt = 573; - KeyType = 574; - kind = 575; - l = 576; - label = 577; - lazy = 578; - leadingComments = 579; - leadingDetachedComments = 580; - length = 581; - lessThan = 582; - let = 583; - lhs = 584; - list = 585; - listOfMessages = 586; - listValue = 587; - littleEndian = 588; - load = 589; - localHasher = 590; - location = 591; - M = 592; - major = 593; - makeAsyncIterator = 594; - makeIterator = 595; - mapEntry = 596; - MapKeyType = 597; - mapToMessages = 598; - MapValueType = 599; - mapVisitor = 600; - maximumEdition = 601; - mdayStart = 602; - merge = 603; - message = 604; - messageDepthLimit = 605; - messageEncoding = 606; - MessageExtension = 607; - MessageImplementationBase = 608; - MessageOptions = 609; - MessageSet = 610; - messageSetWireFormat = 611; - messageSize = 612; - messageType = 613; - Method = 614; - MethodDescriptorProto = 615; - MethodOptions = 616; - methods = 617; - min = 618; - minimumEdition = 619; - minor = 620; - Mixin = 621; - mixins = 622; - modifier = 623; - modify = 624; - month = 625; - msgExtension = 626; - mutating = 627; - n = 628; - name = 629; - NameDescription = 630; - NameMap = 631; - NamePart = 632; - names = 633; - nanos = 634; - negativeIntValue = 635; - nestedType = 636; - newL = 637; - newList = 638; - newValue = 639; - next = 640; - nextByte = 641; - nextFieldNumber = 642; - nextVarInt = 643; - nil = 644; - nilLiteral = 645; - noStandardDescriptorAccessor = 646; - nullValue = 647; - number = 648; - numberValue = 649; - objcClassPrefix = 650; - of = 651; - oneofDecl = 652; - OneofDescriptorProto = 653; - oneofIndex = 654; - OneofOptions = 655; - oneofs = 656; - OneOf_Kind = 657; - optimizeFor = 658; - OptimizeMode = 659; - Option = 660; - OptionalEnumExtensionField = 661; - OptionalExtensionField = 662; - OptionalGroupExtensionField = 663; - OptionalMessageExtensionField = 664; - OptionRetention = 665; - options = 666; - OptionTargetType = 667; - other = 668; - others = 669; - out = 670; - outputType = 671; - overridableFeatures = 672; - p = 673; - package = 674; - packed = 675; - PackedEnumExtensionField = 676; - PackedExtensionField = 677; - padding = 678; - parent = 679; - parse = 680; - path = 681; - paths = 682; - payload = 683; - payloadSize = 684; - phpClassPrefix = 685; - phpMetadataNamespace = 686; - phpNamespace = 687; - pos = 688; - positiveIntValue = 689; - prefix = 690; - preserveProtoFieldNames = 691; - preTraverse = 692; - printUnknownFields = 693; - proto2 = 694; - proto3DefaultValue = 695; - proto3Optional = 696; - ProtobufAPIVersionCheck = 697; - ProtobufAPIVersion_3 = 698; - ProtobufBool = 699; - ProtobufBytes = 700; - ProtobufDouble = 701; - ProtobufEnumMap = 702; - protobufExtension = 703; - ProtobufFixed32 = 704; - ProtobufFixed64 = 705; - ProtobufFloat = 706; - ProtobufInt32 = 707; - ProtobufInt64 = 708; - ProtobufMap = 709; - ProtobufMessageMap = 710; - ProtobufSFixed32 = 711; - ProtobufSFixed64 = 712; - ProtobufSInt32 = 713; - ProtobufSInt64 = 714; - ProtobufString = 715; - ProtobufUInt32 = 716; - ProtobufUInt64 = 717; - protobuf_extensionFieldValues = 718; - protobuf_fieldNumber = 719; - protobuf_generated_isEqualTo = 720; - protobuf_nameMap = 721; - protobuf_newField = 722; - protobuf_package = 723; - protocol = 724; - protoFieldName = 725; - protoMessageName = 726; - ProtoNameProviding = 727; - protoPaths = 728; - public = 729; - publicDependency = 730; - putBoolValue = 731; - putBytesValue = 732; - putDoubleValue = 733; - putEnumValue = 734; - putFixedUInt32 = 735; - putFixedUInt64 = 736; - putFloatValue = 737; - putInt64 = 738; - putStringValue = 739; - putUInt64 = 740; - putUInt64Hex = 741; - putVarInt = 742; - putZigZagVarInt = 743; - pyGenericServices = 744; - R = 745; - rawChars = 746; - RawRepresentable = 747; - RawValue = 748; - read4HexDigits = 749; - readBytes = 750; - register = 751; - repeated = 752; - RepeatedEnumExtensionField = 753; - RepeatedExtensionField = 754; - repeatedFieldEncoding = 755; - RepeatedGroupExtensionField = 756; - RepeatedMessageExtensionField = 757; - repeating = 758; - requestStreaming = 759; - requestTypeURL = 760; - requiredSize = 761; - responseStreaming = 762; - responseTypeURL = 763; - result = 764; - retention = 765; - rethrows = 766; - return = 767; - ReturnType = 768; - revision = 769; - rhs = 770; - root = 771; - rubyPackage = 772; - s = 773; - sawBackslash = 774; - sawSection4Characters = 775; - sawSection5Characters = 776; - scan = 777; - scanner = 778; - seconds = 779; - self = 780; - semantic = 781; - Sendable = 782; - separator = 783; - serialize = 784; - serializedBytes = 785; - serializedData = 786; - serializedSize = 787; - serverStreaming = 788; - service = 789; - ServiceDescriptorProto = 790; - ServiceOptions = 791; - set = 792; - setExtensionValue = 793; - shift = 794; - SimpleExtensionMap = 795; - size = 796; - sizer = 797; - source = 798; - sourceCodeInfo = 799; - sourceContext = 800; - sourceEncoding = 801; - sourceFile = 802; - span = 803; - split = 804; - start = 805; - startArray = 806; - startArrayObject = 807; - startField = 808; - startIndex = 809; - startMessageField = 810; - startObject = 811; - startRegularField = 812; - state = 813; - static = 814; - StaticString = 815; - storage = 816; - String = 817; - stringLiteral = 818; - StringLiteralType = 819; - stringResult = 820; - stringValue = 821; - struct = 822; - structValue = 823; - subDecoder = 824; - subscript = 825; - subVisitor = 826; - Swift = 827; - swiftPrefix = 828; - SwiftProtobufContiguousBytes = 829; - syntax = 830; - T = 831; - tag = 832; - targets = 833; - terminator = 834; - testDecoder = 835; - text = 836; - textDecoder = 837; - TextFormatDecoder = 838; - TextFormatDecodingError = 839; - TextFormatDecodingOptions = 840; - TextFormatEncodingOptions = 841; - TextFormatEncodingVisitor = 842; - textFormatString = 843; - throwOrIgnore = 844; - throws = 845; - timeInterval = 846; - timeIntervalSince1970 = 847; - timeIntervalSinceReferenceDate = 848; - Timestamp = 849; - total = 850; - totalArrayDepth = 851; - totalSize = 852; - trailingComments = 853; - traverse = 854; - true = 855; - try = 856; - type = 857; - typealias = 858; - TypeEnum = 859; - typeName = 860; - typePrefix = 861; - typeStart = 862; - typeUnknown = 863; - typeURL = 864; - UInt32 = 865; - UInt32Value = 866; - UInt64 = 867; - UInt64Value = 868; - UInt8 = 869; - unchecked = 870; - unicodeScalarLiteral = 871; - UnicodeScalarLiteralType = 872; - unicodeScalars = 873; - UnicodeScalarView = 874; - uninterpretedOption = 875; - union = 876; - uniqueStorage = 877; - unknown = 878; - unknownFields = 879; - UnknownStorage = 880; - unpackTo = 881; - UnsafeBufferPointer = 882; - UnsafeMutablePointer = 883; - UnsafeMutableRawBufferPointer = 884; - UnsafeRawBufferPointer = 885; - UnsafeRawPointer = 886; - unverifiedLazy = 887; - updatedOptions = 888; - url = 889; - useDeterministicOrdering = 890; - utf8 = 891; - utf8Ptr = 892; - utf8ToDouble = 893; - utf8Validation = 894; - UTF8View = 895; - v = 896; - value = 897; - valueField = 898; - values = 899; - ValueType = 900; - var = 901; - verification = 902; - VerificationState = 903; - Version = 904; - versionString = 905; - visitExtensionFields = 906; - visitExtensionFieldsAsMessageSet = 907; - visitMapField = 908; - visitor = 909; - visitPacked = 910; - visitPackedBoolField = 911; - visitPackedDoubleField = 912; - visitPackedEnumField = 913; - visitPackedFixed32Field = 914; - visitPackedFixed64Field = 915; - visitPackedFloatField = 916; - visitPackedInt32Field = 917; - visitPackedInt64Field = 918; - visitPackedSFixed32Field = 919; - visitPackedSFixed64Field = 920; - visitPackedSInt32Field = 921; - visitPackedSInt64Field = 922; - visitPackedUInt32Field = 923; - visitPackedUInt64Field = 924; - visitRepeated = 925; - visitRepeatedBoolField = 926; - visitRepeatedBytesField = 927; - visitRepeatedDoubleField = 928; - visitRepeatedEnumField = 929; - visitRepeatedFixed32Field = 930; - visitRepeatedFixed64Field = 931; - visitRepeatedFloatField = 932; - visitRepeatedGroupField = 933; - visitRepeatedInt32Field = 934; - visitRepeatedInt64Field = 935; - visitRepeatedMessageField = 936; - visitRepeatedSFixed32Field = 937; - visitRepeatedSFixed64Field = 938; - visitRepeatedSInt32Field = 939; - visitRepeatedSInt64Field = 940; - visitRepeatedStringField = 941; - visitRepeatedUInt32Field = 942; - visitRepeatedUInt64Field = 943; - visitSingular = 944; - visitSingularBoolField = 945; - visitSingularBytesField = 946; - visitSingularDoubleField = 947; - visitSingularEnumField = 948; - visitSingularFixed32Field = 949; - visitSingularFixed64Field = 950; - visitSingularFloatField = 951; - visitSingularGroupField = 952; - visitSingularInt32Field = 953; - visitSingularInt64Field = 954; - visitSingularMessageField = 955; - visitSingularSFixed32Field = 956; - visitSingularSFixed64Field = 957; - visitSingularSInt32Field = 958; - visitSingularSInt64Field = 959; - visitSingularStringField = 960; - visitSingularUInt32Field = 961; - visitSingularUInt64Field = 962; - visitUnknown = 963; - wasDecoded = 964; - weak = 965; - weakDependency = 966; - where = 967; - wireFormat = 968; - with = 969; - withUnsafeBytes = 970; - withUnsafeMutableBytes = 971; - work = 972; - Wrapped = 973; - WrappedType = 974; - wrappedValue = 975; - written = 976; - yday = 977; + anyTypeURLNotRegistered = 12; + AnyUnpackError = 13; + Api = 14; + appended = 15; + appendUIntHex = 16; + appendUnknown = 17; + areAllInitialized = 18; + Array = 19; + arrayDepth = 20; + arrayLiteral = 21; + arraySeparator = 22; + as = 23; + asciiOpenCurlyBracket = 24; + asciiZero = 25; + async = 26; + AsyncIterator = 27; + AsyncIteratorProtocol = 28; + AsyncMessageSequence = 29; + available = 30; + b = 31; + Base = 32; + base64Values = 33; + baseAddress = 34; + BaseType = 35; + begin = 36; + binary = 37; + BinaryDecoder = 38; + BinaryDecoding = 39; + BinaryDecodingError = 40; + BinaryDecodingOptions = 41; + BinaryDelimited = 42; + BinaryEncoder = 43; + BinaryEncoding = 44; + BinaryEncodingError = 45; + BinaryEncodingMessageSetSizeVisitor = 46; + BinaryEncodingMessageSetVisitor = 47; + BinaryEncodingOptions = 48; + BinaryEncodingSizeVisitor = 49; + BinaryEncodingVisitor = 50; + binaryOptions = 51; + binaryProtobufDelimitedMessages = 52; + BinaryStreamDecoding = 53; + binaryStreamDecodingError = 54; + bitPattern = 55; + body = 56; + Bool = 57; + booleanLiteral = 58; + BooleanLiteralType = 59; + boolValue = 60; + buffer = 61; + bytes = 62; + bytesInGroup = 63; + bytesNeeded = 64; + bytesRead = 65; + BytesValue = 66; + c = 67; + capitalizeNext = 68; + cardinality = 69; + CaseIterable = 70; + ccEnableArenas = 71; + ccGenericServices = 72; + Character = 73; + chars = 74; + chunk = 75; + class = 76; + clearAggregateValue = 77; + clearAllowAlias = 78; + clearBegin = 79; + clearCcEnableArenas = 80; + clearCcGenericServices = 81; + clearClientStreaming = 82; + clearCsharpNamespace = 83; + clearCtype = 84; + clearDebugRedact = 85; + clearDefaultValue = 86; + clearDeprecated = 87; + clearDeprecatedLegacyJsonFieldConflicts = 88; + clearDeprecationWarning = 89; + clearDoubleValue = 90; + clearEdition = 91; + clearEditionDeprecated = 92; + clearEditionIntroduced = 93; + clearEditionRemoved = 94; + clearEnd = 95; + clearEnumType = 96; + clearExtendee = 97; + clearExtensionValue = 98; + clearFeatures = 99; + clearFeatureSupport = 100; + clearFieldPresence = 101; + clearFixedFeatures = 102; + clearFullName = 103; + clearGoPackage = 104; + clearIdempotencyLevel = 105; + clearIdentifierValue = 106; + clearInputType = 107; + clearIsExtension = 108; + clearJavaGenerateEqualsAndHash = 109; + clearJavaGenericServices = 110; + clearJavaMultipleFiles = 111; + clearJavaOuterClassname = 112; + clearJavaPackage = 113; + clearJavaStringCheckUtf8 = 114; + clearJsonFormat = 115; + clearJsonName = 116; + clearJstype = 117; + clearLabel = 118; + clearLazy = 119; + clearLeadingComments = 120; + clearMapEntry = 121; + clearMaximumEdition = 122; + clearMessageEncoding = 123; + clearMessageSetWireFormat = 124; + clearMinimumEdition = 125; + clearName = 126; + clearNamePart = 127; + clearNegativeIntValue = 128; + clearNoStandardDescriptorAccessor = 129; + clearNumber = 130; + clearObjcClassPrefix = 131; + clearOneofIndex = 132; + clearOptimizeFor = 133; + clearOptions = 134; + clearOutputType = 135; + clearOverridableFeatures = 136; + clearPackage = 137; + clearPacked = 138; + clearPhpClassPrefix = 139; + clearPhpMetadataNamespace = 140; + clearPhpNamespace = 141; + clearPositiveIntValue = 142; + clearProto3Optional = 143; + clearPyGenericServices = 144; + clearRepeated = 145; + clearRepeatedFieldEncoding = 146; + clearReserved = 147; + clearRetention = 148; + clearRubyPackage = 149; + clearSemantic = 150; + clearServerStreaming = 151; + clearSourceCodeInfo = 152; + clearSourceContext = 153; + clearSourceFile = 154; + clearStart = 155; + clearStringValue = 156; + clearSwiftPrefix = 157; + clearSyntax = 158; + clearTrailingComments = 159; + clearType = 160; + clearTypeName = 161; + clearUnverifiedLazy = 162; + clearUtf8Validation = 163; + clearValue = 164; + clearVerification = 165; + clearWeak = 166; + clientStreaming = 167; + code = 168; + codePoint = 169; + codeUnits = 170; + Collection = 171; + com = 172; + comma = 173; + consumedBytes = 174; + contentsOf = 175; + copy = 176; + count = 177; + countVarintsInBuffer = 178; + csharpNamespace = 179; + ctype = 180; + customCodable = 181; + CustomDebugStringConvertible = 182; + CustomStringConvertible = 183; + d = 184; + Data = 185; + dataResult = 186; + date = 187; + daySec = 188; + daysSinceEpoch = 189; + debugDescription = 190; + debugRedact = 191; + declaration = 192; + decoded = 193; + decodedFromJSONNull = 194; + decodeExtensionField = 195; + decodeExtensionFieldsAsMessageSet = 196; + decodeJSON = 197; + decodeMapField = 198; + decodeMessage = 199; + decoder = 200; + decodeRepeated = 201; + decodeRepeatedBoolField = 202; + decodeRepeatedBytesField = 203; + decodeRepeatedDoubleField = 204; + decodeRepeatedEnumField = 205; + decodeRepeatedFixed32Field = 206; + decodeRepeatedFixed64Field = 207; + decodeRepeatedFloatField = 208; + decodeRepeatedGroupField = 209; + decodeRepeatedInt32Field = 210; + decodeRepeatedInt64Field = 211; + decodeRepeatedMessageField = 212; + decodeRepeatedSFixed32Field = 213; + decodeRepeatedSFixed64Field = 214; + decodeRepeatedSInt32Field = 215; + decodeRepeatedSInt64Field = 216; + decodeRepeatedStringField = 217; + decodeRepeatedUInt32Field = 218; + decodeRepeatedUInt64Field = 219; + decodeSingular = 220; + decodeSingularBoolField = 221; + decodeSingularBytesField = 222; + decodeSingularDoubleField = 223; + decodeSingularEnumField = 224; + decodeSingularFixed32Field = 225; + decodeSingularFixed64Field = 226; + decodeSingularFloatField = 227; + decodeSingularGroupField = 228; + decodeSingularInt32Field = 229; + decodeSingularInt64Field = 230; + decodeSingularMessageField = 231; + decodeSingularSFixed32Field = 232; + decodeSingularSFixed64Field = 233; + decodeSingularSInt32Field = 234; + decodeSingularSInt64Field = 235; + decodeSingularStringField = 236; + decodeSingularUInt32Field = 237; + decodeSingularUInt64Field = 238; + decodeTextFormat = 239; + defaultAnyTypeURLPrefix = 240; + defaults = 241; + defaultValue = 242; + dependency = 243; + deprecated = 244; + deprecatedLegacyJsonFieldConflicts = 245; + deprecationWarning = 246; + description = 247; + DescriptorProto = 248; + Dictionary = 249; + dictionaryLiteral = 250; + digit = 251; + digit0 = 252; + digit1 = 253; + digitCount = 254; + digits = 255; + digitValue = 256; + discardableResult = 257; + discardUnknownFields = 258; + Double = 259; + doubleValue = 260; + Duration = 261; + E = 262; + edition = 263; + EditionDefault = 264; + editionDefaults = 265; + editionDeprecated = 266; + editionIntroduced = 267; + editionRemoved = 268; + Element = 269; + elements = 270; + emitExtensionFieldName = 271; + emitFieldName = 272; + emitFieldNumber = 273; + Empty = 274; + encodeAsBytes = 275; + encoded = 276; + encodedJSONString = 277; + encodedSize = 278; + encodeField = 279; + encoder = 280; + end = 281; + endArray = 282; + endMessageField = 283; + endObject = 284; + endRegularField = 285; + enum = 286; + EnumDescriptorProto = 287; + EnumOptions = 288; + EnumReservedRange = 289; + enumType = 290; + enumvalue = 291; + EnumValueDescriptorProto = 292; + EnumValueOptions = 293; + Equatable = 294; + Error = 295; + ExpressibleByArrayLiteral = 296; + ExpressibleByDictionaryLiteral = 297; + ext = 298; + extDecoder = 299; + extendedGraphemeClusterLiteral = 300; + ExtendedGraphemeClusterLiteralType = 301; + extendee = 302; + ExtensibleMessage = 303; + extension = 304; + ExtensionField = 305; + extensionFieldNumber = 306; + ExtensionFieldValueSet = 307; + ExtensionMap = 308; + extensionRange = 309; + ExtensionRangeOptions = 310; + extensions = 311; + extras = 312; + F = 313; + false = 314; + features = 315; + FeatureSet = 316; + FeatureSetDefaults = 317; + FeatureSetEditionDefault = 318; + featureSupport = 319; + field = 320; + fieldData = 321; + FieldDescriptorProto = 322; + FieldMask = 323; + fieldName = 324; + fieldNameCount = 325; + fieldNum = 326; + fieldNumber = 327; + fieldNumberForProto = 328; + FieldOptions = 329; + fieldPresence = 330; + fields = 331; + fieldSize = 332; + FieldTag = 333; + fieldType = 334; + file = 335; + FileDescriptorProto = 336; + FileDescriptorSet = 337; + fileName = 338; + FileOptions = 339; + filter = 340; + final = 341; + finiteOnly = 342; + first = 343; + firstItem = 344; + fixedFeatures = 345; + Float = 346; + floatLiteral = 347; + FloatLiteralType = 348; + FloatValue = 349; + forMessageName = 350; + formUnion = 351; + forReadingFrom = 352; + forTypeURL = 353; + ForwardParser = 354; + forWritingInto = 355; + from = 356; + fromAscii2 = 357; + fromAscii4 = 358; + fromByteOffset = 359; + fromHexDigit = 360; + fullName = 361; + func = 362; + function = 363; + G = 364; + GeneratedCodeInfo = 365; + get = 366; + getExtensionValue = 367; + googleapis = 368; + Google_Protobuf_Any = 369; + Google_Protobuf_Api = 370; + Google_Protobuf_BoolValue = 371; + Google_Protobuf_BytesValue = 372; + Google_Protobuf_DescriptorProto = 373; + Google_Protobuf_DoubleValue = 374; + Google_Protobuf_Duration = 375; + Google_Protobuf_Edition = 376; + Google_Protobuf_Empty = 377; + Google_Protobuf_Enum = 378; + Google_Protobuf_EnumDescriptorProto = 379; + Google_Protobuf_EnumOptions = 380; + Google_Protobuf_EnumValue = 381; + Google_Protobuf_EnumValueDescriptorProto = 382; + Google_Protobuf_EnumValueOptions = 383; + Google_Protobuf_ExtensionRangeOptions = 384; + Google_Protobuf_FeatureSet = 385; + Google_Protobuf_FeatureSetDefaults = 386; + Google_Protobuf_Field = 387; + Google_Protobuf_FieldDescriptorProto = 388; + Google_Protobuf_FieldMask = 389; + Google_Protobuf_FieldOptions = 390; + Google_Protobuf_FileDescriptorProto = 391; + Google_Protobuf_FileDescriptorSet = 392; + Google_Protobuf_FileOptions = 393; + Google_Protobuf_FloatValue = 394; + Google_Protobuf_GeneratedCodeInfo = 395; + Google_Protobuf_Int32Value = 396; + Google_Protobuf_Int64Value = 397; + Google_Protobuf_ListValue = 398; + Google_Protobuf_MessageOptions = 399; + Google_Protobuf_Method = 400; + Google_Protobuf_MethodDescriptorProto = 401; + Google_Protobuf_MethodOptions = 402; + Google_Protobuf_Mixin = 403; + Google_Protobuf_NullValue = 404; + Google_Protobuf_OneofDescriptorProto = 405; + Google_Protobuf_OneofOptions = 406; + Google_Protobuf_Option = 407; + Google_Protobuf_ServiceDescriptorProto = 408; + Google_Protobuf_ServiceOptions = 409; + Google_Protobuf_SourceCodeInfo = 410; + Google_Protobuf_SourceContext = 411; + Google_Protobuf_StringValue = 412; + Google_Protobuf_Struct = 413; + Google_Protobuf_Syntax = 414; + Google_Protobuf_Timestamp = 415; + Google_Protobuf_Type = 416; + Google_Protobuf_UInt32Value = 417; + Google_Protobuf_UInt64Value = 418; + Google_Protobuf_UninterpretedOption = 419; + Google_Protobuf_Value = 420; + goPackage = 421; + group = 422; + groupFieldNumberStack = 423; + groupSize = 424; + hadOneofValue = 425; + handleConflictingOneOf = 426; + hasAggregateValue = 427; + hasAllowAlias = 428; + hasBegin = 429; + hasCcEnableArenas = 430; + hasCcGenericServices = 431; + hasClientStreaming = 432; + hasCsharpNamespace = 433; + hasCtype = 434; + hasDebugRedact = 435; + hasDefaultValue = 436; + hasDeprecated = 437; + hasDeprecatedLegacyJsonFieldConflicts = 438; + hasDeprecationWarning = 439; + hasDoubleValue = 440; + hasEdition = 441; + hasEditionDeprecated = 442; + hasEditionIntroduced = 443; + hasEditionRemoved = 444; + hasEnd = 445; + hasEnumType = 446; + hasExtendee = 447; + hasExtensionValue = 448; + hasFeatures = 449; + hasFeatureSupport = 450; + hasFieldPresence = 451; + hasFixedFeatures = 452; + hasFullName = 453; + hasGoPackage = 454; + hash = 455; + Hashable = 456; + hasher = 457; + HashVisitor = 458; + hasIdempotencyLevel = 459; + hasIdentifierValue = 460; + hasInputType = 461; + hasIsExtension = 462; + hasJavaGenerateEqualsAndHash = 463; + hasJavaGenericServices = 464; + hasJavaMultipleFiles = 465; + hasJavaOuterClassname = 466; + hasJavaPackage = 467; + hasJavaStringCheckUtf8 = 468; + hasJsonFormat = 469; + hasJsonName = 470; + hasJstype = 471; + hasLabel = 472; + hasLazy = 473; + hasLeadingComments = 474; + hasMapEntry = 475; + hasMaximumEdition = 476; + hasMessageEncoding = 477; + hasMessageSetWireFormat = 478; + hasMinimumEdition = 479; + hasName = 480; + hasNamePart = 481; + hasNegativeIntValue = 482; + hasNoStandardDescriptorAccessor = 483; + hasNumber = 484; + hasObjcClassPrefix = 485; + hasOneofIndex = 486; + hasOptimizeFor = 487; + hasOptions = 488; + hasOutputType = 489; + hasOverridableFeatures = 490; + hasPackage = 491; + hasPacked = 492; + hasPhpClassPrefix = 493; + hasPhpMetadataNamespace = 494; + hasPhpNamespace = 495; + hasPositiveIntValue = 496; + hasProto3Optional = 497; + hasPyGenericServices = 498; + hasRepeated = 499; + hasRepeatedFieldEncoding = 500; + hasReserved = 501; + hasRetention = 502; + hasRubyPackage = 503; + hasSemantic = 504; + hasServerStreaming = 505; + hasSourceCodeInfo = 506; + hasSourceContext = 507; + hasSourceFile = 508; + hasStart = 509; + hasStringValue = 510; + hasSwiftPrefix = 511; + hasSyntax = 512; + hasTrailingComments = 513; + hasType = 514; + hasTypeName = 515; + hasUnverifiedLazy = 516; + hasUtf8Validation = 517; + hasValue = 518; + hasVerification = 519; + hasWeak = 520; + hour = 521; + i = 522; + idempotencyLevel = 523; + identifierValue = 524; + if = 525; + ignoreUnknownExtensionFields = 526; + ignoreUnknownFields = 527; + index = 528; + init = 529; + inout = 530; + inputType = 531; + insert = 532; + Int = 533; + Int32 = 534; + Int32Value = 535; + Int64 = 536; + Int64Value = 537; + Int8 = 538; + integerLiteral = 539; + IntegerLiteralType = 540; + intern = 541; + Internal = 542; + InternalState = 543; + into = 544; + ints = 545; + isA = 546; + isEqual = 547; + isEqualTo = 548; + isExtension = 549; + isInitialized = 550; + isNegative = 551; + itemTagsEncodedSize = 552; + iterator = 553; + javaGenerateEqualsAndHash = 554; + javaGenericServices = 555; + javaMultipleFiles = 556; + javaOuterClassname = 557; + javaPackage = 558; + javaStringCheckUtf8 = 559; + JSONDecoder = 560; + JSONDecodingError = 561; + JSONDecodingOptions = 562; + jsonEncoder = 563; + JSONEncoding = 564; + JSONEncodingError = 565; + JSONEncodingOptions = 566; + JSONEncodingVisitor = 567; + jsonFormat = 568; + JSONMapEncodingVisitor = 569; + jsonName = 570; + jsonPath = 571; + jsonPaths = 572; + JSONScanner = 573; + jsonString = 574; + jsonText = 575; + jsonUTF8Bytes = 576; + jsonUTF8Data = 577; + jstype = 578; + k = 579; + kChunkSize = 580; + Key = 581; + keyField = 582; + keyFieldOpt = 583; + KeyType = 584; + kind = 585; + l = 586; + label = 587; + lazy = 588; + leadingComments = 589; + leadingDetachedComments = 590; + length = 591; + lessThan = 592; + let = 593; + lhs = 594; + line = 595; + list = 596; + listOfMessages = 597; + listValue = 598; + littleEndian = 599; + load = 600; + localHasher = 601; + location = 602; + M = 603; + major = 604; + makeAsyncIterator = 605; + makeIterator = 606; + malformedLength = 607; + mapEntry = 608; + MapKeyType = 609; + mapToMessages = 610; + MapValueType = 611; + mapVisitor = 612; + maximumEdition = 613; + mdayStart = 614; + merge = 615; + message = 616; + messageDepthLimit = 617; + messageEncoding = 618; + MessageExtension = 619; + MessageImplementationBase = 620; + MessageOptions = 621; + MessageSet = 622; + messageSetWireFormat = 623; + messageSize = 624; + messageType = 625; + Method = 626; + MethodDescriptorProto = 627; + MethodOptions = 628; + methods = 629; + min = 630; + minimumEdition = 631; + minor = 632; + Mixin = 633; + mixins = 634; + modifier = 635; + modify = 636; + month = 637; + msgExtension = 638; + mutating = 639; + n = 640; + name = 641; + NameDescription = 642; + NameMap = 643; + NamePart = 644; + names = 645; + nanos = 646; + negativeIntValue = 647; + nestedType = 648; + newL = 649; + newList = 650; + newValue = 651; + next = 652; + nextByte = 653; + nextFieldNumber = 654; + nextVarInt = 655; + nil = 656; + nilLiteral = 657; + noBytesAvailable = 658; + noStandardDescriptorAccessor = 659; + nullValue = 660; + number = 661; + numberValue = 662; + objcClassPrefix = 663; + of = 664; + oneofDecl = 665; + OneofDescriptorProto = 666; + oneofIndex = 667; + OneofOptions = 668; + oneofs = 669; + OneOf_Kind = 670; + optimizeFor = 671; + OptimizeMode = 672; + Option = 673; + OptionalEnumExtensionField = 674; + OptionalExtensionField = 675; + OptionalGroupExtensionField = 676; + OptionalMessageExtensionField = 677; + OptionRetention = 678; + options = 679; + OptionTargetType = 680; + other = 681; + others = 682; + out = 683; + outputType = 684; + overridableFeatures = 685; + p = 686; + package = 687; + packed = 688; + PackedEnumExtensionField = 689; + PackedExtensionField = 690; + padding = 691; + parent = 692; + parse = 693; + path = 694; + paths = 695; + payload = 696; + payloadSize = 697; + phpClassPrefix = 698; + phpMetadataNamespace = 699; + phpNamespace = 700; + pos = 701; + positiveIntValue = 702; + prefix = 703; + preserveProtoFieldNames = 704; + preTraverse = 705; + printUnknownFields = 706; + proto2 = 707; + proto3DefaultValue = 708; + proto3Optional = 709; + ProtobufAPIVersionCheck = 710; + ProtobufAPIVersion_3 = 711; + ProtobufBool = 712; + ProtobufBytes = 713; + ProtobufDouble = 714; + ProtobufEnumMap = 715; + protobufExtension = 716; + ProtobufFixed32 = 717; + ProtobufFixed64 = 718; + ProtobufFloat = 719; + ProtobufInt32 = 720; + ProtobufInt64 = 721; + ProtobufMap = 722; + ProtobufMessageMap = 723; + ProtobufSFixed32 = 724; + ProtobufSFixed64 = 725; + ProtobufSInt32 = 726; + ProtobufSInt64 = 727; + ProtobufString = 728; + ProtobufUInt32 = 729; + ProtobufUInt64 = 730; + protobuf_extensionFieldValues = 731; + protobuf_fieldNumber = 732; + protobuf_generated_isEqualTo = 733; + protobuf_nameMap = 734; + protobuf_newField = 735; + protobuf_package = 736; + protocol = 737; + protoFieldName = 738; + protoMessageName = 739; + ProtoNameProviding = 740; + protoPaths = 741; + public = 742; + publicDependency = 743; + putBoolValue = 744; + putBytesValue = 745; + putDoubleValue = 746; + putEnumValue = 747; + putFixedUInt32 = 748; + putFixedUInt64 = 749; + putFloatValue = 750; + putInt64 = 751; + putStringValue = 752; + putUInt64 = 753; + putUInt64Hex = 754; + putVarInt = 755; + putZigZagVarInt = 756; + pyGenericServices = 757; + R = 758; + rawChars = 759; + RawRepresentable = 760; + RawValue = 761; + read4HexDigits = 762; + readBytes = 763; + register = 764; + repeated = 765; + RepeatedEnumExtensionField = 766; + RepeatedExtensionField = 767; + repeatedFieldEncoding = 768; + RepeatedGroupExtensionField = 769; + RepeatedMessageExtensionField = 770; + repeating = 771; + requestStreaming = 772; + requestTypeURL = 773; + requiredSize = 774; + responseStreaming = 775; + responseTypeURL = 776; + result = 777; + retention = 778; + rethrows = 779; + return = 780; + ReturnType = 781; + revision = 782; + rhs = 783; + root = 784; + rubyPackage = 785; + s = 786; + sawBackslash = 787; + sawSection4Characters = 788; + sawSection5Characters = 789; + scan = 790; + scanner = 791; + seconds = 792; + self = 793; + semantic = 794; + Sendable = 795; + separator = 796; + serialize = 797; + serializedBytes = 798; + serializedData = 799; + serializedSize = 800; + serverStreaming = 801; + service = 802; + ServiceDescriptorProto = 803; + ServiceOptions = 804; + set = 805; + setExtensionValue = 806; + shift = 807; + SimpleExtensionMap = 808; + size = 809; + sizer = 810; + source = 811; + sourceCodeInfo = 812; + sourceContext = 813; + sourceEncoding = 814; + sourceFile = 815; + SourceLocation = 816; + span = 817; + split = 818; + start = 819; + startArray = 820; + startArrayObject = 821; + startField = 822; + startIndex = 823; + startMessageField = 824; + startObject = 825; + startRegularField = 826; + state = 827; + static = 828; + StaticString = 829; + storage = 830; + String = 831; + stringLiteral = 832; + StringLiteralType = 833; + stringResult = 834; + stringValue = 835; + struct = 836; + structValue = 837; + subDecoder = 838; + subscript = 839; + subVisitor = 840; + Swift = 841; + swiftPrefix = 842; + SwiftProtobufContiguousBytes = 843; + SwiftProtobufError = 844; + syntax = 845; + T = 846; + tag = 847; + targets = 848; + terminator = 849; + testDecoder = 850; + text = 851; + textDecoder = 852; + TextFormatDecoder = 853; + TextFormatDecodingError = 854; + TextFormatDecodingOptions = 855; + TextFormatEncodingOptions = 856; + TextFormatEncodingVisitor = 857; + textFormatString = 858; + throwOrIgnore = 859; + throws = 860; + timeInterval = 861; + timeIntervalSince1970 = 862; + timeIntervalSinceReferenceDate = 863; + Timestamp = 864; + tooLarge = 865; + total = 866; + totalArrayDepth = 867; + totalSize = 868; + trailingComments = 869; + traverse = 870; + true = 871; + try = 872; + type = 873; + typealias = 874; + TypeEnum = 875; + typeName = 876; + typePrefix = 877; + typeStart = 878; + typeUnknown = 879; + typeURL = 880; + UInt32 = 881; + UInt32Value = 882; + UInt64 = 883; + UInt64Value = 884; + UInt8 = 885; + unchecked = 886; + unicodeScalarLiteral = 887; + UnicodeScalarLiteralType = 888; + unicodeScalars = 889; + UnicodeScalarView = 890; + uninterpretedOption = 891; + union = 892; + uniqueStorage = 893; + unknown = 894; + unknownFields = 895; + UnknownStorage = 896; + unpackTo = 897; + unregisteredTypeURL = 898; + UnsafeBufferPointer = 899; + UnsafeMutablePointer = 900; + UnsafeMutableRawBufferPointer = 901; + UnsafeRawBufferPointer = 902; + UnsafeRawPointer = 903; + unverifiedLazy = 904; + updatedOptions = 905; + url = 906; + useDeterministicOrdering = 907; + utf8 = 908; + utf8Ptr = 909; + utf8ToDouble = 910; + utf8Validation = 911; + UTF8View = 912; + v = 913; + value = 914; + valueField = 915; + values = 916; + ValueType = 917; + var = 918; + verification = 919; + VerificationState = 920; + Version = 921; + versionString = 922; + visitExtensionFields = 923; + visitExtensionFieldsAsMessageSet = 924; + visitMapField = 925; + visitor = 926; + visitPacked = 927; + visitPackedBoolField = 928; + visitPackedDoubleField = 929; + visitPackedEnumField = 930; + visitPackedFixed32Field = 931; + visitPackedFixed64Field = 932; + visitPackedFloatField = 933; + visitPackedInt32Field = 934; + visitPackedInt64Field = 935; + visitPackedSFixed32Field = 936; + visitPackedSFixed64Field = 937; + visitPackedSInt32Field = 938; + visitPackedSInt64Field = 939; + visitPackedUInt32Field = 940; + visitPackedUInt64Field = 941; + visitRepeated = 942; + visitRepeatedBoolField = 943; + visitRepeatedBytesField = 944; + visitRepeatedDoubleField = 945; + visitRepeatedEnumField = 946; + visitRepeatedFixed32Field = 947; + visitRepeatedFixed64Field = 948; + visitRepeatedFloatField = 949; + visitRepeatedGroupField = 950; + visitRepeatedInt32Field = 951; + visitRepeatedInt64Field = 952; + visitRepeatedMessageField = 953; + visitRepeatedSFixed32Field = 954; + visitRepeatedSFixed64Field = 955; + visitRepeatedSInt32Field = 956; + visitRepeatedSInt64Field = 957; + visitRepeatedStringField = 958; + visitRepeatedUInt32Field = 959; + visitRepeatedUInt64Field = 960; + visitSingular = 961; + visitSingularBoolField = 962; + visitSingularBytesField = 963; + visitSingularDoubleField = 964; + visitSingularEnumField = 965; + visitSingularFixed32Field = 966; + visitSingularFixed64Field = 967; + visitSingularFloatField = 968; + visitSingularGroupField = 969; + visitSingularInt32Field = 970; + visitSingularInt64Field = 971; + visitSingularMessageField = 972; + visitSingularSFixed32Field = 973; + visitSingularSFixed64Field = 974; + visitSingularSInt32Field = 975; + visitSingularSInt64Field = 976; + visitSingularStringField = 977; + visitSingularUInt32Field = 978; + visitSingularUInt64Field = 979; + visitUnknown = 980; + wasDecoded = 981; + weak = 982; + weakDependency = 983; + where = 984; + wireFormat = 985; + with = 986; + withUnsafeBytes = 987; + withUnsafeMutableBytes = 988; + work = 989; + Wrapped = 990; + WrappedType = 991; + wrappedValue = 992; + written = 993; + yday = 994; } diff --git a/Protos/SwiftProtobufTests/generated_swift_names_enums.proto b/Protos/SwiftProtobufTests/generated_swift_names_enums.proto index 2cf7884f8..7c1d341c3 100644 --- a/Protos/SwiftProtobufTests/generated_swift_names_enums.proto +++ b/Protos/SwiftProtobufTests/generated_swift_names_enums.proto @@ -16,7 +16,6 @@ message GeneratedSwiftReservedEnums { enum AnyMessageExtension { NONE_AnyMessageExtension = 0; } enum AnyMessageStorage { NONE_AnyMessageStorage = 0; } enum anyTypeURLNotRegistered { NONE_anyTypeURLNotRegistered = 0; } - enum AnyUnpack { NONE_AnyUnpack = 0; } enum AnyUnpackError { NONE_AnyUnpackError = 0; } enum Api { NONE_Api = 0; } enum appended { NONE_appended = 0; } @@ -178,7 +177,6 @@ message GeneratedSwiftReservedEnums { enum Collection { NONE_Collection = 0; } enum com { NONE_com = 0; } enum comma { NONE_comma = 0; } - enum conflictingOneOf { NONE_conflictingOneOf = 0; } enum consumedBytes { NONE_consumedBytes = 0; } enum contentsOf { NONE_contentsOf = 0; } enum copy { NONE_copy = 0; } @@ -267,7 +265,6 @@ message GeneratedSwiftReservedEnums { enum Double { NONE_Double = 0; } enum doubleValue { NONE_doubleValue = 0; } enum Duration { NONE_Duration = 0; } - enum durationRange { NONE_durationRange = 0; } enum E { NONE_E = 0; } enum edition { NONE_edition = 0; } enum EditionDefault { NONE_EditionDefault = 0; } @@ -320,7 +317,6 @@ message GeneratedSwiftReservedEnums { enum extensions { NONE_extensions = 0; } enum extras { NONE_extras = 0; } enum F { NONE_F = 0; } - enum failure { NONE_failure = 0; } enum false { NONE_false = 0; } enum features { NONE_features = 0; } enum FeatureSet { NONE_FeatureSet = 0; } @@ -331,7 +327,6 @@ message GeneratedSwiftReservedEnums { enum fieldData { NONE_fieldData = 0; } enum FieldDescriptorProto { NONE_FieldDescriptorProto = 0; } enum FieldMask { NONE_FieldMask = 0; } - enum fieldMaskConversion { NONE_fieldMaskConversion = 0; } enum fieldName { NONE_fieldName = 0; } enum fieldNameCount { NONE_fieldNameCount = 0; } enum fieldNum { NONE_fieldNum = 0; } @@ -536,7 +531,6 @@ message GeneratedSwiftReservedEnums { enum if { NONE_if = 0; } enum ignoreUnknownExtensionFields { NONE_ignoreUnknownExtensionFields = 0; } enum ignoreUnknownFields { NONE_ignoreUnknownFields = 0; } - enum illegalNull { NONE_illegalNull = 0; } enum index { NONE_index = 0; } enum init { NONE_init = 0; } enum inout { NONE_inout = 0; } @@ -552,13 +546,9 @@ message GeneratedSwiftReservedEnums { enum IntegerLiteralType { NONE_IntegerLiteralType = 0; } enum intern { NONE_intern = 0; } enum Internal { NONE_Internal = 0; } - enum internalError { NONE_internalError = 0; } - enum internalExtensionError { NONE_internalExtensionError = 0; } enum InternalState { NONE_InternalState = 0; } enum into { NONE_into = 0; } enum ints { NONE_ints = 0; } - enum invalidArgument { NONE_invalidArgument = 0; } - enum invalidUTF8 { NONE_invalidUTF8 = 0; } enum isA { NONE_isA = 0; } enum isEqual { NONE_isEqual = 0; } enum isEqualTo { NONE_isEqualTo = 0; } @@ -574,7 +564,6 @@ message GeneratedSwiftReservedEnums { enum javaPackage { NONE_javaPackage = 0; } enum javaStringCheckUtf8 { NONE_javaStringCheckUtf8 = 0; } enum JSONDecoder { NONE_JSONDecoder = 0; } - enum JSONDecoding { NONE_JSONDecoding = 0; } enum JSONDecodingError { NONE_JSONDecodingError = 0; } enum JSONDecodingOptions { NONE_JSONDecodingOptions = 0; } enum jsonEncoder { NONE_jsonEncoder = 0; } @@ -605,7 +594,6 @@ message GeneratedSwiftReservedEnums { enum lazy { NONE_lazy = 0; } enum leadingComments { NONE_leadingComments = 0; } enum leadingDetachedComments { NONE_leadingDetachedComments = 0; } - enum leadingZero { NONE_leadingZero = 0; } enum length { NONE_length = 0; } enum lessThan { NONE_lessThan = 0; } enum let { NONE_let = 0; } @@ -622,18 +610,7 @@ message GeneratedSwiftReservedEnums { enum major { NONE_major = 0; } enum makeAsyncIterator { NONE_makeAsyncIterator = 0; } enum makeIterator { NONE_makeIterator = 0; } - enum malformedAnyField { NONE_malformedAnyField = 0; } - enum malformedBool { NONE_malformedBool = 0; } - enum malformedDuration { NONE_malformedDuration = 0; } - enum malformedFieldMask { NONE_malformedFieldMask = 0; } enum malformedLength { NONE_malformedLength = 0; } - enum malformedMap { NONE_malformedMap = 0; } - enum malformedNumber { NONE_malformedNumber = 0; } - enum malformedProtobuf { NONE_malformedProtobuf = 0; } - enum malformedString { NONE_malformedString = 0; } - enum malformedText { NONE_malformedText = 0; } - enum malformedTimestamp { NONE_malformedTimestamp = 0; } - enum malformedWellKnownTypeJSON { NONE_malformedWellKnownTypeJSON = 0; } enum mapEntry { NONE_mapEntry = 0; } enum MapKeyType { NONE_MapKeyType = 0; } enum mapToMessages { NONE_mapToMessages = 0; } @@ -659,9 +636,6 @@ message GeneratedSwiftReservedEnums { enum min { NONE_min = 0; } enum minimumEdition { NONE_minimumEdition = 0; } enum minor { NONE_minor = 0; } - enum missingFieldNames { NONE_missingFieldNames = 0; } - enum missingRequiredFields { NONE_missingRequiredFields = 0; } - enum missingValue { NONE_missingValue = 0; } enum Mixin { NONE_Mixin = 0; } enum mixins { NONE_mixins = 0; } enum modifier { NONE_modifier = 0; } @@ -691,7 +665,6 @@ message GeneratedSwiftReservedEnums { enum noStandardDescriptorAccessor { NONE_noStandardDescriptorAccessor = 0; } enum nullValue { NONE_nullValue = 0; } enum number { NONE_number = 0; } - enum numberRange { NONE_numberRange = 0; } enum numberValue { NONE_numberValue = 0; } enum objcClassPrefix { NONE_objcClassPrefix = 0; } enum of { NONE_of = 0; } @@ -822,7 +795,6 @@ message GeneratedSwiftReservedEnums { enum sawSection5Characters { NONE_sawSection5Characters = 0; } enum scan { NONE_scan = 0; } enum scanner { NONE_scanner = 0; } - enum schemaMismatch { NONE_schemaMismatch = 0; } enum seconds { NONE_seconds = 0; } enum self { NONE_self = 0; } enum semantic { NONE_semantic = 0; } @@ -885,8 +857,7 @@ message GeneratedSwiftReservedEnums { enum text { NONE_text = 0; } enum textDecoder { NONE_textDecoder = 0; } enum TextFormatDecoder { NONE_TextFormatDecoder = 0; } - enum TextFormatDecoding { NONE_TextFormatDecoding = 0; } - enum textFormatDecodingError { NONE_textFormatDecodingError = 0; } + enum TextFormatDecodingError { NONE_TextFormatDecodingError = 0; } enum TextFormatDecodingOptions { NONE_TextFormatDecodingOptions = 0; } enum TextFormatEncodingOptions { NONE_TextFormatEncodingOptions = 0; } enum TextFormatEncodingVisitor { NONE_TextFormatEncodingVisitor = 0; } @@ -897,21 +868,17 @@ message GeneratedSwiftReservedEnums { enum timeIntervalSince1970 { NONE_timeIntervalSince1970 = 0; } enum timeIntervalSinceReferenceDate { NONE_timeIntervalSinceReferenceDate = 0; } enum Timestamp { NONE_Timestamp = 0; } - enum timestampRange { NONE_timestampRange = 0; } enum tooLarge { NONE_tooLarge = 0; } enum total { NONE_total = 0; } enum totalArrayDepth { NONE_totalArrayDepth = 0; } enum totalSize { NONE_totalSize = 0; } enum trailingComments { NONE_trailingComments = 0; } - enum trailingGarbage { NONE_trailingGarbage = 0; } enum traverse { NONE_traverse = 0; } enum true { NONE_true = 0; } - enum truncated { NONE_truncated = 0; } enum try { NONE_try = 0; } enum type { NONE_type = 0; } enum typealias { NONE_typealias = 0; } enum TypeEnum { NONE_TypeEnum = 0; } - enum typeMismatch { NONE_typeMismatch = 0; } enum typeName { NONE_typeName = 0; } enum typePrefix { NONE_typePrefix = 0; } enum typeStart { NONE_typeStart = 0; } @@ -931,14 +898,9 @@ message GeneratedSwiftReservedEnums { enum union { NONE_union = 0; } enum uniqueStorage { NONE_uniqueStorage = 0; } enum unknown { NONE_unknown = 0; } - enum unknownField { NONE_unknownField = 0; } - enum unknownFieldName { NONE_unknownFieldName = 0; } enum unknownFields { NONE_unknownFields = 0; } enum UnknownStorage { NONE_UnknownStorage = 0; } - enum unknownStreamError { NONE_unknownStreamError = 0; } enum unpackTo { NONE_unpackTo = 0; } - enum unquotedMapKey { NONE_unquotedMapKey = 0; } - enum unrecognizedEnumValue { NONE_unrecognizedEnumValue = 0; } enum unregisteredTypeURL { NONE_unregisteredTypeURL = 0; } enum UnsafeBufferPointer { NONE_UnsafeBufferPointer = 0; } enum UnsafeMutablePointer { NONE_UnsafeMutablePointer = 0; } @@ -957,7 +919,6 @@ message GeneratedSwiftReservedEnums { enum v { NONE_v = 0; } enum value { NONE_value = 0; } enum valueField { NONE_valueField = 0; } - enum valueNumberNotFinite { NONE_valueNumberNotFinite = 0; } enum values { NONE_values = 0; } enum ValueType { NONE_ValueType = 0; } enum var { NONE_var = 0; } diff --git a/Protos/SwiftProtobufTests/generated_swift_names_fields.proto b/Protos/SwiftProtobufTests/generated_swift_names_fields.proto index 69318f153..2b545d461 100644 --- a/Protos/SwiftProtobufTests/generated_swift_names_fields.proto +++ b/Protos/SwiftProtobufTests/generated_swift_names_fields.proto @@ -15,970 +15,987 @@ message GeneratedSwiftReservedFields { int32 AnyExtensionField = 9; int32 AnyMessageExtension = 10; int32 AnyMessageStorage = 11; - int32 AnyUnpackError = 12; - int32 Api = 13; - int32 appended = 14; - int32 appendUIntHex = 15; - int32 appendUnknown = 16; - int32 areAllInitialized = 17; - int32 Array = 18; - int32 arrayDepth = 19; - int32 arrayLiteral = 20; - int32 arraySeparator = 21; - int32 as = 22; - int32 asciiOpenCurlyBracket = 23; - int32 asciiZero = 24; - int32 async = 25; - int32 AsyncIterator = 26; - int32 AsyncIteratorProtocol = 27; - int32 AsyncMessageSequence = 28; - int32 available = 29; - int32 b = 30; - int32 Base = 31; - int32 base64Values = 32; - int32 baseAddress = 33; - int32 BaseType = 34; - int32 begin = 35; - int32 binary = 36; - int32 BinaryDecoder = 37; - int32 BinaryDecodingError = 38; - int32 BinaryDecodingOptions = 39; - int32 BinaryDelimited = 40; - int32 BinaryEncoder = 41; - int32 BinaryEncodingError = 42; - int32 BinaryEncodingMessageSetSizeVisitor = 43; - int32 BinaryEncodingMessageSetVisitor = 44; - int32 BinaryEncodingOptions = 45; - int32 BinaryEncodingSizeVisitor = 46; - int32 BinaryEncodingVisitor = 47; - int32 binaryOptions = 48; - int32 binaryProtobufDelimitedMessages = 49; - int32 bitPattern = 50; - int32 body = 51; - int32 Bool = 52; - int32 booleanLiteral = 53; - int32 BooleanLiteralType = 54; - int32 boolValue = 55; - int32 buffer = 56; - int32 bytes = 57; - int32 bytesInGroup = 58; - int32 bytesNeeded = 59; - int32 bytesRead = 60; - int32 BytesValue = 61; - int32 c = 62; - int32 capitalizeNext = 63; - int32 cardinality = 64; - int32 CaseIterable = 65; - int32 ccEnableArenas = 66; - int32 ccGenericServices = 67; - int32 Character = 68; - int32 chars = 69; - int32 chunk = 70; - int32 class = 71; - int32 clearAggregateValue = 72; - int32 clearAllowAlias = 73; - int32 clearBegin = 74; - int32 clearCcEnableArenas = 75; - int32 clearCcGenericServices = 76; - int32 clearClientStreaming = 77; - int32 clearCsharpNamespace = 78; - int32 clearCtype = 79; - int32 clearDebugRedact = 80; - int32 clearDefaultValue = 81; - int32 clearDeprecated = 82; - int32 clearDeprecatedLegacyJsonFieldConflicts = 83; - int32 clearDeprecationWarning = 84; - int32 clearDoubleValue = 85; - int32 clearEdition = 86; - int32 clearEditionDeprecated = 87; - int32 clearEditionIntroduced = 88; - int32 clearEditionRemoved = 89; - int32 clearEnd = 90; - int32 clearEnumType = 91; - int32 clearExtendee = 92; - int32 clearExtensionValue = 93; - int32 clearFeatures = 94; - int32 clearFeatureSupport = 95; - int32 clearFieldPresence = 96; - int32 clearFixedFeatures = 97; - int32 clearFullName = 98; - int32 clearGoPackage = 99; - int32 clearIdempotencyLevel = 100; - int32 clearIdentifierValue = 101; - int32 clearInputType = 102; - int32 clearIsExtension = 103; - int32 clearJavaGenerateEqualsAndHash = 104; - int32 clearJavaGenericServices = 105; - int32 clearJavaMultipleFiles = 106; - int32 clearJavaOuterClassname = 107; - int32 clearJavaPackage = 108; - int32 clearJavaStringCheckUtf8 = 109; - int32 clearJsonFormat = 110; - int32 clearJsonName = 111; - int32 clearJstype = 112; - int32 clearLabel = 113; - int32 clearLazy = 114; - int32 clearLeadingComments = 115; - int32 clearMapEntry = 116; - int32 clearMaximumEdition = 117; - int32 clearMessageEncoding = 118; - int32 clearMessageSetWireFormat = 119; - int32 clearMinimumEdition = 120; - int32 clearName = 121; - int32 clearNamePart = 122; - int32 clearNegativeIntValue = 123; - int32 clearNoStandardDescriptorAccessor = 124; - int32 clearNumber = 125; - int32 clearObjcClassPrefix = 126; - int32 clearOneofIndex = 127; - int32 clearOptimizeFor = 128; - int32 clearOptions = 129; - int32 clearOutputType = 130; - int32 clearOverridableFeatures = 131; - int32 clearPackage = 132; - int32 clearPacked = 133; - int32 clearPhpClassPrefix = 134; - int32 clearPhpMetadataNamespace = 135; - int32 clearPhpNamespace = 136; - int32 clearPositiveIntValue = 137; - int32 clearProto3Optional = 138; - int32 clearPyGenericServices = 139; - int32 clearRepeated = 140; - int32 clearRepeatedFieldEncoding = 141; - int32 clearReserved = 142; - int32 clearRetention = 143; - int32 clearRubyPackage = 144; - int32 clearSemantic = 145; - int32 clearServerStreaming = 146; - int32 clearSourceCodeInfo = 147; - int32 clearSourceContext = 148; - int32 clearSourceFile = 149; - int32 clearStart = 150; - int32 clearStringValue = 151; - int32 clearSwiftPrefix = 152; - int32 clearSyntax = 153; - int32 clearTrailingComments = 154; - int32 clearType = 155; - int32 clearTypeName = 156; - int32 clearUnverifiedLazy = 157; - int32 clearUtf8Validation = 158; - int32 clearValue = 159; - int32 clearVerification = 160; - int32 clearWeak = 161; - int32 clientStreaming = 162; - int32 codePoint = 163; - int32 codeUnits = 164; - int32 Collection = 165; - int32 com = 166; - int32 comma = 167; - int32 consumedBytes = 168; - int32 contentsOf = 169; - int32 count = 170; - int32 countVarintsInBuffer = 171; - int32 csharpNamespace = 172; - int32 ctype = 173; - int32 customCodable = 174; - int32 CustomDebugStringConvertible = 175; - int32 d = 176; - int32 Data = 177; - int32 dataResult = 178; - int32 date = 179; - int32 daySec = 180; - int32 daysSinceEpoch = 181; - int32 debugDescription = 182; - int32 debugRedact = 183; - int32 declaration = 184; - int32 decoded = 185; - int32 decodedFromJSONNull = 186; - int32 decodeExtensionField = 187; - int32 decodeExtensionFieldsAsMessageSet = 188; - int32 decodeJSON = 189; - int32 decodeMapField = 190; - int32 decodeMessage = 191; - int32 decoder = 192; - int32 decodeRepeated = 193; - int32 decodeRepeatedBoolField = 194; - int32 decodeRepeatedBytesField = 195; - int32 decodeRepeatedDoubleField = 196; - int32 decodeRepeatedEnumField = 197; - int32 decodeRepeatedFixed32Field = 198; - int32 decodeRepeatedFixed64Field = 199; - int32 decodeRepeatedFloatField = 200; - int32 decodeRepeatedGroupField = 201; - int32 decodeRepeatedInt32Field = 202; - int32 decodeRepeatedInt64Field = 203; - int32 decodeRepeatedMessageField = 204; - int32 decodeRepeatedSFixed32Field = 205; - int32 decodeRepeatedSFixed64Field = 206; - int32 decodeRepeatedSInt32Field = 207; - int32 decodeRepeatedSInt64Field = 208; - int32 decodeRepeatedStringField = 209; - int32 decodeRepeatedUInt32Field = 210; - int32 decodeRepeatedUInt64Field = 211; - int32 decodeSingular = 212; - int32 decodeSingularBoolField = 213; - int32 decodeSingularBytesField = 214; - int32 decodeSingularDoubleField = 215; - int32 decodeSingularEnumField = 216; - int32 decodeSingularFixed32Field = 217; - int32 decodeSingularFixed64Field = 218; - int32 decodeSingularFloatField = 219; - int32 decodeSingularGroupField = 220; - int32 decodeSingularInt32Field = 221; - int32 decodeSingularInt64Field = 222; - int32 decodeSingularMessageField = 223; - int32 decodeSingularSFixed32Field = 224; - int32 decodeSingularSFixed64Field = 225; - int32 decodeSingularSInt32Field = 226; - int32 decodeSingularSInt64Field = 227; - int32 decodeSingularStringField = 228; - int32 decodeSingularUInt32Field = 229; - int32 decodeSingularUInt64Field = 230; - int32 decodeTextFormat = 231; - int32 defaultAnyTypeURLPrefix = 232; - int32 defaults = 233; - int32 defaultValue = 234; - int32 dependency = 235; - int32 deprecated = 236; - int32 deprecatedLegacyJsonFieldConflicts = 237; - int32 deprecationWarning = 238; - int32 description = 239; - int32 DescriptorProto = 240; - int32 Dictionary = 241; - int32 dictionaryLiteral = 242; - int32 digit = 243; - int32 digit0 = 244; - int32 digit1 = 245; - int32 digitCount = 246; - int32 digits = 247; - int32 digitValue = 248; - int32 discardableResult = 249; - int32 discardUnknownFields = 250; - int32 Double = 251; - int32 doubleValue = 252; - int32 Duration = 253; - int32 E = 254; - int32 edition = 255; - int32 EditionDefault = 256; - int32 editionDefaults = 257; - int32 editionDeprecated = 258; - int32 editionIntroduced = 259; - int32 editionRemoved = 260; - int32 Element = 261; - int32 elements = 262; - int32 emitExtensionFieldName = 263; - int32 emitFieldName = 264; - int32 emitFieldNumber = 265; - int32 Empty = 266; - int32 encodeAsBytes = 267; - int32 encoded = 268; - int32 encodedJSONString = 269; - int32 encodedSize = 270; - int32 encodeField = 271; - int32 encoder = 272; - int32 end = 273; - int32 endArray = 274; - int32 endMessageField = 275; - int32 endObject = 276; - int32 endRegularField = 277; - int32 enum = 278; - int32 EnumDescriptorProto = 279; - int32 EnumOptions = 280; - int32 EnumReservedRange = 281; - int32 enumType = 282; - int32 enumvalue = 283; - int32 EnumValueDescriptorProto = 284; - int32 EnumValueOptions = 285; - int32 Equatable = 286; - int32 Error = 287; - int32 ExpressibleByArrayLiteral = 288; - int32 ExpressibleByDictionaryLiteral = 289; - int32 ext = 290; - int32 extDecoder = 291; - int32 extendedGraphemeClusterLiteral = 292; - int32 ExtendedGraphemeClusterLiteralType = 293; - int32 extendee = 294; - int32 ExtensibleMessage = 295; - int32 extension = 296; - int32 ExtensionField = 297; - int32 extensionFieldNumber = 298; - int32 ExtensionFieldValueSet = 299; - int32 ExtensionMap = 300; - int32 extensionRange = 301; - int32 ExtensionRangeOptions = 302; - int32 extensions = 303; - int32 extras = 304; - int32 F = 305; - int32 false = 306; - int32 features = 307; - int32 FeatureSet = 308; - int32 FeatureSetDefaults = 309; - int32 FeatureSetEditionDefault = 310; - int32 featureSupport = 311; - int32 field = 312; - int32 fieldData = 313; - int32 FieldDescriptorProto = 314; - int32 FieldMask = 315; - int32 fieldName = 316; - int32 fieldNameCount = 317; - int32 fieldNum = 318; - int32 fieldNumber = 319; - int32 fieldNumberForProto = 320; - int32 FieldOptions = 321; - int32 fieldPresence = 322; - int32 fields = 323; - int32 fieldSize = 324; - int32 FieldTag = 325; - int32 fieldType = 326; - int32 file = 327; - int32 FileDescriptorProto = 328; - int32 FileDescriptorSet = 329; - int32 fileName = 330; - int32 FileOptions = 331; - int32 filter = 332; - int32 final = 333; - int32 finiteOnly = 334; - int32 first = 335; - int32 firstItem = 336; - int32 fixedFeatures = 337; - int32 Float = 338; - int32 floatLiteral = 339; - int32 FloatLiteralType = 340; - int32 FloatValue = 341; - int32 forMessageName = 342; - int32 formUnion = 343; - int32 forReadingFrom = 344; - int32 forTypeURL = 345; - int32 ForwardParser = 346; - int32 forWritingInto = 347; - int32 from = 348; - int32 fromAscii2 = 349; - int32 fromAscii4 = 350; - int32 fromByteOffset = 351; - int32 fromHexDigit = 352; - int32 fullName = 353; - int32 func = 354; - int32 G = 355; - int32 GeneratedCodeInfo = 356; - int32 get = 357; - int32 getExtensionValue = 358; - int32 googleapis = 359; - int32 Google_Protobuf_Any = 360; - int32 Google_Protobuf_Api = 361; - int32 Google_Protobuf_BoolValue = 362; - int32 Google_Protobuf_BytesValue = 363; - int32 Google_Protobuf_DescriptorProto = 364; - int32 Google_Protobuf_DoubleValue = 365; - int32 Google_Protobuf_Duration = 366; - int32 Google_Protobuf_Edition = 367; - int32 Google_Protobuf_Empty = 368; - int32 Google_Protobuf_Enum = 369; - int32 Google_Protobuf_EnumDescriptorProto = 370; - int32 Google_Protobuf_EnumOptions = 371; - int32 Google_Protobuf_EnumValue = 372; - int32 Google_Protobuf_EnumValueDescriptorProto = 373; - int32 Google_Protobuf_EnumValueOptions = 374; - int32 Google_Protobuf_ExtensionRangeOptions = 375; - int32 Google_Protobuf_FeatureSet = 376; - int32 Google_Protobuf_FeatureSetDefaults = 377; - int32 Google_Protobuf_Field = 378; - int32 Google_Protobuf_FieldDescriptorProto = 379; - int32 Google_Protobuf_FieldMask = 380; - int32 Google_Protobuf_FieldOptions = 381; - int32 Google_Protobuf_FileDescriptorProto = 382; - int32 Google_Protobuf_FileDescriptorSet = 383; - int32 Google_Protobuf_FileOptions = 384; - int32 Google_Protobuf_FloatValue = 385; - int32 Google_Protobuf_GeneratedCodeInfo = 386; - int32 Google_Protobuf_Int32Value = 387; - int32 Google_Protobuf_Int64Value = 388; - int32 Google_Protobuf_ListValue = 389; - int32 Google_Protobuf_MessageOptions = 390; - int32 Google_Protobuf_Method = 391; - int32 Google_Protobuf_MethodDescriptorProto = 392; - int32 Google_Protobuf_MethodOptions = 393; - int32 Google_Protobuf_Mixin = 394; - int32 Google_Protobuf_NullValue = 395; - int32 Google_Protobuf_OneofDescriptorProto = 396; - int32 Google_Protobuf_OneofOptions = 397; - int32 Google_Protobuf_Option = 398; - int32 Google_Protobuf_ServiceDescriptorProto = 399; - int32 Google_Protobuf_ServiceOptions = 400; - int32 Google_Protobuf_SourceCodeInfo = 401; - int32 Google_Protobuf_SourceContext = 402; - int32 Google_Protobuf_StringValue = 403; - int32 Google_Protobuf_Struct = 404; - int32 Google_Protobuf_Syntax = 405; - int32 Google_Protobuf_Timestamp = 406; - int32 Google_Protobuf_Type = 407; - int32 Google_Protobuf_UInt32Value = 408; - int32 Google_Protobuf_UInt64Value = 409; - int32 Google_Protobuf_UninterpretedOption = 410; - int32 Google_Protobuf_Value = 411; - int32 goPackage = 412; - int32 group = 413; - int32 groupFieldNumberStack = 414; - int32 groupSize = 415; - int32 hadOneofValue = 416; - int32 handleConflictingOneOf = 417; - int32 hasAggregateValue = 418; - int32 hasAllowAlias = 419; - int32 hasBegin = 420; - int32 hasCcEnableArenas = 421; - int32 hasCcGenericServices = 422; - int32 hasClientStreaming = 423; - int32 hasCsharpNamespace = 424; - int32 hasCtype = 425; - int32 hasDebugRedact = 426; - int32 hasDefaultValue = 427; - int32 hasDeprecated = 428; - int32 hasDeprecatedLegacyJsonFieldConflicts = 429; - int32 hasDeprecationWarning = 430; - int32 hasDoubleValue = 431; - int32 hasEdition = 432; - int32 hasEditionDeprecated = 433; - int32 hasEditionIntroduced = 434; - int32 hasEditionRemoved = 435; - int32 hasEnd = 436; - int32 hasEnumType = 437; - int32 hasExtendee = 438; - int32 hasExtensionValue = 439; - int32 hasFeatures = 440; - int32 hasFeatureSupport = 441; - int32 hasFieldPresence = 442; - int32 hasFixedFeatures = 443; - int32 hasFullName = 444; - int32 hasGoPackage = 445; - int32 hash = 446; - int32 Hashable = 447; - int32 hasher = 448; - int32 HashVisitor = 449; - int32 hasIdempotencyLevel = 450; - int32 hasIdentifierValue = 451; - int32 hasInputType = 452; - int32 hasIsExtension = 453; - int32 hasJavaGenerateEqualsAndHash = 454; - int32 hasJavaGenericServices = 455; - int32 hasJavaMultipleFiles = 456; - int32 hasJavaOuterClassname = 457; - int32 hasJavaPackage = 458; - int32 hasJavaStringCheckUtf8 = 459; - int32 hasJsonFormat = 460; - int32 hasJsonName = 461; - int32 hasJstype = 462; - int32 hasLabel = 463; - int32 hasLazy = 464; - int32 hasLeadingComments = 465; - int32 hasMapEntry = 466; - int32 hasMaximumEdition = 467; - int32 hasMessageEncoding = 468; - int32 hasMessageSetWireFormat = 469; - int32 hasMinimumEdition = 470; - int32 hasName = 471; - int32 hasNamePart = 472; - int32 hasNegativeIntValue = 473; - int32 hasNoStandardDescriptorAccessor = 474; - int32 hasNumber = 475; - int32 hasObjcClassPrefix = 476; - int32 hasOneofIndex = 477; - int32 hasOptimizeFor = 478; - int32 hasOptions = 479; - int32 hasOutputType = 480; - int32 hasOverridableFeatures = 481; - int32 hasPackage = 482; - int32 hasPacked = 483; - int32 hasPhpClassPrefix = 484; - int32 hasPhpMetadataNamespace = 485; - int32 hasPhpNamespace = 486; - int32 hasPositiveIntValue = 487; - int32 hasProto3Optional = 488; - int32 hasPyGenericServices = 489; - int32 hasRepeated = 490; - int32 hasRepeatedFieldEncoding = 491; - int32 hasReserved = 492; - int32 hasRetention = 493; - int32 hasRubyPackage = 494; - int32 hasSemantic = 495; - int32 hasServerStreaming = 496; - int32 hasSourceCodeInfo = 497; - int32 hasSourceContext = 498; - int32 hasSourceFile = 499; - int32 hasStart = 500; - int32 hasStringValue = 501; - int32 hasSwiftPrefix = 502; - int32 hasSyntax = 503; - int32 hasTrailingComments = 504; - int32 hasType = 505; - int32 hasTypeName = 506; - int32 hasUnverifiedLazy = 507; - int32 hasUtf8Validation = 508; - int32 hasValue = 509; - int32 hasVerification = 510; - int32 hasWeak = 511; - int32 hour = 512; - int32 i = 513; - int32 idempotencyLevel = 514; - int32 identifierValue = 515; - int32 if = 516; - int32 ignoreUnknownExtensionFields = 517; - int32 ignoreUnknownFields = 518; - int32 index = 519; - int32 init = 520; - int32 inout = 521; - int32 inputType = 522; - int32 insert = 523; - int32 Int = 524; - int32 Int32 = 525; - int32 Int32Value = 526; - int32 Int64 = 527; - int32 Int64Value = 528; - int32 Int8 = 529; - int32 integerLiteral = 530; - int32 IntegerLiteralType = 531; - int32 intern = 532; - int32 Internal = 533; - int32 InternalState = 534; - int32 into = 535; - int32 ints = 536; - int32 isA = 537; - int32 isEqual = 538; - int32 isEqualTo = 539; - int32 isExtension = 540; - int32 isInitialized = 541; - int32 isNegative = 542; - int32 itemTagsEncodedSize = 543; - int32 iterator = 544; - int32 javaGenerateEqualsAndHash = 545; - int32 javaGenericServices = 546; - int32 javaMultipleFiles = 547; - int32 javaOuterClassname = 548; - int32 javaPackage = 549; - int32 javaStringCheckUtf8 = 550; - int32 JSONDecoder = 551; - int32 JSONDecodingError = 552; - int32 JSONDecodingOptions = 553; - int32 jsonEncoder = 554; - int32 JSONEncodingError = 555; - int32 JSONEncodingOptions = 556; - int32 JSONEncodingVisitor = 557; - int32 jsonFormat = 558; - int32 JSONMapEncodingVisitor = 559; - int32 jsonName = 560; - int32 jsonPath = 561; - int32 jsonPaths = 562; - int32 JSONScanner = 563; - int32 jsonString = 564; - int32 jsonText = 565; - int32 jsonUTF8Bytes = 566; - int32 jsonUTF8Data = 567; - int32 jstype = 568; - int32 k = 569; - int32 kChunkSize = 570; - int32 Key = 571; - int32 keyField = 572; - int32 keyFieldOpt = 573; - int32 KeyType = 574; - int32 kind = 575; - int32 l = 576; - int32 label = 577; - int32 lazy = 578; - int32 leadingComments = 579; - int32 leadingDetachedComments = 580; - int32 length = 581; - int32 lessThan = 582; - int32 let = 583; - int32 lhs = 584; - int32 list = 585; - int32 listOfMessages = 586; - int32 listValue = 587; - int32 littleEndian = 588; - int32 load = 589; - int32 localHasher = 590; - int32 location = 591; - int32 M = 592; - int32 major = 593; - int32 makeAsyncIterator = 594; - int32 makeIterator = 595; - int32 mapEntry = 596; - int32 MapKeyType = 597; - int32 mapToMessages = 598; - int32 MapValueType = 599; - int32 mapVisitor = 600; - int32 maximumEdition = 601; - int32 mdayStart = 602; - int32 merge = 603; - int32 message = 604; - int32 messageDepthLimit = 605; - int32 messageEncoding = 606; - int32 MessageExtension = 607; - int32 MessageImplementationBase = 608; - int32 MessageOptions = 609; - int32 MessageSet = 610; - int32 messageSetWireFormat = 611; - int32 messageSize = 612; - int32 messageType = 613; - int32 Method = 614; - int32 MethodDescriptorProto = 615; - int32 MethodOptions = 616; - int32 methods = 617; - int32 min = 618; - int32 minimumEdition = 619; - int32 minor = 620; - int32 Mixin = 621; - int32 mixins = 622; - int32 modifier = 623; - int32 modify = 624; - int32 month = 625; - int32 msgExtension = 626; - int32 mutating = 627; - int32 n = 628; - int32 name = 629; - int32 NameDescription = 630; - int32 NameMap = 631; - int32 NamePart = 632; - int32 names = 633; - int32 nanos = 634; - int32 negativeIntValue = 635; - int32 nestedType = 636; - int32 newL = 637; - int32 newList = 638; - int32 newValue = 639; - int32 next = 640; - int32 nextByte = 641; - int32 nextFieldNumber = 642; - int32 nextVarInt = 643; - int32 nil = 644; - int32 nilLiteral = 645; - int32 noStandardDescriptorAccessor = 646; - int32 nullValue = 647; - int32 number = 648; - int32 numberValue = 649; - int32 objcClassPrefix = 650; - int32 of = 651; - int32 oneofDecl = 652; - int32 OneofDescriptorProto = 653; - int32 oneofIndex = 654; - int32 OneofOptions = 655; - int32 oneofs = 656; - int32 OneOf_Kind = 657; - int32 optimizeFor = 658; - int32 OptimizeMode = 659; - int32 Option = 660; - int32 OptionalEnumExtensionField = 661; - int32 OptionalExtensionField = 662; - int32 OptionalGroupExtensionField = 663; - int32 OptionalMessageExtensionField = 664; - int32 OptionRetention = 665; - int32 options = 666; - int32 OptionTargetType = 667; - int32 other = 668; - int32 others = 669; - int32 out = 670; - int32 outputType = 671; - int32 overridableFeatures = 672; - int32 p = 673; - int32 package = 674; - int32 packed = 675; - int32 PackedEnumExtensionField = 676; - int32 PackedExtensionField = 677; - int32 padding = 678; - int32 parent = 679; - int32 parse = 680; - int32 path = 681; - int32 paths = 682; - int32 payload = 683; - int32 payloadSize = 684; - int32 phpClassPrefix = 685; - int32 phpMetadataNamespace = 686; - int32 phpNamespace = 687; - int32 pos = 688; - int32 positiveIntValue = 689; - int32 prefix = 690; - int32 preserveProtoFieldNames = 691; - int32 preTraverse = 692; - int32 printUnknownFields = 693; - int32 proto2 = 694; - int32 proto3DefaultValue = 695; - int32 proto3Optional = 696; - int32 ProtobufAPIVersionCheck = 697; - int32 ProtobufAPIVersion_3 = 698; - int32 ProtobufBool = 699; - int32 ProtobufBytes = 700; - int32 ProtobufDouble = 701; - int32 ProtobufEnumMap = 702; - int32 protobufExtension = 703; - int32 ProtobufFixed32 = 704; - int32 ProtobufFixed64 = 705; - int32 ProtobufFloat = 706; - int32 ProtobufInt32 = 707; - int32 ProtobufInt64 = 708; - int32 ProtobufMap = 709; - int32 ProtobufMessageMap = 710; - int32 ProtobufSFixed32 = 711; - int32 ProtobufSFixed64 = 712; - int32 ProtobufSInt32 = 713; - int32 ProtobufSInt64 = 714; - int32 ProtobufString = 715; - int32 ProtobufUInt32 = 716; - int32 ProtobufUInt64 = 717; - int32 protobuf_extensionFieldValues = 718; - int32 protobuf_fieldNumber = 719; - int32 protobuf_generated_isEqualTo = 720; - int32 protobuf_nameMap = 721; - int32 protobuf_newField = 722; - int32 protobuf_package = 723; - int32 protocol = 724; - int32 protoFieldName = 725; - int32 protoMessageName = 726; - int32 ProtoNameProviding = 727; - int32 protoPaths = 728; - int32 public = 729; - int32 publicDependency = 730; - int32 putBoolValue = 731; - int32 putBytesValue = 732; - int32 putDoubleValue = 733; - int32 putEnumValue = 734; - int32 putFixedUInt32 = 735; - int32 putFixedUInt64 = 736; - int32 putFloatValue = 737; - int32 putInt64 = 738; - int32 putStringValue = 739; - int32 putUInt64 = 740; - int32 putUInt64Hex = 741; - int32 putVarInt = 742; - int32 putZigZagVarInt = 743; - int32 pyGenericServices = 744; - int32 R = 745; - int32 rawChars = 746; - int32 RawRepresentable = 747; - int32 RawValue = 748; - int32 read4HexDigits = 749; - int32 readBytes = 750; - int32 register = 751; - int32 repeated = 752; - int32 RepeatedEnumExtensionField = 753; - int32 RepeatedExtensionField = 754; - int32 repeatedFieldEncoding = 755; - int32 RepeatedGroupExtensionField = 756; - int32 RepeatedMessageExtensionField = 757; - int32 repeating = 758; - int32 requestStreaming = 759; - int32 requestTypeURL = 760; - int32 requiredSize = 761; - int32 responseStreaming = 762; - int32 responseTypeURL = 763; - int32 result = 764; - int32 retention = 765; - int32 rethrows = 766; - int32 return = 767; - int32 ReturnType = 768; - int32 revision = 769; - int32 rhs = 770; - int32 root = 771; - int32 rubyPackage = 772; - int32 s = 773; - int32 sawBackslash = 774; - int32 sawSection4Characters = 775; - int32 sawSection5Characters = 776; - int32 scan = 777; - int32 scanner = 778; - int32 seconds = 779; - int32 self = 780; - int32 semantic = 781; - int32 Sendable = 782; - int32 separator = 783; - int32 serialize = 784; - int32 serializedBytes = 785; - int32 serializedData = 786; - int32 serializedSize = 787; - int32 serverStreaming = 788; - int32 service = 789; - int32 ServiceDescriptorProto = 790; - int32 ServiceOptions = 791; - int32 set = 792; - int32 setExtensionValue = 793; - int32 shift = 794; - int32 SimpleExtensionMap = 795; - int32 size = 796; - int32 sizer = 797; - int32 source = 798; - int32 sourceCodeInfo = 799; - int32 sourceContext = 800; - int32 sourceEncoding = 801; - int32 sourceFile = 802; - int32 span = 803; - int32 split = 804; - int32 start = 805; - int32 startArray = 806; - int32 startArrayObject = 807; - int32 startField = 808; - int32 startIndex = 809; - int32 startMessageField = 810; - int32 startObject = 811; - int32 startRegularField = 812; - int32 state = 813; - int32 static = 814; - int32 StaticString = 815; - int32 storage = 816; - int32 String = 817; - int32 stringLiteral = 818; - int32 StringLiteralType = 819; - int32 stringResult = 820; - int32 stringValue = 821; - int32 struct = 822; - int32 structValue = 823; - int32 subDecoder = 824; - int32 subscript = 825; - int32 subVisitor = 826; - int32 Swift = 827; - int32 swiftPrefix = 828; - int32 SwiftProtobufContiguousBytes = 829; - int32 syntax = 830; - int32 T = 831; - int32 tag = 832; - int32 targets = 833; - int32 terminator = 834; - int32 testDecoder = 835; - int32 text = 836; - int32 textDecoder = 837; - int32 TextFormatDecoder = 838; - int32 TextFormatDecodingError = 839; - int32 TextFormatDecodingOptions = 840; - int32 TextFormatEncodingOptions = 841; - int32 TextFormatEncodingVisitor = 842; - int32 textFormatString = 843; - int32 throwOrIgnore = 844; - int32 throws = 845; - int32 timeInterval = 846; - int32 timeIntervalSince1970 = 847; - int32 timeIntervalSinceReferenceDate = 848; - int32 Timestamp = 849; - int32 total = 850; - int32 totalArrayDepth = 851; - int32 totalSize = 852; - int32 trailingComments = 853; - int32 traverse = 854; - int32 true = 855; - int32 try = 856; - int32 type = 857; - int32 typealias = 858; - int32 TypeEnum = 859; - int32 typeName = 860; - int32 typePrefix = 861; - int32 typeStart = 862; - int32 typeUnknown = 863; - int32 typeURL = 864; - int32 UInt32 = 865; - int32 UInt32Value = 866; - int32 UInt64 = 867; - int32 UInt64Value = 868; - int32 UInt8 = 869; - int32 unchecked = 870; - int32 unicodeScalarLiteral = 871; - int32 UnicodeScalarLiteralType = 872; - int32 unicodeScalars = 873; - int32 UnicodeScalarView = 874; - int32 uninterpretedOption = 875; - int32 union = 876; - int32 uniqueStorage = 877; - int32 unknown = 878; - int32 unknownFields = 879; - int32 UnknownStorage = 880; - int32 unpackTo = 881; - int32 UnsafeBufferPointer = 882; - int32 UnsafeMutablePointer = 883; - int32 UnsafeMutableRawBufferPointer = 884; - int32 UnsafeRawBufferPointer = 885; - int32 UnsafeRawPointer = 886; - int32 unverifiedLazy = 887; - int32 updatedOptions = 888; - int32 url = 889; - int32 useDeterministicOrdering = 890; - int32 utf8 = 891; - int32 utf8Ptr = 892; - int32 utf8ToDouble = 893; - int32 utf8Validation = 894; - int32 UTF8View = 895; - int32 v = 896; - int32 value = 897; - int32 valueField = 898; - int32 values = 899; - int32 ValueType = 900; - int32 var = 901; - int32 verification = 902; - int32 VerificationState = 903; - int32 Version = 904; - int32 versionString = 905; - int32 visitExtensionFields = 906; - int32 visitExtensionFieldsAsMessageSet = 907; - int32 visitMapField = 908; - int32 visitor = 909; - int32 visitPacked = 910; - int32 visitPackedBoolField = 911; - int32 visitPackedDoubleField = 912; - int32 visitPackedEnumField = 913; - int32 visitPackedFixed32Field = 914; - int32 visitPackedFixed64Field = 915; - int32 visitPackedFloatField = 916; - int32 visitPackedInt32Field = 917; - int32 visitPackedInt64Field = 918; - int32 visitPackedSFixed32Field = 919; - int32 visitPackedSFixed64Field = 920; - int32 visitPackedSInt32Field = 921; - int32 visitPackedSInt64Field = 922; - int32 visitPackedUInt32Field = 923; - int32 visitPackedUInt64Field = 924; - int32 visitRepeated = 925; - int32 visitRepeatedBoolField = 926; - int32 visitRepeatedBytesField = 927; - int32 visitRepeatedDoubleField = 928; - int32 visitRepeatedEnumField = 929; - int32 visitRepeatedFixed32Field = 930; - int32 visitRepeatedFixed64Field = 931; - int32 visitRepeatedFloatField = 932; - int32 visitRepeatedGroupField = 933; - int32 visitRepeatedInt32Field = 934; - int32 visitRepeatedInt64Field = 935; - int32 visitRepeatedMessageField = 936; - int32 visitRepeatedSFixed32Field = 937; - int32 visitRepeatedSFixed64Field = 938; - int32 visitRepeatedSInt32Field = 939; - int32 visitRepeatedSInt64Field = 940; - int32 visitRepeatedStringField = 941; - int32 visitRepeatedUInt32Field = 942; - int32 visitRepeatedUInt64Field = 943; - int32 visitSingular = 944; - int32 visitSingularBoolField = 945; - int32 visitSingularBytesField = 946; - int32 visitSingularDoubleField = 947; - int32 visitSingularEnumField = 948; - int32 visitSingularFixed32Field = 949; - int32 visitSingularFixed64Field = 950; - int32 visitSingularFloatField = 951; - int32 visitSingularGroupField = 952; - int32 visitSingularInt32Field = 953; - int32 visitSingularInt64Field = 954; - int32 visitSingularMessageField = 955; - int32 visitSingularSFixed32Field = 956; - int32 visitSingularSFixed64Field = 957; - int32 visitSingularSInt32Field = 958; - int32 visitSingularSInt64Field = 959; - int32 visitSingularStringField = 960; - int32 visitSingularUInt32Field = 961; - int32 visitSingularUInt64Field = 962; - int32 visitUnknown = 963; - int32 wasDecoded = 964; - int32 weak = 965; - int32 weakDependency = 966; - int32 where = 967; - int32 wireFormat = 968; - int32 with = 969; - int32 withUnsafeBytes = 970; - int32 withUnsafeMutableBytes = 971; - int32 work = 972; - int32 Wrapped = 973; - int32 WrappedType = 974; - int32 wrappedValue = 975; - int32 written = 976; - int32 yday = 977; + int32 anyTypeURLNotRegistered = 12; + int32 AnyUnpackError = 13; + int32 Api = 14; + int32 appended = 15; + int32 appendUIntHex = 16; + int32 appendUnknown = 17; + int32 areAllInitialized = 18; + int32 Array = 19; + int32 arrayDepth = 20; + int32 arrayLiteral = 21; + int32 arraySeparator = 22; + int32 as = 23; + int32 asciiOpenCurlyBracket = 24; + int32 asciiZero = 25; + int32 async = 26; + int32 AsyncIterator = 27; + int32 AsyncIteratorProtocol = 28; + int32 AsyncMessageSequence = 29; + int32 available = 30; + int32 b = 31; + int32 Base = 32; + int32 base64Values = 33; + int32 baseAddress = 34; + int32 BaseType = 35; + int32 begin = 36; + int32 binary = 37; + int32 BinaryDecoder = 38; + int32 BinaryDecoding = 39; + int32 BinaryDecodingError = 40; + int32 BinaryDecodingOptions = 41; + int32 BinaryDelimited = 42; + int32 BinaryEncoder = 43; + int32 BinaryEncoding = 44; + int32 BinaryEncodingError = 45; + int32 BinaryEncodingMessageSetSizeVisitor = 46; + int32 BinaryEncodingMessageSetVisitor = 47; + int32 BinaryEncodingOptions = 48; + int32 BinaryEncodingSizeVisitor = 49; + int32 BinaryEncodingVisitor = 50; + int32 binaryOptions = 51; + int32 binaryProtobufDelimitedMessages = 52; + int32 BinaryStreamDecoding = 53; + int32 binaryStreamDecodingError = 54; + int32 bitPattern = 55; + int32 body = 56; + int32 Bool = 57; + int32 booleanLiteral = 58; + int32 BooleanLiteralType = 59; + int32 boolValue = 60; + int32 buffer = 61; + int32 bytes = 62; + int32 bytesInGroup = 63; + int32 bytesNeeded = 64; + int32 bytesRead = 65; + int32 BytesValue = 66; + int32 c = 67; + int32 capitalizeNext = 68; + int32 cardinality = 69; + int32 CaseIterable = 70; + int32 ccEnableArenas = 71; + int32 ccGenericServices = 72; + int32 Character = 73; + int32 chars = 74; + int32 chunk = 75; + int32 class = 76; + int32 clearAggregateValue = 77; + int32 clearAllowAlias = 78; + int32 clearBegin = 79; + int32 clearCcEnableArenas = 80; + int32 clearCcGenericServices = 81; + int32 clearClientStreaming = 82; + int32 clearCsharpNamespace = 83; + int32 clearCtype = 84; + int32 clearDebugRedact = 85; + int32 clearDefaultValue = 86; + int32 clearDeprecated = 87; + int32 clearDeprecatedLegacyJsonFieldConflicts = 88; + int32 clearDeprecationWarning = 89; + int32 clearDoubleValue = 90; + int32 clearEdition = 91; + int32 clearEditionDeprecated = 92; + int32 clearEditionIntroduced = 93; + int32 clearEditionRemoved = 94; + int32 clearEnd = 95; + int32 clearEnumType = 96; + int32 clearExtendee = 97; + int32 clearExtensionValue = 98; + int32 clearFeatures = 99; + int32 clearFeatureSupport = 100; + int32 clearFieldPresence = 101; + int32 clearFixedFeatures = 102; + int32 clearFullName = 103; + int32 clearGoPackage = 104; + int32 clearIdempotencyLevel = 105; + int32 clearIdentifierValue = 106; + int32 clearInputType = 107; + int32 clearIsExtension = 108; + int32 clearJavaGenerateEqualsAndHash = 109; + int32 clearJavaGenericServices = 110; + int32 clearJavaMultipleFiles = 111; + int32 clearJavaOuterClassname = 112; + int32 clearJavaPackage = 113; + int32 clearJavaStringCheckUtf8 = 114; + int32 clearJsonFormat = 115; + int32 clearJsonName = 116; + int32 clearJstype = 117; + int32 clearLabel = 118; + int32 clearLazy = 119; + int32 clearLeadingComments = 120; + int32 clearMapEntry = 121; + int32 clearMaximumEdition = 122; + int32 clearMessageEncoding = 123; + int32 clearMessageSetWireFormat = 124; + int32 clearMinimumEdition = 125; + int32 clearName = 126; + int32 clearNamePart = 127; + int32 clearNegativeIntValue = 128; + int32 clearNoStandardDescriptorAccessor = 129; + int32 clearNumber = 130; + int32 clearObjcClassPrefix = 131; + int32 clearOneofIndex = 132; + int32 clearOptimizeFor = 133; + int32 clearOptions = 134; + int32 clearOutputType = 135; + int32 clearOverridableFeatures = 136; + int32 clearPackage = 137; + int32 clearPacked = 138; + int32 clearPhpClassPrefix = 139; + int32 clearPhpMetadataNamespace = 140; + int32 clearPhpNamespace = 141; + int32 clearPositiveIntValue = 142; + int32 clearProto3Optional = 143; + int32 clearPyGenericServices = 144; + int32 clearRepeated = 145; + int32 clearRepeatedFieldEncoding = 146; + int32 clearReserved = 147; + int32 clearRetention = 148; + int32 clearRubyPackage = 149; + int32 clearSemantic = 150; + int32 clearServerStreaming = 151; + int32 clearSourceCodeInfo = 152; + int32 clearSourceContext = 153; + int32 clearSourceFile = 154; + int32 clearStart = 155; + int32 clearStringValue = 156; + int32 clearSwiftPrefix = 157; + int32 clearSyntax = 158; + int32 clearTrailingComments = 159; + int32 clearType = 160; + int32 clearTypeName = 161; + int32 clearUnverifiedLazy = 162; + int32 clearUtf8Validation = 163; + int32 clearValue = 164; + int32 clearVerification = 165; + int32 clearWeak = 166; + int32 clientStreaming = 167; + int32 code = 168; + int32 codePoint = 169; + int32 codeUnits = 170; + int32 Collection = 171; + int32 com = 172; + int32 comma = 173; + int32 consumedBytes = 174; + int32 contentsOf = 175; + int32 copy = 176; + int32 count = 177; + int32 countVarintsInBuffer = 178; + int32 csharpNamespace = 179; + int32 ctype = 180; + int32 customCodable = 181; + int32 CustomDebugStringConvertible = 182; + int32 CustomStringConvertible = 183; + int32 d = 184; + int32 Data = 185; + int32 dataResult = 186; + int32 date = 187; + int32 daySec = 188; + int32 daysSinceEpoch = 189; + int32 debugDescription = 190; + int32 debugRedact = 191; + int32 declaration = 192; + int32 decoded = 193; + int32 decodedFromJSONNull = 194; + int32 decodeExtensionField = 195; + int32 decodeExtensionFieldsAsMessageSet = 196; + int32 decodeJSON = 197; + int32 decodeMapField = 198; + int32 decodeMessage = 199; + int32 decoder = 200; + int32 decodeRepeated = 201; + int32 decodeRepeatedBoolField = 202; + int32 decodeRepeatedBytesField = 203; + int32 decodeRepeatedDoubleField = 204; + int32 decodeRepeatedEnumField = 205; + int32 decodeRepeatedFixed32Field = 206; + int32 decodeRepeatedFixed64Field = 207; + int32 decodeRepeatedFloatField = 208; + int32 decodeRepeatedGroupField = 209; + int32 decodeRepeatedInt32Field = 210; + int32 decodeRepeatedInt64Field = 211; + int32 decodeRepeatedMessageField = 212; + int32 decodeRepeatedSFixed32Field = 213; + int32 decodeRepeatedSFixed64Field = 214; + int32 decodeRepeatedSInt32Field = 215; + int32 decodeRepeatedSInt64Field = 216; + int32 decodeRepeatedStringField = 217; + int32 decodeRepeatedUInt32Field = 218; + int32 decodeRepeatedUInt64Field = 219; + int32 decodeSingular = 220; + int32 decodeSingularBoolField = 221; + int32 decodeSingularBytesField = 222; + int32 decodeSingularDoubleField = 223; + int32 decodeSingularEnumField = 224; + int32 decodeSingularFixed32Field = 225; + int32 decodeSingularFixed64Field = 226; + int32 decodeSingularFloatField = 227; + int32 decodeSingularGroupField = 228; + int32 decodeSingularInt32Field = 229; + int32 decodeSingularInt64Field = 230; + int32 decodeSingularMessageField = 231; + int32 decodeSingularSFixed32Field = 232; + int32 decodeSingularSFixed64Field = 233; + int32 decodeSingularSInt32Field = 234; + int32 decodeSingularSInt64Field = 235; + int32 decodeSingularStringField = 236; + int32 decodeSingularUInt32Field = 237; + int32 decodeSingularUInt64Field = 238; + int32 decodeTextFormat = 239; + int32 defaultAnyTypeURLPrefix = 240; + int32 defaults = 241; + int32 defaultValue = 242; + int32 dependency = 243; + int32 deprecated = 244; + int32 deprecatedLegacyJsonFieldConflicts = 245; + int32 deprecationWarning = 246; + int32 description = 247; + int32 DescriptorProto = 248; + int32 Dictionary = 249; + int32 dictionaryLiteral = 250; + int32 digit = 251; + int32 digit0 = 252; + int32 digit1 = 253; + int32 digitCount = 254; + int32 digits = 255; + int32 digitValue = 256; + int32 discardableResult = 257; + int32 discardUnknownFields = 258; + int32 Double = 259; + int32 doubleValue = 260; + int32 Duration = 261; + int32 E = 262; + int32 edition = 263; + int32 EditionDefault = 264; + int32 editionDefaults = 265; + int32 editionDeprecated = 266; + int32 editionIntroduced = 267; + int32 editionRemoved = 268; + int32 Element = 269; + int32 elements = 270; + int32 emitExtensionFieldName = 271; + int32 emitFieldName = 272; + int32 emitFieldNumber = 273; + int32 Empty = 274; + int32 encodeAsBytes = 275; + int32 encoded = 276; + int32 encodedJSONString = 277; + int32 encodedSize = 278; + int32 encodeField = 279; + int32 encoder = 280; + int32 end = 281; + int32 endArray = 282; + int32 endMessageField = 283; + int32 endObject = 284; + int32 endRegularField = 285; + int32 enum = 286; + int32 EnumDescriptorProto = 287; + int32 EnumOptions = 288; + int32 EnumReservedRange = 289; + int32 enumType = 290; + int32 enumvalue = 291; + int32 EnumValueDescriptorProto = 292; + int32 EnumValueOptions = 293; + int32 Equatable = 294; + int32 Error = 295; + int32 ExpressibleByArrayLiteral = 296; + int32 ExpressibleByDictionaryLiteral = 297; + int32 ext = 298; + int32 extDecoder = 299; + int32 extendedGraphemeClusterLiteral = 300; + int32 ExtendedGraphemeClusterLiteralType = 301; + int32 extendee = 302; + int32 ExtensibleMessage = 303; + int32 extension = 304; + int32 ExtensionField = 305; + int32 extensionFieldNumber = 306; + int32 ExtensionFieldValueSet = 307; + int32 ExtensionMap = 308; + int32 extensionRange = 309; + int32 ExtensionRangeOptions = 310; + int32 extensions = 311; + int32 extras = 312; + int32 F = 313; + int32 false = 314; + int32 features = 315; + int32 FeatureSet = 316; + int32 FeatureSetDefaults = 317; + int32 FeatureSetEditionDefault = 318; + int32 featureSupport = 319; + int32 field = 320; + int32 fieldData = 321; + int32 FieldDescriptorProto = 322; + int32 FieldMask = 323; + int32 fieldName = 324; + int32 fieldNameCount = 325; + int32 fieldNum = 326; + int32 fieldNumber = 327; + int32 fieldNumberForProto = 328; + int32 FieldOptions = 329; + int32 fieldPresence = 330; + int32 fields = 331; + int32 fieldSize = 332; + int32 FieldTag = 333; + int32 fieldType = 334; + int32 file = 335; + int32 FileDescriptorProto = 336; + int32 FileDescriptorSet = 337; + int32 fileName = 338; + int32 FileOptions = 339; + int32 filter = 340; + int32 final = 341; + int32 finiteOnly = 342; + int32 first = 343; + int32 firstItem = 344; + int32 fixedFeatures = 345; + int32 Float = 346; + int32 floatLiteral = 347; + int32 FloatLiteralType = 348; + int32 FloatValue = 349; + int32 forMessageName = 350; + int32 formUnion = 351; + int32 forReadingFrom = 352; + int32 forTypeURL = 353; + int32 ForwardParser = 354; + int32 forWritingInto = 355; + int32 from = 356; + int32 fromAscii2 = 357; + int32 fromAscii4 = 358; + int32 fromByteOffset = 359; + int32 fromHexDigit = 360; + int32 fullName = 361; + int32 func = 362; + int32 function = 363; + int32 G = 364; + int32 GeneratedCodeInfo = 365; + int32 get = 366; + int32 getExtensionValue = 367; + int32 googleapis = 368; + int32 Google_Protobuf_Any = 369; + int32 Google_Protobuf_Api = 370; + int32 Google_Protobuf_BoolValue = 371; + int32 Google_Protobuf_BytesValue = 372; + int32 Google_Protobuf_DescriptorProto = 373; + int32 Google_Protobuf_DoubleValue = 374; + int32 Google_Protobuf_Duration = 375; + int32 Google_Protobuf_Edition = 376; + int32 Google_Protobuf_Empty = 377; + int32 Google_Protobuf_Enum = 378; + int32 Google_Protobuf_EnumDescriptorProto = 379; + int32 Google_Protobuf_EnumOptions = 380; + int32 Google_Protobuf_EnumValue = 381; + int32 Google_Protobuf_EnumValueDescriptorProto = 382; + int32 Google_Protobuf_EnumValueOptions = 383; + int32 Google_Protobuf_ExtensionRangeOptions = 384; + int32 Google_Protobuf_FeatureSet = 385; + int32 Google_Protobuf_FeatureSetDefaults = 386; + int32 Google_Protobuf_Field = 387; + int32 Google_Protobuf_FieldDescriptorProto = 388; + int32 Google_Protobuf_FieldMask = 389; + int32 Google_Protobuf_FieldOptions = 390; + int32 Google_Protobuf_FileDescriptorProto = 391; + int32 Google_Protobuf_FileDescriptorSet = 392; + int32 Google_Protobuf_FileOptions = 393; + int32 Google_Protobuf_FloatValue = 394; + int32 Google_Protobuf_GeneratedCodeInfo = 395; + int32 Google_Protobuf_Int32Value = 396; + int32 Google_Protobuf_Int64Value = 397; + int32 Google_Protobuf_ListValue = 398; + int32 Google_Protobuf_MessageOptions = 399; + int32 Google_Protobuf_Method = 400; + int32 Google_Protobuf_MethodDescriptorProto = 401; + int32 Google_Protobuf_MethodOptions = 402; + int32 Google_Protobuf_Mixin = 403; + int32 Google_Protobuf_NullValue = 404; + int32 Google_Protobuf_OneofDescriptorProto = 405; + int32 Google_Protobuf_OneofOptions = 406; + int32 Google_Protobuf_Option = 407; + int32 Google_Protobuf_ServiceDescriptorProto = 408; + int32 Google_Protobuf_ServiceOptions = 409; + int32 Google_Protobuf_SourceCodeInfo = 410; + int32 Google_Protobuf_SourceContext = 411; + int32 Google_Protobuf_StringValue = 412; + int32 Google_Protobuf_Struct = 413; + int32 Google_Protobuf_Syntax = 414; + int32 Google_Protobuf_Timestamp = 415; + int32 Google_Protobuf_Type = 416; + int32 Google_Protobuf_UInt32Value = 417; + int32 Google_Protobuf_UInt64Value = 418; + int32 Google_Protobuf_UninterpretedOption = 419; + int32 Google_Protobuf_Value = 420; + int32 goPackage = 421; + int32 group = 422; + int32 groupFieldNumberStack = 423; + int32 groupSize = 424; + int32 hadOneofValue = 425; + int32 handleConflictingOneOf = 426; + int32 hasAggregateValue = 427; + int32 hasAllowAlias = 428; + int32 hasBegin = 429; + int32 hasCcEnableArenas = 430; + int32 hasCcGenericServices = 431; + int32 hasClientStreaming = 432; + int32 hasCsharpNamespace = 433; + int32 hasCtype = 434; + int32 hasDebugRedact = 435; + int32 hasDefaultValue = 436; + int32 hasDeprecated = 437; + int32 hasDeprecatedLegacyJsonFieldConflicts = 438; + int32 hasDeprecationWarning = 439; + int32 hasDoubleValue = 440; + int32 hasEdition = 441; + int32 hasEditionDeprecated = 442; + int32 hasEditionIntroduced = 443; + int32 hasEditionRemoved = 444; + int32 hasEnd = 445; + int32 hasEnumType = 446; + int32 hasExtendee = 447; + int32 hasExtensionValue = 448; + int32 hasFeatures = 449; + int32 hasFeatureSupport = 450; + int32 hasFieldPresence = 451; + int32 hasFixedFeatures = 452; + int32 hasFullName = 453; + int32 hasGoPackage = 454; + int32 hash = 455; + int32 Hashable = 456; + int32 hasher = 457; + int32 HashVisitor = 458; + int32 hasIdempotencyLevel = 459; + int32 hasIdentifierValue = 460; + int32 hasInputType = 461; + int32 hasIsExtension = 462; + int32 hasJavaGenerateEqualsAndHash = 463; + int32 hasJavaGenericServices = 464; + int32 hasJavaMultipleFiles = 465; + int32 hasJavaOuterClassname = 466; + int32 hasJavaPackage = 467; + int32 hasJavaStringCheckUtf8 = 468; + int32 hasJsonFormat = 469; + int32 hasJsonName = 470; + int32 hasJstype = 471; + int32 hasLabel = 472; + int32 hasLazy = 473; + int32 hasLeadingComments = 474; + int32 hasMapEntry = 475; + int32 hasMaximumEdition = 476; + int32 hasMessageEncoding = 477; + int32 hasMessageSetWireFormat = 478; + int32 hasMinimumEdition = 479; + int32 hasName = 480; + int32 hasNamePart = 481; + int32 hasNegativeIntValue = 482; + int32 hasNoStandardDescriptorAccessor = 483; + int32 hasNumber = 484; + int32 hasObjcClassPrefix = 485; + int32 hasOneofIndex = 486; + int32 hasOptimizeFor = 487; + int32 hasOptions = 488; + int32 hasOutputType = 489; + int32 hasOverridableFeatures = 490; + int32 hasPackage = 491; + int32 hasPacked = 492; + int32 hasPhpClassPrefix = 493; + int32 hasPhpMetadataNamespace = 494; + int32 hasPhpNamespace = 495; + int32 hasPositiveIntValue = 496; + int32 hasProto3Optional = 497; + int32 hasPyGenericServices = 498; + int32 hasRepeated = 499; + int32 hasRepeatedFieldEncoding = 500; + int32 hasReserved = 501; + int32 hasRetention = 502; + int32 hasRubyPackage = 503; + int32 hasSemantic = 504; + int32 hasServerStreaming = 505; + int32 hasSourceCodeInfo = 506; + int32 hasSourceContext = 507; + int32 hasSourceFile = 508; + int32 hasStart = 509; + int32 hasStringValue = 510; + int32 hasSwiftPrefix = 511; + int32 hasSyntax = 512; + int32 hasTrailingComments = 513; + int32 hasType = 514; + int32 hasTypeName = 515; + int32 hasUnverifiedLazy = 516; + int32 hasUtf8Validation = 517; + int32 hasValue = 518; + int32 hasVerification = 519; + int32 hasWeak = 520; + int32 hour = 521; + int32 i = 522; + int32 idempotencyLevel = 523; + int32 identifierValue = 524; + int32 if = 525; + int32 ignoreUnknownExtensionFields = 526; + int32 ignoreUnknownFields = 527; + int32 index = 528; + int32 init = 529; + int32 inout = 530; + int32 inputType = 531; + int32 insert = 532; + int32 Int = 533; + int32 Int32 = 534; + int32 Int32Value = 535; + int32 Int64 = 536; + int32 Int64Value = 537; + int32 Int8 = 538; + int32 integerLiteral = 539; + int32 IntegerLiteralType = 540; + int32 intern = 541; + int32 Internal = 542; + int32 InternalState = 543; + int32 into = 544; + int32 ints = 545; + int32 isA = 546; + int32 isEqual = 547; + int32 isEqualTo = 548; + int32 isExtension = 549; + int32 isInitialized = 550; + int32 isNegative = 551; + int32 itemTagsEncodedSize = 552; + int32 iterator = 553; + int32 javaGenerateEqualsAndHash = 554; + int32 javaGenericServices = 555; + int32 javaMultipleFiles = 556; + int32 javaOuterClassname = 557; + int32 javaPackage = 558; + int32 javaStringCheckUtf8 = 559; + int32 JSONDecoder = 560; + int32 JSONDecodingError = 561; + int32 JSONDecodingOptions = 562; + int32 jsonEncoder = 563; + int32 JSONEncoding = 564; + int32 JSONEncodingError = 565; + int32 JSONEncodingOptions = 566; + int32 JSONEncodingVisitor = 567; + int32 jsonFormat = 568; + int32 JSONMapEncodingVisitor = 569; + int32 jsonName = 570; + int32 jsonPath = 571; + int32 jsonPaths = 572; + int32 JSONScanner = 573; + int32 jsonString = 574; + int32 jsonText = 575; + int32 jsonUTF8Bytes = 576; + int32 jsonUTF8Data = 577; + int32 jstype = 578; + int32 k = 579; + int32 kChunkSize = 580; + int32 Key = 581; + int32 keyField = 582; + int32 keyFieldOpt = 583; + int32 KeyType = 584; + int32 kind = 585; + int32 l = 586; + int32 label = 587; + int32 lazy = 588; + int32 leadingComments = 589; + int32 leadingDetachedComments = 590; + int32 length = 591; + int32 lessThan = 592; + int32 let = 593; + int32 lhs = 594; + int32 line = 595; + int32 list = 596; + int32 listOfMessages = 597; + int32 listValue = 598; + int32 littleEndian = 599; + int32 load = 600; + int32 localHasher = 601; + int32 location = 602; + int32 M = 603; + int32 major = 604; + int32 makeAsyncIterator = 605; + int32 makeIterator = 606; + int32 malformedLength = 607; + int32 mapEntry = 608; + int32 MapKeyType = 609; + int32 mapToMessages = 610; + int32 MapValueType = 611; + int32 mapVisitor = 612; + int32 maximumEdition = 613; + int32 mdayStart = 614; + int32 merge = 615; + int32 message = 616; + int32 messageDepthLimit = 617; + int32 messageEncoding = 618; + int32 MessageExtension = 619; + int32 MessageImplementationBase = 620; + int32 MessageOptions = 621; + int32 MessageSet = 622; + int32 messageSetWireFormat = 623; + int32 messageSize = 624; + int32 messageType = 625; + int32 Method = 626; + int32 MethodDescriptorProto = 627; + int32 MethodOptions = 628; + int32 methods = 629; + int32 min = 630; + int32 minimumEdition = 631; + int32 minor = 632; + int32 Mixin = 633; + int32 mixins = 634; + int32 modifier = 635; + int32 modify = 636; + int32 month = 637; + int32 msgExtension = 638; + int32 mutating = 639; + int32 n = 640; + int32 name = 641; + int32 NameDescription = 642; + int32 NameMap = 643; + int32 NamePart = 644; + int32 names = 645; + int32 nanos = 646; + int32 negativeIntValue = 647; + int32 nestedType = 648; + int32 newL = 649; + int32 newList = 650; + int32 newValue = 651; + int32 next = 652; + int32 nextByte = 653; + int32 nextFieldNumber = 654; + int32 nextVarInt = 655; + int32 nil = 656; + int32 nilLiteral = 657; + int32 noBytesAvailable = 658; + int32 noStandardDescriptorAccessor = 659; + int32 nullValue = 660; + int32 number = 661; + int32 numberValue = 662; + int32 objcClassPrefix = 663; + int32 of = 664; + int32 oneofDecl = 665; + int32 OneofDescriptorProto = 666; + int32 oneofIndex = 667; + int32 OneofOptions = 668; + int32 oneofs = 669; + int32 OneOf_Kind = 670; + int32 optimizeFor = 671; + int32 OptimizeMode = 672; + int32 Option = 673; + int32 OptionalEnumExtensionField = 674; + int32 OptionalExtensionField = 675; + int32 OptionalGroupExtensionField = 676; + int32 OptionalMessageExtensionField = 677; + int32 OptionRetention = 678; + int32 options = 679; + int32 OptionTargetType = 680; + int32 other = 681; + int32 others = 682; + int32 out = 683; + int32 outputType = 684; + int32 overridableFeatures = 685; + int32 p = 686; + int32 package = 687; + int32 packed = 688; + int32 PackedEnumExtensionField = 689; + int32 PackedExtensionField = 690; + int32 padding = 691; + int32 parent = 692; + int32 parse = 693; + int32 path = 694; + int32 paths = 695; + int32 payload = 696; + int32 payloadSize = 697; + int32 phpClassPrefix = 698; + int32 phpMetadataNamespace = 699; + int32 phpNamespace = 700; + int32 pos = 701; + int32 positiveIntValue = 702; + int32 prefix = 703; + int32 preserveProtoFieldNames = 704; + int32 preTraverse = 705; + int32 printUnknownFields = 706; + int32 proto2 = 707; + int32 proto3DefaultValue = 708; + int32 proto3Optional = 709; + int32 ProtobufAPIVersionCheck = 710; + int32 ProtobufAPIVersion_3 = 711; + int32 ProtobufBool = 712; + int32 ProtobufBytes = 713; + int32 ProtobufDouble = 714; + int32 ProtobufEnumMap = 715; + int32 protobufExtension = 716; + int32 ProtobufFixed32 = 717; + int32 ProtobufFixed64 = 718; + int32 ProtobufFloat = 719; + int32 ProtobufInt32 = 720; + int32 ProtobufInt64 = 721; + int32 ProtobufMap = 722; + int32 ProtobufMessageMap = 723; + int32 ProtobufSFixed32 = 724; + int32 ProtobufSFixed64 = 725; + int32 ProtobufSInt32 = 726; + int32 ProtobufSInt64 = 727; + int32 ProtobufString = 728; + int32 ProtobufUInt32 = 729; + int32 ProtobufUInt64 = 730; + int32 protobuf_extensionFieldValues = 731; + int32 protobuf_fieldNumber = 732; + int32 protobuf_generated_isEqualTo = 733; + int32 protobuf_nameMap = 734; + int32 protobuf_newField = 735; + int32 protobuf_package = 736; + int32 protocol = 737; + int32 protoFieldName = 738; + int32 protoMessageName = 739; + int32 ProtoNameProviding = 740; + int32 protoPaths = 741; + int32 public = 742; + int32 publicDependency = 743; + int32 putBoolValue = 744; + int32 putBytesValue = 745; + int32 putDoubleValue = 746; + int32 putEnumValue = 747; + int32 putFixedUInt32 = 748; + int32 putFixedUInt64 = 749; + int32 putFloatValue = 750; + int32 putInt64 = 751; + int32 putStringValue = 752; + int32 putUInt64 = 753; + int32 putUInt64Hex = 754; + int32 putVarInt = 755; + int32 putZigZagVarInt = 756; + int32 pyGenericServices = 757; + int32 R = 758; + int32 rawChars = 759; + int32 RawRepresentable = 760; + int32 RawValue = 761; + int32 read4HexDigits = 762; + int32 readBytes = 763; + int32 register = 764; + int32 repeated = 765; + int32 RepeatedEnumExtensionField = 766; + int32 RepeatedExtensionField = 767; + int32 repeatedFieldEncoding = 768; + int32 RepeatedGroupExtensionField = 769; + int32 RepeatedMessageExtensionField = 770; + int32 repeating = 771; + int32 requestStreaming = 772; + int32 requestTypeURL = 773; + int32 requiredSize = 774; + int32 responseStreaming = 775; + int32 responseTypeURL = 776; + int32 result = 777; + int32 retention = 778; + int32 rethrows = 779; + int32 return = 780; + int32 ReturnType = 781; + int32 revision = 782; + int32 rhs = 783; + int32 root = 784; + int32 rubyPackage = 785; + int32 s = 786; + int32 sawBackslash = 787; + int32 sawSection4Characters = 788; + int32 sawSection5Characters = 789; + int32 scan = 790; + int32 scanner = 791; + int32 seconds = 792; + int32 self = 793; + int32 semantic = 794; + int32 Sendable = 795; + int32 separator = 796; + int32 serialize = 797; + int32 serializedBytes = 798; + int32 serializedData = 799; + int32 serializedSize = 800; + int32 serverStreaming = 801; + int32 service = 802; + int32 ServiceDescriptorProto = 803; + int32 ServiceOptions = 804; + int32 set = 805; + int32 setExtensionValue = 806; + int32 shift = 807; + int32 SimpleExtensionMap = 808; + int32 size = 809; + int32 sizer = 810; + int32 source = 811; + int32 sourceCodeInfo = 812; + int32 sourceContext = 813; + int32 sourceEncoding = 814; + int32 sourceFile = 815; + int32 SourceLocation = 816; + int32 span = 817; + int32 split = 818; + int32 start = 819; + int32 startArray = 820; + int32 startArrayObject = 821; + int32 startField = 822; + int32 startIndex = 823; + int32 startMessageField = 824; + int32 startObject = 825; + int32 startRegularField = 826; + int32 state = 827; + int32 static = 828; + int32 StaticString = 829; + int32 storage = 830; + int32 String = 831; + int32 stringLiteral = 832; + int32 StringLiteralType = 833; + int32 stringResult = 834; + int32 stringValue = 835; + int32 struct = 836; + int32 structValue = 837; + int32 subDecoder = 838; + int32 subscript = 839; + int32 subVisitor = 840; + int32 Swift = 841; + int32 swiftPrefix = 842; + int32 SwiftProtobufContiguousBytes = 843; + int32 SwiftProtobufError = 844; + int32 syntax = 845; + int32 T = 846; + int32 tag = 847; + int32 targets = 848; + int32 terminator = 849; + int32 testDecoder = 850; + int32 text = 851; + int32 textDecoder = 852; + int32 TextFormatDecoder = 853; + int32 TextFormatDecodingError = 854; + int32 TextFormatDecodingOptions = 855; + int32 TextFormatEncodingOptions = 856; + int32 TextFormatEncodingVisitor = 857; + int32 textFormatString = 858; + int32 throwOrIgnore = 859; + int32 throws = 860; + int32 timeInterval = 861; + int32 timeIntervalSince1970 = 862; + int32 timeIntervalSinceReferenceDate = 863; + int32 Timestamp = 864; + int32 tooLarge = 865; + int32 total = 866; + int32 totalArrayDepth = 867; + int32 totalSize = 868; + int32 trailingComments = 869; + int32 traverse = 870; + int32 true = 871; + int32 try = 872; + int32 type = 873; + int32 typealias = 874; + int32 TypeEnum = 875; + int32 typeName = 876; + int32 typePrefix = 877; + int32 typeStart = 878; + int32 typeUnknown = 879; + int32 typeURL = 880; + int32 UInt32 = 881; + int32 UInt32Value = 882; + int32 UInt64 = 883; + int32 UInt64Value = 884; + int32 UInt8 = 885; + int32 unchecked = 886; + int32 unicodeScalarLiteral = 887; + int32 UnicodeScalarLiteralType = 888; + int32 unicodeScalars = 889; + int32 UnicodeScalarView = 890; + int32 uninterpretedOption = 891; + int32 union = 892; + int32 uniqueStorage = 893; + int32 unknown = 894; + int32 unknownFields = 895; + int32 UnknownStorage = 896; + int32 unpackTo = 897; + int32 unregisteredTypeURL = 898; + int32 UnsafeBufferPointer = 899; + int32 UnsafeMutablePointer = 900; + int32 UnsafeMutableRawBufferPointer = 901; + int32 UnsafeRawBufferPointer = 902; + int32 UnsafeRawPointer = 903; + int32 unverifiedLazy = 904; + int32 updatedOptions = 905; + int32 url = 906; + int32 useDeterministicOrdering = 907; + int32 utf8 = 908; + int32 utf8Ptr = 909; + int32 utf8ToDouble = 910; + int32 utf8Validation = 911; + int32 UTF8View = 912; + int32 v = 913; + int32 value = 914; + int32 valueField = 915; + int32 values = 916; + int32 ValueType = 917; + int32 var = 918; + int32 verification = 919; + int32 VerificationState = 920; + int32 Version = 921; + int32 versionString = 922; + int32 visitExtensionFields = 923; + int32 visitExtensionFieldsAsMessageSet = 924; + int32 visitMapField = 925; + int32 visitor = 926; + int32 visitPacked = 927; + int32 visitPackedBoolField = 928; + int32 visitPackedDoubleField = 929; + int32 visitPackedEnumField = 930; + int32 visitPackedFixed32Field = 931; + int32 visitPackedFixed64Field = 932; + int32 visitPackedFloatField = 933; + int32 visitPackedInt32Field = 934; + int32 visitPackedInt64Field = 935; + int32 visitPackedSFixed32Field = 936; + int32 visitPackedSFixed64Field = 937; + int32 visitPackedSInt32Field = 938; + int32 visitPackedSInt64Field = 939; + int32 visitPackedUInt32Field = 940; + int32 visitPackedUInt64Field = 941; + int32 visitRepeated = 942; + int32 visitRepeatedBoolField = 943; + int32 visitRepeatedBytesField = 944; + int32 visitRepeatedDoubleField = 945; + int32 visitRepeatedEnumField = 946; + int32 visitRepeatedFixed32Field = 947; + int32 visitRepeatedFixed64Field = 948; + int32 visitRepeatedFloatField = 949; + int32 visitRepeatedGroupField = 950; + int32 visitRepeatedInt32Field = 951; + int32 visitRepeatedInt64Field = 952; + int32 visitRepeatedMessageField = 953; + int32 visitRepeatedSFixed32Field = 954; + int32 visitRepeatedSFixed64Field = 955; + int32 visitRepeatedSInt32Field = 956; + int32 visitRepeatedSInt64Field = 957; + int32 visitRepeatedStringField = 958; + int32 visitRepeatedUInt32Field = 959; + int32 visitRepeatedUInt64Field = 960; + int32 visitSingular = 961; + int32 visitSingularBoolField = 962; + int32 visitSingularBytesField = 963; + int32 visitSingularDoubleField = 964; + int32 visitSingularEnumField = 965; + int32 visitSingularFixed32Field = 966; + int32 visitSingularFixed64Field = 967; + int32 visitSingularFloatField = 968; + int32 visitSingularGroupField = 969; + int32 visitSingularInt32Field = 970; + int32 visitSingularInt64Field = 971; + int32 visitSingularMessageField = 972; + int32 visitSingularSFixed32Field = 973; + int32 visitSingularSFixed64Field = 974; + int32 visitSingularSInt32Field = 975; + int32 visitSingularSInt64Field = 976; + int32 visitSingularStringField = 977; + int32 visitSingularUInt32Field = 978; + int32 visitSingularUInt64Field = 979; + int32 visitUnknown = 980; + int32 wasDecoded = 981; + int32 weak = 982; + int32 weakDependency = 983; + int32 where = 984; + int32 wireFormat = 985; + int32 with = 986; + int32 withUnsafeBytes = 987; + int32 withUnsafeMutableBytes = 988; + int32 work = 989; + int32 Wrapped = 990; + int32 WrappedType = 991; + int32 wrappedValue = 992; + int32 written = 993; + int32 yday = 994; } diff --git a/Protos/SwiftProtobufTests/generated_swift_names_messages.proto b/Protos/SwiftProtobufTests/generated_swift_names_messages.proto index 64738c188..006e911cd 100644 --- a/Protos/SwiftProtobufTests/generated_swift_names_messages.proto +++ b/Protos/SwiftProtobufTests/generated_swift_names_messages.proto @@ -16,7 +16,6 @@ message GeneratedSwiftReservedMessages { message AnyMessageExtension { int32 AnyMessageExtension = 1; } message AnyMessageStorage { int32 AnyMessageStorage = 1; } message anyTypeURLNotRegistered { int32 anyTypeURLNotRegistered = 1; } - message AnyUnpack { int32 AnyUnpack = 1; } message AnyUnpackError { int32 AnyUnpackError = 1; } message Api { int32 Api = 1; } message appended { int32 appended = 1; } @@ -178,7 +177,6 @@ message GeneratedSwiftReservedMessages { message Collection { int32 Collection = 1; } message com { int32 com = 1; } message comma { int32 comma = 1; } - message conflictingOneOf { int32 conflictingOneOf = 1; } message consumedBytes { int32 consumedBytes = 1; } message contentsOf { int32 contentsOf = 1; } message copy { int32 copy = 1; } @@ -267,7 +265,6 @@ message GeneratedSwiftReservedMessages { message Double { int32 Double = 1; } message doubleValue { int32 doubleValue = 1; } message Duration { int32 Duration = 1; } - message durationRange { int32 durationRange = 1; } message E { int32 E = 1; } message edition { int32 edition = 1; } message EditionDefault { int32 EditionDefault = 1; } @@ -320,7 +317,6 @@ message GeneratedSwiftReservedMessages { message extensions { int32 extensions = 1; } message extras { int32 extras = 1; } message F { int32 F = 1; } - message failure { int32 failure = 1; } message false { int32 false = 1; } message features { int32 features = 1; } message FeatureSet { int32 FeatureSet = 1; } @@ -331,7 +327,6 @@ message GeneratedSwiftReservedMessages { message fieldData { int32 fieldData = 1; } message FieldDescriptorProto { int32 FieldDescriptorProto = 1; } message FieldMask { int32 FieldMask = 1; } - message fieldMaskConversion { int32 fieldMaskConversion = 1; } message fieldName { int32 fieldName = 1; } message fieldNameCount { int32 fieldNameCount = 1; } message fieldNum { int32 fieldNum = 1; } @@ -536,7 +531,6 @@ message GeneratedSwiftReservedMessages { message if { int32 if = 1; } message ignoreUnknownExtensionFields { int32 ignoreUnknownExtensionFields = 1; } message ignoreUnknownFields { int32 ignoreUnknownFields = 1; } - message illegalNull { int32 illegalNull = 1; } message index { int32 index = 1; } message init { int32 init = 1; } message inout { int32 inout = 1; } @@ -552,13 +546,9 @@ message GeneratedSwiftReservedMessages { message IntegerLiteralType { int32 IntegerLiteralType = 1; } message intern { int32 intern = 1; } message Internal { int32 Internal = 1; } - message internalError { int32 internalError = 1; } - message internalExtensionError { int32 internalExtensionError = 1; } message InternalState { int32 InternalState = 1; } message into { int32 into = 1; } message ints { int32 ints = 1; } - message invalidArgument { int32 invalidArgument = 1; } - message invalidUTF8 { int32 invalidUTF8 = 1; } message isA { int32 isA = 1; } message isEqual { int32 isEqual = 1; } message isEqualTo { int32 isEqualTo = 1; } @@ -574,7 +564,6 @@ message GeneratedSwiftReservedMessages { message javaPackage { int32 javaPackage = 1; } message javaStringCheckUtf8 { int32 javaStringCheckUtf8 = 1; } message JSONDecoder { int32 JSONDecoder = 1; } - message JSONDecoding { int32 JSONDecoding = 1; } message JSONDecodingError { int32 JSONDecodingError = 1; } message JSONDecodingOptions { int32 JSONDecodingOptions = 1; } message jsonEncoder { int32 jsonEncoder = 1; } @@ -605,7 +594,6 @@ message GeneratedSwiftReservedMessages { message lazy { int32 lazy = 1; } message leadingComments { int32 leadingComments = 1; } message leadingDetachedComments { int32 leadingDetachedComments = 1; } - message leadingZero { int32 leadingZero = 1; } message length { int32 length = 1; } message lessThan { int32 lessThan = 1; } message let { int32 let = 1; } @@ -622,18 +610,7 @@ message GeneratedSwiftReservedMessages { message major { int32 major = 1; } message makeAsyncIterator { int32 makeAsyncIterator = 1; } message makeIterator { int32 makeIterator = 1; } - message malformedAnyField { int32 malformedAnyField = 1; } - message malformedBool { int32 malformedBool = 1; } - message malformedDuration { int32 malformedDuration = 1; } - message malformedFieldMask { int32 malformedFieldMask = 1; } message malformedLength { int32 malformedLength = 1; } - message malformedMap { int32 malformedMap = 1; } - message malformedNumber { int32 malformedNumber = 1; } - message malformedProtobuf { int32 malformedProtobuf = 1; } - message malformedString { int32 malformedString = 1; } - message malformedText { int32 malformedText = 1; } - message malformedTimestamp { int32 malformedTimestamp = 1; } - message malformedWellKnownTypeJSON { int32 malformedWellKnownTypeJSON = 1; } message mapEntry { int32 mapEntry = 1; } message MapKeyType { int32 MapKeyType = 1; } message mapToMessages { int32 mapToMessages = 1; } @@ -659,9 +636,6 @@ message GeneratedSwiftReservedMessages { message min { int32 min = 1; } message minimumEdition { int32 minimumEdition = 1; } message minor { int32 minor = 1; } - message missingFieldNames { int32 missingFieldNames = 1; } - message missingRequiredFields { int32 missingRequiredFields = 1; } - message missingValue { int32 missingValue = 1; } message Mixin { int32 Mixin = 1; } message mixins { int32 mixins = 1; } message modifier { int32 modifier = 1; } @@ -691,7 +665,6 @@ message GeneratedSwiftReservedMessages { message noStandardDescriptorAccessor { int32 noStandardDescriptorAccessor = 1; } message nullValue { int32 nullValue = 1; } message number { int32 number = 1; } - message numberRange { int32 numberRange = 1; } message numberValue { int32 numberValue = 1; } message objcClassPrefix { int32 objcClassPrefix = 1; } message of { int32 of = 1; } @@ -822,7 +795,6 @@ message GeneratedSwiftReservedMessages { message sawSection5Characters { int32 sawSection5Characters = 1; } message scan { int32 scan = 1; } message scanner { int32 scanner = 1; } - message schemaMismatch { int32 schemaMismatch = 1; } message seconds { int32 seconds = 1; } message self { int32 self = 1; } message semantic { int32 semantic = 1; } @@ -885,8 +857,7 @@ message GeneratedSwiftReservedMessages { message text { int32 text = 1; } message textDecoder { int32 textDecoder = 1; } message TextFormatDecoder { int32 TextFormatDecoder = 1; } - message TextFormatDecoding { int32 TextFormatDecoding = 1; } - message textFormatDecodingError { int32 textFormatDecodingError = 1; } + message TextFormatDecodingError { int32 TextFormatDecodingError = 1; } message TextFormatDecodingOptions { int32 TextFormatDecodingOptions = 1; } message TextFormatEncodingOptions { int32 TextFormatEncodingOptions = 1; } message TextFormatEncodingVisitor { int32 TextFormatEncodingVisitor = 1; } @@ -897,21 +868,17 @@ message GeneratedSwiftReservedMessages { message timeIntervalSince1970 { int32 timeIntervalSince1970 = 1; } message timeIntervalSinceReferenceDate { int32 timeIntervalSinceReferenceDate = 1; } message Timestamp { int32 Timestamp = 1; } - message timestampRange { int32 timestampRange = 1; } message tooLarge { int32 tooLarge = 1; } message total { int32 total = 1; } message totalArrayDepth { int32 totalArrayDepth = 1; } message totalSize { int32 totalSize = 1; } message trailingComments { int32 trailingComments = 1; } - message trailingGarbage { int32 trailingGarbage = 1; } message traverse { int32 traverse = 1; } message true { int32 true = 1; } - message truncated { int32 truncated = 1; } message try { int32 try = 1; } message type { int32 type = 1; } message typealias { int32 typealias = 1; } message TypeEnum { int32 TypeEnum = 1; } - message typeMismatch { int32 typeMismatch = 1; } message typeName { int32 typeName = 1; } message typePrefix { int32 typePrefix = 1; } message typeStart { int32 typeStart = 1; } @@ -931,14 +898,9 @@ message GeneratedSwiftReservedMessages { message union { int32 union = 1; } message uniqueStorage { int32 uniqueStorage = 1; } message unknown { int32 unknown = 1; } - message unknownField { int32 unknownField = 1; } - message unknownFieldName { int32 unknownFieldName = 1; } message unknownFields { int32 unknownFields = 1; } message UnknownStorage { int32 UnknownStorage = 1; } - message unknownStreamError { int32 unknownStreamError = 1; } message unpackTo { int32 unpackTo = 1; } - message unquotedMapKey { int32 unquotedMapKey = 1; } - message unrecognizedEnumValue { int32 unrecognizedEnumValue = 1; } message unregisteredTypeURL { int32 unregisteredTypeURL = 1; } message UnsafeBufferPointer { int32 UnsafeBufferPointer = 1; } message UnsafeMutablePointer { int32 UnsafeMutablePointer = 1; } @@ -957,7 +919,6 @@ message GeneratedSwiftReservedMessages { message v { int32 v = 1; } message value { int32 value = 1; } message valueField { int32 valueField = 1; } - message valueNumberNotFinite { int32 valueNumberNotFinite = 1; } message values { int32 values = 1; } message ValueType { int32 ValueType = 1; } message var { int32 var = 1; } diff --git a/Tests/SwiftProtobufTests/Test_Required.swift b/Tests/SwiftProtobufTests/Test_Required.swift index a82706562..53629d1ab 100644 --- a/Tests/SwiftProtobufTests/Test_Required.swift +++ b/Tests/SwiftProtobufTests/Test_Required.swift @@ -256,7 +256,6 @@ final class Test_Required: XCTestCase, PBTestHelpers { XCTFail("Swift encode should have failed: \(message)", file: file, line: line) } catch BinaryEncodingError.missingRequiredFields { // Correct error! - print("sdfdsf") } catch let e { XCTFail("Encoding got wrong error: \(e) for \(message)", file: file, line: line) } diff --git a/Tests/SwiftProtobufTests/generated_swift_names_enum_cases.pb.swift b/Tests/SwiftProtobufTests/generated_swift_names_enum_cases.pb.swift index 2ffa3db86..a05747e62 100644 --- a/Tests/SwiftProtobufTests/generated_swift_names_enum_cases.pb.swift +++ b/Tests/SwiftProtobufTests/generated_swift_names_enum_cases.pb.swift @@ -38,972 +38,989 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, case anyExtensionField // = 9 case anyMessageExtension // = 10 case anyMessageStorage // = 11 - case anyUnpackError // = 12 - case api // = 13 - case appended // = 14 - case appendUintHex // = 15 - case appendUnknown // = 16 - case areAllInitialized // = 17 - case array // = 18 - case arrayDepth // = 19 - case arrayLiteral // = 20 - case arraySeparator // = 21 - case `as` // = 22 - case asciiOpenCurlyBracket // = 23 - case asciiZero // = 24 - case async // = 25 - case asyncIterator // = 26 - case asyncIteratorProtocol // = 27 - case asyncMessageSequence // = 28 - case available // = 29 - case b // = 30 - case base // = 31 - case base64Values // = 32 - case baseAddress // = 33 - case baseType // = 34 - case begin // = 35 - case binary // = 36 - case binaryDecoder // = 37 - case binaryDecodingError // = 38 - case binaryDecodingOptions // = 39 - case binaryDelimited // = 40 - case binaryEncoder // = 41 - case binaryEncodingError // = 42 - case binaryEncodingMessageSetSizeVisitor // = 43 - case binaryEncodingMessageSetVisitor // = 44 - case binaryEncodingOptions // = 45 - case binaryEncodingSizeVisitor // = 46 - case binaryEncodingVisitor // = 47 - case binaryOptions // = 48 - case binaryProtobufDelimitedMessages // = 49 - case bitPattern // = 50 - case body // = 51 - case bool // = 52 - case booleanLiteral // = 53 - case booleanLiteralType // = 54 - case boolValue // = 55 - case buffer // = 56 - case bytes // = 57 - case bytesInGroup // = 58 - case bytesNeeded // = 59 - case bytesRead // = 60 - case bytesValue // = 61 - case c // = 62 - case capitalizeNext // = 63 - case cardinality // = 64 - case caseIterable // = 65 - case ccEnableArenas // = 66 - case ccGenericServices // = 67 - case character // = 68 - case chars // = 69 - case chunk // = 70 - case `class` // = 71 - case clearAggregateValue // = 72 - case clearAllowAlias // = 73 - case clearBegin // = 74 - case clearCcEnableArenas // = 75 - case clearCcGenericServices // = 76 - case clearClientStreaming // = 77 - case clearCsharpNamespace // = 78 - case clearCtype // = 79 - case clearDebugRedact // = 80 - case clearDefaultValue // = 81 - case clearDeprecated // = 82 - case clearDeprecatedLegacyJsonFieldConflicts // = 83 - case clearDeprecationWarning // = 84 - case clearDoubleValue // = 85 - case clearEdition // = 86 - case clearEditionDeprecated // = 87 - case clearEditionIntroduced // = 88 - case clearEditionRemoved // = 89 - case clearEnd // = 90 - case clearEnumType // = 91 - case clearExtendee // = 92 - case clearExtensionValue // = 93 - case clearFeatures // = 94 - case clearFeatureSupport // = 95 - case clearFieldPresence // = 96 - case clearFixedFeatures // = 97 - case clearFullName // = 98 - case clearGoPackage // = 99 - case clearIdempotencyLevel // = 100 - case clearIdentifierValue // = 101 - case clearInputType // = 102 - case clearIsExtension // = 103 - case clearJavaGenerateEqualsAndHash // = 104 - case clearJavaGenericServices // = 105 - case clearJavaMultipleFiles // = 106 - case clearJavaOuterClassname // = 107 - case clearJavaPackage // = 108 - case clearJavaStringCheckUtf8 // = 109 - case clearJsonFormat // = 110 - case clearJsonName // = 111 - case clearJstype // = 112 - case clearLabel // = 113 - case clearLazy // = 114 - case clearLeadingComments // = 115 - case clearMapEntry // = 116 - case clearMaximumEdition // = 117 - case clearMessageEncoding // = 118 - case clearMessageSetWireFormat // = 119 - case clearMinimumEdition // = 120 - case clearName // = 121 - case clearNamePart // = 122 - case clearNegativeIntValue // = 123 - case clearNoStandardDescriptorAccessor // = 124 - case clearNumber // = 125 - case clearObjcClassPrefix // = 126 - case clearOneofIndex // = 127 - case clearOptimizeFor // = 128 - case clearOptions // = 129 - case clearOutputType // = 130 - case clearOverridableFeatures // = 131 - case clearPackage // = 132 - case clearPacked // = 133 - case clearPhpClassPrefix // = 134 - case clearPhpMetadataNamespace // = 135 - case clearPhpNamespace // = 136 - case clearPositiveIntValue // = 137 - case clearProto3Optional // = 138 - case clearPyGenericServices // = 139 - case clearRepeated // = 140 - case clearRepeatedFieldEncoding // = 141 - case clearReserved // = 142 - case clearRetention // = 143 - case clearRubyPackage // = 144 - case clearSemantic // = 145 - case clearServerStreaming // = 146 - case clearSourceCodeInfo // = 147 - case clearSourceContext // = 148 - case clearSourceFile // = 149 - case clearStart // = 150 - case clearStringValue // = 151 - case clearSwiftPrefix // = 152 - case clearSyntax // = 153 - case clearTrailingComments // = 154 - case clearType // = 155 - case clearTypeName // = 156 - case clearUnverifiedLazy // = 157 - case clearUtf8Validation // = 158 - case clearValue // = 159 - case clearVerification // = 160 - case clearWeak // = 161 - case clientStreaming // = 162 - case codePoint // = 163 - case codeUnits // = 164 - case collection // = 165 - case com // = 166 - case comma // = 167 - case consumedBytes // = 168 - case contentsOf // = 169 - case count // = 170 - case countVarintsInBuffer // = 171 - case csharpNamespace // = 172 - case ctype // = 173 - case customCodable // = 174 - case customDebugStringConvertible // = 175 - case d // = 176 - case data // = 177 - case dataResult // = 178 - case date // = 179 - case daySec // = 180 - case daysSinceEpoch // = 181 - case debugDescription_ // = 182 - case debugRedact // = 183 - case declaration // = 184 - case decoded // = 185 - case decodedFromJsonnull // = 186 - case decodeExtensionField // = 187 - case decodeExtensionFieldsAsMessageSet // = 188 - case decodeJson // = 189 - case decodeMapField // = 190 - case decodeMessage // = 191 - case decoder // = 192 - case decodeRepeated // = 193 - case decodeRepeatedBoolField // = 194 - case decodeRepeatedBytesField // = 195 - case decodeRepeatedDoubleField // = 196 - case decodeRepeatedEnumField // = 197 - case decodeRepeatedFixed32Field // = 198 - case decodeRepeatedFixed64Field // = 199 - case decodeRepeatedFloatField // = 200 - case decodeRepeatedGroupField // = 201 - case decodeRepeatedInt32Field // = 202 - case decodeRepeatedInt64Field // = 203 - case decodeRepeatedMessageField // = 204 - case decodeRepeatedSfixed32Field // = 205 - case decodeRepeatedSfixed64Field // = 206 - case decodeRepeatedSint32Field // = 207 - case decodeRepeatedSint64Field // = 208 - case decodeRepeatedStringField // = 209 - case decodeRepeatedUint32Field // = 210 - case decodeRepeatedUint64Field // = 211 - case decodeSingular // = 212 - case decodeSingularBoolField // = 213 - case decodeSingularBytesField // = 214 - case decodeSingularDoubleField // = 215 - case decodeSingularEnumField // = 216 - case decodeSingularFixed32Field // = 217 - case decodeSingularFixed64Field // = 218 - case decodeSingularFloatField // = 219 - case decodeSingularGroupField // = 220 - case decodeSingularInt32Field // = 221 - case decodeSingularInt64Field // = 222 - case decodeSingularMessageField // = 223 - case decodeSingularSfixed32Field // = 224 - case decodeSingularSfixed64Field // = 225 - case decodeSingularSint32Field // = 226 - case decodeSingularSint64Field // = 227 - case decodeSingularStringField // = 228 - case decodeSingularUint32Field // = 229 - case decodeSingularUint64Field // = 230 - case decodeTextFormat // = 231 - case defaultAnyTypeUrlprefix // = 232 - case defaults // = 233 - case defaultValue // = 234 - case dependency // = 235 - case deprecated // = 236 - case deprecatedLegacyJsonFieldConflicts // = 237 - case deprecationWarning // = 238 - case description_ // = 239 - case descriptorProto // = 240 - case dictionary // = 241 - case dictionaryLiteral // = 242 - case digit // = 243 - case digit0 // = 244 - case digit1 // = 245 - case digitCount // = 246 - case digits // = 247 - case digitValue // = 248 - case discardableResult // = 249 - case discardUnknownFields // = 250 - case double // = 251 - case doubleValue // = 252 - case duration // = 253 - case e // = 254 - case edition // = 255 - case editionDefault // = 256 - case editionDefaults // = 257 - case editionDeprecated // = 258 - case editionIntroduced // = 259 - case editionRemoved // = 260 - case element // = 261 - case elements // = 262 - case emitExtensionFieldName // = 263 - case emitFieldName // = 264 - case emitFieldNumber // = 265 - case empty // = 266 - case encodeAsBytes // = 267 - case encoded // = 268 - case encodedJsonstring // = 269 - case encodedSize // = 270 - case encodeField // = 271 - case encoder // = 272 - case end // = 273 - case endArray // = 274 - case endMessageField // = 275 - case endObject // = 276 - case endRegularField // = 277 - case `enum` // = 278 - case enumDescriptorProto // = 279 - case enumOptions // = 280 - case enumReservedRange // = 281 - case enumType // = 282 - case enumvalue // = 283 - case enumValueDescriptorProto // = 284 - case enumValueOptions // = 285 - case equatable // = 286 - case error // = 287 - case expressibleByArrayLiteral // = 288 - case expressibleByDictionaryLiteral // = 289 - case ext // = 290 - case extDecoder // = 291 - case extendedGraphemeClusterLiteral // = 292 - case extendedGraphemeClusterLiteralType // = 293 - case extendee // = 294 - case extensibleMessage // = 295 - case `extension` // = 296 - case extensionField // = 297 - case extensionFieldNumber // = 298 - case extensionFieldValueSet // = 299 - case extensionMap // = 300 - case extensionRange // = 301 - case extensionRangeOptions // = 302 - case extensions // = 303 - case extras // = 304 - case f // = 305 - case `false` // = 306 - case features // = 307 - case featureSet // = 308 - case featureSetDefaults // = 309 - case featureSetEditionDefault // = 310 - case featureSupport // = 311 - case field // = 312 - case fieldData // = 313 - case fieldDescriptorProto // = 314 - case fieldMask // = 315 - case fieldName // = 316 - case fieldNameCount // = 317 - case fieldNum // = 318 - case fieldNumber // = 319 - case fieldNumberForProto // = 320 - case fieldOptions // = 321 - case fieldPresence // = 322 - case fields // = 323 - case fieldSize // = 324 - case fieldTag // = 325 - case fieldType // = 326 - case file // = 327 - case fileDescriptorProto // = 328 - case fileDescriptorSet // = 329 - case fileName // = 330 - case fileOptions // = 331 - case filter // = 332 - case final // = 333 - case finiteOnly // = 334 - case first // = 335 - case firstItem // = 336 - case fixedFeatures // = 337 - case float // = 338 - case floatLiteral // = 339 - case floatLiteralType // = 340 - case floatValue // = 341 - case forMessageName // = 342 - case formUnion // = 343 - case forReadingFrom // = 344 - case forTypeURL // = 345 - case forwardParser // = 346 - case forWritingInto // = 347 - case from // = 348 - case fromAscii2 // = 349 - case fromAscii4 // = 350 - case fromByteOffset // = 351 - case fromHexDigit // = 352 - case fullName // = 353 - case `func` // = 354 - case g // = 355 - case generatedCodeInfo // = 356 - case get // = 357 - case getExtensionValue // = 358 - case googleapis // = 359 - case googleProtobufAny // = 360 - case googleProtobufApi // = 361 - case googleProtobufBoolValue // = 362 - case googleProtobufBytesValue // = 363 - case googleProtobufDescriptorProto // = 364 - case googleProtobufDoubleValue // = 365 - case googleProtobufDuration // = 366 - case googleProtobufEdition // = 367 - case googleProtobufEmpty // = 368 - case googleProtobufEnum // = 369 - case googleProtobufEnumDescriptorProto // = 370 - case googleProtobufEnumOptions // = 371 - case googleProtobufEnumValue // = 372 - case googleProtobufEnumValueDescriptorProto // = 373 - case googleProtobufEnumValueOptions // = 374 - case googleProtobufExtensionRangeOptions // = 375 - case googleProtobufFeatureSet // = 376 - case googleProtobufFeatureSetDefaults // = 377 - case googleProtobufField // = 378 - case googleProtobufFieldDescriptorProto // = 379 - case googleProtobufFieldMask // = 380 - case googleProtobufFieldOptions // = 381 - case googleProtobufFileDescriptorProto // = 382 - case googleProtobufFileDescriptorSet // = 383 - case googleProtobufFileOptions // = 384 - case googleProtobufFloatValue // = 385 - case googleProtobufGeneratedCodeInfo // = 386 - case googleProtobufInt32Value // = 387 - case googleProtobufInt64Value // = 388 - case googleProtobufListValue // = 389 - case googleProtobufMessageOptions // = 390 - case googleProtobufMethod // = 391 - case googleProtobufMethodDescriptorProto // = 392 - case googleProtobufMethodOptions // = 393 - case googleProtobufMixin // = 394 - case googleProtobufNullValue // = 395 - case googleProtobufOneofDescriptorProto // = 396 - case googleProtobufOneofOptions // = 397 - case googleProtobufOption // = 398 - case googleProtobufServiceDescriptorProto // = 399 - case googleProtobufServiceOptions // = 400 - case googleProtobufSourceCodeInfo // = 401 - case googleProtobufSourceContext // = 402 - case googleProtobufStringValue // = 403 - case googleProtobufStruct // = 404 - case googleProtobufSyntax // = 405 - case googleProtobufTimestamp // = 406 - case googleProtobufType // = 407 - case googleProtobufUint32Value // = 408 - case googleProtobufUint64Value // = 409 - case googleProtobufUninterpretedOption // = 410 - case googleProtobufValue // = 411 - case goPackage // = 412 - case group // = 413 - case groupFieldNumberStack // = 414 - case groupSize // = 415 - case hadOneofValue // = 416 - case handleConflictingOneOf // = 417 - case hasAggregateValue // = 418 - case hasAllowAlias // = 419 - case hasBegin // = 420 - case hasCcEnableArenas // = 421 - case hasCcGenericServices // = 422 - case hasClientStreaming // = 423 - case hasCsharpNamespace // = 424 - case hasCtype // = 425 - case hasDebugRedact // = 426 - case hasDefaultValue // = 427 - case hasDeprecated // = 428 - case hasDeprecatedLegacyJsonFieldConflicts // = 429 - case hasDeprecationWarning // = 430 - case hasDoubleValue // = 431 - case hasEdition // = 432 - case hasEditionDeprecated // = 433 - case hasEditionIntroduced // = 434 - case hasEditionRemoved // = 435 - case hasEnd // = 436 - case hasEnumType // = 437 - case hasExtendee // = 438 - case hasExtensionValue // = 439 - case hasFeatures // = 440 - case hasFeatureSupport // = 441 - case hasFieldPresence // = 442 - case hasFixedFeatures // = 443 - case hasFullName // = 444 - case hasGoPackage // = 445 - case hash // = 446 - case hashable // = 447 - case hasher // = 448 - case hashVisitor // = 449 - case hasIdempotencyLevel // = 450 - case hasIdentifierValue // = 451 - case hasInputType // = 452 - case hasIsExtension // = 453 - case hasJavaGenerateEqualsAndHash // = 454 - case hasJavaGenericServices // = 455 - case hasJavaMultipleFiles // = 456 - case hasJavaOuterClassname // = 457 - case hasJavaPackage // = 458 - case hasJavaStringCheckUtf8 // = 459 - case hasJsonFormat // = 460 - case hasJsonName // = 461 - case hasJstype // = 462 - case hasLabel // = 463 - case hasLazy // = 464 - case hasLeadingComments // = 465 - case hasMapEntry // = 466 - case hasMaximumEdition // = 467 - case hasMessageEncoding // = 468 - case hasMessageSetWireFormat // = 469 - case hasMinimumEdition // = 470 - case hasName // = 471 - case hasNamePart // = 472 - case hasNegativeIntValue // = 473 - case hasNoStandardDescriptorAccessor // = 474 - case hasNumber // = 475 - case hasObjcClassPrefix // = 476 - case hasOneofIndex // = 477 - case hasOptimizeFor // = 478 - case hasOptions // = 479 - case hasOutputType // = 480 - case hasOverridableFeatures // = 481 - case hasPackage // = 482 - case hasPacked // = 483 - case hasPhpClassPrefix // = 484 - case hasPhpMetadataNamespace // = 485 - case hasPhpNamespace // = 486 - case hasPositiveIntValue // = 487 - case hasProto3Optional // = 488 - case hasPyGenericServices // = 489 - case hasRepeated // = 490 - case hasRepeatedFieldEncoding // = 491 - case hasReserved // = 492 - case hasRetention // = 493 - case hasRubyPackage // = 494 - case hasSemantic // = 495 - case hasServerStreaming // = 496 - case hasSourceCodeInfo // = 497 - case hasSourceContext // = 498 - case hasSourceFile // = 499 - case hasStart // = 500 - case hasStringValue // = 501 - case hasSwiftPrefix // = 502 - case hasSyntax // = 503 - case hasTrailingComments // = 504 - case hasType // = 505 - case hasTypeName // = 506 - case hasUnverifiedLazy // = 507 - case hasUtf8Validation // = 508 - case hasValue // = 509 - case hasVerification // = 510 - case hasWeak // = 511 - case hour // = 512 - case i // = 513 - case idempotencyLevel // = 514 - case identifierValue // = 515 - case `if` // = 516 - case ignoreUnknownExtensionFields // = 517 - case ignoreUnknownFields // = 518 - case index // = 519 - case init_ // = 520 - case `inout` // = 521 - case inputType // = 522 - case insert // = 523 - case int // = 524 - case int32 // = 525 - case int32Value // = 526 - case int64 // = 527 - case int64Value // = 528 - case int8 // = 529 - case integerLiteral // = 530 - case integerLiteralType // = 531 - case intern // = 532 - case `internal` // = 533 - case internalState // = 534 - case into // = 535 - case ints // = 536 - case isA // = 537 - case isEqual // = 538 - case isEqualTo // = 539 - case isExtension // = 540 - case isInitialized // = 541 - case isNegative // = 542 - case itemTagsEncodedSize // = 543 - case iterator // = 544 - case javaGenerateEqualsAndHash // = 545 - case javaGenericServices // = 546 - case javaMultipleFiles // = 547 - case javaOuterClassname // = 548 - case javaPackage // = 549 - case javaStringCheckUtf8 // = 550 - case jsondecoder // = 551 - case jsondecodingError // = 552 - case jsondecodingOptions // = 553 - case jsonEncoder // = 554 - case jsonencodingError // = 555 - case jsonencodingOptions // = 556 - case jsonencodingVisitor // = 557 - case jsonFormat // = 558 - case jsonmapEncodingVisitor // = 559 - case jsonName // = 560 - case jsonPath // = 561 - case jsonPaths // = 562 - case jsonscanner // = 563 - case jsonString // = 564 - case jsonText // = 565 - case jsonUtf8Bytes // = 566 - case jsonUtf8Data // = 567 - case jstype // = 568 - case k // = 569 - case kChunkSize // = 570 - case key // = 571 - case keyField // = 572 - case keyFieldOpt // = 573 - case keyType // = 574 - case kind // = 575 - case l // = 576 - case label // = 577 - case lazy // = 578 - case leadingComments // = 579 - case leadingDetachedComments // = 580 - case length // = 581 - case lessThan // = 582 - case `let` // = 583 - case lhs // = 584 - case list // = 585 - case listOfMessages // = 586 - case listValue // = 587 - case littleEndian // = 588 - case load // = 589 - case localHasher // = 590 - case location // = 591 - case m // = 592 - case major // = 593 - case makeAsyncIterator // = 594 - case makeIterator // = 595 - case mapEntry // = 596 - case mapKeyType // = 597 - case mapToMessages // = 598 - case mapValueType // = 599 - case mapVisitor // = 600 - case maximumEdition // = 601 - case mdayStart // = 602 - case merge // = 603 - case message // = 604 - case messageDepthLimit // = 605 - case messageEncoding // = 606 - case messageExtension // = 607 - case messageImplementationBase // = 608 - case messageOptions // = 609 - case messageSet // = 610 - case messageSetWireFormat // = 611 - case messageSize // = 612 - case messageType // = 613 - case method // = 614 - case methodDescriptorProto // = 615 - case methodOptions // = 616 - case methods // = 617 - case min // = 618 - case minimumEdition // = 619 - case minor // = 620 - case mixin // = 621 - case mixins // = 622 - case modifier // = 623 - case modify // = 624 - case month // = 625 - case msgExtension // = 626 - case mutating // = 627 - case n // = 628 - case name // = 629 - case nameDescription // = 630 - case nameMap // = 631 - case namePart // = 632 - case names // = 633 - case nanos // = 634 - case negativeIntValue // = 635 - case nestedType // = 636 - case newL // = 637 - case newList // = 638 - case newValue // = 639 - case next // = 640 - case nextByte // = 641 - case nextFieldNumber // = 642 - case nextVarInt // = 643 - case `nil` // = 644 - case nilLiteral // = 645 - case noStandardDescriptorAccessor // = 646 - case nullValue // = 647 - case number // = 648 - case numberValue // = 649 - case objcClassPrefix // = 650 - case of // = 651 - case oneofDecl // = 652 - case oneofDescriptorProto // = 653 - case oneofIndex // = 654 - case oneofOptions // = 655 - case oneofs // = 656 - case oneOfKind // = 657 - case optimizeFor // = 658 - case optimizeMode // = 659 - case option // = 660 - case optionalEnumExtensionField // = 661 - case optionalExtensionField // = 662 - case optionalGroupExtensionField // = 663 - case optionalMessageExtensionField // = 664 - case optionRetention // = 665 - case options // = 666 - case optionTargetType // = 667 - case other // = 668 - case others // = 669 - case out // = 670 - case outputType // = 671 - case overridableFeatures // = 672 - case p // = 673 - case package // = 674 - case packed // = 675 - case packedEnumExtensionField // = 676 - case packedExtensionField // = 677 - case padding // = 678 - case parent // = 679 - case parse // = 680 - case path // = 681 - case paths // = 682 - case payload // = 683 - case payloadSize // = 684 - case phpClassPrefix // = 685 - case phpMetadataNamespace // = 686 - case phpNamespace // = 687 - case pos // = 688 - case positiveIntValue // = 689 - case prefix // = 690 - case preserveProtoFieldNames // = 691 - case preTraverse // = 692 - case printUnknownFields // = 693 - case proto2 // = 694 - case proto3DefaultValue // = 695 - case proto3Optional // = 696 - case protobufApiversionCheck // = 697 - case protobufApiversion3 // = 698 - case protobufBool // = 699 - case protobufBytes // = 700 - case protobufDouble // = 701 - case protobufEnumMap // = 702 - case protobufExtension // = 703 - case protobufFixed32 // = 704 - case protobufFixed64 // = 705 - case protobufFloat // = 706 - case protobufInt32 // = 707 - case protobufInt64 // = 708 - case protobufMap // = 709 - case protobufMessageMap // = 710 - case protobufSfixed32 // = 711 - case protobufSfixed64 // = 712 - case protobufSint32 // = 713 - case protobufSint64 // = 714 - case protobufString // = 715 - case protobufUint32 // = 716 - case protobufUint64 // = 717 - case protobufExtensionFieldValues // = 718 - case protobufFieldNumber // = 719 - case protobufGeneratedIsEqualTo // = 720 - case protobufNameMap // = 721 - case protobufNewField // = 722 - case protobufPackage // = 723 - case `protocol` // = 724 - case protoFieldName // = 725 - case protoMessageName // = 726 - case protoNameProviding // = 727 - case protoPaths // = 728 - case `public` // = 729 - case publicDependency // = 730 - case putBoolValue // = 731 - case putBytesValue // = 732 - case putDoubleValue // = 733 - case putEnumValue // = 734 - case putFixedUint32 // = 735 - case putFixedUint64 // = 736 - case putFloatValue // = 737 - case putInt64 // = 738 - case putStringValue // = 739 - case putUint64 // = 740 - case putUint64Hex // = 741 - case putVarInt // = 742 - case putZigZagVarInt // = 743 - case pyGenericServices // = 744 - case r // = 745 - case rawChars // = 746 - case rawRepresentable // = 747 - case rawValue_ // = 748 - case read4HexDigits // = 749 - case readBytes // = 750 - case register // = 751 - case repeated // = 752 - case repeatedEnumExtensionField // = 753 - case repeatedExtensionField // = 754 - case repeatedFieldEncoding // = 755 - case repeatedGroupExtensionField // = 756 - case repeatedMessageExtensionField // = 757 - case repeating // = 758 - case requestStreaming // = 759 - case requestTypeURL // = 760 - case requiredSize // = 761 - case responseStreaming // = 762 - case responseTypeURL // = 763 - case result // = 764 - case retention // = 765 - case `rethrows` // = 766 - case `return` // = 767 - case returnType // = 768 - case revision // = 769 - case rhs // = 770 - case root // = 771 - case rubyPackage // = 772 - case s // = 773 - case sawBackslash // = 774 - case sawSection4Characters // = 775 - case sawSection5Characters // = 776 - case scan // = 777 - case scanner // = 778 - case seconds // = 779 - case self_ // = 780 - case semantic // = 781 - case sendable // = 782 - case separator // = 783 - case serialize // = 784 - case serializedBytes // = 785 - case serializedData // = 786 - case serializedSize // = 787 - case serverStreaming // = 788 - case service // = 789 - case serviceDescriptorProto // = 790 - case serviceOptions // = 791 - case set // = 792 - case setExtensionValue // = 793 - case shift // = 794 - case simpleExtensionMap // = 795 - case size // = 796 - case sizer // = 797 - case source // = 798 - case sourceCodeInfo // = 799 - case sourceContext // = 800 - case sourceEncoding // = 801 - case sourceFile // = 802 - case span // = 803 - case split // = 804 - case start // = 805 - case startArray // = 806 - case startArrayObject // = 807 - case startField // = 808 - case startIndex // = 809 - case startMessageField // = 810 - case startObject // = 811 - case startRegularField // = 812 - case state // = 813 - case `static` // = 814 - case staticString // = 815 - case storage // = 816 - case string // = 817 - case stringLiteral // = 818 - case stringLiteralType // = 819 - case stringResult // = 820 - case stringValue // = 821 - case `struct` // = 822 - case structValue // = 823 - case subDecoder // = 824 - case `subscript` // = 825 - case subVisitor // = 826 - case swift // = 827 - case swiftPrefix // = 828 - case swiftProtobufContiguousBytes // = 829 - case syntax // = 830 - case t // = 831 - case tag // = 832 - case targets // = 833 - case terminator // = 834 - case testDecoder // = 835 - case text // = 836 - case textDecoder // = 837 - case textFormatDecoder // = 838 - case textFormatDecodingError // = 839 - case textFormatDecodingOptions // = 840 - case textFormatEncodingOptions // = 841 - case textFormatEncodingVisitor // = 842 - case textFormatString // = 843 - case throwOrIgnore // = 844 - case `throws` // = 845 - case timeInterval // = 846 - case timeIntervalSince1970 // = 847 - case timeIntervalSinceReferenceDate // = 848 - case timestamp // = 849 - case total // = 850 - case totalArrayDepth // = 851 - case totalSize // = 852 - case trailingComments // = 853 - case traverse // = 854 - case `true` // = 855 - case `try` // = 856 - case type // = 857 - case `typealias` // = 858 - case typeEnum // = 859 - case typeName // = 860 - case typePrefix // = 861 - case typeStart // = 862 - case typeUnknown // = 863 - case typeURL // = 864 - case uint32 // = 865 - case uint32Value // = 866 - case uint64 // = 867 - case uint64Value // = 868 - case uint8 // = 869 - case unchecked // = 870 - case unicodeScalarLiteral // = 871 - case unicodeScalarLiteralType // = 872 - case unicodeScalars // = 873 - case unicodeScalarView // = 874 - case uninterpretedOption // = 875 - case union // = 876 - case uniqueStorage // = 877 - case unknown // = 878 - case unknownFields // = 879 - case unknownStorage // = 880 - case unpackTo // = 881 - case unsafeBufferPointer // = 882 - case unsafeMutablePointer // = 883 - case unsafeMutableRawBufferPointer // = 884 - case unsafeRawBufferPointer // = 885 - case unsafeRawPointer // = 886 - case unverifiedLazy // = 887 - case updatedOptions // = 888 - case url // = 889 - case useDeterministicOrdering // = 890 - case utf8 // = 891 - case utf8Ptr // = 892 - case utf8ToDouble // = 893 - case utf8Validation // = 894 - case utf8View // = 895 - case v // = 896 - case value // = 897 - case valueField // = 898 - case values // = 899 - case valueType // = 900 - case `var` // = 901 - case verification // = 902 - case verificationState // = 903 - case version // = 904 - case versionString // = 905 - case visitExtensionFields // = 906 - case visitExtensionFieldsAsMessageSet // = 907 - case visitMapField // = 908 - case visitor // = 909 - case visitPacked // = 910 - case visitPackedBoolField // = 911 - case visitPackedDoubleField // = 912 - case visitPackedEnumField // = 913 - case visitPackedFixed32Field // = 914 - case visitPackedFixed64Field // = 915 - case visitPackedFloatField // = 916 - case visitPackedInt32Field // = 917 - case visitPackedInt64Field // = 918 - case visitPackedSfixed32Field // = 919 - case visitPackedSfixed64Field // = 920 - case visitPackedSint32Field // = 921 - case visitPackedSint64Field // = 922 - case visitPackedUint32Field // = 923 - case visitPackedUint64Field // = 924 - case visitRepeated // = 925 - case visitRepeatedBoolField // = 926 - case visitRepeatedBytesField // = 927 - case visitRepeatedDoubleField // = 928 - case visitRepeatedEnumField // = 929 - case visitRepeatedFixed32Field // = 930 - case visitRepeatedFixed64Field // = 931 - case visitRepeatedFloatField // = 932 - case visitRepeatedGroupField // = 933 - case visitRepeatedInt32Field // = 934 - case visitRepeatedInt64Field // = 935 - case visitRepeatedMessageField // = 936 - case visitRepeatedSfixed32Field // = 937 - case visitRepeatedSfixed64Field // = 938 - case visitRepeatedSint32Field // = 939 - case visitRepeatedSint64Field // = 940 - case visitRepeatedStringField // = 941 - case visitRepeatedUint32Field // = 942 - case visitRepeatedUint64Field // = 943 - case visitSingular // = 944 - case visitSingularBoolField // = 945 - case visitSingularBytesField // = 946 - case visitSingularDoubleField // = 947 - case visitSingularEnumField // = 948 - case visitSingularFixed32Field // = 949 - case visitSingularFixed64Field // = 950 - case visitSingularFloatField // = 951 - case visitSingularGroupField // = 952 - case visitSingularInt32Field // = 953 - case visitSingularInt64Field // = 954 - case visitSingularMessageField // = 955 - case visitSingularSfixed32Field // = 956 - case visitSingularSfixed64Field // = 957 - case visitSingularSint32Field // = 958 - case visitSingularSint64Field // = 959 - case visitSingularStringField // = 960 - case visitSingularUint32Field // = 961 - case visitSingularUint64Field // = 962 - case visitUnknown // = 963 - case wasDecoded // = 964 - case weak // = 965 - case weakDependency // = 966 - case `where` // = 967 - case wireFormat // = 968 - case with // = 969 - case withUnsafeBytes // = 970 - case withUnsafeMutableBytes // = 971 - case work // = 972 - case wrapped // = 973 - case wrappedType // = 974 - case wrappedValue // = 975 - case written // = 976 - case yday // = 977 + case anyTypeUrlnotRegistered // = 12 + case anyUnpackError // = 13 + case api // = 14 + case appended // = 15 + case appendUintHex // = 16 + case appendUnknown // = 17 + case areAllInitialized // = 18 + case array // = 19 + case arrayDepth // = 20 + case arrayLiteral // = 21 + case arraySeparator // = 22 + case `as` // = 23 + case asciiOpenCurlyBracket // = 24 + case asciiZero // = 25 + case async // = 26 + case asyncIterator // = 27 + case asyncIteratorProtocol // = 28 + case asyncMessageSequence // = 29 + case available // = 30 + case b // = 31 + case base // = 32 + case base64Values // = 33 + case baseAddress // = 34 + case baseType // = 35 + case begin // = 36 + case binary // = 37 + case binaryDecoder // = 38 + case binaryDecoding // = 39 + case binaryDecodingError // = 40 + case binaryDecodingOptions // = 41 + case binaryDelimited // = 42 + case binaryEncoder // = 43 + case binaryEncoding // = 44 + case binaryEncodingError // = 45 + case binaryEncodingMessageSetSizeVisitor // = 46 + case binaryEncodingMessageSetVisitor // = 47 + case binaryEncodingOptions // = 48 + case binaryEncodingSizeVisitor // = 49 + case binaryEncodingVisitor // = 50 + case binaryOptions // = 51 + case binaryProtobufDelimitedMessages // = 52 + case binaryStreamDecoding // = 53 + case binaryStreamDecodingError // = 54 + case bitPattern // = 55 + case body // = 56 + case bool // = 57 + case booleanLiteral // = 58 + case booleanLiteralType // = 59 + case boolValue // = 60 + case buffer // = 61 + case bytes // = 62 + case bytesInGroup // = 63 + case bytesNeeded // = 64 + case bytesRead // = 65 + case bytesValue // = 66 + case c // = 67 + case capitalizeNext // = 68 + case cardinality // = 69 + case caseIterable // = 70 + case ccEnableArenas // = 71 + case ccGenericServices // = 72 + case character // = 73 + case chars // = 74 + case chunk // = 75 + case `class` // = 76 + case clearAggregateValue // = 77 + case clearAllowAlias // = 78 + case clearBegin // = 79 + case clearCcEnableArenas // = 80 + case clearCcGenericServices // = 81 + case clearClientStreaming // = 82 + case clearCsharpNamespace // = 83 + case clearCtype // = 84 + case clearDebugRedact // = 85 + case clearDefaultValue // = 86 + case clearDeprecated // = 87 + case clearDeprecatedLegacyJsonFieldConflicts // = 88 + case clearDeprecationWarning // = 89 + case clearDoubleValue // = 90 + case clearEdition // = 91 + case clearEditionDeprecated // = 92 + case clearEditionIntroduced // = 93 + case clearEditionRemoved // = 94 + case clearEnd // = 95 + case clearEnumType // = 96 + case clearExtendee // = 97 + case clearExtensionValue // = 98 + case clearFeatures // = 99 + case clearFeatureSupport // = 100 + case clearFieldPresence // = 101 + case clearFixedFeatures // = 102 + case clearFullName // = 103 + case clearGoPackage // = 104 + case clearIdempotencyLevel // = 105 + case clearIdentifierValue // = 106 + case clearInputType // = 107 + case clearIsExtension // = 108 + case clearJavaGenerateEqualsAndHash // = 109 + case clearJavaGenericServices // = 110 + case clearJavaMultipleFiles // = 111 + case clearJavaOuterClassname // = 112 + case clearJavaPackage // = 113 + case clearJavaStringCheckUtf8 // = 114 + case clearJsonFormat // = 115 + case clearJsonName // = 116 + case clearJstype // = 117 + case clearLabel // = 118 + case clearLazy // = 119 + case clearLeadingComments // = 120 + case clearMapEntry // = 121 + case clearMaximumEdition // = 122 + case clearMessageEncoding // = 123 + case clearMessageSetWireFormat // = 124 + case clearMinimumEdition // = 125 + case clearName // = 126 + case clearNamePart // = 127 + case clearNegativeIntValue // = 128 + case clearNoStandardDescriptorAccessor // = 129 + case clearNumber // = 130 + case clearObjcClassPrefix // = 131 + case clearOneofIndex // = 132 + case clearOptimizeFor // = 133 + case clearOptions // = 134 + case clearOutputType // = 135 + case clearOverridableFeatures // = 136 + case clearPackage // = 137 + case clearPacked // = 138 + case clearPhpClassPrefix // = 139 + case clearPhpMetadataNamespace // = 140 + case clearPhpNamespace // = 141 + case clearPositiveIntValue // = 142 + case clearProto3Optional // = 143 + case clearPyGenericServices // = 144 + case clearRepeated // = 145 + case clearRepeatedFieldEncoding // = 146 + case clearReserved // = 147 + case clearRetention // = 148 + case clearRubyPackage // = 149 + case clearSemantic // = 150 + case clearServerStreaming // = 151 + case clearSourceCodeInfo // = 152 + case clearSourceContext // = 153 + case clearSourceFile // = 154 + case clearStart // = 155 + case clearStringValue // = 156 + case clearSwiftPrefix // = 157 + case clearSyntax // = 158 + case clearTrailingComments // = 159 + case clearType // = 160 + case clearTypeName // = 161 + case clearUnverifiedLazy // = 162 + case clearUtf8Validation // = 163 + case clearValue // = 164 + case clearVerification // = 165 + case clearWeak // = 166 + case clientStreaming // = 167 + case code // = 168 + case codePoint // = 169 + case codeUnits // = 170 + case collection // = 171 + case com // = 172 + case comma // = 173 + case consumedBytes // = 174 + case contentsOf // = 175 + case copy // = 176 + case count // = 177 + case countVarintsInBuffer // = 178 + case csharpNamespace // = 179 + case ctype // = 180 + case customCodable // = 181 + case customDebugStringConvertible // = 182 + case customStringConvertible // = 183 + case d // = 184 + case data // = 185 + case dataResult // = 186 + case date // = 187 + case daySec // = 188 + case daysSinceEpoch // = 189 + case debugDescription_ // = 190 + case debugRedact // = 191 + case declaration // = 192 + case decoded // = 193 + case decodedFromJsonnull // = 194 + case decodeExtensionField // = 195 + case decodeExtensionFieldsAsMessageSet // = 196 + case decodeJson // = 197 + case decodeMapField // = 198 + case decodeMessage // = 199 + case decoder // = 200 + case decodeRepeated // = 201 + case decodeRepeatedBoolField // = 202 + case decodeRepeatedBytesField // = 203 + case decodeRepeatedDoubleField // = 204 + case decodeRepeatedEnumField // = 205 + case decodeRepeatedFixed32Field // = 206 + case decodeRepeatedFixed64Field // = 207 + case decodeRepeatedFloatField // = 208 + case decodeRepeatedGroupField // = 209 + case decodeRepeatedInt32Field // = 210 + case decodeRepeatedInt64Field // = 211 + case decodeRepeatedMessageField // = 212 + case decodeRepeatedSfixed32Field // = 213 + case decodeRepeatedSfixed64Field // = 214 + case decodeRepeatedSint32Field // = 215 + case decodeRepeatedSint64Field // = 216 + case decodeRepeatedStringField // = 217 + case decodeRepeatedUint32Field // = 218 + case decodeRepeatedUint64Field // = 219 + case decodeSingular // = 220 + case decodeSingularBoolField // = 221 + case decodeSingularBytesField // = 222 + case decodeSingularDoubleField // = 223 + case decodeSingularEnumField // = 224 + case decodeSingularFixed32Field // = 225 + case decodeSingularFixed64Field // = 226 + case decodeSingularFloatField // = 227 + case decodeSingularGroupField // = 228 + case decodeSingularInt32Field // = 229 + case decodeSingularInt64Field // = 230 + case decodeSingularMessageField // = 231 + case decodeSingularSfixed32Field // = 232 + case decodeSingularSfixed64Field // = 233 + case decodeSingularSint32Field // = 234 + case decodeSingularSint64Field // = 235 + case decodeSingularStringField // = 236 + case decodeSingularUint32Field // = 237 + case decodeSingularUint64Field // = 238 + case decodeTextFormat // = 239 + case defaultAnyTypeUrlprefix // = 240 + case defaults // = 241 + case defaultValue // = 242 + case dependency // = 243 + case deprecated // = 244 + case deprecatedLegacyJsonFieldConflicts // = 245 + case deprecationWarning // = 246 + case description_ // = 247 + case descriptorProto // = 248 + case dictionary // = 249 + case dictionaryLiteral // = 250 + case digit // = 251 + case digit0 // = 252 + case digit1 // = 253 + case digitCount // = 254 + case digits // = 255 + case digitValue // = 256 + case discardableResult // = 257 + case discardUnknownFields // = 258 + case double // = 259 + case doubleValue // = 260 + case duration // = 261 + case e // = 262 + case edition // = 263 + case editionDefault // = 264 + case editionDefaults // = 265 + case editionDeprecated // = 266 + case editionIntroduced // = 267 + case editionRemoved // = 268 + case element // = 269 + case elements // = 270 + case emitExtensionFieldName // = 271 + case emitFieldName // = 272 + case emitFieldNumber // = 273 + case empty // = 274 + case encodeAsBytes // = 275 + case encoded // = 276 + case encodedJsonstring // = 277 + case encodedSize // = 278 + case encodeField // = 279 + case encoder // = 280 + case end // = 281 + case endArray // = 282 + case endMessageField // = 283 + case endObject // = 284 + case endRegularField // = 285 + case `enum` // = 286 + case enumDescriptorProto // = 287 + case enumOptions // = 288 + case enumReservedRange // = 289 + case enumType // = 290 + case enumvalue // = 291 + case enumValueDescriptorProto // = 292 + case enumValueOptions // = 293 + case equatable // = 294 + case error // = 295 + case expressibleByArrayLiteral // = 296 + case expressibleByDictionaryLiteral // = 297 + case ext // = 298 + case extDecoder // = 299 + case extendedGraphemeClusterLiteral // = 300 + case extendedGraphemeClusterLiteralType // = 301 + case extendee // = 302 + case extensibleMessage // = 303 + case `extension` // = 304 + case extensionField // = 305 + case extensionFieldNumber // = 306 + case extensionFieldValueSet // = 307 + case extensionMap // = 308 + case extensionRange // = 309 + case extensionRangeOptions // = 310 + case extensions // = 311 + case extras // = 312 + case f // = 313 + case `false` // = 314 + case features // = 315 + case featureSet // = 316 + case featureSetDefaults // = 317 + case featureSetEditionDefault // = 318 + case featureSupport // = 319 + case field // = 320 + case fieldData // = 321 + case fieldDescriptorProto // = 322 + case fieldMask // = 323 + case fieldName // = 324 + case fieldNameCount // = 325 + case fieldNum // = 326 + case fieldNumber // = 327 + case fieldNumberForProto // = 328 + case fieldOptions // = 329 + case fieldPresence // = 330 + case fields // = 331 + case fieldSize // = 332 + case fieldTag // = 333 + case fieldType // = 334 + case file // = 335 + case fileDescriptorProto // = 336 + case fileDescriptorSet // = 337 + case fileName // = 338 + case fileOptions // = 339 + case filter // = 340 + case final // = 341 + case finiteOnly // = 342 + case first // = 343 + case firstItem // = 344 + case fixedFeatures // = 345 + case float // = 346 + case floatLiteral // = 347 + case floatLiteralType // = 348 + case floatValue // = 349 + case forMessageName // = 350 + case formUnion // = 351 + case forReadingFrom // = 352 + case forTypeURL // = 353 + case forwardParser // = 354 + case forWritingInto // = 355 + case from // = 356 + case fromAscii2 // = 357 + case fromAscii4 // = 358 + case fromByteOffset // = 359 + case fromHexDigit // = 360 + case fullName // = 361 + case `func` // = 362 + case function // = 363 + case g // = 364 + case generatedCodeInfo // = 365 + case get // = 366 + case getExtensionValue // = 367 + case googleapis // = 368 + case googleProtobufAny // = 369 + case googleProtobufApi // = 370 + case googleProtobufBoolValue // = 371 + case googleProtobufBytesValue // = 372 + case googleProtobufDescriptorProto // = 373 + case googleProtobufDoubleValue // = 374 + case googleProtobufDuration // = 375 + case googleProtobufEdition // = 376 + case googleProtobufEmpty // = 377 + case googleProtobufEnum // = 378 + case googleProtobufEnumDescriptorProto // = 379 + case googleProtobufEnumOptions // = 380 + case googleProtobufEnumValue // = 381 + case googleProtobufEnumValueDescriptorProto // = 382 + case googleProtobufEnumValueOptions // = 383 + case googleProtobufExtensionRangeOptions // = 384 + case googleProtobufFeatureSet // = 385 + case googleProtobufFeatureSetDefaults // = 386 + case googleProtobufField // = 387 + case googleProtobufFieldDescriptorProto // = 388 + case googleProtobufFieldMask // = 389 + case googleProtobufFieldOptions // = 390 + case googleProtobufFileDescriptorProto // = 391 + case googleProtobufFileDescriptorSet // = 392 + case googleProtobufFileOptions // = 393 + case googleProtobufFloatValue // = 394 + case googleProtobufGeneratedCodeInfo // = 395 + case googleProtobufInt32Value // = 396 + case googleProtobufInt64Value // = 397 + case googleProtobufListValue // = 398 + case googleProtobufMessageOptions // = 399 + case googleProtobufMethod // = 400 + case googleProtobufMethodDescriptorProto // = 401 + case googleProtobufMethodOptions // = 402 + case googleProtobufMixin // = 403 + case googleProtobufNullValue // = 404 + case googleProtobufOneofDescriptorProto // = 405 + case googleProtobufOneofOptions // = 406 + case googleProtobufOption // = 407 + case googleProtobufServiceDescriptorProto // = 408 + case googleProtobufServiceOptions // = 409 + case googleProtobufSourceCodeInfo // = 410 + case googleProtobufSourceContext // = 411 + case googleProtobufStringValue // = 412 + case googleProtobufStruct // = 413 + case googleProtobufSyntax // = 414 + case googleProtobufTimestamp // = 415 + case googleProtobufType // = 416 + case googleProtobufUint32Value // = 417 + case googleProtobufUint64Value // = 418 + case googleProtobufUninterpretedOption // = 419 + case googleProtobufValue // = 420 + case goPackage // = 421 + case group // = 422 + case groupFieldNumberStack // = 423 + case groupSize // = 424 + case hadOneofValue // = 425 + case handleConflictingOneOf // = 426 + case hasAggregateValue // = 427 + case hasAllowAlias // = 428 + case hasBegin // = 429 + case hasCcEnableArenas // = 430 + case hasCcGenericServices // = 431 + case hasClientStreaming // = 432 + case hasCsharpNamespace // = 433 + case hasCtype // = 434 + case hasDebugRedact // = 435 + case hasDefaultValue // = 436 + case hasDeprecated // = 437 + case hasDeprecatedLegacyJsonFieldConflicts // = 438 + case hasDeprecationWarning // = 439 + case hasDoubleValue // = 440 + case hasEdition // = 441 + case hasEditionDeprecated // = 442 + case hasEditionIntroduced // = 443 + case hasEditionRemoved // = 444 + case hasEnd // = 445 + case hasEnumType // = 446 + case hasExtendee // = 447 + case hasExtensionValue // = 448 + case hasFeatures // = 449 + case hasFeatureSupport // = 450 + case hasFieldPresence // = 451 + case hasFixedFeatures // = 452 + case hasFullName // = 453 + case hasGoPackage // = 454 + case hash // = 455 + case hashable // = 456 + case hasher // = 457 + case hashVisitor // = 458 + case hasIdempotencyLevel // = 459 + case hasIdentifierValue // = 460 + case hasInputType // = 461 + case hasIsExtension // = 462 + case hasJavaGenerateEqualsAndHash // = 463 + case hasJavaGenericServices // = 464 + case hasJavaMultipleFiles // = 465 + case hasJavaOuterClassname // = 466 + case hasJavaPackage // = 467 + case hasJavaStringCheckUtf8 // = 468 + case hasJsonFormat // = 469 + case hasJsonName // = 470 + case hasJstype // = 471 + case hasLabel // = 472 + case hasLazy // = 473 + case hasLeadingComments // = 474 + case hasMapEntry // = 475 + case hasMaximumEdition // = 476 + case hasMessageEncoding // = 477 + case hasMessageSetWireFormat // = 478 + case hasMinimumEdition // = 479 + case hasName // = 480 + case hasNamePart // = 481 + case hasNegativeIntValue // = 482 + case hasNoStandardDescriptorAccessor // = 483 + case hasNumber // = 484 + case hasObjcClassPrefix // = 485 + case hasOneofIndex // = 486 + case hasOptimizeFor // = 487 + case hasOptions // = 488 + case hasOutputType // = 489 + case hasOverridableFeatures // = 490 + case hasPackage // = 491 + case hasPacked // = 492 + case hasPhpClassPrefix // = 493 + case hasPhpMetadataNamespace // = 494 + case hasPhpNamespace // = 495 + case hasPositiveIntValue // = 496 + case hasProto3Optional // = 497 + case hasPyGenericServices // = 498 + case hasRepeated // = 499 + case hasRepeatedFieldEncoding // = 500 + case hasReserved // = 501 + case hasRetention // = 502 + case hasRubyPackage // = 503 + case hasSemantic // = 504 + case hasServerStreaming // = 505 + case hasSourceCodeInfo // = 506 + case hasSourceContext // = 507 + case hasSourceFile // = 508 + case hasStart // = 509 + case hasStringValue // = 510 + case hasSwiftPrefix // = 511 + case hasSyntax // = 512 + case hasTrailingComments // = 513 + case hasType // = 514 + case hasTypeName // = 515 + case hasUnverifiedLazy // = 516 + case hasUtf8Validation // = 517 + case hasValue // = 518 + case hasVerification // = 519 + case hasWeak // = 520 + case hour // = 521 + case i // = 522 + case idempotencyLevel // = 523 + case identifierValue // = 524 + case `if` // = 525 + case ignoreUnknownExtensionFields // = 526 + case ignoreUnknownFields // = 527 + case index // = 528 + case init_ // = 529 + case `inout` // = 530 + case inputType // = 531 + case insert // = 532 + case int // = 533 + case int32 // = 534 + case int32Value // = 535 + case int64 // = 536 + case int64Value // = 537 + case int8 // = 538 + case integerLiteral // = 539 + case integerLiteralType // = 540 + case intern // = 541 + case `internal` // = 542 + case internalState // = 543 + case into // = 544 + case ints // = 545 + case isA // = 546 + case isEqual // = 547 + case isEqualTo // = 548 + case isExtension // = 549 + case isInitialized // = 550 + case isNegative // = 551 + case itemTagsEncodedSize // = 552 + case iterator // = 553 + case javaGenerateEqualsAndHash // = 554 + case javaGenericServices // = 555 + case javaMultipleFiles // = 556 + case javaOuterClassname // = 557 + case javaPackage // = 558 + case javaStringCheckUtf8 // = 559 + case jsondecoder // = 560 + case jsondecodingError // = 561 + case jsondecodingOptions // = 562 + case jsonEncoder // = 563 + case jsonencoding // = 564 + case jsonencodingError // = 565 + case jsonencodingOptions // = 566 + case jsonencodingVisitor // = 567 + case jsonFormat // = 568 + case jsonmapEncodingVisitor // = 569 + case jsonName // = 570 + case jsonPath // = 571 + case jsonPaths // = 572 + case jsonscanner // = 573 + case jsonString // = 574 + case jsonText // = 575 + case jsonUtf8Bytes // = 576 + case jsonUtf8Data // = 577 + case jstype // = 578 + case k // = 579 + case kChunkSize // = 580 + case key // = 581 + case keyField // = 582 + case keyFieldOpt // = 583 + case keyType // = 584 + case kind // = 585 + case l // = 586 + case label // = 587 + case lazy // = 588 + case leadingComments // = 589 + case leadingDetachedComments // = 590 + case length // = 591 + case lessThan // = 592 + case `let` // = 593 + case lhs // = 594 + case line // = 595 + case list // = 596 + case listOfMessages // = 597 + case listValue // = 598 + case littleEndian // = 599 + case load // = 600 + case localHasher // = 601 + case location // = 602 + case m // = 603 + case major // = 604 + case makeAsyncIterator // = 605 + case makeIterator // = 606 + case malformedLength // = 607 + case mapEntry // = 608 + case mapKeyType // = 609 + case mapToMessages // = 610 + case mapValueType // = 611 + case mapVisitor // = 612 + case maximumEdition // = 613 + case mdayStart // = 614 + case merge // = 615 + case message // = 616 + case messageDepthLimit // = 617 + case messageEncoding // = 618 + case messageExtension // = 619 + case messageImplementationBase // = 620 + case messageOptions // = 621 + case messageSet // = 622 + case messageSetWireFormat // = 623 + case messageSize // = 624 + case messageType // = 625 + case method // = 626 + case methodDescriptorProto // = 627 + case methodOptions // = 628 + case methods // = 629 + case min // = 630 + case minimumEdition // = 631 + case minor // = 632 + case mixin // = 633 + case mixins // = 634 + case modifier // = 635 + case modify // = 636 + case month // = 637 + case msgExtension // = 638 + case mutating // = 639 + case n // = 640 + case name // = 641 + case nameDescription // = 642 + case nameMap // = 643 + case namePart // = 644 + case names // = 645 + case nanos // = 646 + case negativeIntValue // = 647 + case nestedType // = 648 + case newL // = 649 + case newList // = 650 + case newValue // = 651 + case next // = 652 + case nextByte // = 653 + case nextFieldNumber // = 654 + case nextVarInt // = 655 + case `nil` // = 656 + case nilLiteral // = 657 + case noBytesAvailable // = 658 + case noStandardDescriptorAccessor // = 659 + case nullValue // = 660 + case number // = 661 + case numberValue // = 662 + case objcClassPrefix // = 663 + case of // = 664 + case oneofDecl // = 665 + case oneofDescriptorProto // = 666 + case oneofIndex // = 667 + case oneofOptions // = 668 + case oneofs // = 669 + case oneOfKind // = 670 + case optimizeFor // = 671 + case optimizeMode // = 672 + case option // = 673 + case optionalEnumExtensionField // = 674 + case optionalExtensionField // = 675 + case optionalGroupExtensionField // = 676 + case optionalMessageExtensionField // = 677 + case optionRetention // = 678 + case options // = 679 + case optionTargetType // = 680 + case other // = 681 + case others // = 682 + case out // = 683 + case outputType // = 684 + case overridableFeatures // = 685 + case p // = 686 + case package // = 687 + case packed // = 688 + case packedEnumExtensionField // = 689 + case packedExtensionField // = 690 + case padding // = 691 + case parent // = 692 + case parse // = 693 + case path // = 694 + case paths // = 695 + case payload // = 696 + case payloadSize // = 697 + case phpClassPrefix // = 698 + case phpMetadataNamespace // = 699 + case phpNamespace // = 700 + case pos // = 701 + case positiveIntValue // = 702 + case prefix // = 703 + case preserveProtoFieldNames // = 704 + case preTraverse // = 705 + case printUnknownFields // = 706 + case proto2 // = 707 + case proto3DefaultValue // = 708 + case proto3Optional // = 709 + case protobufApiversionCheck // = 710 + case protobufApiversion3 // = 711 + case protobufBool // = 712 + case protobufBytes // = 713 + case protobufDouble // = 714 + case protobufEnumMap // = 715 + case protobufExtension // = 716 + case protobufFixed32 // = 717 + case protobufFixed64 // = 718 + case protobufFloat // = 719 + case protobufInt32 // = 720 + case protobufInt64 // = 721 + case protobufMap // = 722 + case protobufMessageMap // = 723 + case protobufSfixed32 // = 724 + case protobufSfixed64 // = 725 + case protobufSint32 // = 726 + case protobufSint64 // = 727 + case protobufString // = 728 + case protobufUint32 // = 729 + case protobufUint64 // = 730 + case protobufExtensionFieldValues // = 731 + case protobufFieldNumber // = 732 + case protobufGeneratedIsEqualTo // = 733 + case protobufNameMap // = 734 + case protobufNewField // = 735 + case protobufPackage // = 736 + case `protocol` // = 737 + case protoFieldName // = 738 + case protoMessageName // = 739 + case protoNameProviding // = 740 + case protoPaths // = 741 + case `public` // = 742 + case publicDependency // = 743 + case putBoolValue // = 744 + case putBytesValue // = 745 + case putDoubleValue // = 746 + case putEnumValue // = 747 + case putFixedUint32 // = 748 + case putFixedUint64 // = 749 + case putFloatValue // = 750 + case putInt64 // = 751 + case putStringValue // = 752 + case putUint64 // = 753 + case putUint64Hex // = 754 + case putVarInt // = 755 + case putZigZagVarInt // = 756 + case pyGenericServices // = 757 + case r // = 758 + case rawChars // = 759 + case rawRepresentable // = 760 + case rawValue_ // = 761 + case read4HexDigits // = 762 + case readBytes // = 763 + case register // = 764 + case repeated // = 765 + case repeatedEnumExtensionField // = 766 + case repeatedExtensionField // = 767 + case repeatedFieldEncoding // = 768 + case repeatedGroupExtensionField // = 769 + case repeatedMessageExtensionField // = 770 + case repeating // = 771 + case requestStreaming // = 772 + case requestTypeURL // = 773 + case requiredSize // = 774 + case responseStreaming // = 775 + case responseTypeURL // = 776 + case result // = 777 + case retention // = 778 + case `rethrows` // = 779 + case `return` // = 780 + case returnType // = 781 + case revision // = 782 + case rhs // = 783 + case root // = 784 + case rubyPackage // = 785 + case s // = 786 + case sawBackslash // = 787 + case sawSection4Characters // = 788 + case sawSection5Characters // = 789 + case scan // = 790 + case scanner // = 791 + case seconds // = 792 + case self_ // = 793 + case semantic // = 794 + case sendable // = 795 + case separator // = 796 + case serialize // = 797 + case serializedBytes // = 798 + case serializedData // = 799 + case serializedSize // = 800 + case serverStreaming // = 801 + case service // = 802 + case serviceDescriptorProto // = 803 + case serviceOptions // = 804 + case set // = 805 + case setExtensionValue // = 806 + case shift // = 807 + case simpleExtensionMap // = 808 + case size // = 809 + case sizer // = 810 + case source // = 811 + case sourceCodeInfo // = 812 + case sourceContext // = 813 + case sourceEncoding // = 814 + case sourceFile // = 815 + case sourceLocation // = 816 + case span // = 817 + case split // = 818 + case start // = 819 + case startArray // = 820 + case startArrayObject // = 821 + case startField // = 822 + case startIndex // = 823 + case startMessageField // = 824 + case startObject // = 825 + case startRegularField // = 826 + case state // = 827 + case `static` // = 828 + case staticString // = 829 + case storage // = 830 + case string // = 831 + case stringLiteral // = 832 + case stringLiteralType // = 833 + case stringResult // = 834 + case stringValue // = 835 + case `struct` // = 836 + case structValue // = 837 + case subDecoder // = 838 + case `subscript` // = 839 + case subVisitor // = 840 + case swift // = 841 + case swiftPrefix // = 842 + case swiftProtobufContiguousBytes // = 843 + case swiftProtobufError // = 844 + case syntax // = 845 + case t // = 846 + case tag // = 847 + case targets // = 848 + case terminator // = 849 + case testDecoder // = 850 + case text // = 851 + case textDecoder // = 852 + case textFormatDecoder // = 853 + case textFormatDecodingError // = 854 + case textFormatDecodingOptions // = 855 + case textFormatEncodingOptions // = 856 + case textFormatEncodingVisitor // = 857 + case textFormatString // = 858 + case throwOrIgnore // = 859 + case `throws` // = 860 + case timeInterval // = 861 + case timeIntervalSince1970 // = 862 + case timeIntervalSinceReferenceDate // = 863 + case timestamp // = 864 + case tooLarge // = 865 + case total // = 866 + case totalArrayDepth // = 867 + case totalSize // = 868 + case trailingComments // = 869 + case traverse // = 870 + case `true` // = 871 + case `try` // = 872 + case type // = 873 + case `typealias` // = 874 + case typeEnum // = 875 + case typeName // = 876 + case typePrefix // = 877 + case typeStart // = 878 + case typeUnknown // = 879 + case typeURL // = 880 + case uint32 // = 881 + case uint32Value // = 882 + case uint64 // = 883 + case uint64Value // = 884 + case uint8 // = 885 + case unchecked // = 886 + case unicodeScalarLiteral // = 887 + case unicodeScalarLiteralType // = 888 + case unicodeScalars // = 889 + case unicodeScalarView // = 890 + case uninterpretedOption // = 891 + case union // = 892 + case uniqueStorage // = 893 + case unknown // = 894 + case unknownFields // = 895 + case unknownStorage // = 896 + case unpackTo // = 897 + case unregisteredTypeURL // = 898 + case unsafeBufferPointer // = 899 + case unsafeMutablePointer // = 900 + case unsafeMutableRawBufferPointer // = 901 + case unsafeRawBufferPointer // = 902 + case unsafeRawPointer // = 903 + case unverifiedLazy // = 904 + case updatedOptions // = 905 + case url // = 906 + case useDeterministicOrdering // = 907 + case utf8 // = 908 + case utf8Ptr // = 909 + case utf8ToDouble // = 910 + case utf8Validation // = 911 + case utf8View // = 912 + case v // = 913 + case value // = 914 + case valueField // = 915 + case values // = 916 + case valueType // = 917 + case `var` // = 918 + case verification // = 919 + case verificationState // = 920 + case version // = 921 + case versionString // = 922 + case visitExtensionFields // = 923 + case visitExtensionFieldsAsMessageSet // = 924 + case visitMapField // = 925 + case visitor // = 926 + case visitPacked // = 927 + case visitPackedBoolField // = 928 + case visitPackedDoubleField // = 929 + case visitPackedEnumField // = 930 + case visitPackedFixed32Field // = 931 + case visitPackedFixed64Field // = 932 + case visitPackedFloatField // = 933 + case visitPackedInt32Field // = 934 + case visitPackedInt64Field // = 935 + case visitPackedSfixed32Field // = 936 + case visitPackedSfixed64Field // = 937 + case visitPackedSint32Field // = 938 + case visitPackedSint64Field // = 939 + case visitPackedUint32Field // = 940 + case visitPackedUint64Field // = 941 + case visitRepeated // = 942 + case visitRepeatedBoolField // = 943 + case visitRepeatedBytesField // = 944 + case visitRepeatedDoubleField // = 945 + case visitRepeatedEnumField // = 946 + case visitRepeatedFixed32Field // = 947 + case visitRepeatedFixed64Field // = 948 + case visitRepeatedFloatField // = 949 + case visitRepeatedGroupField // = 950 + case visitRepeatedInt32Field // = 951 + case visitRepeatedInt64Field // = 952 + case visitRepeatedMessageField // = 953 + case visitRepeatedSfixed32Field // = 954 + case visitRepeatedSfixed64Field // = 955 + case visitRepeatedSint32Field // = 956 + case visitRepeatedSint64Field // = 957 + case visitRepeatedStringField // = 958 + case visitRepeatedUint32Field // = 959 + case visitRepeatedUint64Field // = 960 + case visitSingular // = 961 + case visitSingularBoolField // = 962 + case visitSingularBytesField // = 963 + case visitSingularDoubleField // = 964 + case visitSingularEnumField // = 965 + case visitSingularFixed32Field // = 966 + case visitSingularFixed64Field // = 967 + case visitSingularFloatField // = 968 + case visitSingularGroupField // = 969 + case visitSingularInt32Field // = 970 + case visitSingularInt64Field // = 971 + case visitSingularMessageField // = 972 + case visitSingularSfixed32Field // = 973 + case visitSingularSfixed64Field // = 974 + case visitSingularSint32Field // = 975 + case visitSingularSint64Field // = 976 + case visitSingularStringField // = 977 + case visitSingularUint32Field // = 978 + case visitSingularUint64Field // = 979 + case visitUnknown // = 980 + case wasDecoded // = 981 + case weak // = 982 + case weakDependency // = 983 + case `where` // = 984 + case wireFormat // = 985 + case with // = 986 + case withUnsafeBytes // = 987 + case withUnsafeMutableBytes // = 988 + case work // = 989 + case wrapped // = 990 + case wrappedType // = 991 + case wrappedValue // = 992 + case written // = 993 + case yday // = 994 case UNRECOGNIZED(Int) init() { @@ -1024,972 +1041,989 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, case 9: self = .anyExtensionField case 10: self = .anyMessageExtension case 11: self = .anyMessageStorage - case 12: self = .anyUnpackError - case 13: self = .api - case 14: self = .appended - case 15: self = .appendUintHex - case 16: self = .appendUnknown - case 17: self = .areAllInitialized - case 18: self = .array - case 19: self = .arrayDepth - case 20: self = .arrayLiteral - case 21: self = .arraySeparator - case 22: self = .as - case 23: self = .asciiOpenCurlyBracket - case 24: self = .asciiZero - case 25: self = .async - case 26: self = .asyncIterator - case 27: self = .asyncIteratorProtocol - case 28: self = .asyncMessageSequence - case 29: self = .available - case 30: self = .b - case 31: self = .base - case 32: self = .base64Values - case 33: self = .baseAddress - case 34: self = .baseType - case 35: self = .begin - case 36: self = .binary - case 37: self = .binaryDecoder - case 38: self = .binaryDecodingError - case 39: self = .binaryDecodingOptions - case 40: self = .binaryDelimited - case 41: self = .binaryEncoder - case 42: self = .binaryEncodingError - case 43: self = .binaryEncodingMessageSetSizeVisitor - case 44: self = .binaryEncodingMessageSetVisitor - case 45: self = .binaryEncodingOptions - case 46: self = .binaryEncodingSizeVisitor - case 47: self = .binaryEncodingVisitor - case 48: self = .binaryOptions - case 49: self = .binaryProtobufDelimitedMessages - case 50: self = .bitPattern - case 51: self = .body - case 52: self = .bool - case 53: self = .booleanLiteral - case 54: self = .booleanLiteralType - case 55: self = .boolValue - case 56: self = .buffer - case 57: self = .bytes - case 58: self = .bytesInGroup - case 59: self = .bytesNeeded - case 60: self = .bytesRead - case 61: self = .bytesValue - case 62: self = .c - case 63: self = .capitalizeNext - case 64: self = .cardinality - case 65: self = .caseIterable - case 66: self = .ccEnableArenas - case 67: self = .ccGenericServices - case 68: self = .character - case 69: self = .chars - case 70: self = .chunk - case 71: self = .class - case 72: self = .clearAggregateValue - case 73: self = .clearAllowAlias - case 74: self = .clearBegin - case 75: self = .clearCcEnableArenas - case 76: self = .clearCcGenericServices - case 77: self = .clearClientStreaming - case 78: self = .clearCsharpNamespace - case 79: self = .clearCtype - case 80: self = .clearDebugRedact - case 81: self = .clearDefaultValue - case 82: self = .clearDeprecated - case 83: self = .clearDeprecatedLegacyJsonFieldConflicts - case 84: self = .clearDeprecationWarning - case 85: self = .clearDoubleValue - case 86: self = .clearEdition - case 87: self = .clearEditionDeprecated - case 88: self = .clearEditionIntroduced - case 89: self = .clearEditionRemoved - case 90: self = .clearEnd - case 91: self = .clearEnumType - case 92: self = .clearExtendee - case 93: self = .clearExtensionValue - case 94: self = .clearFeatures - case 95: self = .clearFeatureSupport - case 96: self = .clearFieldPresence - case 97: self = .clearFixedFeatures - case 98: self = .clearFullName - case 99: self = .clearGoPackage - case 100: self = .clearIdempotencyLevel - case 101: self = .clearIdentifierValue - case 102: self = .clearInputType - case 103: self = .clearIsExtension - case 104: self = .clearJavaGenerateEqualsAndHash - case 105: self = .clearJavaGenericServices - case 106: self = .clearJavaMultipleFiles - case 107: self = .clearJavaOuterClassname - case 108: self = .clearJavaPackage - case 109: self = .clearJavaStringCheckUtf8 - case 110: self = .clearJsonFormat - case 111: self = .clearJsonName - case 112: self = .clearJstype - case 113: self = .clearLabel - case 114: self = .clearLazy - case 115: self = .clearLeadingComments - case 116: self = .clearMapEntry - case 117: self = .clearMaximumEdition - case 118: self = .clearMessageEncoding - case 119: self = .clearMessageSetWireFormat - case 120: self = .clearMinimumEdition - case 121: self = .clearName - case 122: self = .clearNamePart - case 123: self = .clearNegativeIntValue - case 124: self = .clearNoStandardDescriptorAccessor - case 125: self = .clearNumber - case 126: self = .clearObjcClassPrefix - case 127: self = .clearOneofIndex - case 128: self = .clearOptimizeFor - case 129: self = .clearOptions - case 130: self = .clearOutputType - case 131: self = .clearOverridableFeatures - case 132: self = .clearPackage - case 133: self = .clearPacked - case 134: self = .clearPhpClassPrefix - case 135: self = .clearPhpMetadataNamespace - case 136: self = .clearPhpNamespace - case 137: self = .clearPositiveIntValue - case 138: self = .clearProto3Optional - case 139: self = .clearPyGenericServices - case 140: self = .clearRepeated - case 141: self = .clearRepeatedFieldEncoding - case 142: self = .clearReserved - case 143: self = .clearRetention - case 144: self = .clearRubyPackage - case 145: self = .clearSemantic - case 146: self = .clearServerStreaming - case 147: self = .clearSourceCodeInfo - case 148: self = .clearSourceContext - case 149: self = .clearSourceFile - case 150: self = .clearStart - case 151: self = .clearStringValue - case 152: self = .clearSwiftPrefix - case 153: self = .clearSyntax - case 154: self = .clearTrailingComments - case 155: self = .clearType - case 156: self = .clearTypeName - case 157: self = .clearUnverifiedLazy - case 158: self = .clearUtf8Validation - case 159: self = .clearValue - case 160: self = .clearVerification - case 161: self = .clearWeak - case 162: self = .clientStreaming - case 163: self = .codePoint - case 164: self = .codeUnits - case 165: self = .collection - case 166: self = .com - case 167: self = .comma - case 168: self = .consumedBytes - case 169: self = .contentsOf - case 170: self = .count - case 171: self = .countVarintsInBuffer - case 172: self = .csharpNamespace - case 173: self = .ctype - case 174: self = .customCodable - case 175: self = .customDebugStringConvertible - case 176: self = .d - case 177: self = .data - case 178: self = .dataResult - case 179: self = .date - case 180: self = .daySec - case 181: self = .daysSinceEpoch - case 182: self = .debugDescription_ - case 183: self = .debugRedact - case 184: self = .declaration - case 185: self = .decoded - case 186: self = .decodedFromJsonnull - case 187: self = .decodeExtensionField - case 188: self = .decodeExtensionFieldsAsMessageSet - case 189: self = .decodeJson - case 190: self = .decodeMapField - case 191: self = .decodeMessage - case 192: self = .decoder - case 193: self = .decodeRepeated - case 194: self = .decodeRepeatedBoolField - case 195: self = .decodeRepeatedBytesField - case 196: self = .decodeRepeatedDoubleField - case 197: self = .decodeRepeatedEnumField - case 198: self = .decodeRepeatedFixed32Field - case 199: self = .decodeRepeatedFixed64Field - case 200: self = .decodeRepeatedFloatField - case 201: self = .decodeRepeatedGroupField - case 202: self = .decodeRepeatedInt32Field - case 203: self = .decodeRepeatedInt64Field - case 204: self = .decodeRepeatedMessageField - case 205: self = .decodeRepeatedSfixed32Field - case 206: self = .decodeRepeatedSfixed64Field - case 207: self = .decodeRepeatedSint32Field - case 208: self = .decodeRepeatedSint64Field - case 209: self = .decodeRepeatedStringField - case 210: self = .decodeRepeatedUint32Field - case 211: self = .decodeRepeatedUint64Field - case 212: self = .decodeSingular - case 213: self = .decodeSingularBoolField - case 214: self = .decodeSingularBytesField - case 215: self = .decodeSingularDoubleField - case 216: self = .decodeSingularEnumField - case 217: self = .decodeSingularFixed32Field - case 218: self = .decodeSingularFixed64Field - case 219: self = .decodeSingularFloatField - case 220: self = .decodeSingularGroupField - case 221: self = .decodeSingularInt32Field - case 222: self = .decodeSingularInt64Field - case 223: self = .decodeSingularMessageField - case 224: self = .decodeSingularSfixed32Field - case 225: self = .decodeSingularSfixed64Field - case 226: self = .decodeSingularSint32Field - case 227: self = .decodeSingularSint64Field - case 228: self = .decodeSingularStringField - case 229: self = .decodeSingularUint32Field - case 230: self = .decodeSingularUint64Field - case 231: self = .decodeTextFormat - case 232: self = .defaultAnyTypeUrlprefix - case 233: self = .defaults - case 234: self = .defaultValue - case 235: self = .dependency - case 236: self = .deprecated - case 237: self = .deprecatedLegacyJsonFieldConflicts - case 238: self = .deprecationWarning - case 239: self = .description_ - case 240: self = .descriptorProto - case 241: self = .dictionary - case 242: self = .dictionaryLiteral - case 243: self = .digit - case 244: self = .digit0 - case 245: self = .digit1 - case 246: self = .digitCount - case 247: self = .digits - case 248: self = .digitValue - case 249: self = .discardableResult - case 250: self = .discardUnknownFields - case 251: self = .double - case 252: self = .doubleValue - case 253: self = .duration - case 254: self = .e - case 255: self = .edition - case 256: self = .editionDefault - case 257: self = .editionDefaults - case 258: self = .editionDeprecated - case 259: self = .editionIntroduced - case 260: self = .editionRemoved - case 261: self = .element - case 262: self = .elements - case 263: self = .emitExtensionFieldName - case 264: self = .emitFieldName - case 265: self = .emitFieldNumber - case 266: self = .empty - case 267: self = .encodeAsBytes - case 268: self = .encoded - case 269: self = .encodedJsonstring - case 270: self = .encodedSize - case 271: self = .encodeField - case 272: self = .encoder - case 273: self = .end - case 274: self = .endArray - case 275: self = .endMessageField - case 276: self = .endObject - case 277: self = .endRegularField - case 278: self = .enum - case 279: self = .enumDescriptorProto - case 280: self = .enumOptions - case 281: self = .enumReservedRange - case 282: self = .enumType - case 283: self = .enumvalue - case 284: self = .enumValueDescriptorProto - case 285: self = .enumValueOptions - case 286: self = .equatable - case 287: self = .error - case 288: self = .expressibleByArrayLiteral - case 289: self = .expressibleByDictionaryLiteral - case 290: self = .ext - case 291: self = .extDecoder - case 292: self = .extendedGraphemeClusterLiteral - case 293: self = .extendedGraphemeClusterLiteralType - case 294: self = .extendee - case 295: self = .extensibleMessage - case 296: self = .extension - case 297: self = .extensionField - case 298: self = .extensionFieldNumber - case 299: self = .extensionFieldValueSet - case 300: self = .extensionMap - case 301: self = .extensionRange - case 302: self = .extensionRangeOptions - case 303: self = .extensions - case 304: self = .extras - case 305: self = .f - case 306: self = .false - case 307: self = .features - case 308: self = .featureSet - case 309: self = .featureSetDefaults - case 310: self = .featureSetEditionDefault - case 311: self = .featureSupport - case 312: self = .field - case 313: self = .fieldData - case 314: self = .fieldDescriptorProto - case 315: self = .fieldMask - case 316: self = .fieldName - case 317: self = .fieldNameCount - case 318: self = .fieldNum - case 319: self = .fieldNumber - case 320: self = .fieldNumberForProto - case 321: self = .fieldOptions - case 322: self = .fieldPresence - case 323: self = .fields - case 324: self = .fieldSize - case 325: self = .fieldTag - case 326: self = .fieldType - case 327: self = .file - case 328: self = .fileDescriptorProto - case 329: self = .fileDescriptorSet - case 330: self = .fileName - case 331: self = .fileOptions - case 332: self = .filter - case 333: self = .final - case 334: self = .finiteOnly - case 335: self = .first - case 336: self = .firstItem - case 337: self = .fixedFeatures - case 338: self = .float - case 339: self = .floatLiteral - case 340: self = .floatLiteralType - case 341: self = .floatValue - case 342: self = .forMessageName - case 343: self = .formUnion - case 344: self = .forReadingFrom - case 345: self = .forTypeURL - case 346: self = .forwardParser - case 347: self = .forWritingInto - case 348: self = .from - case 349: self = .fromAscii2 - case 350: self = .fromAscii4 - case 351: self = .fromByteOffset - case 352: self = .fromHexDigit - case 353: self = .fullName - case 354: self = .func - case 355: self = .g - case 356: self = .generatedCodeInfo - case 357: self = .get - case 358: self = .getExtensionValue - case 359: self = .googleapis - case 360: self = .googleProtobufAny - case 361: self = .googleProtobufApi - case 362: self = .googleProtobufBoolValue - case 363: self = .googleProtobufBytesValue - case 364: self = .googleProtobufDescriptorProto - case 365: self = .googleProtobufDoubleValue - case 366: self = .googleProtobufDuration - case 367: self = .googleProtobufEdition - case 368: self = .googleProtobufEmpty - case 369: self = .googleProtobufEnum - case 370: self = .googleProtobufEnumDescriptorProto - case 371: self = .googleProtobufEnumOptions - case 372: self = .googleProtobufEnumValue - case 373: self = .googleProtobufEnumValueDescriptorProto - case 374: self = .googleProtobufEnumValueOptions - case 375: self = .googleProtobufExtensionRangeOptions - case 376: self = .googleProtobufFeatureSet - case 377: self = .googleProtobufFeatureSetDefaults - case 378: self = .googleProtobufField - case 379: self = .googleProtobufFieldDescriptorProto - case 380: self = .googleProtobufFieldMask - case 381: self = .googleProtobufFieldOptions - case 382: self = .googleProtobufFileDescriptorProto - case 383: self = .googleProtobufFileDescriptorSet - case 384: self = .googleProtobufFileOptions - case 385: self = .googleProtobufFloatValue - case 386: self = .googleProtobufGeneratedCodeInfo - case 387: self = .googleProtobufInt32Value - case 388: self = .googleProtobufInt64Value - case 389: self = .googleProtobufListValue - case 390: self = .googleProtobufMessageOptions - case 391: self = .googleProtobufMethod - case 392: self = .googleProtobufMethodDescriptorProto - case 393: self = .googleProtobufMethodOptions - case 394: self = .googleProtobufMixin - case 395: self = .googleProtobufNullValue - case 396: self = .googleProtobufOneofDescriptorProto - case 397: self = .googleProtobufOneofOptions - case 398: self = .googleProtobufOption - case 399: self = .googleProtobufServiceDescriptorProto - case 400: self = .googleProtobufServiceOptions - case 401: self = .googleProtobufSourceCodeInfo - case 402: self = .googleProtobufSourceContext - case 403: self = .googleProtobufStringValue - case 404: self = .googleProtobufStruct - case 405: self = .googleProtobufSyntax - case 406: self = .googleProtobufTimestamp - case 407: self = .googleProtobufType - case 408: self = .googleProtobufUint32Value - case 409: self = .googleProtobufUint64Value - case 410: self = .googleProtobufUninterpretedOption - case 411: self = .googleProtobufValue - case 412: self = .goPackage - case 413: self = .group - case 414: self = .groupFieldNumberStack - case 415: self = .groupSize - case 416: self = .hadOneofValue - case 417: self = .handleConflictingOneOf - case 418: self = .hasAggregateValue - case 419: self = .hasAllowAlias - case 420: self = .hasBegin - case 421: self = .hasCcEnableArenas - case 422: self = .hasCcGenericServices - case 423: self = .hasClientStreaming - case 424: self = .hasCsharpNamespace - case 425: self = .hasCtype - case 426: self = .hasDebugRedact - case 427: self = .hasDefaultValue - case 428: self = .hasDeprecated - case 429: self = .hasDeprecatedLegacyJsonFieldConflicts - case 430: self = .hasDeprecationWarning - case 431: self = .hasDoubleValue - case 432: self = .hasEdition - case 433: self = .hasEditionDeprecated - case 434: self = .hasEditionIntroduced - case 435: self = .hasEditionRemoved - case 436: self = .hasEnd - case 437: self = .hasEnumType - case 438: self = .hasExtendee - case 439: self = .hasExtensionValue - case 440: self = .hasFeatures - case 441: self = .hasFeatureSupport - case 442: self = .hasFieldPresence - case 443: self = .hasFixedFeatures - case 444: self = .hasFullName - case 445: self = .hasGoPackage - case 446: self = .hash - case 447: self = .hashable - case 448: self = .hasher - case 449: self = .hashVisitor - case 450: self = .hasIdempotencyLevel - case 451: self = .hasIdentifierValue - case 452: self = .hasInputType - case 453: self = .hasIsExtension - case 454: self = .hasJavaGenerateEqualsAndHash - case 455: self = .hasJavaGenericServices - case 456: self = .hasJavaMultipleFiles - case 457: self = .hasJavaOuterClassname - case 458: self = .hasJavaPackage - case 459: self = .hasJavaStringCheckUtf8 - case 460: self = .hasJsonFormat - case 461: self = .hasJsonName - case 462: self = .hasJstype - case 463: self = .hasLabel - case 464: self = .hasLazy - case 465: self = .hasLeadingComments - case 466: self = .hasMapEntry - case 467: self = .hasMaximumEdition - case 468: self = .hasMessageEncoding - case 469: self = .hasMessageSetWireFormat - case 470: self = .hasMinimumEdition - case 471: self = .hasName - case 472: self = .hasNamePart - case 473: self = .hasNegativeIntValue - case 474: self = .hasNoStandardDescriptorAccessor - case 475: self = .hasNumber - case 476: self = .hasObjcClassPrefix - case 477: self = .hasOneofIndex - case 478: self = .hasOptimizeFor - case 479: self = .hasOptions - case 480: self = .hasOutputType - case 481: self = .hasOverridableFeatures - case 482: self = .hasPackage - case 483: self = .hasPacked - case 484: self = .hasPhpClassPrefix - case 485: self = .hasPhpMetadataNamespace - case 486: self = .hasPhpNamespace - case 487: self = .hasPositiveIntValue - case 488: self = .hasProto3Optional - case 489: self = .hasPyGenericServices - case 490: self = .hasRepeated - case 491: self = .hasRepeatedFieldEncoding - case 492: self = .hasReserved - case 493: self = .hasRetention - case 494: self = .hasRubyPackage - case 495: self = .hasSemantic - case 496: self = .hasServerStreaming - case 497: self = .hasSourceCodeInfo - case 498: self = .hasSourceContext - case 499: self = .hasSourceFile - case 500: self = .hasStart - case 501: self = .hasStringValue - case 502: self = .hasSwiftPrefix - case 503: self = .hasSyntax - case 504: self = .hasTrailingComments - case 505: self = .hasType - case 506: self = .hasTypeName - case 507: self = .hasUnverifiedLazy - case 508: self = .hasUtf8Validation - case 509: self = .hasValue - case 510: self = .hasVerification - case 511: self = .hasWeak - case 512: self = .hour - case 513: self = .i - case 514: self = .idempotencyLevel - case 515: self = .identifierValue - case 516: self = .if - case 517: self = .ignoreUnknownExtensionFields - case 518: self = .ignoreUnknownFields - case 519: self = .index - case 520: self = .init_ - case 521: self = .inout - case 522: self = .inputType - case 523: self = .insert - case 524: self = .int - case 525: self = .int32 - case 526: self = .int32Value - case 527: self = .int64 - case 528: self = .int64Value - case 529: self = .int8 - case 530: self = .integerLiteral - case 531: self = .integerLiteralType - case 532: self = .intern - case 533: self = .internal - case 534: self = .internalState - case 535: self = .into - case 536: self = .ints - case 537: self = .isA - case 538: self = .isEqual - case 539: self = .isEqualTo - case 540: self = .isExtension - case 541: self = .isInitialized - case 542: self = .isNegative - case 543: self = .itemTagsEncodedSize - case 544: self = .iterator - case 545: self = .javaGenerateEqualsAndHash - case 546: self = .javaGenericServices - case 547: self = .javaMultipleFiles - case 548: self = .javaOuterClassname - case 549: self = .javaPackage - case 550: self = .javaStringCheckUtf8 - case 551: self = .jsondecoder - case 552: self = .jsondecodingError - case 553: self = .jsondecodingOptions - case 554: self = .jsonEncoder - case 555: self = .jsonencodingError - case 556: self = .jsonencodingOptions - case 557: self = .jsonencodingVisitor - case 558: self = .jsonFormat - case 559: self = .jsonmapEncodingVisitor - case 560: self = .jsonName - case 561: self = .jsonPath - case 562: self = .jsonPaths - case 563: self = .jsonscanner - case 564: self = .jsonString - case 565: self = .jsonText - case 566: self = .jsonUtf8Bytes - case 567: self = .jsonUtf8Data - case 568: self = .jstype - case 569: self = .k - case 570: self = .kChunkSize - case 571: self = .key - case 572: self = .keyField - case 573: self = .keyFieldOpt - case 574: self = .keyType - case 575: self = .kind - case 576: self = .l - case 577: self = .label - case 578: self = .lazy - case 579: self = .leadingComments - case 580: self = .leadingDetachedComments - case 581: self = .length - case 582: self = .lessThan - case 583: self = .let - case 584: self = .lhs - case 585: self = .list - case 586: self = .listOfMessages - case 587: self = .listValue - case 588: self = .littleEndian - case 589: self = .load - case 590: self = .localHasher - case 591: self = .location - case 592: self = .m - case 593: self = .major - case 594: self = .makeAsyncIterator - case 595: self = .makeIterator - case 596: self = .mapEntry - case 597: self = .mapKeyType - case 598: self = .mapToMessages - case 599: self = .mapValueType - case 600: self = .mapVisitor - case 601: self = .maximumEdition - case 602: self = .mdayStart - case 603: self = .merge - case 604: self = .message - case 605: self = .messageDepthLimit - case 606: self = .messageEncoding - case 607: self = .messageExtension - case 608: self = .messageImplementationBase - case 609: self = .messageOptions - case 610: self = .messageSet - case 611: self = .messageSetWireFormat - case 612: self = .messageSize - case 613: self = .messageType - case 614: self = .method - case 615: self = .methodDescriptorProto - case 616: self = .methodOptions - case 617: self = .methods - case 618: self = .min - case 619: self = .minimumEdition - case 620: self = .minor - case 621: self = .mixin - case 622: self = .mixins - case 623: self = .modifier - case 624: self = .modify - case 625: self = .month - case 626: self = .msgExtension - case 627: self = .mutating - case 628: self = .n - case 629: self = .name - case 630: self = .nameDescription - case 631: self = .nameMap - case 632: self = .namePart - case 633: self = .names - case 634: self = .nanos - case 635: self = .negativeIntValue - case 636: self = .nestedType - case 637: self = .newL - case 638: self = .newList - case 639: self = .newValue - case 640: self = .next - case 641: self = .nextByte - case 642: self = .nextFieldNumber - case 643: self = .nextVarInt - case 644: self = .nil - case 645: self = .nilLiteral - case 646: self = .noStandardDescriptorAccessor - case 647: self = .nullValue - case 648: self = .number - case 649: self = .numberValue - case 650: self = .objcClassPrefix - case 651: self = .of - case 652: self = .oneofDecl - case 653: self = .oneofDescriptorProto - case 654: self = .oneofIndex - case 655: self = .oneofOptions - case 656: self = .oneofs - case 657: self = .oneOfKind - case 658: self = .optimizeFor - case 659: self = .optimizeMode - case 660: self = .option - case 661: self = .optionalEnumExtensionField - case 662: self = .optionalExtensionField - case 663: self = .optionalGroupExtensionField - case 664: self = .optionalMessageExtensionField - case 665: self = .optionRetention - case 666: self = .options - case 667: self = .optionTargetType - case 668: self = .other - case 669: self = .others - case 670: self = .out - case 671: self = .outputType - case 672: self = .overridableFeatures - case 673: self = .p - case 674: self = .package - case 675: self = .packed - case 676: self = .packedEnumExtensionField - case 677: self = .packedExtensionField - case 678: self = .padding - case 679: self = .parent - case 680: self = .parse - case 681: self = .path - case 682: self = .paths - case 683: self = .payload - case 684: self = .payloadSize - case 685: self = .phpClassPrefix - case 686: self = .phpMetadataNamespace - case 687: self = .phpNamespace - case 688: self = .pos - case 689: self = .positiveIntValue - case 690: self = .prefix - case 691: self = .preserveProtoFieldNames - case 692: self = .preTraverse - case 693: self = .printUnknownFields - case 694: self = .proto2 - case 695: self = .proto3DefaultValue - case 696: self = .proto3Optional - case 697: self = .protobufApiversionCheck - case 698: self = .protobufApiversion3 - case 699: self = .protobufBool - case 700: self = .protobufBytes - case 701: self = .protobufDouble - case 702: self = .protobufEnumMap - case 703: self = .protobufExtension - case 704: self = .protobufFixed32 - case 705: self = .protobufFixed64 - case 706: self = .protobufFloat - case 707: self = .protobufInt32 - case 708: self = .protobufInt64 - case 709: self = .protobufMap - case 710: self = .protobufMessageMap - case 711: self = .protobufSfixed32 - case 712: self = .protobufSfixed64 - case 713: self = .protobufSint32 - case 714: self = .protobufSint64 - case 715: self = .protobufString - case 716: self = .protobufUint32 - case 717: self = .protobufUint64 - case 718: self = .protobufExtensionFieldValues - case 719: self = .protobufFieldNumber - case 720: self = .protobufGeneratedIsEqualTo - case 721: self = .protobufNameMap - case 722: self = .protobufNewField - case 723: self = .protobufPackage - case 724: self = .protocol - case 725: self = .protoFieldName - case 726: self = .protoMessageName - case 727: self = .protoNameProviding - case 728: self = .protoPaths - case 729: self = .public - case 730: self = .publicDependency - case 731: self = .putBoolValue - case 732: self = .putBytesValue - case 733: self = .putDoubleValue - case 734: self = .putEnumValue - case 735: self = .putFixedUint32 - case 736: self = .putFixedUint64 - case 737: self = .putFloatValue - case 738: self = .putInt64 - case 739: self = .putStringValue - case 740: self = .putUint64 - case 741: self = .putUint64Hex - case 742: self = .putVarInt - case 743: self = .putZigZagVarInt - case 744: self = .pyGenericServices - case 745: self = .r - case 746: self = .rawChars - case 747: self = .rawRepresentable - case 748: self = .rawValue_ - case 749: self = .read4HexDigits - case 750: self = .readBytes - case 751: self = .register - case 752: self = .repeated - case 753: self = .repeatedEnumExtensionField - case 754: self = .repeatedExtensionField - case 755: self = .repeatedFieldEncoding - case 756: self = .repeatedGroupExtensionField - case 757: self = .repeatedMessageExtensionField - case 758: self = .repeating - case 759: self = .requestStreaming - case 760: self = .requestTypeURL - case 761: self = .requiredSize - case 762: self = .responseStreaming - case 763: self = .responseTypeURL - case 764: self = .result - case 765: self = .retention - case 766: self = .rethrows - case 767: self = .return - case 768: self = .returnType - case 769: self = .revision - case 770: self = .rhs - case 771: self = .root - case 772: self = .rubyPackage - case 773: self = .s - case 774: self = .sawBackslash - case 775: self = .sawSection4Characters - case 776: self = .sawSection5Characters - case 777: self = .scan - case 778: self = .scanner - case 779: self = .seconds - case 780: self = .self_ - case 781: self = .semantic - case 782: self = .sendable - case 783: self = .separator - case 784: self = .serialize - case 785: self = .serializedBytes - case 786: self = .serializedData - case 787: self = .serializedSize - case 788: self = .serverStreaming - case 789: self = .service - case 790: self = .serviceDescriptorProto - case 791: self = .serviceOptions - case 792: self = .set - case 793: self = .setExtensionValue - case 794: self = .shift - case 795: self = .simpleExtensionMap - case 796: self = .size - case 797: self = .sizer - case 798: self = .source - case 799: self = .sourceCodeInfo - case 800: self = .sourceContext - case 801: self = .sourceEncoding - case 802: self = .sourceFile - case 803: self = .span - case 804: self = .split - case 805: self = .start - case 806: self = .startArray - case 807: self = .startArrayObject - case 808: self = .startField - case 809: self = .startIndex - case 810: self = .startMessageField - case 811: self = .startObject - case 812: self = .startRegularField - case 813: self = .state - case 814: self = .static - case 815: self = .staticString - case 816: self = .storage - case 817: self = .string - case 818: self = .stringLiteral - case 819: self = .stringLiteralType - case 820: self = .stringResult - case 821: self = .stringValue - case 822: self = .struct - case 823: self = .structValue - case 824: self = .subDecoder - case 825: self = .subscript - case 826: self = .subVisitor - case 827: self = .swift - case 828: self = .swiftPrefix - case 829: self = .swiftProtobufContiguousBytes - case 830: self = .syntax - case 831: self = .t - case 832: self = .tag - case 833: self = .targets - case 834: self = .terminator - case 835: self = .testDecoder - case 836: self = .text - case 837: self = .textDecoder - case 838: self = .textFormatDecoder - case 839: self = .textFormatDecodingError - case 840: self = .textFormatDecodingOptions - case 841: self = .textFormatEncodingOptions - case 842: self = .textFormatEncodingVisitor - case 843: self = .textFormatString - case 844: self = .throwOrIgnore - case 845: self = .throws - case 846: self = .timeInterval - case 847: self = .timeIntervalSince1970 - case 848: self = .timeIntervalSinceReferenceDate - case 849: self = .timestamp - case 850: self = .total - case 851: self = .totalArrayDepth - case 852: self = .totalSize - case 853: self = .trailingComments - case 854: self = .traverse - case 855: self = .true - case 856: self = .try - case 857: self = .type - case 858: self = .typealias - case 859: self = .typeEnum - case 860: self = .typeName - case 861: self = .typePrefix - case 862: self = .typeStart - case 863: self = .typeUnknown - case 864: self = .typeURL - case 865: self = .uint32 - case 866: self = .uint32Value - case 867: self = .uint64 - case 868: self = .uint64Value - case 869: self = .uint8 - case 870: self = .unchecked - case 871: self = .unicodeScalarLiteral - case 872: self = .unicodeScalarLiteralType - case 873: self = .unicodeScalars - case 874: self = .unicodeScalarView - case 875: self = .uninterpretedOption - case 876: self = .union - case 877: self = .uniqueStorage - case 878: self = .unknown - case 879: self = .unknownFields - case 880: self = .unknownStorage - case 881: self = .unpackTo - case 882: self = .unsafeBufferPointer - case 883: self = .unsafeMutablePointer - case 884: self = .unsafeMutableRawBufferPointer - case 885: self = .unsafeRawBufferPointer - case 886: self = .unsafeRawPointer - case 887: self = .unverifiedLazy - case 888: self = .updatedOptions - case 889: self = .url - case 890: self = .useDeterministicOrdering - case 891: self = .utf8 - case 892: self = .utf8Ptr - case 893: self = .utf8ToDouble - case 894: self = .utf8Validation - case 895: self = .utf8View - case 896: self = .v - case 897: self = .value - case 898: self = .valueField - case 899: self = .values - case 900: self = .valueType - case 901: self = .var - case 902: self = .verification - case 903: self = .verificationState - case 904: self = .version - case 905: self = .versionString - case 906: self = .visitExtensionFields - case 907: self = .visitExtensionFieldsAsMessageSet - case 908: self = .visitMapField - case 909: self = .visitor - case 910: self = .visitPacked - case 911: self = .visitPackedBoolField - case 912: self = .visitPackedDoubleField - case 913: self = .visitPackedEnumField - case 914: self = .visitPackedFixed32Field - case 915: self = .visitPackedFixed64Field - case 916: self = .visitPackedFloatField - case 917: self = .visitPackedInt32Field - case 918: self = .visitPackedInt64Field - case 919: self = .visitPackedSfixed32Field - case 920: self = .visitPackedSfixed64Field - case 921: self = .visitPackedSint32Field - case 922: self = .visitPackedSint64Field - case 923: self = .visitPackedUint32Field - case 924: self = .visitPackedUint64Field - case 925: self = .visitRepeated - case 926: self = .visitRepeatedBoolField - case 927: self = .visitRepeatedBytesField - case 928: self = .visitRepeatedDoubleField - case 929: self = .visitRepeatedEnumField - case 930: self = .visitRepeatedFixed32Field - case 931: self = .visitRepeatedFixed64Field - case 932: self = .visitRepeatedFloatField - case 933: self = .visitRepeatedGroupField - case 934: self = .visitRepeatedInt32Field - case 935: self = .visitRepeatedInt64Field - case 936: self = .visitRepeatedMessageField - case 937: self = .visitRepeatedSfixed32Field - case 938: self = .visitRepeatedSfixed64Field - case 939: self = .visitRepeatedSint32Field - case 940: self = .visitRepeatedSint64Field - case 941: self = .visitRepeatedStringField - case 942: self = .visitRepeatedUint32Field - case 943: self = .visitRepeatedUint64Field - case 944: self = .visitSingular - case 945: self = .visitSingularBoolField - case 946: self = .visitSingularBytesField - case 947: self = .visitSingularDoubleField - case 948: self = .visitSingularEnumField - case 949: self = .visitSingularFixed32Field - case 950: self = .visitSingularFixed64Field - case 951: self = .visitSingularFloatField - case 952: self = .visitSingularGroupField - case 953: self = .visitSingularInt32Field - case 954: self = .visitSingularInt64Field - case 955: self = .visitSingularMessageField - case 956: self = .visitSingularSfixed32Field - case 957: self = .visitSingularSfixed64Field - case 958: self = .visitSingularSint32Field - case 959: self = .visitSingularSint64Field - case 960: self = .visitSingularStringField - case 961: self = .visitSingularUint32Field - case 962: self = .visitSingularUint64Field - case 963: self = .visitUnknown - case 964: self = .wasDecoded - case 965: self = .weak - case 966: self = .weakDependency - case 967: self = .where - case 968: self = .wireFormat - case 969: self = .with - case 970: self = .withUnsafeBytes - case 971: self = .withUnsafeMutableBytes - case 972: self = .work - case 973: self = .wrapped - case 974: self = .wrappedType - case 975: self = .wrappedValue - case 976: self = .written - case 977: self = .yday + case 12: self = .anyTypeUrlnotRegistered + case 13: self = .anyUnpackError + case 14: self = .api + case 15: self = .appended + case 16: self = .appendUintHex + case 17: self = .appendUnknown + case 18: self = .areAllInitialized + case 19: self = .array + case 20: self = .arrayDepth + case 21: self = .arrayLiteral + case 22: self = .arraySeparator + case 23: self = .as + case 24: self = .asciiOpenCurlyBracket + case 25: self = .asciiZero + case 26: self = .async + case 27: self = .asyncIterator + case 28: self = .asyncIteratorProtocol + case 29: self = .asyncMessageSequence + case 30: self = .available + case 31: self = .b + case 32: self = .base + case 33: self = .base64Values + case 34: self = .baseAddress + case 35: self = .baseType + case 36: self = .begin + case 37: self = .binary + case 38: self = .binaryDecoder + case 39: self = .binaryDecoding + case 40: self = .binaryDecodingError + case 41: self = .binaryDecodingOptions + case 42: self = .binaryDelimited + case 43: self = .binaryEncoder + case 44: self = .binaryEncoding + case 45: self = .binaryEncodingError + case 46: self = .binaryEncodingMessageSetSizeVisitor + case 47: self = .binaryEncodingMessageSetVisitor + case 48: self = .binaryEncodingOptions + case 49: self = .binaryEncodingSizeVisitor + case 50: self = .binaryEncodingVisitor + case 51: self = .binaryOptions + case 52: self = .binaryProtobufDelimitedMessages + case 53: self = .binaryStreamDecoding + case 54: self = .binaryStreamDecodingError + case 55: self = .bitPattern + case 56: self = .body + case 57: self = .bool + case 58: self = .booleanLiteral + case 59: self = .booleanLiteralType + case 60: self = .boolValue + case 61: self = .buffer + case 62: self = .bytes + case 63: self = .bytesInGroup + case 64: self = .bytesNeeded + case 65: self = .bytesRead + case 66: self = .bytesValue + case 67: self = .c + case 68: self = .capitalizeNext + case 69: self = .cardinality + case 70: self = .caseIterable + case 71: self = .ccEnableArenas + case 72: self = .ccGenericServices + case 73: self = .character + case 74: self = .chars + case 75: self = .chunk + case 76: self = .class + case 77: self = .clearAggregateValue + case 78: self = .clearAllowAlias + case 79: self = .clearBegin + case 80: self = .clearCcEnableArenas + case 81: self = .clearCcGenericServices + case 82: self = .clearClientStreaming + case 83: self = .clearCsharpNamespace + case 84: self = .clearCtype + case 85: self = .clearDebugRedact + case 86: self = .clearDefaultValue + case 87: self = .clearDeprecated + case 88: self = .clearDeprecatedLegacyJsonFieldConflicts + case 89: self = .clearDeprecationWarning + case 90: self = .clearDoubleValue + case 91: self = .clearEdition + case 92: self = .clearEditionDeprecated + case 93: self = .clearEditionIntroduced + case 94: self = .clearEditionRemoved + case 95: self = .clearEnd + case 96: self = .clearEnumType + case 97: self = .clearExtendee + case 98: self = .clearExtensionValue + case 99: self = .clearFeatures + case 100: self = .clearFeatureSupport + case 101: self = .clearFieldPresence + case 102: self = .clearFixedFeatures + case 103: self = .clearFullName + case 104: self = .clearGoPackage + case 105: self = .clearIdempotencyLevel + case 106: self = .clearIdentifierValue + case 107: self = .clearInputType + case 108: self = .clearIsExtension + case 109: self = .clearJavaGenerateEqualsAndHash + case 110: self = .clearJavaGenericServices + case 111: self = .clearJavaMultipleFiles + case 112: self = .clearJavaOuterClassname + case 113: self = .clearJavaPackage + case 114: self = .clearJavaStringCheckUtf8 + case 115: self = .clearJsonFormat + case 116: self = .clearJsonName + case 117: self = .clearJstype + case 118: self = .clearLabel + case 119: self = .clearLazy + case 120: self = .clearLeadingComments + case 121: self = .clearMapEntry + case 122: self = .clearMaximumEdition + case 123: self = .clearMessageEncoding + case 124: self = .clearMessageSetWireFormat + case 125: self = .clearMinimumEdition + case 126: self = .clearName + case 127: self = .clearNamePart + case 128: self = .clearNegativeIntValue + case 129: self = .clearNoStandardDescriptorAccessor + case 130: self = .clearNumber + case 131: self = .clearObjcClassPrefix + case 132: self = .clearOneofIndex + case 133: self = .clearOptimizeFor + case 134: self = .clearOptions + case 135: self = .clearOutputType + case 136: self = .clearOverridableFeatures + case 137: self = .clearPackage + case 138: self = .clearPacked + case 139: self = .clearPhpClassPrefix + case 140: self = .clearPhpMetadataNamespace + case 141: self = .clearPhpNamespace + case 142: self = .clearPositiveIntValue + case 143: self = .clearProto3Optional + case 144: self = .clearPyGenericServices + case 145: self = .clearRepeated + case 146: self = .clearRepeatedFieldEncoding + case 147: self = .clearReserved + case 148: self = .clearRetention + case 149: self = .clearRubyPackage + case 150: self = .clearSemantic + case 151: self = .clearServerStreaming + case 152: self = .clearSourceCodeInfo + case 153: self = .clearSourceContext + case 154: self = .clearSourceFile + case 155: self = .clearStart + case 156: self = .clearStringValue + case 157: self = .clearSwiftPrefix + case 158: self = .clearSyntax + case 159: self = .clearTrailingComments + case 160: self = .clearType + case 161: self = .clearTypeName + case 162: self = .clearUnverifiedLazy + case 163: self = .clearUtf8Validation + case 164: self = .clearValue + case 165: self = .clearVerification + case 166: self = .clearWeak + case 167: self = .clientStreaming + case 168: self = .code + case 169: self = .codePoint + case 170: self = .codeUnits + case 171: self = .collection + case 172: self = .com + case 173: self = .comma + case 174: self = .consumedBytes + case 175: self = .contentsOf + case 176: self = .copy + case 177: self = .count + case 178: self = .countVarintsInBuffer + case 179: self = .csharpNamespace + case 180: self = .ctype + case 181: self = .customCodable + case 182: self = .customDebugStringConvertible + case 183: self = .customStringConvertible + case 184: self = .d + case 185: self = .data + case 186: self = .dataResult + case 187: self = .date + case 188: self = .daySec + case 189: self = .daysSinceEpoch + case 190: self = .debugDescription_ + case 191: self = .debugRedact + case 192: self = .declaration + case 193: self = .decoded + case 194: self = .decodedFromJsonnull + case 195: self = .decodeExtensionField + case 196: self = .decodeExtensionFieldsAsMessageSet + case 197: self = .decodeJson + case 198: self = .decodeMapField + case 199: self = .decodeMessage + case 200: self = .decoder + case 201: self = .decodeRepeated + case 202: self = .decodeRepeatedBoolField + case 203: self = .decodeRepeatedBytesField + case 204: self = .decodeRepeatedDoubleField + case 205: self = .decodeRepeatedEnumField + case 206: self = .decodeRepeatedFixed32Field + case 207: self = .decodeRepeatedFixed64Field + case 208: self = .decodeRepeatedFloatField + case 209: self = .decodeRepeatedGroupField + case 210: self = .decodeRepeatedInt32Field + case 211: self = .decodeRepeatedInt64Field + case 212: self = .decodeRepeatedMessageField + case 213: self = .decodeRepeatedSfixed32Field + case 214: self = .decodeRepeatedSfixed64Field + case 215: self = .decodeRepeatedSint32Field + case 216: self = .decodeRepeatedSint64Field + case 217: self = .decodeRepeatedStringField + case 218: self = .decodeRepeatedUint32Field + case 219: self = .decodeRepeatedUint64Field + case 220: self = .decodeSingular + case 221: self = .decodeSingularBoolField + case 222: self = .decodeSingularBytesField + case 223: self = .decodeSingularDoubleField + case 224: self = .decodeSingularEnumField + case 225: self = .decodeSingularFixed32Field + case 226: self = .decodeSingularFixed64Field + case 227: self = .decodeSingularFloatField + case 228: self = .decodeSingularGroupField + case 229: self = .decodeSingularInt32Field + case 230: self = .decodeSingularInt64Field + case 231: self = .decodeSingularMessageField + case 232: self = .decodeSingularSfixed32Field + case 233: self = .decodeSingularSfixed64Field + case 234: self = .decodeSingularSint32Field + case 235: self = .decodeSingularSint64Field + case 236: self = .decodeSingularStringField + case 237: self = .decodeSingularUint32Field + case 238: self = .decodeSingularUint64Field + case 239: self = .decodeTextFormat + case 240: self = .defaultAnyTypeUrlprefix + case 241: self = .defaults + case 242: self = .defaultValue + case 243: self = .dependency + case 244: self = .deprecated + case 245: self = .deprecatedLegacyJsonFieldConflicts + case 246: self = .deprecationWarning + case 247: self = .description_ + case 248: self = .descriptorProto + case 249: self = .dictionary + case 250: self = .dictionaryLiteral + case 251: self = .digit + case 252: self = .digit0 + case 253: self = .digit1 + case 254: self = .digitCount + case 255: self = .digits + case 256: self = .digitValue + case 257: self = .discardableResult + case 258: self = .discardUnknownFields + case 259: self = .double + case 260: self = .doubleValue + case 261: self = .duration + case 262: self = .e + case 263: self = .edition + case 264: self = .editionDefault + case 265: self = .editionDefaults + case 266: self = .editionDeprecated + case 267: self = .editionIntroduced + case 268: self = .editionRemoved + case 269: self = .element + case 270: self = .elements + case 271: self = .emitExtensionFieldName + case 272: self = .emitFieldName + case 273: self = .emitFieldNumber + case 274: self = .empty + case 275: self = .encodeAsBytes + case 276: self = .encoded + case 277: self = .encodedJsonstring + case 278: self = .encodedSize + case 279: self = .encodeField + case 280: self = .encoder + case 281: self = .end + case 282: self = .endArray + case 283: self = .endMessageField + case 284: self = .endObject + case 285: self = .endRegularField + case 286: self = .enum + case 287: self = .enumDescriptorProto + case 288: self = .enumOptions + case 289: self = .enumReservedRange + case 290: self = .enumType + case 291: self = .enumvalue + case 292: self = .enumValueDescriptorProto + case 293: self = .enumValueOptions + case 294: self = .equatable + case 295: self = .error + case 296: self = .expressibleByArrayLiteral + case 297: self = .expressibleByDictionaryLiteral + case 298: self = .ext + case 299: self = .extDecoder + case 300: self = .extendedGraphemeClusterLiteral + case 301: self = .extendedGraphemeClusterLiteralType + case 302: self = .extendee + case 303: self = .extensibleMessage + case 304: self = .extension + case 305: self = .extensionField + case 306: self = .extensionFieldNumber + case 307: self = .extensionFieldValueSet + case 308: self = .extensionMap + case 309: self = .extensionRange + case 310: self = .extensionRangeOptions + case 311: self = .extensions + case 312: self = .extras + case 313: self = .f + case 314: self = .false + case 315: self = .features + case 316: self = .featureSet + case 317: self = .featureSetDefaults + case 318: self = .featureSetEditionDefault + case 319: self = .featureSupport + case 320: self = .field + case 321: self = .fieldData + case 322: self = .fieldDescriptorProto + case 323: self = .fieldMask + case 324: self = .fieldName + case 325: self = .fieldNameCount + case 326: self = .fieldNum + case 327: self = .fieldNumber + case 328: self = .fieldNumberForProto + case 329: self = .fieldOptions + case 330: self = .fieldPresence + case 331: self = .fields + case 332: self = .fieldSize + case 333: self = .fieldTag + case 334: self = .fieldType + case 335: self = .file + case 336: self = .fileDescriptorProto + case 337: self = .fileDescriptorSet + case 338: self = .fileName + case 339: self = .fileOptions + case 340: self = .filter + case 341: self = .final + case 342: self = .finiteOnly + case 343: self = .first + case 344: self = .firstItem + case 345: self = .fixedFeatures + case 346: self = .float + case 347: self = .floatLiteral + case 348: self = .floatLiteralType + case 349: self = .floatValue + case 350: self = .forMessageName + case 351: self = .formUnion + case 352: self = .forReadingFrom + case 353: self = .forTypeURL + case 354: self = .forwardParser + case 355: self = .forWritingInto + case 356: self = .from + case 357: self = .fromAscii2 + case 358: self = .fromAscii4 + case 359: self = .fromByteOffset + case 360: self = .fromHexDigit + case 361: self = .fullName + case 362: self = .func + case 363: self = .function + case 364: self = .g + case 365: self = .generatedCodeInfo + case 366: self = .get + case 367: self = .getExtensionValue + case 368: self = .googleapis + case 369: self = .googleProtobufAny + case 370: self = .googleProtobufApi + case 371: self = .googleProtobufBoolValue + case 372: self = .googleProtobufBytesValue + case 373: self = .googleProtobufDescriptorProto + case 374: self = .googleProtobufDoubleValue + case 375: self = .googleProtobufDuration + case 376: self = .googleProtobufEdition + case 377: self = .googleProtobufEmpty + case 378: self = .googleProtobufEnum + case 379: self = .googleProtobufEnumDescriptorProto + case 380: self = .googleProtobufEnumOptions + case 381: self = .googleProtobufEnumValue + case 382: self = .googleProtobufEnumValueDescriptorProto + case 383: self = .googleProtobufEnumValueOptions + case 384: self = .googleProtobufExtensionRangeOptions + case 385: self = .googleProtobufFeatureSet + case 386: self = .googleProtobufFeatureSetDefaults + case 387: self = .googleProtobufField + case 388: self = .googleProtobufFieldDescriptorProto + case 389: self = .googleProtobufFieldMask + case 390: self = .googleProtobufFieldOptions + case 391: self = .googleProtobufFileDescriptorProto + case 392: self = .googleProtobufFileDescriptorSet + case 393: self = .googleProtobufFileOptions + case 394: self = .googleProtobufFloatValue + case 395: self = .googleProtobufGeneratedCodeInfo + case 396: self = .googleProtobufInt32Value + case 397: self = .googleProtobufInt64Value + case 398: self = .googleProtobufListValue + case 399: self = .googleProtobufMessageOptions + case 400: self = .googleProtobufMethod + case 401: self = .googleProtobufMethodDescriptorProto + case 402: self = .googleProtobufMethodOptions + case 403: self = .googleProtobufMixin + case 404: self = .googleProtobufNullValue + case 405: self = .googleProtobufOneofDescriptorProto + case 406: self = .googleProtobufOneofOptions + case 407: self = .googleProtobufOption + case 408: self = .googleProtobufServiceDescriptorProto + case 409: self = .googleProtobufServiceOptions + case 410: self = .googleProtobufSourceCodeInfo + case 411: self = .googleProtobufSourceContext + case 412: self = .googleProtobufStringValue + case 413: self = .googleProtobufStruct + case 414: self = .googleProtobufSyntax + case 415: self = .googleProtobufTimestamp + case 416: self = .googleProtobufType + case 417: self = .googleProtobufUint32Value + case 418: self = .googleProtobufUint64Value + case 419: self = .googleProtobufUninterpretedOption + case 420: self = .googleProtobufValue + case 421: self = .goPackage + case 422: self = .group + case 423: self = .groupFieldNumberStack + case 424: self = .groupSize + case 425: self = .hadOneofValue + case 426: self = .handleConflictingOneOf + case 427: self = .hasAggregateValue + case 428: self = .hasAllowAlias + case 429: self = .hasBegin + case 430: self = .hasCcEnableArenas + case 431: self = .hasCcGenericServices + case 432: self = .hasClientStreaming + case 433: self = .hasCsharpNamespace + case 434: self = .hasCtype + case 435: self = .hasDebugRedact + case 436: self = .hasDefaultValue + case 437: self = .hasDeprecated + case 438: self = .hasDeprecatedLegacyJsonFieldConflicts + case 439: self = .hasDeprecationWarning + case 440: self = .hasDoubleValue + case 441: self = .hasEdition + case 442: self = .hasEditionDeprecated + case 443: self = .hasEditionIntroduced + case 444: self = .hasEditionRemoved + case 445: self = .hasEnd + case 446: self = .hasEnumType + case 447: self = .hasExtendee + case 448: self = .hasExtensionValue + case 449: self = .hasFeatures + case 450: self = .hasFeatureSupport + case 451: self = .hasFieldPresence + case 452: self = .hasFixedFeatures + case 453: self = .hasFullName + case 454: self = .hasGoPackage + case 455: self = .hash + case 456: self = .hashable + case 457: self = .hasher + case 458: self = .hashVisitor + case 459: self = .hasIdempotencyLevel + case 460: self = .hasIdentifierValue + case 461: self = .hasInputType + case 462: self = .hasIsExtension + case 463: self = .hasJavaGenerateEqualsAndHash + case 464: self = .hasJavaGenericServices + case 465: self = .hasJavaMultipleFiles + case 466: self = .hasJavaOuterClassname + case 467: self = .hasJavaPackage + case 468: self = .hasJavaStringCheckUtf8 + case 469: self = .hasJsonFormat + case 470: self = .hasJsonName + case 471: self = .hasJstype + case 472: self = .hasLabel + case 473: self = .hasLazy + case 474: self = .hasLeadingComments + case 475: self = .hasMapEntry + case 476: self = .hasMaximumEdition + case 477: self = .hasMessageEncoding + case 478: self = .hasMessageSetWireFormat + case 479: self = .hasMinimumEdition + case 480: self = .hasName + case 481: self = .hasNamePart + case 482: self = .hasNegativeIntValue + case 483: self = .hasNoStandardDescriptorAccessor + case 484: self = .hasNumber + case 485: self = .hasObjcClassPrefix + case 486: self = .hasOneofIndex + case 487: self = .hasOptimizeFor + case 488: self = .hasOptions + case 489: self = .hasOutputType + case 490: self = .hasOverridableFeatures + case 491: self = .hasPackage + case 492: self = .hasPacked + case 493: self = .hasPhpClassPrefix + case 494: self = .hasPhpMetadataNamespace + case 495: self = .hasPhpNamespace + case 496: self = .hasPositiveIntValue + case 497: self = .hasProto3Optional + case 498: self = .hasPyGenericServices + case 499: self = .hasRepeated + case 500: self = .hasRepeatedFieldEncoding + case 501: self = .hasReserved + case 502: self = .hasRetention + case 503: self = .hasRubyPackage + case 504: self = .hasSemantic + case 505: self = .hasServerStreaming + case 506: self = .hasSourceCodeInfo + case 507: self = .hasSourceContext + case 508: self = .hasSourceFile + case 509: self = .hasStart + case 510: self = .hasStringValue + case 511: self = .hasSwiftPrefix + case 512: self = .hasSyntax + case 513: self = .hasTrailingComments + case 514: self = .hasType + case 515: self = .hasTypeName + case 516: self = .hasUnverifiedLazy + case 517: self = .hasUtf8Validation + case 518: self = .hasValue + case 519: self = .hasVerification + case 520: self = .hasWeak + case 521: self = .hour + case 522: self = .i + case 523: self = .idempotencyLevel + case 524: self = .identifierValue + case 525: self = .if + case 526: self = .ignoreUnknownExtensionFields + case 527: self = .ignoreUnknownFields + case 528: self = .index + case 529: self = .init_ + case 530: self = .inout + case 531: self = .inputType + case 532: self = .insert + case 533: self = .int + case 534: self = .int32 + case 535: self = .int32Value + case 536: self = .int64 + case 537: self = .int64Value + case 538: self = .int8 + case 539: self = .integerLiteral + case 540: self = .integerLiteralType + case 541: self = .intern + case 542: self = .internal + case 543: self = .internalState + case 544: self = .into + case 545: self = .ints + case 546: self = .isA + case 547: self = .isEqual + case 548: self = .isEqualTo + case 549: self = .isExtension + case 550: self = .isInitialized + case 551: self = .isNegative + case 552: self = .itemTagsEncodedSize + case 553: self = .iterator + case 554: self = .javaGenerateEqualsAndHash + case 555: self = .javaGenericServices + case 556: self = .javaMultipleFiles + case 557: self = .javaOuterClassname + case 558: self = .javaPackage + case 559: self = .javaStringCheckUtf8 + case 560: self = .jsondecoder + case 561: self = .jsondecodingError + case 562: self = .jsondecodingOptions + case 563: self = .jsonEncoder + case 564: self = .jsonencoding + case 565: self = .jsonencodingError + case 566: self = .jsonencodingOptions + case 567: self = .jsonencodingVisitor + case 568: self = .jsonFormat + case 569: self = .jsonmapEncodingVisitor + case 570: self = .jsonName + case 571: self = .jsonPath + case 572: self = .jsonPaths + case 573: self = .jsonscanner + case 574: self = .jsonString + case 575: self = .jsonText + case 576: self = .jsonUtf8Bytes + case 577: self = .jsonUtf8Data + case 578: self = .jstype + case 579: self = .k + case 580: self = .kChunkSize + case 581: self = .key + case 582: self = .keyField + case 583: self = .keyFieldOpt + case 584: self = .keyType + case 585: self = .kind + case 586: self = .l + case 587: self = .label + case 588: self = .lazy + case 589: self = .leadingComments + case 590: self = .leadingDetachedComments + case 591: self = .length + case 592: self = .lessThan + case 593: self = .let + case 594: self = .lhs + case 595: self = .line + case 596: self = .list + case 597: self = .listOfMessages + case 598: self = .listValue + case 599: self = .littleEndian + case 600: self = .load + case 601: self = .localHasher + case 602: self = .location + case 603: self = .m + case 604: self = .major + case 605: self = .makeAsyncIterator + case 606: self = .makeIterator + case 607: self = .malformedLength + case 608: self = .mapEntry + case 609: self = .mapKeyType + case 610: self = .mapToMessages + case 611: self = .mapValueType + case 612: self = .mapVisitor + case 613: self = .maximumEdition + case 614: self = .mdayStart + case 615: self = .merge + case 616: self = .message + case 617: self = .messageDepthLimit + case 618: self = .messageEncoding + case 619: self = .messageExtension + case 620: self = .messageImplementationBase + case 621: self = .messageOptions + case 622: self = .messageSet + case 623: self = .messageSetWireFormat + case 624: self = .messageSize + case 625: self = .messageType + case 626: self = .method + case 627: self = .methodDescriptorProto + case 628: self = .methodOptions + case 629: self = .methods + case 630: self = .min + case 631: self = .minimumEdition + case 632: self = .minor + case 633: self = .mixin + case 634: self = .mixins + case 635: self = .modifier + case 636: self = .modify + case 637: self = .month + case 638: self = .msgExtension + case 639: self = .mutating + case 640: self = .n + case 641: self = .name + case 642: self = .nameDescription + case 643: self = .nameMap + case 644: self = .namePart + case 645: self = .names + case 646: self = .nanos + case 647: self = .negativeIntValue + case 648: self = .nestedType + case 649: self = .newL + case 650: self = .newList + case 651: self = .newValue + case 652: self = .next + case 653: self = .nextByte + case 654: self = .nextFieldNumber + case 655: self = .nextVarInt + case 656: self = .nil + case 657: self = .nilLiteral + case 658: self = .noBytesAvailable + case 659: self = .noStandardDescriptorAccessor + case 660: self = .nullValue + case 661: self = .number + case 662: self = .numberValue + case 663: self = .objcClassPrefix + case 664: self = .of + case 665: self = .oneofDecl + case 666: self = .oneofDescriptorProto + case 667: self = .oneofIndex + case 668: self = .oneofOptions + case 669: self = .oneofs + case 670: self = .oneOfKind + case 671: self = .optimizeFor + case 672: self = .optimizeMode + case 673: self = .option + case 674: self = .optionalEnumExtensionField + case 675: self = .optionalExtensionField + case 676: self = .optionalGroupExtensionField + case 677: self = .optionalMessageExtensionField + case 678: self = .optionRetention + case 679: self = .options + case 680: self = .optionTargetType + case 681: self = .other + case 682: self = .others + case 683: self = .out + case 684: self = .outputType + case 685: self = .overridableFeatures + case 686: self = .p + case 687: self = .package + case 688: self = .packed + case 689: self = .packedEnumExtensionField + case 690: self = .packedExtensionField + case 691: self = .padding + case 692: self = .parent + case 693: self = .parse + case 694: self = .path + case 695: self = .paths + case 696: self = .payload + case 697: self = .payloadSize + case 698: self = .phpClassPrefix + case 699: self = .phpMetadataNamespace + case 700: self = .phpNamespace + case 701: self = .pos + case 702: self = .positiveIntValue + case 703: self = .prefix + case 704: self = .preserveProtoFieldNames + case 705: self = .preTraverse + case 706: self = .printUnknownFields + case 707: self = .proto2 + case 708: self = .proto3DefaultValue + case 709: self = .proto3Optional + case 710: self = .protobufApiversionCheck + case 711: self = .protobufApiversion3 + case 712: self = .protobufBool + case 713: self = .protobufBytes + case 714: self = .protobufDouble + case 715: self = .protobufEnumMap + case 716: self = .protobufExtension + case 717: self = .protobufFixed32 + case 718: self = .protobufFixed64 + case 719: self = .protobufFloat + case 720: self = .protobufInt32 + case 721: self = .protobufInt64 + case 722: self = .protobufMap + case 723: self = .protobufMessageMap + case 724: self = .protobufSfixed32 + case 725: self = .protobufSfixed64 + case 726: self = .protobufSint32 + case 727: self = .protobufSint64 + case 728: self = .protobufString + case 729: self = .protobufUint32 + case 730: self = .protobufUint64 + case 731: self = .protobufExtensionFieldValues + case 732: self = .protobufFieldNumber + case 733: self = .protobufGeneratedIsEqualTo + case 734: self = .protobufNameMap + case 735: self = .protobufNewField + case 736: self = .protobufPackage + case 737: self = .protocol + case 738: self = .protoFieldName + case 739: self = .protoMessageName + case 740: self = .protoNameProviding + case 741: self = .protoPaths + case 742: self = .public + case 743: self = .publicDependency + case 744: self = .putBoolValue + case 745: self = .putBytesValue + case 746: self = .putDoubleValue + case 747: self = .putEnumValue + case 748: self = .putFixedUint32 + case 749: self = .putFixedUint64 + case 750: self = .putFloatValue + case 751: self = .putInt64 + case 752: self = .putStringValue + case 753: self = .putUint64 + case 754: self = .putUint64Hex + case 755: self = .putVarInt + case 756: self = .putZigZagVarInt + case 757: self = .pyGenericServices + case 758: self = .r + case 759: self = .rawChars + case 760: self = .rawRepresentable + case 761: self = .rawValue_ + case 762: self = .read4HexDigits + case 763: self = .readBytes + case 764: self = .register + case 765: self = .repeated + case 766: self = .repeatedEnumExtensionField + case 767: self = .repeatedExtensionField + case 768: self = .repeatedFieldEncoding + case 769: self = .repeatedGroupExtensionField + case 770: self = .repeatedMessageExtensionField + case 771: self = .repeating + case 772: self = .requestStreaming + case 773: self = .requestTypeURL + case 774: self = .requiredSize + case 775: self = .responseStreaming + case 776: self = .responseTypeURL + case 777: self = .result + case 778: self = .retention + case 779: self = .rethrows + case 780: self = .return + case 781: self = .returnType + case 782: self = .revision + case 783: self = .rhs + case 784: self = .root + case 785: self = .rubyPackage + case 786: self = .s + case 787: self = .sawBackslash + case 788: self = .sawSection4Characters + case 789: self = .sawSection5Characters + case 790: self = .scan + case 791: self = .scanner + case 792: self = .seconds + case 793: self = .self_ + case 794: self = .semantic + case 795: self = .sendable + case 796: self = .separator + case 797: self = .serialize + case 798: self = .serializedBytes + case 799: self = .serializedData + case 800: self = .serializedSize + case 801: self = .serverStreaming + case 802: self = .service + case 803: self = .serviceDescriptorProto + case 804: self = .serviceOptions + case 805: self = .set + case 806: self = .setExtensionValue + case 807: self = .shift + case 808: self = .simpleExtensionMap + case 809: self = .size + case 810: self = .sizer + case 811: self = .source + case 812: self = .sourceCodeInfo + case 813: self = .sourceContext + case 814: self = .sourceEncoding + case 815: self = .sourceFile + case 816: self = .sourceLocation + case 817: self = .span + case 818: self = .split + case 819: self = .start + case 820: self = .startArray + case 821: self = .startArrayObject + case 822: self = .startField + case 823: self = .startIndex + case 824: self = .startMessageField + case 825: self = .startObject + case 826: self = .startRegularField + case 827: self = .state + case 828: self = .static + case 829: self = .staticString + case 830: self = .storage + case 831: self = .string + case 832: self = .stringLiteral + case 833: self = .stringLiteralType + case 834: self = .stringResult + case 835: self = .stringValue + case 836: self = .struct + case 837: self = .structValue + case 838: self = .subDecoder + case 839: self = .subscript + case 840: self = .subVisitor + case 841: self = .swift + case 842: self = .swiftPrefix + case 843: self = .swiftProtobufContiguousBytes + case 844: self = .swiftProtobufError + case 845: self = .syntax + case 846: self = .t + case 847: self = .tag + case 848: self = .targets + case 849: self = .terminator + case 850: self = .testDecoder + case 851: self = .text + case 852: self = .textDecoder + case 853: self = .textFormatDecoder + case 854: self = .textFormatDecodingError + case 855: self = .textFormatDecodingOptions + case 856: self = .textFormatEncodingOptions + case 857: self = .textFormatEncodingVisitor + case 858: self = .textFormatString + case 859: self = .throwOrIgnore + case 860: self = .throws + case 861: self = .timeInterval + case 862: self = .timeIntervalSince1970 + case 863: self = .timeIntervalSinceReferenceDate + case 864: self = .timestamp + case 865: self = .tooLarge + case 866: self = .total + case 867: self = .totalArrayDepth + case 868: self = .totalSize + case 869: self = .trailingComments + case 870: self = .traverse + case 871: self = .true + case 872: self = .try + case 873: self = .type + case 874: self = .typealias + case 875: self = .typeEnum + case 876: self = .typeName + case 877: self = .typePrefix + case 878: self = .typeStart + case 879: self = .typeUnknown + case 880: self = .typeURL + case 881: self = .uint32 + case 882: self = .uint32Value + case 883: self = .uint64 + case 884: self = .uint64Value + case 885: self = .uint8 + case 886: self = .unchecked + case 887: self = .unicodeScalarLiteral + case 888: self = .unicodeScalarLiteralType + case 889: self = .unicodeScalars + case 890: self = .unicodeScalarView + case 891: self = .uninterpretedOption + case 892: self = .union + case 893: self = .uniqueStorage + case 894: self = .unknown + case 895: self = .unknownFields + case 896: self = .unknownStorage + case 897: self = .unpackTo + case 898: self = .unregisteredTypeURL + case 899: self = .unsafeBufferPointer + case 900: self = .unsafeMutablePointer + case 901: self = .unsafeMutableRawBufferPointer + case 902: self = .unsafeRawBufferPointer + case 903: self = .unsafeRawPointer + case 904: self = .unverifiedLazy + case 905: self = .updatedOptions + case 906: self = .url + case 907: self = .useDeterministicOrdering + case 908: self = .utf8 + case 909: self = .utf8Ptr + case 910: self = .utf8ToDouble + case 911: self = .utf8Validation + case 912: self = .utf8View + case 913: self = .v + case 914: self = .value + case 915: self = .valueField + case 916: self = .values + case 917: self = .valueType + case 918: self = .var + case 919: self = .verification + case 920: self = .verificationState + case 921: self = .version + case 922: self = .versionString + case 923: self = .visitExtensionFields + case 924: self = .visitExtensionFieldsAsMessageSet + case 925: self = .visitMapField + case 926: self = .visitor + case 927: self = .visitPacked + case 928: self = .visitPackedBoolField + case 929: self = .visitPackedDoubleField + case 930: self = .visitPackedEnumField + case 931: self = .visitPackedFixed32Field + case 932: self = .visitPackedFixed64Field + case 933: self = .visitPackedFloatField + case 934: self = .visitPackedInt32Field + case 935: self = .visitPackedInt64Field + case 936: self = .visitPackedSfixed32Field + case 937: self = .visitPackedSfixed64Field + case 938: self = .visitPackedSint32Field + case 939: self = .visitPackedSint64Field + case 940: self = .visitPackedUint32Field + case 941: self = .visitPackedUint64Field + case 942: self = .visitRepeated + case 943: self = .visitRepeatedBoolField + case 944: self = .visitRepeatedBytesField + case 945: self = .visitRepeatedDoubleField + case 946: self = .visitRepeatedEnumField + case 947: self = .visitRepeatedFixed32Field + case 948: self = .visitRepeatedFixed64Field + case 949: self = .visitRepeatedFloatField + case 950: self = .visitRepeatedGroupField + case 951: self = .visitRepeatedInt32Field + case 952: self = .visitRepeatedInt64Field + case 953: self = .visitRepeatedMessageField + case 954: self = .visitRepeatedSfixed32Field + case 955: self = .visitRepeatedSfixed64Field + case 956: self = .visitRepeatedSint32Field + case 957: self = .visitRepeatedSint64Field + case 958: self = .visitRepeatedStringField + case 959: self = .visitRepeatedUint32Field + case 960: self = .visitRepeatedUint64Field + case 961: self = .visitSingular + case 962: self = .visitSingularBoolField + case 963: self = .visitSingularBytesField + case 964: self = .visitSingularDoubleField + case 965: self = .visitSingularEnumField + case 966: self = .visitSingularFixed32Field + case 967: self = .visitSingularFixed64Field + case 968: self = .visitSingularFloatField + case 969: self = .visitSingularGroupField + case 970: self = .visitSingularInt32Field + case 971: self = .visitSingularInt64Field + case 972: self = .visitSingularMessageField + case 973: self = .visitSingularSfixed32Field + case 974: self = .visitSingularSfixed64Field + case 975: self = .visitSingularSint32Field + case 976: self = .visitSingularSint64Field + case 977: self = .visitSingularStringField + case 978: self = .visitSingularUint32Field + case 979: self = .visitSingularUint64Field + case 980: self = .visitUnknown + case 981: self = .wasDecoded + case 982: self = .weak + case 983: self = .weakDependency + case 984: self = .where + case 985: self = .wireFormat + case 986: self = .with + case 987: self = .withUnsafeBytes + case 988: self = .withUnsafeMutableBytes + case 989: self = .work + case 990: self = .wrapped + case 991: self = .wrappedType + case 992: self = .wrappedValue + case 993: self = .written + case 994: self = .yday default: self = .UNRECOGNIZED(rawValue) } } @@ -2008,975 +2042,992 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, case .anyExtensionField: return 9 case .anyMessageExtension: return 10 case .anyMessageStorage: return 11 - case .anyUnpackError: return 12 - case .api: return 13 - case .appended: return 14 - case .appendUintHex: return 15 - case .appendUnknown: return 16 - case .areAllInitialized: return 17 - case .array: return 18 - case .arrayDepth: return 19 - case .arrayLiteral: return 20 - case .arraySeparator: return 21 - case .as: return 22 - case .asciiOpenCurlyBracket: return 23 - case .asciiZero: return 24 - case .async: return 25 - case .asyncIterator: return 26 - case .asyncIteratorProtocol: return 27 - case .asyncMessageSequence: return 28 - case .available: return 29 - case .b: return 30 - case .base: return 31 - case .base64Values: return 32 - case .baseAddress: return 33 - case .baseType: return 34 - case .begin: return 35 - case .binary: return 36 - case .binaryDecoder: return 37 - case .binaryDecodingError: return 38 - case .binaryDecodingOptions: return 39 - case .binaryDelimited: return 40 - case .binaryEncoder: return 41 - case .binaryEncodingError: return 42 - case .binaryEncodingMessageSetSizeVisitor: return 43 - case .binaryEncodingMessageSetVisitor: return 44 - case .binaryEncodingOptions: return 45 - case .binaryEncodingSizeVisitor: return 46 - case .binaryEncodingVisitor: return 47 - case .binaryOptions: return 48 - case .binaryProtobufDelimitedMessages: return 49 - case .bitPattern: return 50 - case .body: return 51 - case .bool: return 52 - case .booleanLiteral: return 53 - case .booleanLiteralType: return 54 - case .boolValue: return 55 - case .buffer: return 56 - case .bytes: return 57 - case .bytesInGroup: return 58 - case .bytesNeeded: return 59 - case .bytesRead: return 60 - case .bytesValue: return 61 - case .c: return 62 - case .capitalizeNext: return 63 - case .cardinality: return 64 - case .caseIterable: return 65 - case .ccEnableArenas: return 66 - case .ccGenericServices: return 67 - case .character: return 68 - case .chars: return 69 - case .chunk: return 70 - case .class: return 71 - case .clearAggregateValue: return 72 - case .clearAllowAlias: return 73 - case .clearBegin: return 74 - case .clearCcEnableArenas: return 75 - case .clearCcGenericServices: return 76 - case .clearClientStreaming: return 77 - case .clearCsharpNamespace: return 78 - case .clearCtype: return 79 - case .clearDebugRedact: return 80 - case .clearDefaultValue: return 81 - case .clearDeprecated: return 82 - case .clearDeprecatedLegacyJsonFieldConflicts: return 83 - case .clearDeprecationWarning: return 84 - case .clearDoubleValue: return 85 - case .clearEdition: return 86 - case .clearEditionDeprecated: return 87 - case .clearEditionIntroduced: return 88 - case .clearEditionRemoved: return 89 - case .clearEnd: return 90 - case .clearEnumType: return 91 - case .clearExtendee: return 92 - case .clearExtensionValue: return 93 - case .clearFeatures: return 94 - case .clearFeatureSupport: return 95 - case .clearFieldPresence: return 96 - case .clearFixedFeatures: return 97 - case .clearFullName: return 98 - case .clearGoPackage: return 99 - case .clearIdempotencyLevel: return 100 - case .clearIdentifierValue: return 101 - case .clearInputType: return 102 - case .clearIsExtension: return 103 - case .clearJavaGenerateEqualsAndHash: return 104 - case .clearJavaGenericServices: return 105 - case .clearJavaMultipleFiles: return 106 - case .clearJavaOuterClassname: return 107 - case .clearJavaPackage: return 108 - case .clearJavaStringCheckUtf8: return 109 - case .clearJsonFormat: return 110 - case .clearJsonName: return 111 - case .clearJstype: return 112 - case .clearLabel: return 113 - case .clearLazy: return 114 - case .clearLeadingComments: return 115 - case .clearMapEntry: return 116 - case .clearMaximumEdition: return 117 - case .clearMessageEncoding: return 118 - case .clearMessageSetWireFormat: return 119 - case .clearMinimumEdition: return 120 - case .clearName: return 121 - case .clearNamePart: return 122 - case .clearNegativeIntValue: return 123 - case .clearNoStandardDescriptorAccessor: return 124 - case .clearNumber: return 125 - case .clearObjcClassPrefix: return 126 - case .clearOneofIndex: return 127 - case .clearOptimizeFor: return 128 - case .clearOptions: return 129 - case .clearOutputType: return 130 - case .clearOverridableFeatures: return 131 - case .clearPackage: return 132 - case .clearPacked: return 133 - case .clearPhpClassPrefix: return 134 - case .clearPhpMetadataNamespace: return 135 - case .clearPhpNamespace: return 136 - case .clearPositiveIntValue: return 137 - case .clearProto3Optional: return 138 - case .clearPyGenericServices: return 139 - case .clearRepeated: return 140 - case .clearRepeatedFieldEncoding: return 141 - case .clearReserved: return 142 - case .clearRetention: return 143 - case .clearRubyPackage: return 144 - case .clearSemantic: return 145 - case .clearServerStreaming: return 146 - case .clearSourceCodeInfo: return 147 - case .clearSourceContext: return 148 - case .clearSourceFile: return 149 - case .clearStart: return 150 - case .clearStringValue: return 151 - case .clearSwiftPrefix: return 152 - case .clearSyntax: return 153 - case .clearTrailingComments: return 154 - case .clearType: return 155 - case .clearTypeName: return 156 - case .clearUnverifiedLazy: return 157 - case .clearUtf8Validation: return 158 - case .clearValue: return 159 - case .clearVerification: return 160 - case .clearWeak: return 161 - case .clientStreaming: return 162 - case .codePoint: return 163 - case .codeUnits: return 164 - case .collection: return 165 - case .com: return 166 - case .comma: return 167 - case .consumedBytes: return 168 - case .contentsOf: return 169 - case .count: return 170 - case .countVarintsInBuffer: return 171 - case .csharpNamespace: return 172 - case .ctype: return 173 - case .customCodable: return 174 - case .customDebugStringConvertible: return 175 - case .d: return 176 - case .data: return 177 - case .dataResult: return 178 - case .date: return 179 - case .daySec: return 180 - case .daysSinceEpoch: return 181 - case .debugDescription_: return 182 - case .debugRedact: return 183 - case .declaration: return 184 - case .decoded: return 185 - case .decodedFromJsonnull: return 186 - case .decodeExtensionField: return 187 - case .decodeExtensionFieldsAsMessageSet: return 188 - case .decodeJson: return 189 - case .decodeMapField: return 190 - case .decodeMessage: return 191 - case .decoder: return 192 - case .decodeRepeated: return 193 - case .decodeRepeatedBoolField: return 194 - case .decodeRepeatedBytesField: return 195 - case .decodeRepeatedDoubleField: return 196 - case .decodeRepeatedEnumField: return 197 - case .decodeRepeatedFixed32Field: return 198 - case .decodeRepeatedFixed64Field: return 199 - case .decodeRepeatedFloatField: return 200 - case .decodeRepeatedGroupField: return 201 - case .decodeRepeatedInt32Field: return 202 - case .decodeRepeatedInt64Field: return 203 - case .decodeRepeatedMessageField: return 204 - case .decodeRepeatedSfixed32Field: return 205 - case .decodeRepeatedSfixed64Field: return 206 - case .decodeRepeatedSint32Field: return 207 - case .decodeRepeatedSint64Field: return 208 - case .decodeRepeatedStringField: return 209 - case .decodeRepeatedUint32Field: return 210 - case .decodeRepeatedUint64Field: return 211 - case .decodeSingular: return 212 - case .decodeSingularBoolField: return 213 - case .decodeSingularBytesField: return 214 - case .decodeSingularDoubleField: return 215 - case .decodeSingularEnumField: return 216 - case .decodeSingularFixed32Field: return 217 - case .decodeSingularFixed64Field: return 218 - case .decodeSingularFloatField: return 219 - case .decodeSingularGroupField: return 220 - case .decodeSingularInt32Field: return 221 - case .decodeSingularInt64Field: return 222 - case .decodeSingularMessageField: return 223 - case .decodeSingularSfixed32Field: return 224 - case .decodeSingularSfixed64Field: return 225 - case .decodeSingularSint32Field: return 226 - case .decodeSingularSint64Field: return 227 - case .decodeSingularStringField: return 228 - case .decodeSingularUint32Field: return 229 - case .decodeSingularUint64Field: return 230 - case .decodeTextFormat: return 231 - case .defaultAnyTypeUrlprefix: return 232 - case .defaults: return 233 - case .defaultValue: return 234 - case .dependency: return 235 - case .deprecated: return 236 - case .deprecatedLegacyJsonFieldConflicts: return 237 - case .deprecationWarning: return 238 - case .description_: return 239 - case .descriptorProto: return 240 - case .dictionary: return 241 - case .dictionaryLiteral: return 242 - case .digit: return 243 - case .digit0: return 244 - case .digit1: return 245 - case .digitCount: return 246 - case .digits: return 247 - case .digitValue: return 248 - case .discardableResult: return 249 - case .discardUnknownFields: return 250 - case .double: return 251 - case .doubleValue: return 252 - case .duration: return 253 - case .e: return 254 - case .edition: return 255 - case .editionDefault: return 256 - case .editionDefaults: return 257 - case .editionDeprecated: return 258 - case .editionIntroduced: return 259 - case .editionRemoved: return 260 - case .element: return 261 - case .elements: return 262 - case .emitExtensionFieldName: return 263 - case .emitFieldName: return 264 - case .emitFieldNumber: return 265 - case .empty: return 266 - case .encodeAsBytes: return 267 - case .encoded: return 268 - case .encodedJsonstring: return 269 - case .encodedSize: return 270 - case .encodeField: return 271 - case .encoder: return 272 - case .end: return 273 - case .endArray: return 274 - case .endMessageField: return 275 - case .endObject: return 276 - case .endRegularField: return 277 - case .enum: return 278 - case .enumDescriptorProto: return 279 - case .enumOptions: return 280 - case .enumReservedRange: return 281 - case .enumType: return 282 - case .enumvalue: return 283 - case .enumValueDescriptorProto: return 284 - case .enumValueOptions: return 285 - case .equatable: return 286 - case .error: return 287 - case .expressibleByArrayLiteral: return 288 - case .expressibleByDictionaryLiteral: return 289 - case .ext: return 290 - case .extDecoder: return 291 - case .extendedGraphemeClusterLiteral: return 292 - case .extendedGraphemeClusterLiteralType: return 293 - case .extendee: return 294 - case .extensibleMessage: return 295 - case .extension: return 296 - case .extensionField: return 297 - case .extensionFieldNumber: return 298 - case .extensionFieldValueSet: return 299 - case .extensionMap: return 300 - case .extensionRange: return 301 - case .extensionRangeOptions: return 302 - case .extensions: return 303 - case .extras: return 304 - case .f: return 305 - case .false: return 306 - case .features: return 307 - case .featureSet: return 308 - case .featureSetDefaults: return 309 - case .featureSetEditionDefault: return 310 - case .featureSupport: return 311 - case .field: return 312 - case .fieldData: return 313 - case .fieldDescriptorProto: return 314 - case .fieldMask: return 315 - case .fieldName: return 316 - case .fieldNameCount: return 317 - case .fieldNum: return 318 - case .fieldNumber: return 319 - case .fieldNumberForProto: return 320 - case .fieldOptions: return 321 - case .fieldPresence: return 322 - case .fields: return 323 - case .fieldSize: return 324 - case .fieldTag: return 325 - case .fieldType: return 326 - case .file: return 327 - case .fileDescriptorProto: return 328 - case .fileDescriptorSet: return 329 - case .fileName: return 330 - case .fileOptions: return 331 - case .filter: return 332 - case .final: return 333 - case .finiteOnly: return 334 - case .first: return 335 - case .firstItem: return 336 - case .fixedFeatures: return 337 - case .float: return 338 - case .floatLiteral: return 339 - case .floatLiteralType: return 340 - case .floatValue: return 341 - case .forMessageName: return 342 - case .formUnion: return 343 - case .forReadingFrom: return 344 - case .forTypeURL: return 345 - case .forwardParser: return 346 - case .forWritingInto: return 347 - case .from: return 348 - case .fromAscii2: return 349 - case .fromAscii4: return 350 - case .fromByteOffset: return 351 - case .fromHexDigit: return 352 - case .fullName: return 353 - case .func: return 354 - case .g: return 355 - case .generatedCodeInfo: return 356 - case .get: return 357 - case .getExtensionValue: return 358 - case .googleapis: return 359 - case .googleProtobufAny: return 360 - case .googleProtobufApi: return 361 - case .googleProtobufBoolValue: return 362 - case .googleProtobufBytesValue: return 363 - case .googleProtobufDescriptorProto: return 364 - case .googleProtobufDoubleValue: return 365 - case .googleProtobufDuration: return 366 - case .googleProtobufEdition: return 367 - case .googleProtobufEmpty: return 368 - case .googleProtobufEnum: return 369 - case .googleProtobufEnumDescriptorProto: return 370 - case .googleProtobufEnumOptions: return 371 - case .googleProtobufEnumValue: return 372 - case .googleProtobufEnumValueDescriptorProto: return 373 - case .googleProtobufEnumValueOptions: return 374 - case .googleProtobufExtensionRangeOptions: return 375 - case .googleProtobufFeatureSet: return 376 - case .googleProtobufFeatureSetDefaults: return 377 - case .googleProtobufField: return 378 - case .googleProtobufFieldDescriptorProto: return 379 - case .googleProtobufFieldMask: return 380 - case .googleProtobufFieldOptions: return 381 - case .googleProtobufFileDescriptorProto: return 382 - case .googleProtobufFileDescriptorSet: return 383 - case .googleProtobufFileOptions: return 384 - case .googleProtobufFloatValue: return 385 - case .googleProtobufGeneratedCodeInfo: return 386 - case .googleProtobufInt32Value: return 387 - case .googleProtobufInt64Value: return 388 - case .googleProtobufListValue: return 389 - case .googleProtobufMessageOptions: return 390 - case .googleProtobufMethod: return 391 - case .googleProtobufMethodDescriptorProto: return 392 - case .googleProtobufMethodOptions: return 393 - case .googleProtobufMixin: return 394 - case .googleProtobufNullValue: return 395 - case .googleProtobufOneofDescriptorProto: return 396 - case .googleProtobufOneofOptions: return 397 - case .googleProtobufOption: return 398 - case .googleProtobufServiceDescriptorProto: return 399 - case .googleProtobufServiceOptions: return 400 - case .googleProtobufSourceCodeInfo: return 401 - case .googleProtobufSourceContext: return 402 - case .googleProtobufStringValue: return 403 - case .googleProtobufStruct: return 404 - case .googleProtobufSyntax: return 405 - case .googleProtobufTimestamp: return 406 - case .googleProtobufType: return 407 - case .googleProtobufUint32Value: return 408 - case .googleProtobufUint64Value: return 409 - case .googleProtobufUninterpretedOption: return 410 - case .googleProtobufValue: return 411 - case .goPackage: return 412 - case .group: return 413 - case .groupFieldNumberStack: return 414 - case .groupSize: return 415 - case .hadOneofValue: return 416 - case .handleConflictingOneOf: return 417 - case .hasAggregateValue: return 418 - case .hasAllowAlias: return 419 - case .hasBegin: return 420 - case .hasCcEnableArenas: return 421 - case .hasCcGenericServices: return 422 - case .hasClientStreaming: return 423 - case .hasCsharpNamespace: return 424 - case .hasCtype: return 425 - case .hasDebugRedact: return 426 - case .hasDefaultValue: return 427 - case .hasDeprecated: return 428 - case .hasDeprecatedLegacyJsonFieldConflicts: return 429 - case .hasDeprecationWarning: return 430 - case .hasDoubleValue: return 431 - case .hasEdition: return 432 - case .hasEditionDeprecated: return 433 - case .hasEditionIntroduced: return 434 - case .hasEditionRemoved: return 435 - case .hasEnd: return 436 - case .hasEnumType: return 437 - case .hasExtendee: return 438 - case .hasExtensionValue: return 439 - case .hasFeatures: return 440 - case .hasFeatureSupport: return 441 - case .hasFieldPresence: return 442 - case .hasFixedFeatures: return 443 - case .hasFullName: return 444 - case .hasGoPackage: return 445 - case .hash: return 446 - case .hashable: return 447 - case .hasher: return 448 - case .hashVisitor: return 449 - case .hasIdempotencyLevel: return 450 - case .hasIdentifierValue: return 451 - case .hasInputType: return 452 - case .hasIsExtension: return 453 - case .hasJavaGenerateEqualsAndHash: return 454 - case .hasJavaGenericServices: return 455 - case .hasJavaMultipleFiles: return 456 - case .hasJavaOuterClassname: return 457 - case .hasJavaPackage: return 458 - case .hasJavaStringCheckUtf8: return 459 - case .hasJsonFormat: return 460 - case .hasJsonName: return 461 - case .hasJstype: return 462 - case .hasLabel: return 463 - case .hasLazy: return 464 - case .hasLeadingComments: return 465 - case .hasMapEntry: return 466 - case .hasMaximumEdition: return 467 - case .hasMessageEncoding: return 468 - case .hasMessageSetWireFormat: return 469 - case .hasMinimumEdition: return 470 - case .hasName: return 471 - case .hasNamePart: return 472 - case .hasNegativeIntValue: return 473 - case .hasNoStandardDescriptorAccessor: return 474 - case .hasNumber: return 475 - case .hasObjcClassPrefix: return 476 - case .hasOneofIndex: return 477 - case .hasOptimizeFor: return 478 - case .hasOptions: return 479 - case .hasOutputType: return 480 - case .hasOverridableFeatures: return 481 - case .hasPackage: return 482 - case .hasPacked: return 483 - case .hasPhpClassPrefix: return 484 - case .hasPhpMetadataNamespace: return 485 - case .hasPhpNamespace: return 486 - case .hasPositiveIntValue: return 487 - case .hasProto3Optional: return 488 - case .hasPyGenericServices: return 489 - case .hasRepeated: return 490 - case .hasRepeatedFieldEncoding: return 491 - case .hasReserved: return 492 - case .hasRetention: return 493 - case .hasRubyPackage: return 494 - case .hasSemantic: return 495 - case .hasServerStreaming: return 496 - case .hasSourceCodeInfo: return 497 - case .hasSourceContext: return 498 - case .hasSourceFile: return 499 + case .anyTypeUrlnotRegistered: return 12 + case .anyUnpackError: return 13 + case .api: return 14 + case .appended: return 15 + case .appendUintHex: return 16 + case .appendUnknown: return 17 + case .areAllInitialized: return 18 + case .array: return 19 + case .arrayDepth: return 20 + case .arrayLiteral: return 21 + case .arraySeparator: return 22 + case .as: return 23 + case .asciiOpenCurlyBracket: return 24 + case .asciiZero: return 25 + case .async: return 26 + case .asyncIterator: return 27 + case .asyncIteratorProtocol: return 28 + case .asyncMessageSequence: return 29 + case .available: return 30 + case .b: return 31 + case .base: return 32 + case .base64Values: return 33 + case .baseAddress: return 34 + case .baseType: return 35 + case .begin: return 36 + case .binary: return 37 + case .binaryDecoder: return 38 + case .binaryDecoding: return 39 + case .binaryDecodingError: return 40 + case .binaryDecodingOptions: return 41 + case .binaryDelimited: return 42 + case .binaryEncoder: return 43 + case .binaryEncoding: return 44 + case .binaryEncodingError: return 45 + case .binaryEncodingMessageSetSizeVisitor: return 46 + case .binaryEncodingMessageSetVisitor: return 47 + case .binaryEncodingOptions: return 48 + case .binaryEncodingSizeVisitor: return 49 + case .binaryEncodingVisitor: return 50 + case .binaryOptions: return 51 + case .binaryProtobufDelimitedMessages: return 52 + case .binaryStreamDecoding: return 53 + case .binaryStreamDecodingError: return 54 + case .bitPattern: return 55 + case .body: return 56 + case .bool: return 57 + case .booleanLiteral: return 58 + case .booleanLiteralType: return 59 + case .boolValue: return 60 + case .buffer: return 61 + case .bytes: return 62 + case .bytesInGroup: return 63 + case .bytesNeeded: return 64 + case .bytesRead: return 65 + case .bytesValue: return 66 + case .c: return 67 + case .capitalizeNext: return 68 + case .cardinality: return 69 + case .caseIterable: return 70 + case .ccEnableArenas: return 71 + case .ccGenericServices: return 72 + case .character: return 73 + case .chars: return 74 + case .chunk: return 75 + case .class: return 76 + case .clearAggregateValue: return 77 + case .clearAllowAlias: return 78 + case .clearBegin: return 79 + case .clearCcEnableArenas: return 80 + case .clearCcGenericServices: return 81 + case .clearClientStreaming: return 82 + case .clearCsharpNamespace: return 83 + case .clearCtype: return 84 + case .clearDebugRedact: return 85 + case .clearDefaultValue: return 86 + case .clearDeprecated: return 87 + case .clearDeprecatedLegacyJsonFieldConflicts: return 88 + case .clearDeprecationWarning: return 89 + case .clearDoubleValue: return 90 + case .clearEdition: return 91 + case .clearEditionDeprecated: return 92 + case .clearEditionIntroduced: return 93 + case .clearEditionRemoved: return 94 + case .clearEnd: return 95 + case .clearEnumType: return 96 + case .clearExtendee: return 97 + case .clearExtensionValue: return 98 + case .clearFeatures: return 99 + case .clearFeatureSupport: return 100 + case .clearFieldPresence: return 101 + case .clearFixedFeatures: return 102 + case .clearFullName: return 103 + case .clearGoPackage: return 104 + case .clearIdempotencyLevel: return 105 + case .clearIdentifierValue: return 106 + case .clearInputType: return 107 + case .clearIsExtension: return 108 + case .clearJavaGenerateEqualsAndHash: return 109 + case .clearJavaGenericServices: return 110 + case .clearJavaMultipleFiles: return 111 + case .clearJavaOuterClassname: return 112 + case .clearJavaPackage: return 113 + case .clearJavaStringCheckUtf8: return 114 + case .clearJsonFormat: return 115 + case .clearJsonName: return 116 + case .clearJstype: return 117 + case .clearLabel: return 118 + case .clearLazy: return 119 + case .clearLeadingComments: return 120 + case .clearMapEntry: return 121 + case .clearMaximumEdition: return 122 + case .clearMessageEncoding: return 123 + case .clearMessageSetWireFormat: return 124 + case .clearMinimumEdition: return 125 + case .clearName: return 126 + case .clearNamePart: return 127 + case .clearNegativeIntValue: return 128 + case .clearNoStandardDescriptorAccessor: return 129 + case .clearNumber: return 130 + case .clearObjcClassPrefix: return 131 + case .clearOneofIndex: return 132 + case .clearOptimizeFor: return 133 + case .clearOptions: return 134 + case .clearOutputType: return 135 + case .clearOverridableFeatures: return 136 + case .clearPackage: return 137 + case .clearPacked: return 138 + case .clearPhpClassPrefix: return 139 + case .clearPhpMetadataNamespace: return 140 + case .clearPhpNamespace: return 141 + case .clearPositiveIntValue: return 142 + case .clearProto3Optional: return 143 + case .clearPyGenericServices: return 144 + case .clearRepeated: return 145 + case .clearRepeatedFieldEncoding: return 146 + case .clearReserved: return 147 + case .clearRetention: return 148 + case .clearRubyPackage: return 149 + case .clearSemantic: return 150 + case .clearServerStreaming: return 151 + case .clearSourceCodeInfo: return 152 + case .clearSourceContext: return 153 + case .clearSourceFile: return 154 + case .clearStart: return 155 + case .clearStringValue: return 156 + case .clearSwiftPrefix: return 157 + case .clearSyntax: return 158 + case .clearTrailingComments: return 159 + case .clearType: return 160 + case .clearTypeName: return 161 + case .clearUnverifiedLazy: return 162 + case .clearUtf8Validation: return 163 + case .clearValue: return 164 + case .clearVerification: return 165 + case .clearWeak: return 166 + case .clientStreaming: return 167 + case .code: return 168 + case .codePoint: return 169 + case .codeUnits: return 170 + case .collection: return 171 + case .com: return 172 + case .comma: return 173 + case .consumedBytes: return 174 + case .contentsOf: return 175 + case .copy: return 176 + case .count: return 177 + case .countVarintsInBuffer: return 178 + case .csharpNamespace: return 179 + case .ctype: return 180 + case .customCodable: return 181 + case .customDebugStringConvertible: return 182 + case .customStringConvertible: return 183 + case .d: return 184 + case .data: return 185 + case .dataResult: return 186 + case .date: return 187 + case .daySec: return 188 + case .daysSinceEpoch: return 189 + case .debugDescription_: return 190 + case .debugRedact: return 191 + case .declaration: return 192 + case .decoded: return 193 + case .decodedFromJsonnull: return 194 + case .decodeExtensionField: return 195 + case .decodeExtensionFieldsAsMessageSet: return 196 + case .decodeJson: return 197 + case .decodeMapField: return 198 + case .decodeMessage: return 199 + case .decoder: return 200 + case .decodeRepeated: return 201 + case .decodeRepeatedBoolField: return 202 + case .decodeRepeatedBytesField: return 203 + case .decodeRepeatedDoubleField: return 204 + case .decodeRepeatedEnumField: return 205 + case .decodeRepeatedFixed32Field: return 206 + case .decodeRepeatedFixed64Field: return 207 + case .decodeRepeatedFloatField: return 208 + case .decodeRepeatedGroupField: return 209 + case .decodeRepeatedInt32Field: return 210 + case .decodeRepeatedInt64Field: return 211 + case .decodeRepeatedMessageField: return 212 + case .decodeRepeatedSfixed32Field: return 213 + case .decodeRepeatedSfixed64Field: return 214 + case .decodeRepeatedSint32Field: return 215 + case .decodeRepeatedSint64Field: return 216 + case .decodeRepeatedStringField: return 217 + case .decodeRepeatedUint32Field: return 218 + case .decodeRepeatedUint64Field: return 219 + case .decodeSingular: return 220 + case .decodeSingularBoolField: return 221 + case .decodeSingularBytesField: return 222 + case .decodeSingularDoubleField: return 223 + case .decodeSingularEnumField: return 224 + case .decodeSingularFixed32Field: return 225 + case .decodeSingularFixed64Field: return 226 + case .decodeSingularFloatField: return 227 + case .decodeSingularGroupField: return 228 + case .decodeSingularInt32Field: return 229 + case .decodeSingularInt64Field: return 230 + case .decodeSingularMessageField: return 231 + case .decodeSingularSfixed32Field: return 232 + case .decodeSingularSfixed64Field: return 233 + case .decodeSingularSint32Field: return 234 + case .decodeSingularSint64Field: return 235 + case .decodeSingularStringField: return 236 + case .decodeSingularUint32Field: return 237 + case .decodeSingularUint64Field: return 238 + case .decodeTextFormat: return 239 + case .defaultAnyTypeUrlprefix: return 240 + case .defaults: return 241 + case .defaultValue: return 242 + case .dependency: return 243 + case .deprecated: return 244 + case .deprecatedLegacyJsonFieldConflicts: return 245 + case .deprecationWarning: return 246 + case .description_: return 247 + case .descriptorProto: return 248 + case .dictionary: return 249 + case .dictionaryLiteral: return 250 + case .digit: return 251 + case .digit0: return 252 + case .digit1: return 253 + case .digitCount: return 254 + case .digits: return 255 + case .digitValue: return 256 + case .discardableResult: return 257 + case .discardUnknownFields: return 258 + case .double: return 259 + case .doubleValue: return 260 + case .duration: return 261 + case .e: return 262 + case .edition: return 263 + case .editionDefault: return 264 + case .editionDefaults: return 265 + case .editionDeprecated: return 266 + case .editionIntroduced: return 267 + case .editionRemoved: return 268 + case .element: return 269 + case .elements: return 270 + case .emitExtensionFieldName: return 271 + case .emitFieldName: return 272 + case .emitFieldNumber: return 273 + case .empty: return 274 + case .encodeAsBytes: return 275 + case .encoded: return 276 + case .encodedJsonstring: return 277 + case .encodedSize: return 278 + case .encodeField: return 279 + case .encoder: return 280 + case .end: return 281 + case .endArray: return 282 + case .endMessageField: return 283 + case .endObject: return 284 + case .endRegularField: return 285 + case .enum: return 286 + case .enumDescriptorProto: return 287 + case .enumOptions: return 288 + case .enumReservedRange: return 289 + case .enumType: return 290 + case .enumvalue: return 291 + case .enumValueDescriptorProto: return 292 + case .enumValueOptions: return 293 + case .equatable: return 294 + case .error: return 295 + case .expressibleByArrayLiteral: return 296 + case .expressibleByDictionaryLiteral: return 297 + case .ext: return 298 + case .extDecoder: return 299 + case .extendedGraphemeClusterLiteral: return 300 + case .extendedGraphemeClusterLiteralType: return 301 + case .extendee: return 302 + case .extensibleMessage: return 303 + case .extension: return 304 + case .extensionField: return 305 + case .extensionFieldNumber: return 306 + case .extensionFieldValueSet: return 307 + case .extensionMap: return 308 + case .extensionRange: return 309 + case .extensionRangeOptions: return 310 + case .extensions: return 311 + case .extras: return 312 + case .f: return 313 + case .false: return 314 + case .features: return 315 + case .featureSet: return 316 + case .featureSetDefaults: return 317 + case .featureSetEditionDefault: return 318 + case .featureSupport: return 319 + case .field: return 320 + case .fieldData: return 321 + case .fieldDescriptorProto: return 322 + case .fieldMask: return 323 + case .fieldName: return 324 + case .fieldNameCount: return 325 + case .fieldNum: return 326 + case .fieldNumber: return 327 + case .fieldNumberForProto: return 328 + case .fieldOptions: return 329 + case .fieldPresence: return 330 + case .fields: return 331 + case .fieldSize: return 332 + case .fieldTag: return 333 + case .fieldType: return 334 + case .file: return 335 + case .fileDescriptorProto: return 336 + case .fileDescriptorSet: return 337 + case .fileName: return 338 + case .fileOptions: return 339 + case .filter: return 340 + case .final: return 341 + case .finiteOnly: return 342 + case .first: return 343 + case .firstItem: return 344 + case .fixedFeatures: return 345 + case .float: return 346 + case .floatLiteral: return 347 + case .floatLiteralType: return 348 + case .floatValue: return 349 + case .forMessageName: return 350 + case .formUnion: return 351 + case .forReadingFrom: return 352 + case .forTypeURL: return 353 + case .forwardParser: return 354 + case .forWritingInto: return 355 + case .from: return 356 + case .fromAscii2: return 357 + case .fromAscii4: return 358 + case .fromByteOffset: return 359 + case .fromHexDigit: return 360 + case .fullName: return 361 + case .func: return 362 + case .function: return 363 + case .g: return 364 + case .generatedCodeInfo: return 365 + case .get: return 366 + case .getExtensionValue: return 367 + case .googleapis: return 368 + case .googleProtobufAny: return 369 + case .googleProtobufApi: return 370 + case .googleProtobufBoolValue: return 371 + case .googleProtobufBytesValue: return 372 + case .googleProtobufDescriptorProto: return 373 + case .googleProtobufDoubleValue: return 374 + case .googleProtobufDuration: return 375 + case .googleProtobufEdition: return 376 + case .googleProtobufEmpty: return 377 + case .googleProtobufEnum: return 378 + case .googleProtobufEnumDescriptorProto: return 379 + case .googleProtobufEnumOptions: return 380 + case .googleProtobufEnumValue: return 381 + case .googleProtobufEnumValueDescriptorProto: return 382 + case .googleProtobufEnumValueOptions: return 383 + case .googleProtobufExtensionRangeOptions: return 384 + case .googleProtobufFeatureSet: return 385 + case .googleProtobufFeatureSetDefaults: return 386 + case .googleProtobufField: return 387 + case .googleProtobufFieldDescriptorProto: return 388 + case .googleProtobufFieldMask: return 389 + case .googleProtobufFieldOptions: return 390 + case .googleProtobufFileDescriptorProto: return 391 + case .googleProtobufFileDescriptorSet: return 392 + case .googleProtobufFileOptions: return 393 + case .googleProtobufFloatValue: return 394 + case .googleProtobufGeneratedCodeInfo: return 395 + case .googleProtobufInt32Value: return 396 + case .googleProtobufInt64Value: return 397 + case .googleProtobufListValue: return 398 + case .googleProtobufMessageOptions: return 399 + case .googleProtobufMethod: return 400 + case .googleProtobufMethodDescriptorProto: return 401 + case .googleProtobufMethodOptions: return 402 + case .googleProtobufMixin: return 403 + case .googleProtobufNullValue: return 404 + case .googleProtobufOneofDescriptorProto: return 405 + case .googleProtobufOneofOptions: return 406 + case .googleProtobufOption: return 407 + case .googleProtobufServiceDescriptorProto: return 408 + case .googleProtobufServiceOptions: return 409 + case .googleProtobufSourceCodeInfo: return 410 + case .googleProtobufSourceContext: return 411 + case .googleProtobufStringValue: return 412 + case .googleProtobufStruct: return 413 + case .googleProtobufSyntax: return 414 + case .googleProtobufTimestamp: return 415 + case .googleProtobufType: return 416 + case .googleProtobufUint32Value: return 417 + case .googleProtobufUint64Value: return 418 + case .googleProtobufUninterpretedOption: return 419 + case .googleProtobufValue: return 420 + case .goPackage: return 421 + case .group: return 422 + case .groupFieldNumberStack: return 423 + case .groupSize: return 424 + case .hadOneofValue: return 425 + case .handleConflictingOneOf: return 426 + case .hasAggregateValue: return 427 + case .hasAllowAlias: return 428 + case .hasBegin: return 429 + case .hasCcEnableArenas: return 430 + case .hasCcGenericServices: return 431 + case .hasClientStreaming: return 432 + case .hasCsharpNamespace: return 433 + case .hasCtype: return 434 + case .hasDebugRedact: return 435 + case .hasDefaultValue: return 436 + case .hasDeprecated: return 437 + case .hasDeprecatedLegacyJsonFieldConflicts: return 438 + case .hasDeprecationWarning: return 439 + case .hasDoubleValue: return 440 + case .hasEdition: return 441 + case .hasEditionDeprecated: return 442 + case .hasEditionIntroduced: return 443 + case .hasEditionRemoved: return 444 + case .hasEnd: return 445 + case .hasEnumType: return 446 + case .hasExtendee: return 447 + case .hasExtensionValue: return 448 + case .hasFeatures: return 449 + case .hasFeatureSupport: return 450 + case .hasFieldPresence: return 451 + case .hasFixedFeatures: return 452 + case .hasFullName: return 453 + case .hasGoPackage: return 454 + case .hash: return 455 + case .hashable: return 456 + case .hasher: return 457 + case .hashVisitor: return 458 + case .hasIdempotencyLevel: return 459 + case .hasIdentifierValue: return 460 + case .hasInputType: return 461 + case .hasIsExtension: return 462 + case .hasJavaGenerateEqualsAndHash: return 463 + case .hasJavaGenericServices: return 464 + case .hasJavaMultipleFiles: return 465 + case .hasJavaOuterClassname: return 466 + case .hasJavaPackage: return 467 + case .hasJavaStringCheckUtf8: return 468 + case .hasJsonFormat: return 469 + case .hasJsonName: return 470 + case .hasJstype: return 471 + case .hasLabel: return 472 + case .hasLazy: return 473 + case .hasLeadingComments: return 474 + case .hasMapEntry: return 475 + case .hasMaximumEdition: return 476 + case .hasMessageEncoding: return 477 + case .hasMessageSetWireFormat: return 478 + case .hasMinimumEdition: return 479 + case .hasName: return 480 + case .hasNamePart: return 481 + case .hasNegativeIntValue: return 482 + case .hasNoStandardDescriptorAccessor: return 483 + case .hasNumber: return 484 + case .hasObjcClassPrefix: return 485 + case .hasOneofIndex: return 486 + case .hasOptimizeFor: return 487 + case .hasOptions: return 488 + case .hasOutputType: return 489 + case .hasOverridableFeatures: return 490 + case .hasPackage: return 491 + case .hasPacked: return 492 + case .hasPhpClassPrefix: return 493 + case .hasPhpMetadataNamespace: return 494 + case .hasPhpNamespace: return 495 + case .hasPositiveIntValue: return 496 + case .hasProto3Optional: return 497 + case .hasPyGenericServices: return 498 + case .hasRepeated: return 499 default: break } switch self { - case .hasStart: return 500 - case .hasStringValue: return 501 - case .hasSwiftPrefix: return 502 - case .hasSyntax: return 503 - case .hasTrailingComments: return 504 - case .hasType: return 505 - case .hasTypeName: return 506 - case .hasUnverifiedLazy: return 507 - case .hasUtf8Validation: return 508 - case .hasValue: return 509 - case .hasVerification: return 510 - case .hasWeak: return 511 - case .hour: return 512 - case .i: return 513 - case .idempotencyLevel: return 514 - case .identifierValue: return 515 - case .if: return 516 - case .ignoreUnknownExtensionFields: return 517 - case .ignoreUnknownFields: return 518 - case .index: return 519 - case .init_: return 520 - case .inout: return 521 - case .inputType: return 522 - case .insert: return 523 - case .int: return 524 - case .int32: return 525 - case .int32Value: return 526 - case .int64: return 527 - case .int64Value: return 528 - case .int8: return 529 - case .integerLiteral: return 530 - case .integerLiteralType: return 531 - case .intern: return 532 - case .internal: return 533 - case .internalState: return 534 - case .into: return 535 - case .ints: return 536 - case .isA: return 537 - case .isEqual: return 538 - case .isEqualTo: return 539 - case .isExtension: return 540 - case .isInitialized: return 541 - case .isNegative: return 542 - case .itemTagsEncodedSize: return 543 - case .iterator: return 544 - case .javaGenerateEqualsAndHash: return 545 - case .javaGenericServices: return 546 - case .javaMultipleFiles: return 547 - case .javaOuterClassname: return 548 - case .javaPackage: return 549 - case .javaStringCheckUtf8: return 550 - case .jsondecoder: return 551 - case .jsondecodingError: return 552 - case .jsondecodingOptions: return 553 - case .jsonEncoder: return 554 - case .jsonencodingError: return 555 - case .jsonencodingOptions: return 556 - case .jsonencodingVisitor: return 557 - case .jsonFormat: return 558 - case .jsonmapEncodingVisitor: return 559 - case .jsonName: return 560 - case .jsonPath: return 561 - case .jsonPaths: return 562 - case .jsonscanner: return 563 - case .jsonString: return 564 - case .jsonText: return 565 - case .jsonUtf8Bytes: return 566 - case .jsonUtf8Data: return 567 - case .jstype: return 568 - case .k: return 569 - case .kChunkSize: return 570 - case .key: return 571 - case .keyField: return 572 - case .keyFieldOpt: return 573 - case .keyType: return 574 - case .kind: return 575 - case .l: return 576 - case .label: return 577 - case .lazy: return 578 - case .leadingComments: return 579 - case .leadingDetachedComments: return 580 - case .length: return 581 - case .lessThan: return 582 - case .let: return 583 - case .lhs: return 584 - case .list: return 585 - case .listOfMessages: return 586 - case .listValue: return 587 - case .littleEndian: return 588 - case .load: return 589 - case .localHasher: return 590 - case .location: return 591 - case .m: return 592 - case .major: return 593 - case .makeAsyncIterator: return 594 - case .makeIterator: return 595 - case .mapEntry: return 596 - case .mapKeyType: return 597 - case .mapToMessages: return 598 - case .mapValueType: return 599 - case .mapVisitor: return 600 - case .maximumEdition: return 601 - case .mdayStart: return 602 - case .merge: return 603 - case .message: return 604 - case .messageDepthLimit: return 605 - case .messageEncoding: return 606 - case .messageExtension: return 607 - case .messageImplementationBase: return 608 - case .messageOptions: return 609 - case .messageSet: return 610 - case .messageSetWireFormat: return 611 - case .messageSize: return 612 - case .messageType: return 613 - case .method: return 614 - case .methodDescriptorProto: return 615 - case .methodOptions: return 616 - case .methods: return 617 - case .min: return 618 - case .minimumEdition: return 619 - case .minor: return 620 - case .mixin: return 621 - case .mixins: return 622 - case .modifier: return 623 - case .modify: return 624 - case .month: return 625 - case .msgExtension: return 626 - case .mutating: return 627 - case .n: return 628 - case .name: return 629 - case .nameDescription: return 630 - case .nameMap: return 631 - case .namePart: return 632 - case .names: return 633 - case .nanos: return 634 - case .negativeIntValue: return 635 - case .nestedType: return 636 - case .newL: return 637 - case .newList: return 638 - case .newValue: return 639 - case .next: return 640 - case .nextByte: return 641 - case .nextFieldNumber: return 642 - case .nextVarInt: return 643 - case .nil: return 644 - case .nilLiteral: return 645 - case .noStandardDescriptorAccessor: return 646 - case .nullValue: return 647 - case .number: return 648 - case .numberValue: return 649 - case .objcClassPrefix: return 650 - case .of: return 651 - case .oneofDecl: return 652 - case .oneofDescriptorProto: return 653 - case .oneofIndex: return 654 - case .oneofOptions: return 655 - case .oneofs: return 656 - case .oneOfKind: return 657 - case .optimizeFor: return 658 - case .optimizeMode: return 659 - case .option: return 660 - case .optionalEnumExtensionField: return 661 - case .optionalExtensionField: return 662 - case .optionalGroupExtensionField: return 663 - case .optionalMessageExtensionField: return 664 - case .optionRetention: return 665 - case .options: return 666 - case .optionTargetType: return 667 - case .other: return 668 - case .others: return 669 - case .out: return 670 - case .outputType: return 671 - case .overridableFeatures: return 672 - case .p: return 673 - case .package: return 674 - case .packed: return 675 - case .packedEnumExtensionField: return 676 - case .packedExtensionField: return 677 - case .padding: return 678 - case .parent: return 679 - case .parse: return 680 - case .path: return 681 - case .paths: return 682 - case .payload: return 683 - case .payloadSize: return 684 - case .phpClassPrefix: return 685 - case .phpMetadataNamespace: return 686 - case .phpNamespace: return 687 - case .pos: return 688 - case .positiveIntValue: return 689 - case .prefix: return 690 - case .preserveProtoFieldNames: return 691 - case .preTraverse: return 692 - case .printUnknownFields: return 693 - case .proto2: return 694 - case .proto3DefaultValue: return 695 - case .proto3Optional: return 696 - case .protobufApiversionCheck: return 697 - case .protobufApiversion3: return 698 - case .protobufBool: return 699 - case .protobufBytes: return 700 - case .protobufDouble: return 701 - case .protobufEnumMap: return 702 - case .protobufExtension: return 703 - case .protobufFixed32: return 704 - case .protobufFixed64: return 705 - case .protobufFloat: return 706 - case .protobufInt32: return 707 - case .protobufInt64: return 708 - case .protobufMap: return 709 - case .protobufMessageMap: return 710 - case .protobufSfixed32: return 711 - case .protobufSfixed64: return 712 - case .protobufSint32: return 713 - case .protobufSint64: return 714 - case .protobufString: return 715 - case .protobufUint32: return 716 - case .protobufUint64: return 717 - case .protobufExtensionFieldValues: return 718 - case .protobufFieldNumber: return 719 - case .protobufGeneratedIsEqualTo: return 720 - case .protobufNameMap: return 721 - case .protobufNewField: return 722 - case .protobufPackage: return 723 - case .protocol: return 724 - case .protoFieldName: return 725 - case .protoMessageName: return 726 - case .protoNameProviding: return 727 - case .protoPaths: return 728 - case .public: return 729 - case .publicDependency: return 730 - case .putBoolValue: return 731 - case .putBytesValue: return 732 - case .putDoubleValue: return 733 - case .putEnumValue: return 734 - case .putFixedUint32: return 735 - case .putFixedUint64: return 736 - case .putFloatValue: return 737 - case .putInt64: return 738 - case .putStringValue: return 739 - case .putUint64: return 740 - case .putUint64Hex: return 741 - case .putVarInt: return 742 - case .putZigZagVarInt: return 743 - case .pyGenericServices: return 744 - case .r: return 745 - case .rawChars: return 746 - case .rawRepresentable: return 747 - case .rawValue_: return 748 - case .read4HexDigits: return 749 - case .readBytes: return 750 - case .register: return 751 - case .repeated: return 752 - case .repeatedEnumExtensionField: return 753 - case .repeatedExtensionField: return 754 - case .repeatedFieldEncoding: return 755 - case .repeatedGroupExtensionField: return 756 - case .repeatedMessageExtensionField: return 757 - case .repeating: return 758 - case .requestStreaming: return 759 - case .requestTypeURL: return 760 - case .requiredSize: return 761 - case .responseStreaming: return 762 - case .responseTypeURL: return 763 - case .result: return 764 - case .retention: return 765 - case .rethrows: return 766 - case .return: return 767 - case .returnType: return 768 - case .revision: return 769 - case .rhs: return 770 - case .root: return 771 - case .rubyPackage: return 772 - case .s: return 773 - case .sawBackslash: return 774 - case .sawSection4Characters: return 775 - case .sawSection5Characters: return 776 - case .scan: return 777 - case .scanner: return 778 - case .seconds: return 779 - case .self_: return 780 - case .semantic: return 781 - case .sendable: return 782 - case .separator: return 783 - case .serialize: return 784 - case .serializedBytes: return 785 - case .serializedData: return 786 - case .serializedSize: return 787 - case .serverStreaming: return 788 - case .service: return 789 - case .serviceDescriptorProto: return 790 - case .serviceOptions: return 791 - case .set: return 792 - case .setExtensionValue: return 793 - case .shift: return 794 - case .simpleExtensionMap: return 795 - case .size: return 796 - case .sizer: return 797 - case .source: return 798 - case .sourceCodeInfo: return 799 - case .sourceContext: return 800 - case .sourceEncoding: return 801 - case .sourceFile: return 802 - case .span: return 803 - case .split: return 804 - case .start: return 805 - case .startArray: return 806 - case .startArrayObject: return 807 - case .startField: return 808 - case .startIndex: return 809 - case .startMessageField: return 810 - case .startObject: return 811 - case .startRegularField: return 812 - case .state: return 813 - case .static: return 814 - case .staticString: return 815 - case .storage: return 816 - case .string: return 817 - case .stringLiteral: return 818 - case .stringLiteralType: return 819 - case .stringResult: return 820 - case .stringValue: return 821 - case .struct: return 822 - case .structValue: return 823 - case .subDecoder: return 824 - case .subscript: return 825 - case .subVisitor: return 826 - case .swift: return 827 - case .swiftPrefix: return 828 - case .swiftProtobufContiguousBytes: return 829 - case .syntax: return 830 - case .t: return 831 - case .tag: return 832 - case .targets: return 833 - case .terminator: return 834 - case .testDecoder: return 835 - case .text: return 836 - case .textDecoder: return 837 - case .textFormatDecoder: return 838 - case .textFormatDecodingError: return 839 - case .textFormatDecodingOptions: return 840 - case .textFormatEncodingOptions: return 841 - case .textFormatEncodingVisitor: return 842 - case .textFormatString: return 843 - case .throwOrIgnore: return 844 - case .throws: return 845 - case .timeInterval: return 846 - case .timeIntervalSince1970: return 847 - case .timeIntervalSinceReferenceDate: return 848 - case .timestamp: return 849 - case .total: return 850 - case .totalArrayDepth: return 851 - case .totalSize: return 852 - case .trailingComments: return 853 - case .traverse: return 854 - case .true: return 855 - case .try: return 856 - case .type: return 857 - case .typealias: return 858 - case .typeEnum: return 859 - case .typeName: return 860 - case .typePrefix: return 861 - case .typeStart: return 862 - case .typeUnknown: return 863 - case .typeURL: return 864 - case .uint32: return 865 - case .uint32Value: return 866 - case .uint64: return 867 - case .uint64Value: return 868 - case .uint8: return 869 - case .unchecked: return 870 - case .unicodeScalarLiteral: return 871 - case .unicodeScalarLiteralType: return 872 - case .unicodeScalars: return 873 - case .unicodeScalarView: return 874 - case .uninterpretedOption: return 875 - case .union: return 876 - case .uniqueStorage: return 877 - case .unknown: return 878 - case .unknownFields: return 879 - case .unknownStorage: return 880 - case .unpackTo: return 881 - case .unsafeBufferPointer: return 882 - case .unsafeMutablePointer: return 883 - case .unsafeMutableRawBufferPointer: return 884 - case .unsafeRawBufferPointer: return 885 - case .unsafeRawPointer: return 886 - case .unverifiedLazy: return 887 - case .updatedOptions: return 888 - case .url: return 889 - case .useDeterministicOrdering: return 890 - case .utf8: return 891 - case .utf8Ptr: return 892 - case .utf8ToDouble: return 893 - case .utf8Validation: return 894 - case .utf8View: return 895 - case .v: return 896 - case .value: return 897 - case .valueField: return 898 - case .values: return 899 - case .valueType: return 900 - case .var: return 901 - case .verification: return 902 - case .verificationState: return 903 - case .version: return 904 - case .versionString: return 905 - case .visitExtensionFields: return 906 - case .visitExtensionFieldsAsMessageSet: return 907 - case .visitMapField: return 908 - case .visitor: return 909 - case .visitPacked: return 910 - case .visitPackedBoolField: return 911 - case .visitPackedDoubleField: return 912 - case .visitPackedEnumField: return 913 - case .visitPackedFixed32Field: return 914 - case .visitPackedFixed64Field: return 915 - case .visitPackedFloatField: return 916 - case .visitPackedInt32Field: return 917 - case .visitPackedInt64Field: return 918 - case .visitPackedSfixed32Field: return 919 - case .visitPackedSfixed64Field: return 920 - case .visitPackedSint32Field: return 921 - case .visitPackedSint64Field: return 922 - case .visitPackedUint32Field: return 923 - case .visitPackedUint64Field: return 924 - case .visitRepeated: return 925 - case .visitRepeatedBoolField: return 926 - case .visitRepeatedBytesField: return 927 - case .visitRepeatedDoubleField: return 928 - case .visitRepeatedEnumField: return 929 - case .visitRepeatedFixed32Field: return 930 - case .visitRepeatedFixed64Field: return 931 - case .visitRepeatedFloatField: return 932 - case .visitRepeatedGroupField: return 933 - case .visitRepeatedInt32Field: return 934 - case .visitRepeatedInt64Field: return 935 - case .visitRepeatedMessageField: return 936 - case .visitRepeatedSfixed32Field: return 937 - case .visitRepeatedSfixed64Field: return 938 - case .visitRepeatedSint32Field: return 939 - case .visitRepeatedSint64Field: return 940 - case .visitRepeatedStringField: return 941 - case .visitRepeatedUint32Field: return 942 - case .visitRepeatedUint64Field: return 943 - case .visitSingular: return 944 - case .visitSingularBoolField: return 945 - case .visitSingularBytesField: return 946 - case .visitSingularDoubleField: return 947 - case .visitSingularEnumField: return 948 - case .visitSingularFixed32Field: return 949 - case .visitSingularFixed64Field: return 950 - case .visitSingularFloatField: return 951 - case .visitSingularGroupField: return 952 - case .visitSingularInt32Field: return 953 - case .visitSingularInt64Field: return 954 - case .visitSingularMessageField: return 955 - case .visitSingularSfixed32Field: return 956 - case .visitSingularSfixed64Field: return 957 - case .visitSingularSint32Field: return 958 - case .visitSingularSint64Field: return 959 - case .visitSingularStringField: return 960 - case .visitSingularUint32Field: return 961 - case .visitSingularUint64Field: return 962 - case .visitUnknown: return 963 - case .wasDecoded: return 964 - case .weak: return 965 - case .weakDependency: return 966 - case .where: return 967 - case .wireFormat: return 968 - case .with: return 969 - case .withUnsafeBytes: return 970 - case .withUnsafeMutableBytes: return 971 - case .work: return 972 - case .wrapped: return 973 - case .wrappedType: return 974 - case .wrappedValue: return 975 - case .written: return 976 - case .yday: return 977 + case .hasRepeatedFieldEncoding: return 500 + case .hasReserved: return 501 + case .hasRetention: return 502 + case .hasRubyPackage: return 503 + case .hasSemantic: return 504 + case .hasServerStreaming: return 505 + case .hasSourceCodeInfo: return 506 + case .hasSourceContext: return 507 + case .hasSourceFile: return 508 + case .hasStart: return 509 + case .hasStringValue: return 510 + case .hasSwiftPrefix: return 511 + case .hasSyntax: return 512 + case .hasTrailingComments: return 513 + case .hasType: return 514 + case .hasTypeName: return 515 + case .hasUnverifiedLazy: return 516 + case .hasUtf8Validation: return 517 + case .hasValue: return 518 + case .hasVerification: return 519 + case .hasWeak: return 520 + case .hour: return 521 + case .i: return 522 + case .idempotencyLevel: return 523 + case .identifierValue: return 524 + case .if: return 525 + case .ignoreUnknownExtensionFields: return 526 + case .ignoreUnknownFields: return 527 + case .index: return 528 + case .init_: return 529 + case .inout: return 530 + case .inputType: return 531 + case .insert: return 532 + case .int: return 533 + case .int32: return 534 + case .int32Value: return 535 + case .int64: return 536 + case .int64Value: return 537 + case .int8: return 538 + case .integerLiteral: return 539 + case .integerLiteralType: return 540 + case .intern: return 541 + case .internal: return 542 + case .internalState: return 543 + case .into: return 544 + case .ints: return 545 + case .isA: return 546 + case .isEqual: return 547 + case .isEqualTo: return 548 + case .isExtension: return 549 + case .isInitialized: return 550 + case .isNegative: return 551 + case .itemTagsEncodedSize: return 552 + case .iterator: return 553 + case .javaGenerateEqualsAndHash: return 554 + case .javaGenericServices: return 555 + case .javaMultipleFiles: return 556 + case .javaOuterClassname: return 557 + case .javaPackage: return 558 + case .javaStringCheckUtf8: return 559 + case .jsondecoder: return 560 + case .jsondecodingError: return 561 + case .jsondecodingOptions: return 562 + case .jsonEncoder: return 563 + case .jsonencoding: return 564 + case .jsonencodingError: return 565 + case .jsonencodingOptions: return 566 + case .jsonencodingVisitor: return 567 + case .jsonFormat: return 568 + case .jsonmapEncodingVisitor: return 569 + case .jsonName: return 570 + case .jsonPath: return 571 + case .jsonPaths: return 572 + case .jsonscanner: return 573 + case .jsonString: return 574 + case .jsonText: return 575 + case .jsonUtf8Bytes: return 576 + case .jsonUtf8Data: return 577 + case .jstype: return 578 + case .k: return 579 + case .kChunkSize: return 580 + case .key: return 581 + case .keyField: return 582 + case .keyFieldOpt: return 583 + case .keyType: return 584 + case .kind: return 585 + case .l: return 586 + case .label: return 587 + case .lazy: return 588 + case .leadingComments: return 589 + case .leadingDetachedComments: return 590 + case .length: return 591 + case .lessThan: return 592 + case .let: return 593 + case .lhs: return 594 + case .line: return 595 + case .list: return 596 + case .listOfMessages: return 597 + case .listValue: return 598 + case .littleEndian: return 599 + case .load: return 600 + case .localHasher: return 601 + case .location: return 602 + case .m: return 603 + case .major: return 604 + case .makeAsyncIterator: return 605 + case .makeIterator: return 606 + case .malformedLength: return 607 + case .mapEntry: return 608 + case .mapKeyType: return 609 + case .mapToMessages: return 610 + case .mapValueType: return 611 + case .mapVisitor: return 612 + case .maximumEdition: return 613 + case .mdayStart: return 614 + case .merge: return 615 + case .message: return 616 + case .messageDepthLimit: return 617 + case .messageEncoding: return 618 + case .messageExtension: return 619 + case .messageImplementationBase: return 620 + case .messageOptions: return 621 + case .messageSet: return 622 + case .messageSetWireFormat: return 623 + case .messageSize: return 624 + case .messageType: return 625 + case .method: return 626 + case .methodDescriptorProto: return 627 + case .methodOptions: return 628 + case .methods: return 629 + case .min: return 630 + case .minimumEdition: return 631 + case .minor: return 632 + case .mixin: return 633 + case .mixins: return 634 + case .modifier: return 635 + case .modify: return 636 + case .month: return 637 + case .msgExtension: return 638 + case .mutating: return 639 + case .n: return 640 + case .name: return 641 + case .nameDescription: return 642 + case .nameMap: return 643 + case .namePart: return 644 + case .names: return 645 + case .nanos: return 646 + case .negativeIntValue: return 647 + case .nestedType: return 648 + case .newL: return 649 + case .newList: return 650 + case .newValue: return 651 + case .next: return 652 + case .nextByte: return 653 + case .nextFieldNumber: return 654 + case .nextVarInt: return 655 + case .nil: return 656 + case .nilLiteral: return 657 + case .noBytesAvailable: return 658 + case .noStandardDescriptorAccessor: return 659 + case .nullValue: return 660 + case .number: return 661 + case .numberValue: return 662 + case .objcClassPrefix: return 663 + case .of: return 664 + case .oneofDecl: return 665 + case .oneofDescriptorProto: return 666 + case .oneofIndex: return 667 + case .oneofOptions: return 668 + case .oneofs: return 669 + case .oneOfKind: return 670 + case .optimizeFor: return 671 + case .optimizeMode: return 672 + case .option: return 673 + case .optionalEnumExtensionField: return 674 + case .optionalExtensionField: return 675 + case .optionalGroupExtensionField: return 676 + case .optionalMessageExtensionField: return 677 + case .optionRetention: return 678 + case .options: return 679 + case .optionTargetType: return 680 + case .other: return 681 + case .others: return 682 + case .out: return 683 + case .outputType: return 684 + case .overridableFeatures: return 685 + case .p: return 686 + case .package: return 687 + case .packed: return 688 + case .packedEnumExtensionField: return 689 + case .packedExtensionField: return 690 + case .padding: return 691 + case .parent: return 692 + case .parse: return 693 + case .path: return 694 + case .paths: return 695 + case .payload: return 696 + case .payloadSize: return 697 + case .phpClassPrefix: return 698 + case .phpMetadataNamespace: return 699 + case .phpNamespace: return 700 + case .pos: return 701 + case .positiveIntValue: return 702 + case .prefix: return 703 + case .preserveProtoFieldNames: return 704 + case .preTraverse: return 705 + case .printUnknownFields: return 706 + case .proto2: return 707 + case .proto3DefaultValue: return 708 + case .proto3Optional: return 709 + case .protobufApiversionCheck: return 710 + case .protobufApiversion3: return 711 + case .protobufBool: return 712 + case .protobufBytes: return 713 + case .protobufDouble: return 714 + case .protobufEnumMap: return 715 + case .protobufExtension: return 716 + case .protobufFixed32: return 717 + case .protobufFixed64: return 718 + case .protobufFloat: return 719 + case .protobufInt32: return 720 + case .protobufInt64: return 721 + case .protobufMap: return 722 + case .protobufMessageMap: return 723 + case .protobufSfixed32: return 724 + case .protobufSfixed64: return 725 + case .protobufSint32: return 726 + case .protobufSint64: return 727 + case .protobufString: return 728 + case .protobufUint32: return 729 + case .protobufUint64: return 730 + case .protobufExtensionFieldValues: return 731 + case .protobufFieldNumber: return 732 + case .protobufGeneratedIsEqualTo: return 733 + case .protobufNameMap: return 734 + case .protobufNewField: return 735 + case .protobufPackage: return 736 + case .protocol: return 737 + case .protoFieldName: return 738 + case .protoMessageName: return 739 + case .protoNameProviding: return 740 + case .protoPaths: return 741 + case .public: return 742 + case .publicDependency: return 743 + case .putBoolValue: return 744 + case .putBytesValue: return 745 + case .putDoubleValue: return 746 + case .putEnumValue: return 747 + case .putFixedUint32: return 748 + case .putFixedUint64: return 749 + case .putFloatValue: return 750 + case .putInt64: return 751 + case .putStringValue: return 752 + case .putUint64: return 753 + case .putUint64Hex: return 754 + case .putVarInt: return 755 + case .putZigZagVarInt: return 756 + case .pyGenericServices: return 757 + case .r: return 758 + case .rawChars: return 759 + case .rawRepresentable: return 760 + case .rawValue_: return 761 + case .read4HexDigits: return 762 + case .readBytes: return 763 + case .register: return 764 + case .repeated: return 765 + case .repeatedEnumExtensionField: return 766 + case .repeatedExtensionField: return 767 + case .repeatedFieldEncoding: return 768 + case .repeatedGroupExtensionField: return 769 + case .repeatedMessageExtensionField: return 770 + case .repeating: return 771 + case .requestStreaming: return 772 + case .requestTypeURL: return 773 + case .requiredSize: return 774 + case .responseStreaming: return 775 + case .responseTypeURL: return 776 + case .result: return 777 + case .retention: return 778 + case .rethrows: return 779 + case .return: return 780 + case .returnType: return 781 + case .revision: return 782 + case .rhs: return 783 + case .root: return 784 + case .rubyPackage: return 785 + case .s: return 786 + case .sawBackslash: return 787 + case .sawSection4Characters: return 788 + case .sawSection5Characters: return 789 + case .scan: return 790 + case .scanner: return 791 + case .seconds: return 792 + case .self_: return 793 + case .semantic: return 794 + case .sendable: return 795 + case .separator: return 796 + case .serialize: return 797 + case .serializedBytes: return 798 + case .serializedData: return 799 + case .serializedSize: return 800 + case .serverStreaming: return 801 + case .service: return 802 + case .serviceDescriptorProto: return 803 + case .serviceOptions: return 804 + case .set: return 805 + case .setExtensionValue: return 806 + case .shift: return 807 + case .simpleExtensionMap: return 808 + case .size: return 809 + case .sizer: return 810 + case .source: return 811 + case .sourceCodeInfo: return 812 + case .sourceContext: return 813 + case .sourceEncoding: return 814 + case .sourceFile: return 815 + case .sourceLocation: return 816 + case .span: return 817 + case .split: return 818 + case .start: return 819 + case .startArray: return 820 + case .startArrayObject: return 821 + case .startField: return 822 + case .startIndex: return 823 + case .startMessageField: return 824 + case .startObject: return 825 + case .startRegularField: return 826 + case .state: return 827 + case .static: return 828 + case .staticString: return 829 + case .storage: return 830 + case .string: return 831 + case .stringLiteral: return 832 + case .stringLiteralType: return 833 + case .stringResult: return 834 + case .stringValue: return 835 + case .struct: return 836 + case .structValue: return 837 + case .subDecoder: return 838 + case .subscript: return 839 + case .subVisitor: return 840 + case .swift: return 841 + case .swiftPrefix: return 842 + case .swiftProtobufContiguousBytes: return 843 + case .swiftProtobufError: return 844 + case .syntax: return 845 + case .t: return 846 + case .tag: return 847 + case .targets: return 848 + case .terminator: return 849 + case .testDecoder: return 850 + case .text: return 851 + case .textDecoder: return 852 + case .textFormatDecoder: return 853 + case .textFormatDecodingError: return 854 + case .textFormatDecodingOptions: return 855 + case .textFormatEncodingOptions: return 856 + case .textFormatEncodingVisitor: return 857 + case .textFormatString: return 858 + case .throwOrIgnore: return 859 + case .throws: return 860 + case .timeInterval: return 861 + case .timeIntervalSince1970: return 862 + case .timeIntervalSinceReferenceDate: return 863 + case .timestamp: return 864 + case .tooLarge: return 865 + case .total: return 866 + case .totalArrayDepth: return 867 + case .totalSize: return 868 + case .trailingComments: return 869 + case .traverse: return 870 + case .true: return 871 + case .try: return 872 + case .type: return 873 + case .typealias: return 874 + case .typeEnum: return 875 + case .typeName: return 876 + case .typePrefix: return 877 + case .typeStart: return 878 + case .typeUnknown: return 879 + case .typeURL: return 880 + case .uint32: return 881 + case .uint32Value: return 882 + case .uint64: return 883 + case .uint64Value: return 884 + case .uint8: return 885 + case .unchecked: return 886 + case .unicodeScalarLiteral: return 887 + case .unicodeScalarLiteralType: return 888 + case .unicodeScalars: return 889 + case .unicodeScalarView: return 890 + case .uninterpretedOption: return 891 + case .union: return 892 + case .uniqueStorage: return 893 + case .unknown: return 894 + case .unknownFields: return 895 + case .unknownStorage: return 896 + case .unpackTo: return 897 + case .unregisteredTypeURL: return 898 + case .unsafeBufferPointer: return 899 + case .unsafeMutablePointer: return 900 + case .unsafeMutableRawBufferPointer: return 901 + case .unsafeRawBufferPointer: return 902 + case .unsafeRawPointer: return 903 + case .unverifiedLazy: return 904 + case .updatedOptions: return 905 + case .url: return 906 + case .useDeterministicOrdering: return 907 + case .utf8: return 908 + case .utf8Ptr: return 909 + case .utf8ToDouble: return 910 + case .utf8Validation: return 911 + case .utf8View: return 912 + case .v: return 913 + case .value: return 914 + case .valueField: return 915 + case .values: return 916 + case .valueType: return 917 + case .var: return 918 + case .verification: return 919 + case .verificationState: return 920 + case .version: return 921 + case .versionString: return 922 + case .visitExtensionFields: return 923 + case .visitExtensionFieldsAsMessageSet: return 924 + case .visitMapField: return 925 + case .visitor: return 926 + case .visitPacked: return 927 + case .visitPackedBoolField: return 928 + case .visitPackedDoubleField: return 929 + case .visitPackedEnumField: return 930 + case .visitPackedFixed32Field: return 931 + case .visitPackedFixed64Field: return 932 + case .visitPackedFloatField: return 933 + case .visitPackedInt32Field: return 934 + case .visitPackedInt64Field: return 935 + case .visitPackedSfixed32Field: return 936 + case .visitPackedSfixed64Field: return 937 + case .visitPackedSint32Field: return 938 + case .visitPackedSint64Field: return 939 + case .visitPackedUint32Field: return 940 + case .visitPackedUint64Field: return 941 + case .visitRepeated: return 942 + case .visitRepeatedBoolField: return 943 + case .visitRepeatedBytesField: return 944 + case .visitRepeatedDoubleField: return 945 + case .visitRepeatedEnumField: return 946 + case .visitRepeatedFixed32Field: return 947 + case .visitRepeatedFixed64Field: return 948 + case .visitRepeatedFloatField: return 949 + case .visitRepeatedGroupField: return 950 + case .visitRepeatedInt32Field: return 951 + case .visitRepeatedInt64Field: return 952 + case .visitRepeatedMessageField: return 953 + case .visitRepeatedSfixed32Field: return 954 + case .visitRepeatedSfixed64Field: return 955 + case .visitRepeatedSint32Field: return 956 + case .visitRepeatedSint64Field: return 957 + case .visitRepeatedStringField: return 958 + case .visitRepeatedUint32Field: return 959 + case .visitRepeatedUint64Field: return 960 + case .visitSingular: return 961 + case .visitSingularBoolField: return 962 + case .visitSingularBytesField: return 963 + case .visitSingularDoubleField: return 964 + case .visitSingularEnumField: return 965 + case .visitSingularFixed32Field: return 966 + case .visitSingularFixed64Field: return 967 + case .visitSingularFloatField: return 968 + case .visitSingularGroupField: return 969 + case .visitSingularInt32Field: return 970 + case .visitSingularInt64Field: return 971 + case .visitSingularMessageField: return 972 + case .visitSingularSfixed32Field: return 973 + case .visitSingularSfixed64Field: return 974 + case .visitSingularSint32Field: return 975 + case .visitSingularSint64Field: return 976 + case .visitSingularStringField: return 977 + case .visitSingularUint32Field: return 978 + case .visitSingularUint64Field: return 979 + case .visitUnknown: return 980 + case .wasDecoded: return 981 + case .weak: return 982 + case .weakDependency: return 983 + case .where: return 984 + case .wireFormat: return 985 + case .with: return 986 + case .withUnsafeBytes: return 987 + case .withUnsafeMutableBytes: return 988 + case .work: return 989 + case .wrapped: return 990 + case .wrappedType: return 991 + case .wrappedValue: return 992 + case .written: return 993 + case .yday: return 994 case .UNRECOGNIZED(let i): return i default: break } @@ -3000,6 +3051,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .anyExtensionField, .anyMessageExtension, .anyMessageStorage, + .anyTypeUrlnotRegistered, .anyUnpackError, .api, .appended, @@ -3026,10 +3078,12 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .begin, .binary, .binaryDecoder, + .binaryDecoding, .binaryDecodingError, .binaryDecodingOptions, .binaryDelimited, .binaryEncoder, + .binaryEncoding, .binaryEncodingError, .binaryEncodingMessageSetSizeVisitor, .binaryEncodingMessageSetVisitor, @@ -3038,6 +3092,8 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .binaryEncodingVisitor, .binaryOptions, .binaryProtobufDelimitedMessages, + .binaryStreamDecoding, + .binaryStreamDecodingError, .bitPattern, .body, .bool, @@ -3151,6 +3207,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .clearVerification, .clearWeak, .clientStreaming, + .code, .codePoint, .codeUnits, .collection, @@ -3158,12 +3215,14 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .comma, .consumedBytes, .contentsOf, + .copy, .count, .countVarintsInBuffer, .csharpNamespace, .ctype, .customCodable, .customDebugStringConvertible, + .customStringConvertible, .d, .data, .dataResult, @@ -3343,6 +3402,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .fromHexDigit, .fullName, .func, + .function, .g, .generatedCodeInfo, .get, @@ -3543,6 +3603,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .jsondecodingError, .jsondecodingOptions, .jsonEncoder, + .jsonencoding, .jsonencodingError, .jsonencodingOptions, .jsonencodingVisitor, @@ -3573,6 +3634,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .lessThan, .let, .lhs, + .line, .list, .listOfMessages, .listValue, @@ -3584,6 +3646,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .major, .makeAsyncIterator, .makeIterator, + .malformedLength, .mapEntry, .mapKeyType, .mapToMessages, @@ -3634,6 +3697,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .nextVarInt, .nil, .nilLiteral, + .noBytesAvailable, .noStandardDescriptorAccessor, .nullValue, .number, @@ -3791,6 +3855,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .sourceContext, .sourceEncoding, .sourceFile, + .sourceLocation, .span, .split, .start, @@ -3818,6 +3883,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .swift, .swiftPrefix, .swiftProtobufContiguousBytes, + .swiftProtobufError, .syntax, .t, .tag, @@ -3838,6 +3904,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .timeIntervalSince1970, .timeIntervalSinceReferenceDate, .timestamp, + .tooLarge, .total, .totalArrayDepth, .totalSize, @@ -3870,6 +3937,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .unknownFields, .unknownStorage, .unpackTo, + .unregisteredTypeURL, .unsafeBufferPointer, .unsafeMutablePointer, .unsafeMutableRawBufferPointer, @@ -3986,971 +4054,988 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf. 9: .same(proto: "AnyExtensionField"), 10: .same(proto: "AnyMessageExtension"), 11: .same(proto: "AnyMessageStorage"), - 12: .same(proto: "AnyUnpackError"), - 13: .same(proto: "Api"), - 14: .same(proto: "appended"), - 15: .same(proto: "appendUIntHex"), - 16: .same(proto: "appendUnknown"), - 17: .same(proto: "areAllInitialized"), - 18: .same(proto: "Array"), - 19: .same(proto: "arrayDepth"), - 20: .same(proto: "arrayLiteral"), - 21: .same(proto: "arraySeparator"), - 22: .same(proto: "as"), - 23: .same(proto: "asciiOpenCurlyBracket"), - 24: .same(proto: "asciiZero"), - 25: .same(proto: "async"), - 26: .same(proto: "AsyncIterator"), - 27: .same(proto: "AsyncIteratorProtocol"), - 28: .same(proto: "AsyncMessageSequence"), - 29: .same(proto: "available"), - 30: .same(proto: "b"), - 31: .same(proto: "Base"), - 32: .same(proto: "base64Values"), - 33: .same(proto: "baseAddress"), - 34: .same(proto: "BaseType"), - 35: .same(proto: "begin"), - 36: .same(proto: "binary"), - 37: .same(proto: "BinaryDecoder"), - 38: .same(proto: "BinaryDecodingError"), - 39: .same(proto: "BinaryDecodingOptions"), - 40: .same(proto: "BinaryDelimited"), - 41: .same(proto: "BinaryEncoder"), - 42: .same(proto: "BinaryEncodingError"), - 43: .same(proto: "BinaryEncodingMessageSetSizeVisitor"), - 44: .same(proto: "BinaryEncodingMessageSetVisitor"), - 45: .same(proto: "BinaryEncodingOptions"), - 46: .same(proto: "BinaryEncodingSizeVisitor"), - 47: .same(proto: "BinaryEncodingVisitor"), - 48: .same(proto: "binaryOptions"), - 49: .same(proto: "binaryProtobufDelimitedMessages"), - 50: .same(proto: "bitPattern"), - 51: .same(proto: "body"), - 52: .same(proto: "Bool"), - 53: .same(proto: "booleanLiteral"), - 54: .same(proto: "BooleanLiteralType"), - 55: .same(proto: "boolValue"), - 56: .same(proto: "buffer"), - 57: .same(proto: "bytes"), - 58: .same(proto: "bytesInGroup"), - 59: .same(proto: "bytesNeeded"), - 60: .same(proto: "bytesRead"), - 61: .same(proto: "BytesValue"), - 62: .same(proto: "c"), - 63: .same(proto: "capitalizeNext"), - 64: .same(proto: "cardinality"), - 65: .same(proto: "CaseIterable"), - 66: .same(proto: "ccEnableArenas"), - 67: .same(proto: "ccGenericServices"), - 68: .same(proto: "Character"), - 69: .same(proto: "chars"), - 70: .same(proto: "chunk"), - 71: .same(proto: "class"), - 72: .same(proto: "clearAggregateValue"), - 73: .same(proto: "clearAllowAlias"), - 74: .same(proto: "clearBegin"), - 75: .same(proto: "clearCcEnableArenas"), - 76: .same(proto: "clearCcGenericServices"), - 77: .same(proto: "clearClientStreaming"), - 78: .same(proto: "clearCsharpNamespace"), - 79: .same(proto: "clearCtype"), - 80: .same(proto: "clearDebugRedact"), - 81: .same(proto: "clearDefaultValue"), - 82: .same(proto: "clearDeprecated"), - 83: .same(proto: "clearDeprecatedLegacyJsonFieldConflicts"), - 84: .same(proto: "clearDeprecationWarning"), - 85: .same(proto: "clearDoubleValue"), - 86: .same(proto: "clearEdition"), - 87: .same(proto: "clearEditionDeprecated"), - 88: .same(proto: "clearEditionIntroduced"), - 89: .same(proto: "clearEditionRemoved"), - 90: .same(proto: "clearEnd"), - 91: .same(proto: "clearEnumType"), - 92: .same(proto: "clearExtendee"), - 93: .same(proto: "clearExtensionValue"), - 94: .same(proto: "clearFeatures"), - 95: .same(proto: "clearFeatureSupport"), - 96: .same(proto: "clearFieldPresence"), - 97: .same(proto: "clearFixedFeatures"), - 98: .same(proto: "clearFullName"), - 99: .same(proto: "clearGoPackage"), - 100: .same(proto: "clearIdempotencyLevel"), - 101: .same(proto: "clearIdentifierValue"), - 102: .same(proto: "clearInputType"), - 103: .same(proto: "clearIsExtension"), - 104: .same(proto: "clearJavaGenerateEqualsAndHash"), - 105: .same(proto: "clearJavaGenericServices"), - 106: .same(proto: "clearJavaMultipleFiles"), - 107: .same(proto: "clearJavaOuterClassname"), - 108: .same(proto: "clearJavaPackage"), - 109: .same(proto: "clearJavaStringCheckUtf8"), - 110: .same(proto: "clearJsonFormat"), - 111: .same(proto: "clearJsonName"), - 112: .same(proto: "clearJstype"), - 113: .same(proto: "clearLabel"), - 114: .same(proto: "clearLazy"), - 115: .same(proto: "clearLeadingComments"), - 116: .same(proto: "clearMapEntry"), - 117: .same(proto: "clearMaximumEdition"), - 118: .same(proto: "clearMessageEncoding"), - 119: .same(proto: "clearMessageSetWireFormat"), - 120: .same(proto: "clearMinimumEdition"), - 121: .same(proto: "clearName"), - 122: .same(proto: "clearNamePart"), - 123: .same(proto: "clearNegativeIntValue"), - 124: .same(proto: "clearNoStandardDescriptorAccessor"), - 125: .same(proto: "clearNumber"), - 126: .same(proto: "clearObjcClassPrefix"), - 127: .same(proto: "clearOneofIndex"), - 128: .same(proto: "clearOptimizeFor"), - 129: .same(proto: "clearOptions"), - 130: .same(proto: "clearOutputType"), - 131: .same(proto: "clearOverridableFeatures"), - 132: .same(proto: "clearPackage"), - 133: .same(proto: "clearPacked"), - 134: .same(proto: "clearPhpClassPrefix"), - 135: .same(proto: "clearPhpMetadataNamespace"), - 136: .same(proto: "clearPhpNamespace"), - 137: .same(proto: "clearPositiveIntValue"), - 138: .same(proto: "clearProto3Optional"), - 139: .same(proto: "clearPyGenericServices"), - 140: .same(proto: "clearRepeated"), - 141: .same(proto: "clearRepeatedFieldEncoding"), - 142: .same(proto: "clearReserved"), - 143: .same(proto: "clearRetention"), - 144: .same(proto: "clearRubyPackage"), - 145: .same(proto: "clearSemantic"), - 146: .same(proto: "clearServerStreaming"), - 147: .same(proto: "clearSourceCodeInfo"), - 148: .same(proto: "clearSourceContext"), - 149: .same(proto: "clearSourceFile"), - 150: .same(proto: "clearStart"), - 151: .same(proto: "clearStringValue"), - 152: .same(proto: "clearSwiftPrefix"), - 153: .same(proto: "clearSyntax"), - 154: .same(proto: "clearTrailingComments"), - 155: .same(proto: "clearType"), - 156: .same(proto: "clearTypeName"), - 157: .same(proto: "clearUnverifiedLazy"), - 158: .same(proto: "clearUtf8Validation"), - 159: .same(proto: "clearValue"), - 160: .same(proto: "clearVerification"), - 161: .same(proto: "clearWeak"), - 162: .same(proto: "clientStreaming"), - 163: .same(proto: "codePoint"), - 164: .same(proto: "codeUnits"), - 165: .same(proto: "Collection"), - 166: .same(proto: "com"), - 167: .same(proto: "comma"), - 168: .same(proto: "consumedBytes"), - 169: .same(proto: "contentsOf"), - 170: .same(proto: "count"), - 171: .same(proto: "countVarintsInBuffer"), - 172: .same(proto: "csharpNamespace"), - 173: .same(proto: "ctype"), - 174: .same(proto: "customCodable"), - 175: .same(proto: "CustomDebugStringConvertible"), - 176: .same(proto: "d"), - 177: .same(proto: "Data"), - 178: .same(proto: "dataResult"), - 179: .same(proto: "date"), - 180: .same(proto: "daySec"), - 181: .same(proto: "daysSinceEpoch"), - 182: .same(proto: "debugDescription"), - 183: .same(proto: "debugRedact"), - 184: .same(proto: "declaration"), - 185: .same(proto: "decoded"), - 186: .same(proto: "decodedFromJSONNull"), - 187: .same(proto: "decodeExtensionField"), - 188: .same(proto: "decodeExtensionFieldsAsMessageSet"), - 189: .same(proto: "decodeJSON"), - 190: .same(proto: "decodeMapField"), - 191: .same(proto: "decodeMessage"), - 192: .same(proto: "decoder"), - 193: .same(proto: "decodeRepeated"), - 194: .same(proto: "decodeRepeatedBoolField"), - 195: .same(proto: "decodeRepeatedBytesField"), - 196: .same(proto: "decodeRepeatedDoubleField"), - 197: .same(proto: "decodeRepeatedEnumField"), - 198: .same(proto: "decodeRepeatedFixed32Field"), - 199: .same(proto: "decodeRepeatedFixed64Field"), - 200: .same(proto: "decodeRepeatedFloatField"), - 201: .same(proto: "decodeRepeatedGroupField"), - 202: .same(proto: "decodeRepeatedInt32Field"), - 203: .same(proto: "decodeRepeatedInt64Field"), - 204: .same(proto: "decodeRepeatedMessageField"), - 205: .same(proto: "decodeRepeatedSFixed32Field"), - 206: .same(proto: "decodeRepeatedSFixed64Field"), - 207: .same(proto: "decodeRepeatedSInt32Field"), - 208: .same(proto: "decodeRepeatedSInt64Field"), - 209: .same(proto: "decodeRepeatedStringField"), - 210: .same(proto: "decodeRepeatedUInt32Field"), - 211: .same(proto: "decodeRepeatedUInt64Field"), - 212: .same(proto: "decodeSingular"), - 213: .same(proto: "decodeSingularBoolField"), - 214: .same(proto: "decodeSingularBytesField"), - 215: .same(proto: "decodeSingularDoubleField"), - 216: .same(proto: "decodeSingularEnumField"), - 217: .same(proto: "decodeSingularFixed32Field"), - 218: .same(proto: "decodeSingularFixed64Field"), - 219: .same(proto: "decodeSingularFloatField"), - 220: .same(proto: "decodeSingularGroupField"), - 221: .same(proto: "decodeSingularInt32Field"), - 222: .same(proto: "decodeSingularInt64Field"), - 223: .same(proto: "decodeSingularMessageField"), - 224: .same(proto: "decodeSingularSFixed32Field"), - 225: .same(proto: "decodeSingularSFixed64Field"), - 226: .same(proto: "decodeSingularSInt32Field"), - 227: .same(proto: "decodeSingularSInt64Field"), - 228: .same(proto: "decodeSingularStringField"), - 229: .same(proto: "decodeSingularUInt32Field"), - 230: .same(proto: "decodeSingularUInt64Field"), - 231: .same(proto: "decodeTextFormat"), - 232: .same(proto: "defaultAnyTypeURLPrefix"), - 233: .same(proto: "defaults"), - 234: .same(proto: "defaultValue"), - 235: .same(proto: "dependency"), - 236: .same(proto: "deprecated"), - 237: .same(proto: "deprecatedLegacyJsonFieldConflicts"), - 238: .same(proto: "deprecationWarning"), - 239: .same(proto: "description"), - 240: .same(proto: "DescriptorProto"), - 241: .same(proto: "Dictionary"), - 242: .same(proto: "dictionaryLiteral"), - 243: .same(proto: "digit"), - 244: .same(proto: "digit0"), - 245: .same(proto: "digit1"), - 246: .same(proto: "digitCount"), - 247: .same(proto: "digits"), - 248: .same(proto: "digitValue"), - 249: .same(proto: "discardableResult"), - 250: .same(proto: "discardUnknownFields"), - 251: .same(proto: "Double"), - 252: .same(proto: "doubleValue"), - 253: .same(proto: "Duration"), - 254: .same(proto: "E"), - 255: .same(proto: "edition"), - 256: .same(proto: "EditionDefault"), - 257: .same(proto: "editionDefaults"), - 258: .same(proto: "editionDeprecated"), - 259: .same(proto: "editionIntroduced"), - 260: .same(proto: "editionRemoved"), - 261: .same(proto: "Element"), - 262: .same(proto: "elements"), - 263: .same(proto: "emitExtensionFieldName"), - 264: .same(proto: "emitFieldName"), - 265: .same(proto: "emitFieldNumber"), - 266: .same(proto: "Empty"), - 267: .same(proto: "encodeAsBytes"), - 268: .same(proto: "encoded"), - 269: .same(proto: "encodedJSONString"), - 270: .same(proto: "encodedSize"), - 271: .same(proto: "encodeField"), - 272: .same(proto: "encoder"), - 273: .same(proto: "end"), - 274: .same(proto: "endArray"), - 275: .same(proto: "endMessageField"), - 276: .same(proto: "endObject"), - 277: .same(proto: "endRegularField"), - 278: .same(proto: "enum"), - 279: .same(proto: "EnumDescriptorProto"), - 280: .same(proto: "EnumOptions"), - 281: .same(proto: "EnumReservedRange"), - 282: .same(proto: "enumType"), - 283: .same(proto: "enumvalue"), - 284: .same(proto: "EnumValueDescriptorProto"), - 285: .same(proto: "EnumValueOptions"), - 286: .same(proto: "Equatable"), - 287: .same(proto: "Error"), - 288: .same(proto: "ExpressibleByArrayLiteral"), - 289: .same(proto: "ExpressibleByDictionaryLiteral"), - 290: .same(proto: "ext"), - 291: .same(proto: "extDecoder"), - 292: .same(proto: "extendedGraphemeClusterLiteral"), - 293: .same(proto: "ExtendedGraphemeClusterLiteralType"), - 294: .same(proto: "extendee"), - 295: .same(proto: "ExtensibleMessage"), - 296: .same(proto: "extension"), - 297: .same(proto: "ExtensionField"), - 298: .same(proto: "extensionFieldNumber"), - 299: .same(proto: "ExtensionFieldValueSet"), - 300: .same(proto: "ExtensionMap"), - 301: .same(proto: "extensionRange"), - 302: .same(proto: "ExtensionRangeOptions"), - 303: .same(proto: "extensions"), - 304: .same(proto: "extras"), - 305: .same(proto: "F"), - 306: .same(proto: "false"), - 307: .same(proto: "features"), - 308: .same(proto: "FeatureSet"), - 309: .same(proto: "FeatureSetDefaults"), - 310: .same(proto: "FeatureSetEditionDefault"), - 311: .same(proto: "featureSupport"), - 312: .same(proto: "field"), - 313: .same(proto: "fieldData"), - 314: .same(proto: "FieldDescriptorProto"), - 315: .same(proto: "FieldMask"), - 316: .same(proto: "fieldName"), - 317: .same(proto: "fieldNameCount"), - 318: .same(proto: "fieldNum"), - 319: .same(proto: "fieldNumber"), - 320: .same(proto: "fieldNumberForProto"), - 321: .same(proto: "FieldOptions"), - 322: .same(proto: "fieldPresence"), - 323: .same(proto: "fields"), - 324: .same(proto: "fieldSize"), - 325: .same(proto: "FieldTag"), - 326: .same(proto: "fieldType"), - 327: .same(proto: "file"), - 328: .same(proto: "FileDescriptorProto"), - 329: .same(proto: "FileDescriptorSet"), - 330: .same(proto: "fileName"), - 331: .same(proto: "FileOptions"), - 332: .same(proto: "filter"), - 333: .same(proto: "final"), - 334: .same(proto: "finiteOnly"), - 335: .same(proto: "first"), - 336: .same(proto: "firstItem"), - 337: .same(proto: "fixedFeatures"), - 338: .same(proto: "Float"), - 339: .same(proto: "floatLiteral"), - 340: .same(proto: "FloatLiteralType"), - 341: .same(proto: "FloatValue"), - 342: .same(proto: "forMessageName"), - 343: .same(proto: "formUnion"), - 344: .same(proto: "forReadingFrom"), - 345: .same(proto: "forTypeURL"), - 346: .same(proto: "ForwardParser"), - 347: .same(proto: "forWritingInto"), - 348: .same(proto: "from"), - 349: .same(proto: "fromAscii2"), - 350: .same(proto: "fromAscii4"), - 351: .same(proto: "fromByteOffset"), - 352: .same(proto: "fromHexDigit"), - 353: .same(proto: "fullName"), - 354: .same(proto: "func"), - 355: .same(proto: "G"), - 356: .same(proto: "GeneratedCodeInfo"), - 357: .same(proto: "get"), - 358: .same(proto: "getExtensionValue"), - 359: .same(proto: "googleapis"), - 360: .same(proto: "Google_Protobuf_Any"), - 361: .same(proto: "Google_Protobuf_Api"), - 362: .same(proto: "Google_Protobuf_BoolValue"), - 363: .same(proto: "Google_Protobuf_BytesValue"), - 364: .same(proto: "Google_Protobuf_DescriptorProto"), - 365: .same(proto: "Google_Protobuf_DoubleValue"), - 366: .same(proto: "Google_Protobuf_Duration"), - 367: .same(proto: "Google_Protobuf_Edition"), - 368: .same(proto: "Google_Protobuf_Empty"), - 369: .same(proto: "Google_Protobuf_Enum"), - 370: .same(proto: "Google_Protobuf_EnumDescriptorProto"), - 371: .same(proto: "Google_Protobuf_EnumOptions"), - 372: .same(proto: "Google_Protobuf_EnumValue"), - 373: .same(proto: "Google_Protobuf_EnumValueDescriptorProto"), - 374: .same(proto: "Google_Protobuf_EnumValueOptions"), - 375: .same(proto: "Google_Protobuf_ExtensionRangeOptions"), - 376: .same(proto: "Google_Protobuf_FeatureSet"), - 377: .same(proto: "Google_Protobuf_FeatureSetDefaults"), - 378: .same(proto: "Google_Protobuf_Field"), - 379: .same(proto: "Google_Protobuf_FieldDescriptorProto"), - 380: .same(proto: "Google_Protobuf_FieldMask"), - 381: .same(proto: "Google_Protobuf_FieldOptions"), - 382: .same(proto: "Google_Protobuf_FileDescriptorProto"), - 383: .same(proto: "Google_Protobuf_FileDescriptorSet"), - 384: .same(proto: "Google_Protobuf_FileOptions"), - 385: .same(proto: "Google_Protobuf_FloatValue"), - 386: .same(proto: "Google_Protobuf_GeneratedCodeInfo"), - 387: .same(proto: "Google_Protobuf_Int32Value"), - 388: .same(proto: "Google_Protobuf_Int64Value"), - 389: .same(proto: "Google_Protobuf_ListValue"), - 390: .same(proto: "Google_Protobuf_MessageOptions"), - 391: .same(proto: "Google_Protobuf_Method"), - 392: .same(proto: "Google_Protobuf_MethodDescriptorProto"), - 393: .same(proto: "Google_Protobuf_MethodOptions"), - 394: .same(proto: "Google_Protobuf_Mixin"), - 395: .same(proto: "Google_Protobuf_NullValue"), - 396: .same(proto: "Google_Protobuf_OneofDescriptorProto"), - 397: .same(proto: "Google_Protobuf_OneofOptions"), - 398: .same(proto: "Google_Protobuf_Option"), - 399: .same(proto: "Google_Protobuf_ServiceDescriptorProto"), - 400: .same(proto: "Google_Protobuf_ServiceOptions"), - 401: .same(proto: "Google_Protobuf_SourceCodeInfo"), - 402: .same(proto: "Google_Protobuf_SourceContext"), - 403: .same(proto: "Google_Protobuf_StringValue"), - 404: .same(proto: "Google_Protobuf_Struct"), - 405: .same(proto: "Google_Protobuf_Syntax"), - 406: .same(proto: "Google_Protobuf_Timestamp"), - 407: .same(proto: "Google_Protobuf_Type"), - 408: .same(proto: "Google_Protobuf_UInt32Value"), - 409: .same(proto: "Google_Protobuf_UInt64Value"), - 410: .same(proto: "Google_Protobuf_UninterpretedOption"), - 411: .same(proto: "Google_Protobuf_Value"), - 412: .same(proto: "goPackage"), - 413: .same(proto: "group"), - 414: .same(proto: "groupFieldNumberStack"), - 415: .same(proto: "groupSize"), - 416: .same(proto: "hadOneofValue"), - 417: .same(proto: "handleConflictingOneOf"), - 418: .same(proto: "hasAggregateValue"), - 419: .same(proto: "hasAllowAlias"), - 420: .same(proto: "hasBegin"), - 421: .same(proto: "hasCcEnableArenas"), - 422: .same(proto: "hasCcGenericServices"), - 423: .same(proto: "hasClientStreaming"), - 424: .same(proto: "hasCsharpNamespace"), - 425: .same(proto: "hasCtype"), - 426: .same(proto: "hasDebugRedact"), - 427: .same(proto: "hasDefaultValue"), - 428: .same(proto: "hasDeprecated"), - 429: .same(proto: "hasDeprecatedLegacyJsonFieldConflicts"), - 430: .same(proto: "hasDeprecationWarning"), - 431: .same(proto: "hasDoubleValue"), - 432: .same(proto: "hasEdition"), - 433: .same(proto: "hasEditionDeprecated"), - 434: .same(proto: "hasEditionIntroduced"), - 435: .same(proto: "hasEditionRemoved"), - 436: .same(proto: "hasEnd"), - 437: .same(proto: "hasEnumType"), - 438: .same(proto: "hasExtendee"), - 439: .same(proto: "hasExtensionValue"), - 440: .same(proto: "hasFeatures"), - 441: .same(proto: "hasFeatureSupport"), - 442: .same(proto: "hasFieldPresence"), - 443: .same(proto: "hasFixedFeatures"), - 444: .same(proto: "hasFullName"), - 445: .same(proto: "hasGoPackage"), - 446: .same(proto: "hash"), - 447: .same(proto: "Hashable"), - 448: .same(proto: "hasher"), - 449: .same(proto: "HashVisitor"), - 450: .same(proto: "hasIdempotencyLevel"), - 451: .same(proto: "hasIdentifierValue"), - 452: .same(proto: "hasInputType"), - 453: .same(proto: "hasIsExtension"), - 454: .same(proto: "hasJavaGenerateEqualsAndHash"), - 455: .same(proto: "hasJavaGenericServices"), - 456: .same(proto: "hasJavaMultipleFiles"), - 457: .same(proto: "hasJavaOuterClassname"), - 458: .same(proto: "hasJavaPackage"), - 459: .same(proto: "hasJavaStringCheckUtf8"), - 460: .same(proto: "hasJsonFormat"), - 461: .same(proto: "hasJsonName"), - 462: .same(proto: "hasJstype"), - 463: .same(proto: "hasLabel"), - 464: .same(proto: "hasLazy"), - 465: .same(proto: "hasLeadingComments"), - 466: .same(proto: "hasMapEntry"), - 467: .same(proto: "hasMaximumEdition"), - 468: .same(proto: "hasMessageEncoding"), - 469: .same(proto: "hasMessageSetWireFormat"), - 470: .same(proto: "hasMinimumEdition"), - 471: .same(proto: "hasName"), - 472: .same(proto: "hasNamePart"), - 473: .same(proto: "hasNegativeIntValue"), - 474: .same(proto: "hasNoStandardDescriptorAccessor"), - 475: .same(proto: "hasNumber"), - 476: .same(proto: "hasObjcClassPrefix"), - 477: .same(proto: "hasOneofIndex"), - 478: .same(proto: "hasOptimizeFor"), - 479: .same(proto: "hasOptions"), - 480: .same(proto: "hasOutputType"), - 481: .same(proto: "hasOverridableFeatures"), - 482: .same(proto: "hasPackage"), - 483: .same(proto: "hasPacked"), - 484: .same(proto: "hasPhpClassPrefix"), - 485: .same(proto: "hasPhpMetadataNamespace"), - 486: .same(proto: "hasPhpNamespace"), - 487: .same(proto: "hasPositiveIntValue"), - 488: .same(proto: "hasProto3Optional"), - 489: .same(proto: "hasPyGenericServices"), - 490: .same(proto: "hasRepeated"), - 491: .same(proto: "hasRepeatedFieldEncoding"), - 492: .same(proto: "hasReserved"), - 493: .same(proto: "hasRetention"), - 494: .same(proto: "hasRubyPackage"), - 495: .same(proto: "hasSemantic"), - 496: .same(proto: "hasServerStreaming"), - 497: .same(proto: "hasSourceCodeInfo"), - 498: .same(proto: "hasSourceContext"), - 499: .same(proto: "hasSourceFile"), - 500: .same(proto: "hasStart"), - 501: .same(proto: "hasStringValue"), - 502: .same(proto: "hasSwiftPrefix"), - 503: .same(proto: "hasSyntax"), - 504: .same(proto: "hasTrailingComments"), - 505: .same(proto: "hasType"), - 506: .same(proto: "hasTypeName"), - 507: .same(proto: "hasUnverifiedLazy"), - 508: .same(proto: "hasUtf8Validation"), - 509: .same(proto: "hasValue"), - 510: .same(proto: "hasVerification"), - 511: .same(proto: "hasWeak"), - 512: .same(proto: "hour"), - 513: .same(proto: "i"), - 514: .same(proto: "idempotencyLevel"), - 515: .same(proto: "identifierValue"), - 516: .same(proto: "if"), - 517: .same(proto: "ignoreUnknownExtensionFields"), - 518: .same(proto: "ignoreUnknownFields"), - 519: .same(proto: "index"), - 520: .same(proto: "init"), - 521: .same(proto: "inout"), - 522: .same(proto: "inputType"), - 523: .same(proto: "insert"), - 524: .same(proto: "Int"), - 525: .same(proto: "Int32"), - 526: .same(proto: "Int32Value"), - 527: .same(proto: "Int64"), - 528: .same(proto: "Int64Value"), - 529: .same(proto: "Int8"), - 530: .same(proto: "integerLiteral"), - 531: .same(proto: "IntegerLiteralType"), - 532: .same(proto: "intern"), - 533: .same(proto: "Internal"), - 534: .same(proto: "InternalState"), - 535: .same(proto: "into"), - 536: .same(proto: "ints"), - 537: .same(proto: "isA"), - 538: .same(proto: "isEqual"), - 539: .same(proto: "isEqualTo"), - 540: .same(proto: "isExtension"), - 541: .same(proto: "isInitialized"), - 542: .same(proto: "isNegative"), - 543: .same(proto: "itemTagsEncodedSize"), - 544: .same(proto: "iterator"), - 545: .same(proto: "javaGenerateEqualsAndHash"), - 546: .same(proto: "javaGenericServices"), - 547: .same(proto: "javaMultipleFiles"), - 548: .same(proto: "javaOuterClassname"), - 549: .same(proto: "javaPackage"), - 550: .same(proto: "javaStringCheckUtf8"), - 551: .same(proto: "JSONDecoder"), - 552: .same(proto: "JSONDecodingError"), - 553: .same(proto: "JSONDecodingOptions"), - 554: .same(proto: "jsonEncoder"), - 555: .same(proto: "JSONEncodingError"), - 556: .same(proto: "JSONEncodingOptions"), - 557: .same(proto: "JSONEncodingVisitor"), - 558: .same(proto: "jsonFormat"), - 559: .same(proto: "JSONMapEncodingVisitor"), - 560: .same(proto: "jsonName"), - 561: .same(proto: "jsonPath"), - 562: .same(proto: "jsonPaths"), - 563: .same(proto: "JSONScanner"), - 564: .same(proto: "jsonString"), - 565: .same(proto: "jsonText"), - 566: .same(proto: "jsonUTF8Bytes"), - 567: .same(proto: "jsonUTF8Data"), - 568: .same(proto: "jstype"), - 569: .same(proto: "k"), - 570: .same(proto: "kChunkSize"), - 571: .same(proto: "Key"), - 572: .same(proto: "keyField"), - 573: .same(proto: "keyFieldOpt"), - 574: .same(proto: "KeyType"), - 575: .same(proto: "kind"), - 576: .same(proto: "l"), - 577: .same(proto: "label"), - 578: .same(proto: "lazy"), - 579: .same(proto: "leadingComments"), - 580: .same(proto: "leadingDetachedComments"), - 581: .same(proto: "length"), - 582: .same(proto: "lessThan"), - 583: .same(proto: "let"), - 584: .same(proto: "lhs"), - 585: .same(proto: "list"), - 586: .same(proto: "listOfMessages"), - 587: .same(proto: "listValue"), - 588: .same(proto: "littleEndian"), - 589: .same(proto: "load"), - 590: .same(proto: "localHasher"), - 591: .same(proto: "location"), - 592: .same(proto: "M"), - 593: .same(proto: "major"), - 594: .same(proto: "makeAsyncIterator"), - 595: .same(proto: "makeIterator"), - 596: .same(proto: "mapEntry"), - 597: .same(proto: "MapKeyType"), - 598: .same(proto: "mapToMessages"), - 599: .same(proto: "MapValueType"), - 600: .same(proto: "mapVisitor"), - 601: .same(proto: "maximumEdition"), - 602: .same(proto: "mdayStart"), - 603: .same(proto: "merge"), - 604: .same(proto: "message"), - 605: .same(proto: "messageDepthLimit"), - 606: .same(proto: "messageEncoding"), - 607: .same(proto: "MessageExtension"), - 608: .same(proto: "MessageImplementationBase"), - 609: .same(proto: "MessageOptions"), - 610: .same(proto: "MessageSet"), - 611: .same(proto: "messageSetWireFormat"), - 612: .same(proto: "messageSize"), - 613: .same(proto: "messageType"), - 614: .same(proto: "Method"), - 615: .same(proto: "MethodDescriptorProto"), - 616: .same(proto: "MethodOptions"), - 617: .same(proto: "methods"), - 618: .same(proto: "min"), - 619: .same(proto: "minimumEdition"), - 620: .same(proto: "minor"), - 621: .same(proto: "Mixin"), - 622: .same(proto: "mixins"), - 623: .same(proto: "modifier"), - 624: .same(proto: "modify"), - 625: .same(proto: "month"), - 626: .same(proto: "msgExtension"), - 627: .same(proto: "mutating"), - 628: .same(proto: "n"), - 629: .same(proto: "name"), - 630: .same(proto: "NameDescription"), - 631: .same(proto: "NameMap"), - 632: .same(proto: "NamePart"), - 633: .same(proto: "names"), - 634: .same(proto: "nanos"), - 635: .same(proto: "negativeIntValue"), - 636: .same(proto: "nestedType"), - 637: .same(proto: "newL"), - 638: .same(proto: "newList"), - 639: .same(proto: "newValue"), - 640: .same(proto: "next"), - 641: .same(proto: "nextByte"), - 642: .same(proto: "nextFieldNumber"), - 643: .same(proto: "nextVarInt"), - 644: .same(proto: "nil"), - 645: .same(proto: "nilLiteral"), - 646: .same(proto: "noStandardDescriptorAccessor"), - 647: .same(proto: "nullValue"), - 648: .same(proto: "number"), - 649: .same(proto: "numberValue"), - 650: .same(proto: "objcClassPrefix"), - 651: .same(proto: "of"), - 652: .same(proto: "oneofDecl"), - 653: .same(proto: "OneofDescriptorProto"), - 654: .same(proto: "oneofIndex"), - 655: .same(proto: "OneofOptions"), - 656: .same(proto: "oneofs"), - 657: .same(proto: "OneOf_Kind"), - 658: .same(proto: "optimizeFor"), - 659: .same(proto: "OptimizeMode"), - 660: .same(proto: "Option"), - 661: .same(proto: "OptionalEnumExtensionField"), - 662: .same(proto: "OptionalExtensionField"), - 663: .same(proto: "OptionalGroupExtensionField"), - 664: .same(proto: "OptionalMessageExtensionField"), - 665: .same(proto: "OptionRetention"), - 666: .same(proto: "options"), - 667: .same(proto: "OptionTargetType"), - 668: .same(proto: "other"), - 669: .same(proto: "others"), - 670: .same(proto: "out"), - 671: .same(proto: "outputType"), - 672: .same(proto: "overridableFeatures"), - 673: .same(proto: "p"), - 674: .same(proto: "package"), - 675: .same(proto: "packed"), - 676: .same(proto: "PackedEnumExtensionField"), - 677: .same(proto: "PackedExtensionField"), - 678: .same(proto: "padding"), - 679: .same(proto: "parent"), - 680: .same(proto: "parse"), - 681: .same(proto: "path"), - 682: .same(proto: "paths"), - 683: .same(proto: "payload"), - 684: .same(proto: "payloadSize"), - 685: .same(proto: "phpClassPrefix"), - 686: .same(proto: "phpMetadataNamespace"), - 687: .same(proto: "phpNamespace"), - 688: .same(proto: "pos"), - 689: .same(proto: "positiveIntValue"), - 690: .same(proto: "prefix"), - 691: .same(proto: "preserveProtoFieldNames"), - 692: .same(proto: "preTraverse"), - 693: .same(proto: "printUnknownFields"), - 694: .same(proto: "proto2"), - 695: .same(proto: "proto3DefaultValue"), - 696: .same(proto: "proto3Optional"), - 697: .same(proto: "ProtobufAPIVersionCheck"), - 698: .same(proto: "ProtobufAPIVersion_3"), - 699: .same(proto: "ProtobufBool"), - 700: .same(proto: "ProtobufBytes"), - 701: .same(proto: "ProtobufDouble"), - 702: .same(proto: "ProtobufEnumMap"), - 703: .same(proto: "protobufExtension"), - 704: .same(proto: "ProtobufFixed32"), - 705: .same(proto: "ProtobufFixed64"), - 706: .same(proto: "ProtobufFloat"), - 707: .same(proto: "ProtobufInt32"), - 708: .same(proto: "ProtobufInt64"), - 709: .same(proto: "ProtobufMap"), - 710: .same(proto: "ProtobufMessageMap"), - 711: .same(proto: "ProtobufSFixed32"), - 712: .same(proto: "ProtobufSFixed64"), - 713: .same(proto: "ProtobufSInt32"), - 714: .same(proto: "ProtobufSInt64"), - 715: .same(proto: "ProtobufString"), - 716: .same(proto: "ProtobufUInt32"), - 717: .same(proto: "ProtobufUInt64"), - 718: .same(proto: "protobuf_extensionFieldValues"), - 719: .same(proto: "protobuf_fieldNumber"), - 720: .same(proto: "protobuf_generated_isEqualTo"), - 721: .same(proto: "protobuf_nameMap"), - 722: .same(proto: "protobuf_newField"), - 723: .same(proto: "protobuf_package"), - 724: .same(proto: "protocol"), - 725: .same(proto: "protoFieldName"), - 726: .same(proto: "protoMessageName"), - 727: .same(proto: "ProtoNameProviding"), - 728: .same(proto: "protoPaths"), - 729: .same(proto: "public"), - 730: .same(proto: "publicDependency"), - 731: .same(proto: "putBoolValue"), - 732: .same(proto: "putBytesValue"), - 733: .same(proto: "putDoubleValue"), - 734: .same(proto: "putEnumValue"), - 735: .same(proto: "putFixedUInt32"), - 736: .same(proto: "putFixedUInt64"), - 737: .same(proto: "putFloatValue"), - 738: .same(proto: "putInt64"), - 739: .same(proto: "putStringValue"), - 740: .same(proto: "putUInt64"), - 741: .same(proto: "putUInt64Hex"), - 742: .same(proto: "putVarInt"), - 743: .same(proto: "putZigZagVarInt"), - 744: .same(proto: "pyGenericServices"), - 745: .same(proto: "R"), - 746: .same(proto: "rawChars"), - 747: .same(proto: "RawRepresentable"), - 748: .same(proto: "RawValue"), - 749: .same(proto: "read4HexDigits"), - 750: .same(proto: "readBytes"), - 751: .same(proto: "register"), - 752: .same(proto: "repeated"), - 753: .same(proto: "RepeatedEnumExtensionField"), - 754: .same(proto: "RepeatedExtensionField"), - 755: .same(proto: "repeatedFieldEncoding"), - 756: .same(proto: "RepeatedGroupExtensionField"), - 757: .same(proto: "RepeatedMessageExtensionField"), - 758: .same(proto: "repeating"), - 759: .same(proto: "requestStreaming"), - 760: .same(proto: "requestTypeURL"), - 761: .same(proto: "requiredSize"), - 762: .same(proto: "responseStreaming"), - 763: .same(proto: "responseTypeURL"), - 764: .same(proto: "result"), - 765: .same(proto: "retention"), - 766: .same(proto: "rethrows"), - 767: .same(proto: "return"), - 768: .same(proto: "ReturnType"), - 769: .same(proto: "revision"), - 770: .same(proto: "rhs"), - 771: .same(proto: "root"), - 772: .same(proto: "rubyPackage"), - 773: .same(proto: "s"), - 774: .same(proto: "sawBackslash"), - 775: .same(proto: "sawSection4Characters"), - 776: .same(proto: "sawSection5Characters"), - 777: .same(proto: "scan"), - 778: .same(proto: "scanner"), - 779: .same(proto: "seconds"), - 780: .same(proto: "self"), - 781: .same(proto: "semantic"), - 782: .same(proto: "Sendable"), - 783: .same(proto: "separator"), - 784: .same(proto: "serialize"), - 785: .same(proto: "serializedBytes"), - 786: .same(proto: "serializedData"), - 787: .same(proto: "serializedSize"), - 788: .same(proto: "serverStreaming"), - 789: .same(proto: "service"), - 790: .same(proto: "ServiceDescriptorProto"), - 791: .same(proto: "ServiceOptions"), - 792: .same(proto: "set"), - 793: .same(proto: "setExtensionValue"), - 794: .same(proto: "shift"), - 795: .same(proto: "SimpleExtensionMap"), - 796: .same(proto: "size"), - 797: .same(proto: "sizer"), - 798: .same(proto: "source"), - 799: .same(proto: "sourceCodeInfo"), - 800: .same(proto: "sourceContext"), - 801: .same(proto: "sourceEncoding"), - 802: .same(proto: "sourceFile"), - 803: .same(proto: "span"), - 804: .same(proto: "split"), - 805: .same(proto: "start"), - 806: .same(proto: "startArray"), - 807: .same(proto: "startArrayObject"), - 808: .same(proto: "startField"), - 809: .same(proto: "startIndex"), - 810: .same(proto: "startMessageField"), - 811: .same(proto: "startObject"), - 812: .same(proto: "startRegularField"), - 813: .same(proto: "state"), - 814: .same(proto: "static"), - 815: .same(proto: "StaticString"), - 816: .same(proto: "storage"), - 817: .same(proto: "String"), - 818: .same(proto: "stringLiteral"), - 819: .same(proto: "StringLiteralType"), - 820: .same(proto: "stringResult"), - 821: .same(proto: "stringValue"), - 822: .same(proto: "struct"), - 823: .same(proto: "structValue"), - 824: .same(proto: "subDecoder"), - 825: .same(proto: "subscript"), - 826: .same(proto: "subVisitor"), - 827: .same(proto: "Swift"), - 828: .same(proto: "swiftPrefix"), - 829: .same(proto: "SwiftProtobufContiguousBytes"), - 830: .same(proto: "syntax"), - 831: .same(proto: "T"), - 832: .same(proto: "tag"), - 833: .same(proto: "targets"), - 834: .same(proto: "terminator"), - 835: .same(proto: "testDecoder"), - 836: .same(proto: "text"), - 837: .same(proto: "textDecoder"), - 838: .same(proto: "TextFormatDecoder"), - 839: .same(proto: "TextFormatDecodingError"), - 840: .same(proto: "TextFormatDecodingOptions"), - 841: .same(proto: "TextFormatEncodingOptions"), - 842: .same(proto: "TextFormatEncodingVisitor"), - 843: .same(proto: "textFormatString"), - 844: .same(proto: "throwOrIgnore"), - 845: .same(proto: "throws"), - 846: .same(proto: "timeInterval"), - 847: .same(proto: "timeIntervalSince1970"), - 848: .same(proto: "timeIntervalSinceReferenceDate"), - 849: .same(proto: "Timestamp"), - 850: .same(proto: "total"), - 851: .same(proto: "totalArrayDepth"), - 852: .same(proto: "totalSize"), - 853: .same(proto: "trailingComments"), - 854: .same(proto: "traverse"), - 855: .same(proto: "true"), - 856: .same(proto: "try"), - 857: .same(proto: "type"), - 858: .same(proto: "typealias"), - 859: .same(proto: "TypeEnum"), - 860: .same(proto: "typeName"), - 861: .same(proto: "typePrefix"), - 862: .same(proto: "typeStart"), - 863: .same(proto: "typeUnknown"), - 864: .same(proto: "typeURL"), - 865: .same(proto: "UInt32"), - 866: .same(proto: "UInt32Value"), - 867: .same(proto: "UInt64"), - 868: .same(proto: "UInt64Value"), - 869: .same(proto: "UInt8"), - 870: .same(proto: "unchecked"), - 871: .same(proto: "unicodeScalarLiteral"), - 872: .same(proto: "UnicodeScalarLiteralType"), - 873: .same(proto: "unicodeScalars"), - 874: .same(proto: "UnicodeScalarView"), - 875: .same(proto: "uninterpretedOption"), - 876: .same(proto: "union"), - 877: .same(proto: "uniqueStorage"), - 878: .same(proto: "unknown"), - 879: .same(proto: "unknownFields"), - 880: .same(proto: "UnknownStorage"), - 881: .same(proto: "unpackTo"), - 882: .same(proto: "UnsafeBufferPointer"), - 883: .same(proto: "UnsafeMutablePointer"), - 884: .same(proto: "UnsafeMutableRawBufferPointer"), - 885: .same(proto: "UnsafeRawBufferPointer"), - 886: .same(proto: "UnsafeRawPointer"), - 887: .same(proto: "unverifiedLazy"), - 888: .same(proto: "updatedOptions"), - 889: .same(proto: "url"), - 890: .same(proto: "useDeterministicOrdering"), - 891: .same(proto: "utf8"), - 892: .same(proto: "utf8Ptr"), - 893: .same(proto: "utf8ToDouble"), - 894: .same(proto: "utf8Validation"), - 895: .same(proto: "UTF8View"), - 896: .same(proto: "v"), - 897: .same(proto: "value"), - 898: .same(proto: "valueField"), - 899: .same(proto: "values"), - 900: .same(proto: "ValueType"), - 901: .same(proto: "var"), - 902: .same(proto: "verification"), - 903: .same(proto: "VerificationState"), - 904: .same(proto: "Version"), - 905: .same(proto: "versionString"), - 906: .same(proto: "visitExtensionFields"), - 907: .same(proto: "visitExtensionFieldsAsMessageSet"), - 908: .same(proto: "visitMapField"), - 909: .same(proto: "visitor"), - 910: .same(proto: "visitPacked"), - 911: .same(proto: "visitPackedBoolField"), - 912: .same(proto: "visitPackedDoubleField"), - 913: .same(proto: "visitPackedEnumField"), - 914: .same(proto: "visitPackedFixed32Field"), - 915: .same(proto: "visitPackedFixed64Field"), - 916: .same(proto: "visitPackedFloatField"), - 917: .same(proto: "visitPackedInt32Field"), - 918: .same(proto: "visitPackedInt64Field"), - 919: .same(proto: "visitPackedSFixed32Field"), - 920: .same(proto: "visitPackedSFixed64Field"), - 921: .same(proto: "visitPackedSInt32Field"), - 922: .same(proto: "visitPackedSInt64Field"), - 923: .same(proto: "visitPackedUInt32Field"), - 924: .same(proto: "visitPackedUInt64Field"), - 925: .same(proto: "visitRepeated"), - 926: .same(proto: "visitRepeatedBoolField"), - 927: .same(proto: "visitRepeatedBytesField"), - 928: .same(proto: "visitRepeatedDoubleField"), - 929: .same(proto: "visitRepeatedEnumField"), - 930: .same(proto: "visitRepeatedFixed32Field"), - 931: .same(proto: "visitRepeatedFixed64Field"), - 932: .same(proto: "visitRepeatedFloatField"), - 933: .same(proto: "visitRepeatedGroupField"), - 934: .same(proto: "visitRepeatedInt32Field"), - 935: .same(proto: "visitRepeatedInt64Field"), - 936: .same(proto: "visitRepeatedMessageField"), - 937: .same(proto: "visitRepeatedSFixed32Field"), - 938: .same(proto: "visitRepeatedSFixed64Field"), - 939: .same(proto: "visitRepeatedSInt32Field"), - 940: .same(proto: "visitRepeatedSInt64Field"), - 941: .same(proto: "visitRepeatedStringField"), - 942: .same(proto: "visitRepeatedUInt32Field"), - 943: .same(proto: "visitRepeatedUInt64Field"), - 944: .same(proto: "visitSingular"), - 945: .same(proto: "visitSingularBoolField"), - 946: .same(proto: "visitSingularBytesField"), - 947: .same(proto: "visitSingularDoubleField"), - 948: .same(proto: "visitSingularEnumField"), - 949: .same(proto: "visitSingularFixed32Field"), - 950: .same(proto: "visitSingularFixed64Field"), - 951: .same(proto: "visitSingularFloatField"), - 952: .same(proto: "visitSingularGroupField"), - 953: .same(proto: "visitSingularInt32Field"), - 954: .same(proto: "visitSingularInt64Field"), - 955: .same(proto: "visitSingularMessageField"), - 956: .same(proto: "visitSingularSFixed32Field"), - 957: .same(proto: "visitSingularSFixed64Field"), - 958: .same(proto: "visitSingularSInt32Field"), - 959: .same(proto: "visitSingularSInt64Field"), - 960: .same(proto: "visitSingularStringField"), - 961: .same(proto: "visitSingularUInt32Field"), - 962: .same(proto: "visitSingularUInt64Field"), - 963: .same(proto: "visitUnknown"), - 964: .same(proto: "wasDecoded"), - 965: .same(proto: "weak"), - 966: .same(proto: "weakDependency"), - 967: .same(proto: "where"), - 968: .same(proto: "wireFormat"), - 969: .same(proto: "with"), - 970: .same(proto: "withUnsafeBytes"), - 971: .same(proto: "withUnsafeMutableBytes"), - 972: .same(proto: "work"), - 973: .same(proto: "Wrapped"), - 974: .same(proto: "WrappedType"), - 975: .same(proto: "wrappedValue"), - 976: .same(proto: "written"), - 977: .same(proto: "yday"), + 12: .same(proto: "anyTypeURLNotRegistered"), + 13: .same(proto: "AnyUnpackError"), + 14: .same(proto: "Api"), + 15: .same(proto: "appended"), + 16: .same(proto: "appendUIntHex"), + 17: .same(proto: "appendUnknown"), + 18: .same(proto: "areAllInitialized"), + 19: .same(proto: "Array"), + 20: .same(proto: "arrayDepth"), + 21: .same(proto: "arrayLiteral"), + 22: .same(proto: "arraySeparator"), + 23: .same(proto: "as"), + 24: .same(proto: "asciiOpenCurlyBracket"), + 25: .same(proto: "asciiZero"), + 26: .same(proto: "async"), + 27: .same(proto: "AsyncIterator"), + 28: .same(proto: "AsyncIteratorProtocol"), + 29: .same(proto: "AsyncMessageSequence"), + 30: .same(proto: "available"), + 31: .same(proto: "b"), + 32: .same(proto: "Base"), + 33: .same(proto: "base64Values"), + 34: .same(proto: "baseAddress"), + 35: .same(proto: "BaseType"), + 36: .same(proto: "begin"), + 37: .same(proto: "binary"), + 38: .same(proto: "BinaryDecoder"), + 39: .same(proto: "BinaryDecoding"), + 40: .same(proto: "BinaryDecodingError"), + 41: .same(proto: "BinaryDecodingOptions"), + 42: .same(proto: "BinaryDelimited"), + 43: .same(proto: "BinaryEncoder"), + 44: .same(proto: "BinaryEncoding"), + 45: .same(proto: "BinaryEncodingError"), + 46: .same(proto: "BinaryEncodingMessageSetSizeVisitor"), + 47: .same(proto: "BinaryEncodingMessageSetVisitor"), + 48: .same(proto: "BinaryEncodingOptions"), + 49: .same(proto: "BinaryEncodingSizeVisitor"), + 50: .same(proto: "BinaryEncodingVisitor"), + 51: .same(proto: "binaryOptions"), + 52: .same(proto: "binaryProtobufDelimitedMessages"), + 53: .same(proto: "BinaryStreamDecoding"), + 54: .same(proto: "binaryStreamDecodingError"), + 55: .same(proto: "bitPattern"), + 56: .same(proto: "body"), + 57: .same(proto: "Bool"), + 58: .same(proto: "booleanLiteral"), + 59: .same(proto: "BooleanLiteralType"), + 60: .same(proto: "boolValue"), + 61: .same(proto: "buffer"), + 62: .same(proto: "bytes"), + 63: .same(proto: "bytesInGroup"), + 64: .same(proto: "bytesNeeded"), + 65: .same(proto: "bytesRead"), + 66: .same(proto: "BytesValue"), + 67: .same(proto: "c"), + 68: .same(proto: "capitalizeNext"), + 69: .same(proto: "cardinality"), + 70: .same(proto: "CaseIterable"), + 71: .same(proto: "ccEnableArenas"), + 72: .same(proto: "ccGenericServices"), + 73: .same(proto: "Character"), + 74: .same(proto: "chars"), + 75: .same(proto: "chunk"), + 76: .same(proto: "class"), + 77: .same(proto: "clearAggregateValue"), + 78: .same(proto: "clearAllowAlias"), + 79: .same(proto: "clearBegin"), + 80: .same(proto: "clearCcEnableArenas"), + 81: .same(proto: "clearCcGenericServices"), + 82: .same(proto: "clearClientStreaming"), + 83: .same(proto: "clearCsharpNamespace"), + 84: .same(proto: "clearCtype"), + 85: .same(proto: "clearDebugRedact"), + 86: .same(proto: "clearDefaultValue"), + 87: .same(proto: "clearDeprecated"), + 88: .same(proto: "clearDeprecatedLegacyJsonFieldConflicts"), + 89: .same(proto: "clearDeprecationWarning"), + 90: .same(proto: "clearDoubleValue"), + 91: .same(proto: "clearEdition"), + 92: .same(proto: "clearEditionDeprecated"), + 93: .same(proto: "clearEditionIntroduced"), + 94: .same(proto: "clearEditionRemoved"), + 95: .same(proto: "clearEnd"), + 96: .same(proto: "clearEnumType"), + 97: .same(proto: "clearExtendee"), + 98: .same(proto: "clearExtensionValue"), + 99: .same(proto: "clearFeatures"), + 100: .same(proto: "clearFeatureSupport"), + 101: .same(proto: "clearFieldPresence"), + 102: .same(proto: "clearFixedFeatures"), + 103: .same(proto: "clearFullName"), + 104: .same(proto: "clearGoPackage"), + 105: .same(proto: "clearIdempotencyLevel"), + 106: .same(proto: "clearIdentifierValue"), + 107: .same(proto: "clearInputType"), + 108: .same(proto: "clearIsExtension"), + 109: .same(proto: "clearJavaGenerateEqualsAndHash"), + 110: .same(proto: "clearJavaGenericServices"), + 111: .same(proto: "clearJavaMultipleFiles"), + 112: .same(proto: "clearJavaOuterClassname"), + 113: .same(proto: "clearJavaPackage"), + 114: .same(proto: "clearJavaStringCheckUtf8"), + 115: .same(proto: "clearJsonFormat"), + 116: .same(proto: "clearJsonName"), + 117: .same(proto: "clearJstype"), + 118: .same(proto: "clearLabel"), + 119: .same(proto: "clearLazy"), + 120: .same(proto: "clearLeadingComments"), + 121: .same(proto: "clearMapEntry"), + 122: .same(proto: "clearMaximumEdition"), + 123: .same(proto: "clearMessageEncoding"), + 124: .same(proto: "clearMessageSetWireFormat"), + 125: .same(proto: "clearMinimumEdition"), + 126: .same(proto: "clearName"), + 127: .same(proto: "clearNamePart"), + 128: .same(proto: "clearNegativeIntValue"), + 129: .same(proto: "clearNoStandardDescriptorAccessor"), + 130: .same(proto: "clearNumber"), + 131: .same(proto: "clearObjcClassPrefix"), + 132: .same(proto: "clearOneofIndex"), + 133: .same(proto: "clearOptimizeFor"), + 134: .same(proto: "clearOptions"), + 135: .same(proto: "clearOutputType"), + 136: .same(proto: "clearOverridableFeatures"), + 137: .same(proto: "clearPackage"), + 138: .same(proto: "clearPacked"), + 139: .same(proto: "clearPhpClassPrefix"), + 140: .same(proto: "clearPhpMetadataNamespace"), + 141: .same(proto: "clearPhpNamespace"), + 142: .same(proto: "clearPositiveIntValue"), + 143: .same(proto: "clearProto3Optional"), + 144: .same(proto: "clearPyGenericServices"), + 145: .same(proto: "clearRepeated"), + 146: .same(proto: "clearRepeatedFieldEncoding"), + 147: .same(proto: "clearReserved"), + 148: .same(proto: "clearRetention"), + 149: .same(proto: "clearRubyPackage"), + 150: .same(proto: "clearSemantic"), + 151: .same(proto: "clearServerStreaming"), + 152: .same(proto: "clearSourceCodeInfo"), + 153: .same(proto: "clearSourceContext"), + 154: .same(proto: "clearSourceFile"), + 155: .same(proto: "clearStart"), + 156: .same(proto: "clearStringValue"), + 157: .same(proto: "clearSwiftPrefix"), + 158: .same(proto: "clearSyntax"), + 159: .same(proto: "clearTrailingComments"), + 160: .same(proto: "clearType"), + 161: .same(proto: "clearTypeName"), + 162: .same(proto: "clearUnverifiedLazy"), + 163: .same(proto: "clearUtf8Validation"), + 164: .same(proto: "clearValue"), + 165: .same(proto: "clearVerification"), + 166: .same(proto: "clearWeak"), + 167: .same(proto: "clientStreaming"), + 168: .same(proto: "code"), + 169: .same(proto: "codePoint"), + 170: .same(proto: "codeUnits"), + 171: .same(proto: "Collection"), + 172: .same(proto: "com"), + 173: .same(proto: "comma"), + 174: .same(proto: "consumedBytes"), + 175: .same(proto: "contentsOf"), + 176: .same(proto: "copy"), + 177: .same(proto: "count"), + 178: .same(proto: "countVarintsInBuffer"), + 179: .same(proto: "csharpNamespace"), + 180: .same(proto: "ctype"), + 181: .same(proto: "customCodable"), + 182: .same(proto: "CustomDebugStringConvertible"), + 183: .same(proto: "CustomStringConvertible"), + 184: .same(proto: "d"), + 185: .same(proto: "Data"), + 186: .same(proto: "dataResult"), + 187: .same(proto: "date"), + 188: .same(proto: "daySec"), + 189: .same(proto: "daysSinceEpoch"), + 190: .same(proto: "debugDescription"), + 191: .same(proto: "debugRedact"), + 192: .same(proto: "declaration"), + 193: .same(proto: "decoded"), + 194: .same(proto: "decodedFromJSONNull"), + 195: .same(proto: "decodeExtensionField"), + 196: .same(proto: "decodeExtensionFieldsAsMessageSet"), + 197: .same(proto: "decodeJSON"), + 198: .same(proto: "decodeMapField"), + 199: .same(proto: "decodeMessage"), + 200: .same(proto: "decoder"), + 201: .same(proto: "decodeRepeated"), + 202: .same(proto: "decodeRepeatedBoolField"), + 203: .same(proto: "decodeRepeatedBytesField"), + 204: .same(proto: "decodeRepeatedDoubleField"), + 205: .same(proto: "decodeRepeatedEnumField"), + 206: .same(proto: "decodeRepeatedFixed32Field"), + 207: .same(proto: "decodeRepeatedFixed64Field"), + 208: .same(proto: "decodeRepeatedFloatField"), + 209: .same(proto: "decodeRepeatedGroupField"), + 210: .same(proto: "decodeRepeatedInt32Field"), + 211: .same(proto: "decodeRepeatedInt64Field"), + 212: .same(proto: "decodeRepeatedMessageField"), + 213: .same(proto: "decodeRepeatedSFixed32Field"), + 214: .same(proto: "decodeRepeatedSFixed64Field"), + 215: .same(proto: "decodeRepeatedSInt32Field"), + 216: .same(proto: "decodeRepeatedSInt64Field"), + 217: .same(proto: "decodeRepeatedStringField"), + 218: .same(proto: "decodeRepeatedUInt32Field"), + 219: .same(proto: "decodeRepeatedUInt64Field"), + 220: .same(proto: "decodeSingular"), + 221: .same(proto: "decodeSingularBoolField"), + 222: .same(proto: "decodeSingularBytesField"), + 223: .same(proto: "decodeSingularDoubleField"), + 224: .same(proto: "decodeSingularEnumField"), + 225: .same(proto: "decodeSingularFixed32Field"), + 226: .same(proto: "decodeSingularFixed64Field"), + 227: .same(proto: "decodeSingularFloatField"), + 228: .same(proto: "decodeSingularGroupField"), + 229: .same(proto: "decodeSingularInt32Field"), + 230: .same(proto: "decodeSingularInt64Field"), + 231: .same(proto: "decodeSingularMessageField"), + 232: .same(proto: "decodeSingularSFixed32Field"), + 233: .same(proto: "decodeSingularSFixed64Field"), + 234: .same(proto: "decodeSingularSInt32Field"), + 235: .same(proto: "decodeSingularSInt64Field"), + 236: .same(proto: "decodeSingularStringField"), + 237: .same(proto: "decodeSingularUInt32Field"), + 238: .same(proto: "decodeSingularUInt64Field"), + 239: .same(proto: "decodeTextFormat"), + 240: .same(proto: "defaultAnyTypeURLPrefix"), + 241: .same(proto: "defaults"), + 242: .same(proto: "defaultValue"), + 243: .same(proto: "dependency"), + 244: .same(proto: "deprecated"), + 245: .same(proto: "deprecatedLegacyJsonFieldConflicts"), + 246: .same(proto: "deprecationWarning"), + 247: .same(proto: "description"), + 248: .same(proto: "DescriptorProto"), + 249: .same(proto: "Dictionary"), + 250: .same(proto: "dictionaryLiteral"), + 251: .same(proto: "digit"), + 252: .same(proto: "digit0"), + 253: .same(proto: "digit1"), + 254: .same(proto: "digitCount"), + 255: .same(proto: "digits"), + 256: .same(proto: "digitValue"), + 257: .same(proto: "discardableResult"), + 258: .same(proto: "discardUnknownFields"), + 259: .same(proto: "Double"), + 260: .same(proto: "doubleValue"), + 261: .same(proto: "Duration"), + 262: .same(proto: "E"), + 263: .same(proto: "edition"), + 264: .same(proto: "EditionDefault"), + 265: .same(proto: "editionDefaults"), + 266: .same(proto: "editionDeprecated"), + 267: .same(proto: "editionIntroduced"), + 268: .same(proto: "editionRemoved"), + 269: .same(proto: "Element"), + 270: .same(proto: "elements"), + 271: .same(proto: "emitExtensionFieldName"), + 272: .same(proto: "emitFieldName"), + 273: .same(proto: "emitFieldNumber"), + 274: .same(proto: "Empty"), + 275: .same(proto: "encodeAsBytes"), + 276: .same(proto: "encoded"), + 277: .same(proto: "encodedJSONString"), + 278: .same(proto: "encodedSize"), + 279: .same(proto: "encodeField"), + 280: .same(proto: "encoder"), + 281: .same(proto: "end"), + 282: .same(proto: "endArray"), + 283: .same(proto: "endMessageField"), + 284: .same(proto: "endObject"), + 285: .same(proto: "endRegularField"), + 286: .same(proto: "enum"), + 287: .same(proto: "EnumDescriptorProto"), + 288: .same(proto: "EnumOptions"), + 289: .same(proto: "EnumReservedRange"), + 290: .same(proto: "enumType"), + 291: .same(proto: "enumvalue"), + 292: .same(proto: "EnumValueDescriptorProto"), + 293: .same(proto: "EnumValueOptions"), + 294: .same(proto: "Equatable"), + 295: .same(proto: "Error"), + 296: .same(proto: "ExpressibleByArrayLiteral"), + 297: .same(proto: "ExpressibleByDictionaryLiteral"), + 298: .same(proto: "ext"), + 299: .same(proto: "extDecoder"), + 300: .same(proto: "extendedGraphemeClusterLiteral"), + 301: .same(proto: "ExtendedGraphemeClusterLiteralType"), + 302: .same(proto: "extendee"), + 303: .same(proto: "ExtensibleMessage"), + 304: .same(proto: "extension"), + 305: .same(proto: "ExtensionField"), + 306: .same(proto: "extensionFieldNumber"), + 307: .same(proto: "ExtensionFieldValueSet"), + 308: .same(proto: "ExtensionMap"), + 309: .same(proto: "extensionRange"), + 310: .same(proto: "ExtensionRangeOptions"), + 311: .same(proto: "extensions"), + 312: .same(proto: "extras"), + 313: .same(proto: "F"), + 314: .same(proto: "false"), + 315: .same(proto: "features"), + 316: .same(proto: "FeatureSet"), + 317: .same(proto: "FeatureSetDefaults"), + 318: .same(proto: "FeatureSetEditionDefault"), + 319: .same(proto: "featureSupport"), + 320: .same(proto: "field"), + 321: .same(proto: "fieldData"), + 322: .same(proto: "FieldDescriptorProto"), + 323: .same(proto: "FieldMask"), + 324: .same(proto: "fieldName"), + 325: .same(proto: "fieldNameCount"), + 326: .same(proto: "fieldNum"), + 327: .same(proto: "fieldNumber"), + 328: .same(proto: "fieldNumberForProto"), + 329: .same(proto: "FieldOptions"), + 330: .same(proto: "fieldPresence"), + 331: .same(proto: "fields"), + 332: .same(proto: "fieldSize"), + 333: .same(proto: "FieldTag"), + 334: .same(proto: "fieldType"), + 335: .same(proto: "file"), + 336: .same(proto: "FileDescriptorProto"), + 337: .same(proto: "FileDescriptorSet"), + 338: .same(proto: "fileName"), + 339: .same(proto: "FileOptions"), + 340: .same(proto: "filter"), + 341: .same(proto: "final"), + 342: .same(proto: "finiteOnly"), + 343: .same(proto: "first"), + 344: .same(proto: "firstItem"), + 345: .same(proto: "fixedFeatures"), + 346: .same(proto: "Float"), + 347: .same(proto: "floatLiteral"), + 348: .same(proto: "FloatLiteralType"), + 349: .same(proto: "FloatValue"), + 350: .same(proto: "forMessageName"), + 351: .same(proto: "formUnion"), + 352: .same(proto: "forReadingFrom"), + 353: .same(proto: "forTypeURL"), + 354: .same(proto: "ForwardParser"), + 355: .same(proto: "forWritingInto"), + 356: .same(proto: "from"), + 357: .same(proto: "fromAscii2"), + 358: .same(proto: "fromAscii4"), + 359: .same(proto: "fromByteOffset"), + 360: .same(proto: "fromHexDigit"), + 361: .same(proto: "fullName"), + 362: .same(proto: "func"), + 363: .same(proto: "function"), + 364: .same(proto: "G"), + 365: .same(proto: "GeneratedCodeInfo"), + 366: .same(proto: "get"), + 367: .same(proto: "getExtensionValue"), + 368: .same(proto: "googleapis"), + 369: .same(proto: "Google_Protobuf_Any"), + 370: .same(proto: "Google_Protobuf_Api"), + 371: .same(proto: "Google_Protobuf_BoolValue"), + 372: .same(proto: "Google_Protobuf_BytesValue"), + 373: .same(proto: "Google_Protobuf_DescriptorProto"), + 374: .same(proto: "Google_Protobuf_DoubleValue"), + 375: .same(proto: "Google_Protobuf_Duration"), + 376: .same(proto: "Google_Protobuf_Edition"), + 377: .same(proto: "Google_Protobuf_Empty"), + 378: .same(proto: "Google_Protobuf_Enum"), + 379: .same(proto: "Google_Protobuf_EnumDescriptorProto"), + 380: .same(proto: "Google_Protobuf_EnumOptions"), + 381: .same(proto: "Google_Protobuf_EnumValue"), + 382: .same(proto: "Google_Protobuf_EnumValueDescriptorProto"), + 383: .same(proto: "Google_Protobuf_EnumValueOptions"), + 384: .same(proto: "Google_Protobuf_ExtensionRangeOptions"), + 385: .same(proto: "Google_Protobuf_FeatureSet"), + 386: .same(proto: "Google_Protobuf_FeatureSetDefaults"), + 387: .same(proto: "Google_Protobuf_Field"), + 388: .same(proto: "Google_Protobuf_FieldDescriptorProto"), + 389: .same(proto: "Google_Protobuf_FieldMask"), + 390: .same(proto: "Google_Protobuf_FieldOptions"), + 391: .same(proto: "Google_Protobuf_FileDescriptorProto"), + 392: .same(proto: "Google_Protobuf_FileDescriptorSet"), + 393: .same(proto: "Google_Protobuf_FileOptions"), + 394: .same(proto: "Google_Protobuf_FloatValue"), + 395: .same(proto: "Google_Protobuf_GeneratedCodeInfo"), + 396: .same(proto: "Google_Protobuf_Int32Value"), + 397: .same(proto: "Google_Protobuf_Int64Value"), + 398: .same(proto: "Google_Protobuf_ListValue"), + 399: .same(proto: "Google_Protobuf_MessageOptions"), + 400: .same(proto: "Google_Protobuf_Method"), + 401: .same(proto: "Google_Protobuf_MethodDescriptorProto"), + 402: .same(proto: "Google_Protobuf_MethodOptions"), + 403: .same(proto: "Google_Protobuf_Mixin"), + 404: .same(proto: "Google_Protobuf_NullValue"), + 405: .same(proto: "Google_Protobuf_OneofDescriptorProto"), + 406: .same(proto: "Google_Protobuf_OneofOptions"), + 407: .same(proto: "Google_Protobuf_Option"), + 408: .same(proto: "Google_Protobuf_ServiceDescriptorProto"), + 409: .same(proto: "Google_Protobuf_ServiceOptions"), + 410: .same(proto: "Google_Protobuf_SourceCodeInfo"), + 411: .same(proto: "Google_Protobuf_SourceContext"), + 412: .same(proto: "Google_Protobuf_StringValue"), + 413: .same(proto: "Google_Protobuf_Struct"), + 414: .same(proto: "Google_Protobuf_Syntax"), + 415: .same(proto: "Google_Protobuf_Timestamp"), + 416: .same(proto: "Google_Protobuf_Type"), + 417: .same(proto: "Google_Protobuf_UInt32Value"), + 418: .same(proto: "Google_Protobuf_UInt64Value"), + 419: .same(proto: "Google_Protobuf_UninterpretedOption"), + 420: .same(proto: "Google_Protobuf_Value"), + 421: .same(proto: "goPackage"), + 422: .same(proto: "group"), + 423: .same(proto: "groupFieldNumberStack"), + 424: .same(proto: "groupSize"), + 425: .same(proto: "hadOneofValue"), + 426: .same(proto: "handleConflictingOneOf"), + 427: .same(proto: "hasAggregateValue"), + 428: .same(proto: "hasAllowAlias"), + 429: .same(proto: "hasBegin"), + 430: .same(proto: "hasCcEnableArenas"), + 431: .same(proto: "hasCcGenericServices"), + 432: .same(proto: "hasClientStreaming"), + 433: .same(proto: "hasCsharpNamespace"), + 434: .same(proto: "hasCtype"), + 435: .same(proto: "hasDebugRedact"), + 436: .same(proto: "hasDefaultValue"), + 437: .same(proto: "hasDeprecated"), + 438: .same(proto: "hasDeprecatedLegacyJsonFieldConflicts"), + 439: .same(proto: "hasDeprecationWarning"), + 440: .same(proto: "hasDoubleValue"), + 441: .same(proto: "hasEdition"), + 442: .same(proto: "hasEditionDeprecated"), + 443: .same(proto: "hasEditionIntroduced"), + 444: .same(proto: "hasEditionRemoved"), + 445: .same(proto: "hasEnd"), + 446: .same(proto: "hasEnumType"), + 447: .same(proto: "hasExtendee"), + 448: .same(proto: "hasExtensionValue"), + 449: .same(proto: "hasFeatures"), + 450: .same(proto: "hasFeatureSupport"), + 451: .same(proto: "hasFieldPresence"), + 452: .same(proto: "hasFixedFeatures"), + 453: .same(proto: "hasFullName"), + 454: .same(proto: "hasGoPackage"), + 455: .same(proto: "hash"), + 456: .same(proto: "Hashable"), + 457: .same(proto: "hasher"), + 458: .same(proto: "HashVisitor"), + 459: .same(proto: "hasIdempotencyLevel"), + 460: .same(proto: "hasIdentifierValue"), + 461: .same(proto: "hasInputType"), + 462: .same(proto: "hasIsExtension"), + 463: .same(proto: "hasJavaGenerateEqualsAndHash"), + 464: .same(proto: "hasJavaGenericServices"), + 465: .same(proto: "hasJavaMultipleFiles"), + 466: .same(proto: "hasJavaOuterClassname"), + 467: .same(proto: "hasJavaPackage"), + 468: .same(proto: "hasJavaStringCheckUtf8"), + 469: .same(proto: "hasJsonFormat"), + 470: .same(proto: "hasJsonName"), + 471: .same(proto: "hasJstype"), + 472: .same(proto: "hasLabel"), + 473: .same(proto: "hasLazy"), + 474: .same(proto: "hasLeadingComments"), + 475: .same(proto: "hasMapEntry"), + 476: .same(proto: "hasMaximumEdition"), + 477: .same(proto: "hasMessageEncoding"), + 478: .same(proto: "hasMessageSetWireFormat"), + 479: .same(proto: "hasMinimumEdition"), + 480: .same(proto: "hasName"), + 481: .same(proto: "hasNamePart"), + 482: .same(proto: "hasNegativeIntValue"), + 483: .same(proto: "hasNoStandardDescriptorAccessor"), + 484: .same(proto: "hasNumber"), + 485: .same(proto: "hasObjcClassPrefix"), + 486: .same(proto: "hasOneofIndex"), + 487: .same(proto: "hasOptimizeFor"), + 488: .same(proto: "hasOptions"), + 489: .same(proto: "hasOutputType"), + 490: .same(proto: "hasOverridableFeatures"), + 491: .same(proto: "hasPackage"), + 492: .same(proto: "hasPacked"), + 493: .same(proto: "hasPhpClassPrefix"), + 494: .same(proto: "hasPhpMetadataNamespace"), + 495: .same(proto: "hasPhpNamespace"), + 496: .same(proto: "hasPositiveIntValue"), + 497: .same(proto: "hasProto3Optional"), + 498: .same(proto: "hasPyGenericServices"), + 499: .same(proto: "hasRepeated"), + 500: .same(proto: "hasRepeatedFieldEncoding"), + 501: .same(proto: "hasReserved"), + 502: .same(proto: "hasRetention"), + 503: .same(proto: "hasRubyPackage"), + 504: .same(proto: "hasSemantic"), + 505: .same(proto: "hasServerStreaming"), + 506: .same(proto: "hasSourceCodeInfo"), + 507: .same(proto: "hasSourceContext"), + 508: .same(proto: "hasSourceFile"), + 509: .same(proto: "hasStart"), + 510: .same(proto: "hasStringValue"), + 511: .same(proto: "hasSwiftPrefix"), + 512: .same(proto: "hasSyntax"), + 513: .same(proto: "hasTrailingComments"), + 514: .same(proto: "hasType"), + 515: .same(proto: "hasTypeName"), + 516: .same(proto: "hasUnverifiedLazy"), + 517: .same(proto: "hasUtf8Validation"), + 518: .same(proto: "hasValue"), + 519: .same(proto: "hasVerification"), + 520: .same(proto: "hasWeak"), + 521: .same(proto: "hour"), + 522: .same(proto: "i"), + 523: .same(proto: "idempotencyLevel"), + 524: .same(proto: "identifierValue"), + 525: .same(proto: "if"), + 526: .same(proto: "ignoreUnknownExtensionFields"), + 527: .same(proto: "ignoreUnknownFields"), + 528: .same(proto: "index"), + 529: .same(proto: "init"), + 530: .same(proto: "inout"), + 531: .same(proto: "inputType"), + 532: .same(proto: "insert"), + 533: .same(proto: "Int"), + 534: .same(proto: "Int32"), + 535: .same(proto: "Int32Value"), + 536: .same(proto: "Int64"), + 537: .same(proto: "Int64Value"), + 538: .same(proto: "Int8"), + 539: .same(proto: "integerLiteral"), + 540: .same(proto: "IntegerLiteralType"), + 541: .same(proto: "intern"), + 542: .same(proto: "Internal"), + 543: .same(proto: "InternalState"), + 544: .same(proto: "into"), + 545: .same(proto: "ints"), + 546: .same(proto: "isA"), + 547: .same(proto: "isEqual"), + 548: .same(proto: "isEqualTo"), + 549: .same(proto: "isExtension"), + 550: .same(proto: "isInitialized"), + 551: .same(proto: "isNegative"), + 552: .same(proto: "itemTagsEncodedSize"), + 553: .same(proto: "iterator"), + 554: .same(proto: "javaGenerateEqualsAndHash"), + 555: .same(proto: "javaGenericServices"), + 556: .same(proto: "javaMultipleFiles"), + 557: .same(proto: "javaOuterClassname"), + 558: .same(proto: "javaPackage"), + 559: .same(proto: "javaStringCheckUtf8"), + 560: .same(proto: "JSONDecoder"), + 561: .same(proto: "JSONDecodingError"), + 562: .same(proto: "JSONDecodingOptions"), + 563: .same(proto: "jsonEncoder"), + 564: .same(proto: "JSONEncoding"), + 565: .same(proto: "JSONEncodingError"), + 566: .same(proto: "JSONEncodingOptions"), + 567: .same(proto: "JSONEncodingVisitor"), + 568: .same(proto: "jsonFormat"), + 569: .same(proto: "JSONMapEncodingVisitor"), + 570: .same(proto: "jsonName"), + 571: .same(proto: "jsonPath"), + 572: .same(proto: "jsonPaths"), + 573: .same(proto: "JSONScanner"), + 574: .same(proto: "jsonString"), + 575: .same(proto: "jsonText"), + 576: .same(proto: "jsonUTF8Bytes"), + 577: .same(proto: "jsonUTF8Data"), + 578: .same(proto: "jstype"), + 579: .same(proto: "k"), + 580: .same(proto: "kChunkSize"), + 581: .same(proto: "Key"), + 582: .same(proto: "keyField"), + 583: .same(proto: "keyFieldOpt"), + 584: .same(proto: "KeyType"), + 585: .same(proto: "kind"), + 586: .same(proto: "l"), + 587: .same(proto: "label"), + 588: .same(proto: "lazy"), + 589: .same(proto: "leadingComments"), + 590: .same(proto: "leadingDetachedComments"), + 591: .same(proto: "length"), + 592: .same(proto: "lessThan"), + 593: .same(proto: "let"), + 594: .same(proto: "lhs"), + 595: .same(proto: "line"), + 596: .same(proto: "list"), + 597: .same(proto: "listOfMessages"), + 598: .same(proto: "listValue"), + 599: .same(proto: "littleEndian"), + 600: .same(proto: "load"), + 601: .same(proto: "localHasher"), + 602: .same(proto: "location"), + 603: .same(proto: "M"), + 604: .same(proto: "major"), + 605: .same(proto: "makeAsyncIterator"), + 606: .same(proto: "makeIterator"), + 607: .same(proto: "malformedLength"), + 608: .same(proto: "mapEntry"), + 609: .same(proto: "MapKeyType"), + 610: .same(proto: "mapToMessages"), + 611: .same(proto: "MapValueType"), + 612: .same(proto: "mapVisitor"), + 613: .same(proto: "maximumEdition"), + 614: .same(proto: "mdayStart"), + 615: .same(proto: "merge"), + 616: .same(proto: "message"), + 617: .same(proto: "messageDepthLimit"), + 618: .same(proto: "messageEncoding"), + 619: .same(proto: "MessageExtension"), + 620: .same(proto: "MessageImplementationBase"), + 621: .same(proto: "MessageOptions"), + 622: .same(proto: "MessageSet"), + 623: .same(proto: "messageSetWireFormat"), + 624: .same(proto: "messageSize"), + 625: .same(proto: "messageType"), + 626: .same(proto: "Method"), + 627: .same(proto: "MethodDescriptorProto"), + 628: .same(proto: "MethodOptions"), + 629: .same(proto: "methods"), + 630: .same(proto: "min"), + 631: .same(proto: "minimumEdition"), + 632: .same(proto: "minor"), + 633: .same(proto: "Mixin"), + 634: .same(proto: "mixins"), + 635: .same(proto: "modifier"), + 636: .same(proto: "modify"), + 637: .same(proto: "month"), + 638: .same(proto: "msgExtension"), + 639: .same(proto: "mutating"), + 640: .same(proto: "n"), + 641: .same(proto: "name"), + 642: .same(proto: "NameDescription"), + 643: .same(proto: "NameMap"), + 644: .same(proto: "NamePart"), + 645: .same(proto: "names"), + 646: .same(proto: "nanos"), + 647: .same(proto: "negativeIntValue"), + 648: .same(proto: "nestedType"), + 649: .same(proto: "newL"), + 650: .same(proto: "newList"), + 651: .same(proto: "newValue"), + 652: .same(proto: "next"), + 653: .same(proto: "nextByte"), + 654: .same(proto: "nextFieldNumber"), + 655: .same(proto: "nextVarInt"), + 656: .same(proto: "nil"), + 657: .same(proto: "nilLiteral"), + 658: .same(proto: "noBytesAvailable"), + 659: .same(proto: "noStandardDescriptorAccessor"), + 660: .same(proto: "nullValue"), + 661: .same(proto: "number"), + 662: .same(proto: "numberValue"), + 663: .same(proto: "objcClassPrefix"), + 664: .same(proto: "of"), + 665: .same(proto: "oneofDecl"), + 666: .same(proto: "OneofDescriptorProto"), + 667: .same(proto: "oneofIndex"), + 668: .same(proto: "OneofOptions"), + 669: .same(proto: "oneofs"), + 670: .same(proto: "OneOf_Kind"), + 671: .same(proto: "optimizeFor"), + 672: .same(proto: "OptimizeMode"), + 673: .same(proto: "Option"), + 674: .same(proto: "OptionalEnumExtensionField"), + 675: .same(proto: "OptionalExtensionField"), + 676: .same(proto: "OptionalGroupExtensionField"), + 677: .same(proto: "OptionalMessageExtensionField"), + 678: .same(proto: "OptionRetention"), + 679: .same(proto: "options"), + 680: .same(proto: "OptionTargetType"), + 681: .same(proto: "other"), + 682: .same(proto: "others"), + 683: .same(proto: "out"), + 684: .same(proto: "outputType"), + 685: .same(proto: "overridableFeatures"), + 686: .same(proto: "p"), + 687: .same(proto: "package"), + 688: .same(proto: "packed"), + 689: .same(proto: "PackedEnumExtensionField"), + 690: .same(proto: "PackedExtensionField"), + 691: .same(proto: "padding"), + 692: .same(proto: "parent"), + 693: .same(proto: "parse"), + 694: .same(proto: "path"), + 695: .same(proto: "paths"), + 696: .same(proto: "payload"), + 697: .same(proto: "payloadSize"), + 698: .same(proto: "phpClassPrefix"), + 699: .same(proto: "phpMetadataNamespace"), + 700: .same(proto: "phpNamespace"), + 701: .same(proto: "pos"), + 702: .same(proto: "positiveIntValue"), + 703: .same(proto: "prefix"), + 704: .same(proto: "preserveProtoFieldNames"), + 705: .same(proto: "preTraverse"), + 706: .same(proto: "printUnknownFields"), + 707: .same(proto: "proto2"), + 708: .same(proto: "proto3DefaultValue"), + 709: .same(proto: "proto3Optional"), + 710: .same(proto: "ProtobufAPIVersionCheck"), + 711: .same(proto: "ProtobufAPIVersion_3"), + 712: .same(proto: "ProtobufBool"), + 713: .same(proto: "ProtobufBytes"), + 714: .same(proto: "ProtobufDouble"), + 715: .same(proto: "ProtobufEnumMap"), + 716: .same(proto: "protobufExtension"), + 717: .same(proto: "ProtobufFixed32"), + 718: .same(proto: "ProtobufFixed64"), + 719: .same(proto: "ProtobufFloat"), + 720: .same(proto: "ProtobufInt32"), + 721: .same(proto: "ProtobufInt64"), + 722: .same(proto: "ProtobufMap"), + 723: .same(proto: "ProtobufMessageMap"), + 724: .same(proto: "ProtobufSFixed32"), + 725: .same(proto: "ProtobufSFixed64"), + 726: .same(proto: "ProtobufSInt32"), + 727: .same(proto: "ProtobufSInt64"), + 728: .same(proto: "ProtobufString"), + 729: .same(proto: "ProtobufUInt32"), + 730: .same(proto: "ProtobufUInt64"), + 731: .same(proto: "protobuf_extensionFieldValues"), + 732: .same(proto: "protobuf_fieldNumber"), + 733: .same(proto: "protobuf_generated_isEqualTo"), + 734: .same(proto: "protobuf_nameMap"), + 735: .same(proto: "protobuf_newField"), + 736: .same(proto: "protobuf_package"), + 737: .same(proto: "protocol"), + 738: .same(proto: "protoFieldName"), + 739: .same(proto: "protoMessageName"), + 740: .same(proto: "ProtoNameProviding"), + 741: .same(proto: "protoPaths"), + 742: .same(proto: "public"), + 743: .same(proto: "publicDependency"), + 744: .same(proto: "putBoolValue"), + 745: .same(proto: "putBytesValue"), + 746: .same(proto: "putDoubleValue"), + 747: .same(proto: "putEnumValue"), + 748: .same(proto: "putFixedUInt32"), + 749: .same(proto: "putFixedUInt64"), + 750: .same(proto: "putFloatValue"), + 751: .same(proto: "putInt64"), + 752: .same(proto: "putStringValue"), + 753: .same(proto: "putUInt64"), + 754: .same(proto: "putUInt64Hex"), + 755: .same(proto: "putVarInt"), + 756: .same(proto: "putZigZagVarInt"), + 757: .same(proto: "pyGenericServices"), + 758: .same(proto: "R"), + 759: .same(proto: "rawChars"), + 760: .same(proto: "RawRepresentable"), + 761: .same(proto: "RawValue"), + 762: .same(proto: "read4HexDigits"), + 763: .same(proto: "readBytes"), + 764: .same(proto: "register"), + 765: .same(proto: "repeated"), + 766: .same(proto: "RepeatedEnumExtensionField"), + 767: .same(proto: "RepeatedExtensionField"), + 768: .same(proto: "repeatedFieldEncoding"), + 769: .same(proto: "RepeatedGroupExtensionField"), + 770: .same(proto: "RepeatedMessageExtensionField"), + 771: .same(proto: "repeating"), + 772: .same(proto: "requestStreaming"), + 773: .same(proto: "requestTypeURL"), + 774: .same(proto: "requiredSize"), + 775: .same(proto: "responseStreaming"), + 776: .same(proto: "responseTypeURL"), + 777: .same(proto: "result"), + 778: .same(proto: "retention"), + 779: .same(proto: "rethrows"), + 780: .same(proto: "return"), + 781: .same(proto: "ReturnType"), + 782: .same(proto: "revision"), + 783: .same(proto: "rhs"), + 784: .same(proto: "root"), + 785: .same(proto: "rubyPackage"), + 786: .same(proto: "s"), + 787: .same(proto: "sawBackslash"), + 788: .same(proto: "sawSection4Characters"), + 789: .same(proto: "sawSection5Characters"), + 790: .same(proto: "scan"), + 791: .same(proto: "scanner"), + 792: .same(proto: "seconds"), + 793: .same(proto: "self"), + 794: .same(proto: "semantic"), + 795: .same(proto: "Sendable"), + 796: .same(proto: "separator"), + 797: .same(proto: "serialize"), + 798: .same(proto: "serializedBytes"), + 799: .same(proto: "serializedData"), + 800: .same(proto: "serializedSize"), + 801: .same(proto: "serverStreaming"), + 802: .same(proto: "service"), + 803: .same(proto: "ServiceDescriptorProto"), + 804: .same(proto: "ServiceOptions"), + 805: .same(proto: "set"), + 806: .same(proto: "setExtensionValue"), + 807: .same(proto: "shift"), + 808: .same(proto: "SimpleExtensionMap"), + 809: .same(proto: "size"), + 810: .same(proto: "sizer"), + 811: .same(proto: "source"), + 812: .same(proto: "sourceCodeInfo"), + 813: .same(proto: "sourceContext"), + 814: .same(proto: "sourceEncoding"), + 815: .same(proto: "sourceFile"), + 816: .same(proto: "SourceLocation"), + 817: .same(proto: "span"), + 818: .same(proto: "split"), + 819: .same(proto: "start"), + 820: .same(proto: "startArray"), + 821: .same(proto: "startArrayObject"), + 822: .same(proto: "startField"), + 823: .same(proto: "startIndex"), + 824: .same(proto: "startMessageField"), + 825: .same(proto: "startObject"), + 826: .same(proto: "startRegularField"), + 827: .same(proto: "state"), + 828: .same(proto: "static"), + 829: .same(proto: "StaticString"), + 830: .same(proto: "storage"), + 831: .same(proto: "String"), + 832: .same(proto: "stringLiteral"), + 833: .same(proto: "StringLiteralType"), + 834: .same(proto: "stringResult"), + 835: .same(proto: "stringValue"), + 836: .same(proto: "struct"), + 837: .same(proto: "structValue"), + 838: .same(proto: "subDecoder"), + 839: .same(proto: "subscript"), + 840: .same(proto: "subVisitor"), + 841: .same(proto: "Swift"), + 842: .same(proto: "swiftPrefix"), + 843: .same(proto: "SwiftProtobufContiguousBytes"), + 844: .same(proto: "SwiftProtobufError"), + 845: .same(proto: "syntax"), + 846: .same(proto: "T"), + 847: .same(proto: "tag"), + 848: .same(proto: "targets"), + 849: .same(proto: "terminator"), + 850: .same(proto: "testDecoder"), + 851: .same(proto: "text"), + 852: .same(proto: "textDecoder"), + 853: .same(proto: "TextFormatDecoder"), + 854: .same(proto: "TextFormatDecodingError"), + 855: .same(proto: "TextFormatDecodingOptions"), + 856: .same(proto: "TextFormatEncodingOptions"), + 857: .same(proto: "TextFormatEncodingVisitor"), + 858: .same(proto: "textFormatString"), + 859: .same(proto: "throwOrIgnore"), + 860: .same(proto: "throws"), + 861: .same(proto: "timeInterval"), + 862: .same(proto: "timeIntervalSince1970"), + 863: .same(proto: "timeIntervalSinceReferenceDate"), + 864: .same(proto: "Timestamp"), + 865: .same(proto: "tooLarge"), + 866: .same(proto: "total"), + 867: .same(proto: "totalArrayDepth"), + 868: .same(proto: "totalSize"), + 869: .same(proto: "trailingComments"), + 870: .same(proto: "traverse"), + 871: .same(proto: "true"), + 872: .same(proto: "try"), + 873: .same(proto: "type"), + 874: .same(proto: "typealias"), + 875: .same(proto: "TypeEnum"), + 876: .same(proto: "typeName"), + 877: .same(proto: "typePrefix"), + 878: .same(proto: "typeStart"), + 879: .same(proto: "typeUnknown"), + 880: .same(proto: "typeURL"), + 881: .same(proto: "UInt32"), + 882: .same(proto: "UInt32Value"), + 883: .same(proto: "UInt64"), + 884: .same(proto: "UInt64Value"), + 885: .same(proto: "UInt8"), + 886: .same(proto: "unchecked"), + 887: .same(proto: "unicodeScalarLiteral"), + 888: .same(proto: "UnicodeScalarLiteralType"), + 889: .same(proto: "unicodeScalars"), + 890: .same(proto: "UnicodeScalarView"), + 891: .same(proto: "uninterpretedOption"), + 892: .same(proto: "union"), + 893: .same(proto: "uniqueStorage"), + 894: .same(proto: "unknown"), + 895: .same(proto: "unknownFields"), + 896: .same(proto: "UnknownStorage"), + 897: .same(proto: "unpackTo"), + 898: .same(proto: "unregisteredTypeURL"), + 899: .same(proto: "UnsafeBufferPointer"), + 900: .same(proto: "UnsafeMutablePointer"), + 901: .same(proto: "UnsafeMutableRawBufferPointer"), + 902: .same(proto: "UnsafeRawBufferPointer"), + 903: .same(proto: "UnsafeRawPointer"), + 904: .same(proto: "unverifiedLazy"), + 905: .same(proto: "updatedOptions"), + 906: .same(proto: "url"), + 907: .same(proto: "useDeterministicOrdering"), + 908: .same(proto: "utf8"), + 909: .same(proto: "utf8Ptr"), + 910: .same(proto: "utf8ToDouble"), + 911: .same(proto: "utf8Validation"), + 912: .same(proto: "UTF8View"), + 913: .same(proto: "v"), + 914: .same(proto: "value"), + 915: .same(proto: "valueField"), + 916: .same(proto: "values"), + 917: .same(proto: "ValueType"), + 918: .same(proto: "var"), + 919: .same(proto: "verification"), + 920: .same(proto: "VerificationState"), + 921: .same(proto: "Version"), + 922: .same(proto: "versionString"), + 923: .same(proto: "visitExtensionFields"), + 924: .same(proto: "visitExtensionFieldsAsMessageSet"), + 925: .same(proto: "visitMapField"), + 926: .same(proto: "visitor"), + 927: .same(proto: "visitPacked"), + 928: .same(proto: "visitPackedBoolField"), + 929: .same(proto: "visitPackedDoubleField"), + 930: .same(proto: "visitPackedEnumField"), + 931: .same(proto: "visitPackedFixed32Field"), + 932: .same(proto: "visitPackedFixed64Field"), + 933: .same(proto: "visitPackedFloatField"), + 934: .same(proto: "visitPackedInt32Field"), + 935: .same(proto: "visitPackedInt64Field"), + 936: .same(proto: "visitPackedSFixed32Field"), + 937: .same(proto: "visitPackedSFixed64Field"), + 938: .same(proto: "visitPackedSInt32Field"), + 939: .same(proto: "visitPackedSInt64Field"), + 940: .same(proto: "visitPackedUInt32Field"), + 941: .same(proto: "visitPackedUInt64Field"), + 942: .same(proto: "visitRepeated"), + 943: .same(proto: "visitRepeatedBoolField"), + 944: .same(proto: "visitRepeatedBytesField"), + 945: .same(proto: "visitRepeatedDoubleField"), + 946: .same(proto: "visitRepeatedEnumField"), + 947: .same(proto: "visitRepeatedFixed32Field"), + 948: .same(proto: "visitRepeatedFixed64Field"), + 949: .same(proto: "visitRepeatedFloatField"), + 950: .same(proto: "visitRepeatedGroupField"), + 951: .same(proto: "visitRepeatedInt32Field"), + 952: .same(proto: "visitRepeatedInt64Field"), + 953: .same(proto: "visitRepeatedMessageField"), + 954: .same(proto: "visitRepeatedSFixed32Field"), + 955: .same(proto: "visitRepeatedSFixed64Field"), + 956: .same(proto: "visitRepeatedSInt32Field"), + 957: .same(proto: "visitRepeatedSInt64Field"), + 958: .same(proto: "visitRepeatedStringField"), + 959: .same(proto: "visitRepeatedUInt32Field"), + 960: .same(proto: "visitRepeatedUInt64Field"), + 961: .same(proto: "visitSingular"), + 962: .same(proto: "visitSingularBoolField"), + 963: .same(proto: "visitSingularBytesField"), + 964: .same(proto: "visitSingularDoubleField"), + 965: .same(proto: "visitSingularEnumField"), + 966: .same(proto: "visitSingularFixed32Field"), + 967: .same(proto: "visitSingularFixed64Field"), + 968: .same(proto: "visitSingularFloatField"), + 969: .same(proto: "visitSingularGroupField"), + 970: .same(proto: "visitSingularInt32Field"), + 971: .same(proto: "visitSingularInt64Field"), + 972: .same(proto: "visitSingularMessageField"), + 973: .same(proto: "visitSingularSFixed32Field"), + 974: .same(proto: "visitSingularSFixed64Field"), + 975: .same(proto: "visitSingularSInt32Field"), + 976: .same(proto: "visitSingularSInt64Field"), + 977: .same(proto: "visitSingularStringField"), + 978: .same(proto: "visitSingularUInt32Field"), + 979: .same(proto: "visitSingularUInt64Field"), + 980: .same(proto: "visitUnknown"), + 981: .same(proto: "wasDecoded"), + 982: .same(proto: "weak"), + 983: .same(proto: "weakDependency"), + 984: .same(proto: "where"), + 985: .same(proto: "wireFormat"), + 986: .same(proto: "with"), + 987: .same(proto: "withUnsafeBytes"), + 988: .same(proto: "withUnsafeMutableBytes"), + 989: .same(proto: "work"), + 990: .same(proto: "Wrapped"), + 991: .same(proto: "WrappedType"), + 992: .same(proto: "wrappedValue"), + 993: .same(proto: "written"), + 994: .same(proto: "yday"), ] } diff --git a/Tests/SwiftProtobufTests/generated_swift_names_enums.pb.swift b/Tests/SwiftProtobufTests/generated_swift_names_enums.pb.swift index d9bf96fff..1f663d208 100644 --- a/Tests/SwiftProtobufTests/generated_swift_names_enums.pb.swift +++ b/Tests/SwiftProtobufTests/generated_swift_names_enums.pb.swift @@ -391,36 +391,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum AnyUnpack: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneAnyUnpack // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneAnyUnpack - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneAnyUnpack - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneAnyUnpack: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.AnyUnpack] = [ - .noneAnyUnpack, - ] - - } - enum AnyUnpackError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneAnyUnpackError // = 0 @@ -5251,36 +5221,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum conflictingOneOf: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneConflictingOneOf // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneConflictingOneOf - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneConflictingOneOf - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneConflictingOneOf: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.conflictingOneOf] = [ - .noneConflictingOneOf, - ] - - } - enum consumedBytes: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneConsumedBytes // = 0 @@ -7921,36 +7861,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum durationRange: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneDurationRange // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneDurationRange - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneDurationRange - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneDurationRange: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.durationRange] = [ - .noneDurationRange, - ] - - } - enum E: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneE // = 0 @@ -9511,36 +9421,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum failure: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneFailure // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneFailure - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneFailure - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneFailure: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.failure] = [ - .noneFailure, - ] - - } - enum falseEnum: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneFalse // = 0 @@ -9841,36 +9721,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum fieldMaskConversion: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneFieldMaskConversion // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneFieldMaskConversion - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneFieldMaskConversion - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneFieldMaskConversion: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.fieldMaskConversion] = [ - .noneFieldMaskConversion, - ] - - } - enum fieldName: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneFieldName // = 0 @@ -15991,36 +15841,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum illegalNull: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneIllegalNull // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneIllegalNull - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneIllegalNull - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneIllegalNull: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.illegalNull] = [ - .noneIllegalNull, - ] - - } - enum index: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneIndex // = 0 @@ -16471,66 +16291,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum internalError: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneInternalError // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneInternalError - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneInternalError - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneInternalError: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.internalError] = [ - .noneInternalError, - ] - - } - - enum internalExtensionError: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneInternalExtensionError // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneInternalExtensionError - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneInternalExtensionError - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneInternalExtensionError: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.internalExtensionError] = [ - .noneInternalExtensionError, - ] - - } - enum InternalState: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneInternalState // = 0 @@ -16621,66 +16381,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum invalidArgument: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneInvalidArgument // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneInvalidArgument - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneInvalidArgument - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneInvalidArgument: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.invalidArgument] = [ - .noneInvalidArgument, - ] - - } - - enum invalidUTF8: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneInvalidUtf8 // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneInvalidUtf8 - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneInvalidUtf8 - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneInvalidUtf8: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.invalidUTF8] = [ - .noneInvalidUtf8, - ] - - } - enum isA: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneIsA // = 0 @@ -17131,36 +16831,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum JSONDecoding: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneJsondecoding // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneJsondecoding - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneJsondecoding - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneJsondecoding: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONDecoding] = [ - .noneJsondecoding, - ] - - } - enum JSONDecodingError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneJsondecodingError // = 0 @@ -18061,36 +17731,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum leadingZero: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneLeadingZero // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneLeadingZero - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneLeadingZero - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneLeadingZero: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.leadingZero] = [ - .noneLeadingZero, - ] - - } - enum length: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneLength // = 0 @@ -18571,126 +18211,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum malformedAnyField: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedAnyField // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedAnyField - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedAnyField - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedAnyField: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedAnyField] = [ - .noneMalformedAnyField, - ] - - } - - enum malformedBool: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedBool // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedBool - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedBool - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedBool: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedBool] = [ - .noneMalformedBool, - ] - - } - - enum malformedDuration: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedDuration // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedDuration - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedDuration - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedDuration: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedDuration] = [ - .noneMalformedDuration, - ] - - } - - enum malformedFieldMask: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedFieldMask // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedFieldMask - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedFieldMask - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedFieldMask: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedFieldMask] = [ - .noneMalformedFieldMask, - ] - - } - enum malformedLength: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneMalformedLength // = 0 @@ -18721,216 +18241,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum malformedMap: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedMap // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedMap - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedMap - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedMap: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedMap] = [ - .noneMalformedMap, - ] - - } - - enum malformedNumber: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedNumber // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedNumber - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedNumber - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedNumber: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedNumber] = [ - .noneMalformedNumber, - ] - - } - - enum malformedProtobuf: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedProtobuf // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedProtobuf - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedProtobuf - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedProtobuf: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedProtobuf] = [ - .noneMalformedProtobuf, - ] - - } - - enum malformedString: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedString // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedString - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedString - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedString: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedString] = [ - .noneMalformedString, - ] - - } - - enum malformedText: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedText // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedText - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedText - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedText: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedText] = [ - .noneMalformedText, - ] - - } - - enum malformedTimestamp: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedTimestamp // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedTimestamp - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedTimestamp - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedTimestamp: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedTimestamp] = [ - .noneMalformedTimestamp, - ] - - } - - enum malformedWellKnownTypeJSON: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedWellKnownTypeJson // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedWellKnownTypeJson - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedWellKnownTypeJson - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedWellKnownTypeJson: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedWellKnownTypeJSON] = [ - .noneMalformedWellKnownTypeJson, - ] - - } - enum mapEntry: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneMapEntry // = 0 @@ -19681,96 +18991,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum missingFieldNames: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMissingFieldNames // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMissingFieldNames - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMissingFieldNames - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMissingFieldNames: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingFieldNames] = [ - .noneMissingFieldNames, - ] - - } - - enum missingRequiredFields: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMissingRequiredFields // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMissingRequiredFields - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMissingRequiredFields - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMissingRequiredFields: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingRequiredFields] = [ - .noneMissingRequiredFields, - ] - - } - - enum missingValue: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMissingValue // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMissingValue - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMissingValue - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMissingValue: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingValue] = [ - .noneMissingValue, - ] - - } - enum Mixin: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneMixin // = 0 @@ -20641,36 +19861,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum numberRange: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneNumberRange // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneNumberRange - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneNumberRange - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneNumberRange: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.numberRange] = [ - .noneNumberRange, - ] - - } - enum numberValue: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneNumberValue // = 0 @@ -24571,36 +23761,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum schemaMismatch: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneSchemaMismatch // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneSchemaMismatch - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneSchemaMismatch - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneSchemaMismatch: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.schemaMismatch] = [ - .noneSchemaMismatch, - ] - - } - enum seconds: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneSeconds // = 0 @@ -26461,37 +25621,7 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum TextFormatDecoding: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneTextFormatDecoding // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneTextFormatDecoding - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneTextFormatDecoding - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneTextFormatDecoding: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDecoding] = [ - .noneTextFormatDecoding, - ] - - } - - enum textFormatDecodingError: SwiftProtobuf.Enum, Swift.CaseIterable { + enum TextFormatDecodingError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTextFormatDecodingError // = 0 case UNRECOGNIZED(Int) @@ -26515,7 +25645,7 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.textFormatDecodingError] = [ + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDecodingError] = [ .noneTextFormatDecodingError, ] @@ -26821,36 +25951,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum timestampRange: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneTimestampRange // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneTimestampRange - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneTimestampRange - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneTimestampRange: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.timestampRange] = [ - .noneTimestampRange, - ] - - } - enum tooLarge: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTooLarge // = 0 @@ -27001,36 +26101,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum trailingGarbage: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneTrailingGarbage // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneTrailingGarbage - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneTrailingGarbage - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneTrailingGarbage: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.trailingGarbage] = [ - .noneTrailingGarbage, - ] - - } - enum traverseEnum: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTraverse // = 0 @@ -27091,36 +26161,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum truncated: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneTruncated // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneTruncated - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneTruncated - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneTruncated: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.truncated] = [ - .noneTruncated, - ] - - } - enum tryEnum: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTry // = 0 @@ -27241,36 +26281,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum typeMismatch: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneTypeMismatch // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneTypeMismatch - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneTypeMismatch - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneTypeMismatch: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.typeMismatch] = [ - .noneTypeMismatch, - ] - - } - enum typeName: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTypeName // = 0 @@ -27841,66 +26851,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum unknownField: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneUnknownField // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneUnknownField - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneUnknownField - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneUnknownField: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownField] = [ - .noneUnknownField, - ] - - } - - enum unknownFieldName: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneUnknownFieldName // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneUnknownFieldName - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneUnknownFieldName - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneUnknownFieldName: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownFieldName] = [ - .noneUnknownFieldName, - ] - - } - enum unknownFieldsEnum: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneUnknownFields // = 0 @@ -27961,36 +26911,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum unknownStreamError: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneUnknownStreamError // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneUnknownStreamError - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneUnknownStreamError - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneUnknownStreamError: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownStreamError] = [ - .noneUnknownStreamError, - ] - - } - enum unpackTo: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneUnpackTo // = 0 @@ -28021,66 +26941,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum unquotedMapKey: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneUnquotedMapKey // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneUnquotedMapKey - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneUnquotedMapKey - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneUnquotedMapKey: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unquotedMapKey] = [ - .noneUnquotedMapKey, - ] - - } - - enum unrecognizedEnumValue: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneUnrecognizedEnumValue // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneUnrecognizedEnumValue - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneUnrecognizedEnumValue - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneUnrecognizedEnumValue: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unrecognizedEnumValue] = [ - .noneUnrecognizedEnumValue, - ] - - } - enum unregisteredTypeURL: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneUnregisteredTypeURL // = 0 @@ -28621,36 +27481,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum valueNumberNotFinite: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneValueNumberNotFinite // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneValueNumberNotFinite - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneValueNumberNotFinite - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneValueNumberNotFinite: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.valueNumberNotFinite] = [ - .noneValueNumberNotFinite, - ] - - } - enum values: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneValues // = 0 @@ -31119,12 +29949,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.anyTypeURLNotR ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.AnyUnpack: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_AnyUnpack"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.AnyUnpackError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_AnyUnpackError"), @@ -32091,12 +30915,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.comma: SwiftPr ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.conflictingOneOf: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_conflictingOneOf"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.consumedBytes: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_consumedBytes"), @@ -32625,12 +31443,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.Duration: Swif ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.durationRange: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_durationRange"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.E: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_E"), @@ -32943,12 +31755,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.F: SwiftProtob ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.failure: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_failure"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.falseEnum: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_false"), @@ -33009,12 +31815,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.FieldMask: Swi ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.fieldMaskConversion: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_fieldMaskConversion"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.fieldName: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_fieldName"), @@ -34239,12 +33039,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.ignoreUnknownF ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.illegalNull: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_illegalNull"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.index: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_index"), @@ -34335,18 +33129,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.Internal: Swif ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.internalError: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_internalError"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.internalExtensionError: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_internalExtensionError"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.InternalState: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_InternalState"), @@ -34365,18 +33147,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.ints: SwiftPro ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.invalidArgument: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_invalidArgument"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.invalidUTF8: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_invalidUTF8"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.isA: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_isA"), @@ -34467,12 +33237,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONDecoder: S ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONDecoding: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_JSONDecoding"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONDecodingError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_JSONDecodingError"), @@ -34653,12 +33417,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.leadingDetache ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.leadingZero: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_leadingZero"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.length: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_length"), @@ -34755,78 +33513,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.makeIterator: ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedAnyField: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedAnyField"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedBool: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedBool"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedDuration: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedDuration"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedFieldMask: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedFieldMask"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedLength: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_malformedLength"), ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedMap: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedMap"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedNumber: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedNumber"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedProtobuf: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedProtobuf"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedString: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedString"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedText: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedText"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedTimestamp: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedTimestamp"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedWellKnownTypeJSON: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedWellKnownTypeJSON"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.mapEntry: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_mapEntry"), @@ -34977,24 +33669,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.minor: SwiftPr ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingFieldNames: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_missingFieldNames"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingRequiredFields: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_missingRequiredFields"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingValue: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_missingValue"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.Mixin: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_Mixin"), @@ -35169,12 +33843,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.number: SwiftP ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.numberRange: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_numberRange"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.numberValue: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_numberValue"), @@ -35955,12 +34623,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.scanner: Swift ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.schemaMismatch: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_schemaMismatch"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.seconds: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_seconds"), @@ -36333,15 +34995,9 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDeco ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDecoding: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_TextFormatDecoding"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.textFormatDecodingError: SwiftProtobuf._ProtoNameProviding { +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDecodingError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_textFormatDecodingError"), + 0: .same(proto: "NONE_TextFormatDecodingError"), ] } @@ -36405,12 +35061,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.Timestamp: Swi ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.timestampRange: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_timestampRange"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.tooLarge: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_tooLarge"), @@ -36441,12 +35091,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.trailingCommen ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.trailingGarbage: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_trailingGarbage"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.traverseEnum: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_traverse"), @@ -36459,12 +35103,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.trueEnum: Swif ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.truncated: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_truncated"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.tryEnum: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_try"), @@ -36489,12 +35127,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TypeEnumEnum: ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.typeMismatch: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_typeMismatch"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.typeName: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_typeName"), @@ -36609,18 +35241,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknown: Swift ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownField: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_unknownField"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownFieldName: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_unknownFieldName"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownFieldsEnum: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_unknownFields"), @@ -36633,30 +35253,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.UnknownStorage ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownStreamError: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_unknownStreamError"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unpackTo: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_unpackTo"), ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unquotedMapKey: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_unquotedMapKey"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unrecognizedEnumValue: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_unrecognizedEnumValue"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unregisteredTypeURL: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_unregisteredTypeURL"), @@ -36765,12 +35367,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.valueField: Sw ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.valueNumberNotFinite: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_valueNumberNotFinite"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.values: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_values"), diff --git a/Tests/SwiftProtobufTests/generated_swift_names_fields.pb.swift b/Tests/SwiftProtobufTests/generated_swift_names_fields.pb.swift index 1af92f76f..d6d267e14 100644 --- a/Tests/SwiftProtobufTests/generated_swift_names_fields.pb.swift +++ b/Tests/SwiftProtobufTests/generated_swift_names_fields.pb.swift @@ -84,6 +84,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._anyMessageStorage = newValue} } + var anyTypeUrlnotRegistered: Int32 { + get {return _storage._anyTypeUrlnotRegistered} + set {_uniqueStorage()._anyTypeUrlnotRegistered = newValue} + } + var anyUnpackError: Int32 { get {return _storage._anyUnpackError} set {_uniqueStorage()._anyUnpackError = newValue} @@ -214,6 +219,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._binaryDecoder = newValue} } + var binaryDecoding: Int32 { + get {return _storage._binaryDecoding} + set {_uniqueStorage()._binaryDecoding = newValue} + } + var binaryDecodingError: Int32 { get {return _storage._binaryDecodingError} set {_uniqueStorage()._binaryDecodingError = newValue} @@ -234,6 +244,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._binaryEncoder = newValue} } + var binaryEncoding: Int32 { + get {return _storage._binaryEncoding} + set {_uniqueStorage()._binaryEncoding = newValue} + } + var binaryEncodingError: Int32 { get {return _storage._binaryEncodingError} set {_uniqueStorage()._binaryEncodingError = newValue} @@ -274,6 +289,16 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._binaryProtobufDelimitedMessages = newValue} } + var binaryStreamDecoding: Int32 { + get {return _storage._binaryStreamDecoding} + set {_uniqueStorage()._binaryStreamDecoding = newValue} + } + + var binaryStreamDecodingError: Int32 { + get {return _storage._binaryStreamDecodingError} + set {_uniqueStorage()._binaryStreamDecodingError = newValue} + } + var bitPattern: Int32 { get {return _storage._bitPattern} set {_uniqueStorage()._bitPattern = newValue} @@ -839,6 +864,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._clientStreaming = newValue} } + var code: Int32 { + get {return _storage._code} + set {_uniqueStorage()._code = newValue} + } + var codePoint: Int32 { get {return _storage._codePoint} set {_uniqueStorage()._codePoint = newValue} @@ -874,6 +904,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._contentsOf = newValue} } + var copy: Int32 { + get {return _storage._copy} + set {_uniqueStorage()._copy = newValue} + } + var count: Int32 { get {return _storage._count} set {_uniqueStorage()._count = newValue} @@ -904,6 +939,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._customDebugStringConvertible = newValue} } + var customStringConvertible: Int32 { + get {return _storage._customStringConvertible} + set {_uniqueStorage()._customStringConvertible = newValue} + } + var d: Int32 { get {return _storage._d} set {_uniqueStorage()._d = newValue} @@ -1799,6 +1839,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._func = newValue} } + var function: Int32 { + get {return _storage._function} + set {_uniqueStorage()._function = newValue} + } + var g: Int32 { get {return _storage._g} set {_uniqueStorage()._g = newValue} @@ -2799,6 +2844,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._jsonEncoder = newValue} } + var jsonencoding: Int32 { + get {return _storage._jsonencoding} + set {_uniqueStorage()._jsonencoding = newValue} + } + var jsonencodingError: Int32 { get {return _storage._jsonencodingError} set {_uniqueStorage()._jsonencodingError = newValue} @@ -2949,6 +2999,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._lhs = newValue} } + var line: Int32 { + get {return _storage._line} + set {_uniqueStorage()._line = newValue} + } + var list: Int32 { get {return _storage._list} set {_uniqueStorage()._list = newValue} @@ -3004,6 +3059,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._makeIterator = newValue} } + var malformedLength: Int32 { + get {return _storage._malformedLength} + set {_uniqueStorage()._malformedLength = newValue} + } + var mapEntry: Int32 { get {return _storage._mapEntry} set {_uniqueStorage()._mapEntry = newValue} @@ -3254,6 +3314,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._nilLiteral = newValue} } + var noBytesAvailable: Int32 { + get {return _storage._noBytesAvailable} + set {_uniqueStorage()._noBytesAvailable = newValue} + } + var noStandardDescriptorAccessor: Int32 { get {return _storage._noStandardDescriptorAccessor} set {_uniqueStorage()._noStandardDescriptorAccessor = newValue} @@ -4039,6 +4104,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._sourceFile = newValue} } + var sourceLocation: Int32 { + get {return _storage._sourceLocation} + set {_uniqueStorage()._sourceLocation = newValue} + } + var span: Int32 { get {return _storage._span} set {_uniqueStorage()._span = newValue} @@ -4174,6 +4244,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._swiftProtobufContiguousBytes = newValue} } + var swiftProtobufError: Int32 { + get {return _storage._swiftProtobufError} + set {_uniqueStorage()._swiftProtobufError = newValue} + } + var syntax: Int32 { get {return _storage._syntax} set {_uniqueStorage()._syntax = newValue} @@ -4274,6 +4349,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._timestamp = newValue} } + var tooLarge: Int32 { + get {return _storage._tooLarge} + set {_uniqueStorage()._tooLarge = newValue} + } + var total: Int32 { get {return _storage._total} set {_uniqueStorage()._total = newValue} @@ -4434,6 +4514,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._unpackTo = newValue} } + var unregisteredTypeURL: Int32 { + get {return _storage._unregisteredTypeURL} + set {_uniqueStorage()._unregisteredTypeURL = newValue} + } + var unsafeBufferPointer: Int32 { get {return _storage._unsafeBufferPointer} set {_uniqueStorage()._unsafeBufferPointer = newValue} @@ -4939,972 +5024,989 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu 9: .same(proto: "AnyExtensionField"), 10: .same(proto: "AnyMessageExtension"), 11: .same(proto: "AnyMessageStorage"), - 12: .same(proto: "AnyUnpackError"), - 13: .same(proto: "Api"), - 14: .same(proto: "appended"), - 15: .same(proto: "appendUIntHex"), - 16: .same(proto: "appendUnknown"), - 17: .same(proto: "areAllInitialized"), - 18: .same(proto: "Array"), - 19: .same(proto: "arrayDepth"), - 20: .same(proto: "arrayLiteral"), - 21: .same(proto: "arraySeparator"), - 22: .same(proto: "as"), - 23: .same(proto: "asciiOpenCurlyBracket"), - 24: .same(proto: "asciiZero"), - 25: .same(proto: "async"), - 26: .same(proto: "AsyncIterator"), - 27: .same(proto: "AsyncIteratorProtocol"), - 28: .same(proto: "AsyncMessageSequence"), - 29: .same(proto: "available"), - 30: .same(proto: "b"), - 31: .same(proto: "Base"), - 32: .same(proto: "base64Values"), - 33: .same(proto: "baseAddress"), - 34: .same(proto: "BaseType"), - 35: .same(proto: "begin"), - 36: .same(proto: "binary"), - 37: .same(proto: "BinaryDecoder"), - 38: .same(proto: "BinaryDecodingError"), - 39: .same(proto: "BinaryDecodingOptions"), - 40: .same(proto: "BinaryDelimited"), - 41: .same(proto: "BinaryEncoder"), - 42: .same(proto: "BinaryEncodingError"), - 43: .same(proto: "BinaryEncodingMessageSetSizeVisitor"), - 44: .same(proto: "BinaryEncodingMessageSetVisitor"), - 45: .same(proto: "BinaryEncodingOptions"), - 46: .same(proto: "BinaryEncodingSizeVisitor"), - 47: .same(proto: "BinaryEncodingVisitor"), - 48: .same(proto: "binaryOptions"), - 49: .same(proto: "binaryProtobufDelimitedMessages"), - 50: .same(proto: "bitPattern"), - 51: .same(proto: "body"), - 52: .same(proto: "Bool"), - 53: .same(proto: "booleanLiteral"), - 54: .same(proto: "BooleanLiteralType"), - 55: .same(proto: "boolValue"), - 56: .same(proto: "buffer"), - 57: .same(proto: "bytes"), - 58: .same(proto: "bytesInGroup"), - 59: .same(proto: "bytesNeeded"), - 60: .same(proto: "bytesRead"), - 61: .same(proto: "BytesValue"), - 62: .same(proto: "c"), - 63: .same(proto: "capitalizeNext"), - 64: .same(proto: "cardinality"), - 65: .same(proto: "CaseIterable"), - 66: .same(proto: "ccEnableArenas"), - 67: .same(proto: "ccGenericServices"), - 68: .same(proto: "Character"), - 69: .same(proto: "chars"), - 70: .same(proto: "chunk"), - 71: .same(proto: "class"), - 72: .same(proto: "clearAggregateValue"), - 73: .same(proto: "clearAllowAlias"), - 74: .same(proto: "clearBegin"), - 75: .same(proto: "clearCcEnableArenas"), - 76: .same(proto: "clearCcGenericServices"), - 77: .same(proto: "clearClientStreaming"), - 78: .same(proto: "clearCsharpNamespace"), - 79: .same(proto: "clearCtype"), - 80: .same(proto: "clearDebugRedact"), - 81: .same(proto: "clearDefaultValue"), - 82: .same(proto: "clearDeprecated"), - 83: .same(proto: "clearDeprecatedLegacyJsonFieldConflicts"), - 84: .same(proto: "clearDeprecationWarning"), - 85: .same(proto: "clearDoubleValue"), - 86: .same(proto: "clearEdition"), - 87: .same(proto: "clearEditionDeprecated"), - 88: .same(proto: "clearEditionIntroduced"), - 89: .same(proto: "clearEditionRemoved"), - 90: .same(proto: "clearEnd"), - 91: .same(proto: "clearEnumType"), - 92: .same(proto: "clearExtendee"), - 93: .same(proto: "clearExtensionValue"), - 94: .same(proto: "clearFeatures"), - 95: .same(proto: "clearFeatureSupport"), - 96: .same(proto: "clearFieldPresence"), - 97: .same(proto: "clearFixedFeatures"), - 98: .same(proto: "clearFullName"), - 99: .same(proto: "clearGoPackage"), - 100: .same(proto: "clearIdempotencyLevel"), - 101: .same(proto: "clearIdentifierValue"), - 102: .same(proto: "clearInputType"), - 103: .same(proto: "clearIsExtension"), - 104: .same(proto: "clearJavaGenerateEqualsAndHash"), - 105: .same(proto: "clearJavaGenericServices"), - 106: .same(proto: "clearJavaMultipleFiles"), - 107: .same(proto: "clearJavaOuterClassname"), - 108: .same(proto: "clearJavaPackage"), - 109: .same(proto: "clearJavaStringCheckUtf8"), - 110: .same(proto: "clearJsonFormat"), - 111: .same(proto: "clearJsonName"), - 112: .same(proto: "clearJstype"), - 113: .same(proto: "clearLabel"), - 114: .same(proto: "clearLazy"), - 115: .same(proto: "clearLeadingComments"), - 116: .same(proto: "clearMapEntry"), - 117: .same(proto: "clearMaximumEdition"), - 118: .same(proto: "clearMessageEncoding"), - 119: .same(proto: "clearMessageSetWireFormat"), - 120: .same(proto: "clearMinimumEdition"), - 121: .same(proto: "clearName"), - 122: .same(proto: "clearNamePart"), - 123: .same(proto: "clearNegativeIntValue"), - 124: .same(proto: "clearNoStandardDescriptorAccessor"), - 125: .same(proto: "clearNumber"), - 126: .same(proto: "clearObjcClassPrefix"), - 127: .same(proto: "clearOneofIndex"), - 128: .same(proto: "clearOptimizeFor"), - 129: .same(proto: "clearOptions"), - 130: .same(proto: "clearOutputType"), - 131: .same(proto: "clearOverridableFeatures"), - 132: .same(proto: "clearPackage"), - 133: .same(proto: "clearPacked"), - 134: .same(proto: "clearPhpClassPrefix"), - 135: .same(proto: "clearPhpMetadataNamespace"), - 136: .same(proto: "clearPhpNamespace"), - 137: .same(proto: "clearPositiveIntValue"), - 138: .same(proto: "clearProto3Optional"), - 139: .same(proto: "clearPyGenericServices"), - 140: .same(proto: "clearRepeated"), - 141: .same(proto: "clearRepeatedFieldEncoding"), - 142: .same(proto: "clearReserved"), - 143: .same(proto: "clearRetention"), - 144: .same(proto: "clearRubyPackage"), - 145: .same(proto: "clearSemantic"), - 146: .same(proto: "clearServerStreaming"), - 147: .same(proto: "clearSourceCodeInfo"), - 148: .same(proto: "clearSourceContext"), - 149: .same(proto: "clearSourceFile"), - 150: .same(proto: "clearStart"), - 151: .same(proto: "clearStringValue"), - 152: .same(proto: "clearSwiftPrefix"), - 153: .same(proto: "clearSyntax"), - 154: .same(proto: "clearTrailingComments"), - 155: .same(proto: "clearType"), - 156: .same(proto: "clearTypeName"), - 157: .same(proto: "clearUnverifiedLazy"), - 158: .same(proto: "clearUtf8Validation"), - 159: .same(proto: "clearValue"), - 160: .same(proto: "clearVerification"), - 161: .same(proto: "clearWeak"), - 162: .same(proto: "clientStreaming"), - 163: .same(proto: "codePoint"), - 164: .same(proto: "codeUnits"), - 165: .same(proto: "Collection"), - 166: .same(proto: "com"), - 167: .same(proto: "comma"), - 168: .same(proto: "consumedBytes"), - 169: .same(proto: "contentsOf"), - 170: .same(proto: "count"), - 171: .same(proto: "countVarintsInBuffer"), - 172: .same(proto: "csharpNamespace"), - 173: .same(proto: "ctype"), - 174: .same(proto: "customCodable"), - 175: .same(proto: "CustomDebugStringConvertible"), - 176: .same(proto: "d"), - 177: .same(proto: "Data"), - 178: .same(proto: "dataResult"), - 179: .same(proto: "date"), - 180: .same(proto: "daySec"), - 181: .same(proto: "daysSinceEpoch"), - 182: .same(proto: "debugDescription"), - 183: .same(proto: "debugRedact"), - 184: .same(proto: "declaration"), - 185: .same(proto: "decoded"), - 186: .same(proto: "decodedFromJSONNull"), - 187: .same(proto: "decodeExtensionField"), - 188: .same(proto: "decodeExtensionFieldsAsMessageSet"), - 189: .same(proto: "decodeJSON"), - 190: .same(proto: "decodeMapField"), - 191: .same(proto: "decodeMessage"), - 192: .same(proto: "decoder"), - 193: .same(proto: "decodeRepeated"), - 194: .same(proto: "decodeRepeatedBoolField"), - 195: .same(proto: "decodeRepeatedBytesField"), - 196: .same(proto: "decodeRepeatedDoubleField"), - 197: .same(proto: "decodeRepeatedEnumField"), - 198: .same(proto: "decodeRepeatedFixed32Field"), - 199: .same(proto: "decodeRepeatedFixed64Field"), - 200: .same(proto: "decodeRepeatedFloatField"), - 201: .same(proto: "decodeRepeatedGroupField"), - 202: .same(proto: "decodeRepeatedInt32Field"), - 203: .same(proto: "decodeRepeatedInt64Field"), - 204: .same(proto: "decodeRepeatedMessageField"), - 205: .same(proto: "decodeRepeatedSFixed32Field"), - 206: .same(proto: "decodeRepeatedSFixed64Field"), - 207: .same(proto: "decodeRepeatedSInt32Field"), - 208: .same(proto: "decodeRepeatedSInt64Field"), - 209: .same(proto: "decodeRepeatedStringField"), - 210: .same(proto: "decodeRepeatedUInt32Field"), - 211: .same(proto: "decodeRepeatedUInt64Field"), - 212: .same(proto: "decodeSingular"), - 213: .same(proto: "decodeSingularBoolField"), - 214: .same(proto: "decodeSingularBytesField"), - 215: .same(proto: "decodeSingularDoubleField"), - 216: .same(proto: "decodeSingularEnumField"), - 217: .same(proto: "decodeSingularFixed32Field"), - 218: .same(proto: "decodeSingularFixed64Field"), - 219: .same(proto: "decodeSingularFloatField"), - 220: .same(proto: "decodeSingularGroupField"), - 221: .same(proto: "decodeSingularInt32Field"), - 222: .same(proto: "decodeSingularInt64Field"), - 223: .same(proto: "decodeSingularMessageField"), - 224: .same(proto: "decodeSingularSFixed32Field"), - 225: .same(proto: "decodeSingularSFixed64Field"), - 226: .same(proto: "decodeSingularSInt32Field"), - 227: .same(proto: "decodeSingularSInt64Field"), - 228: .same(proto: "decodeSingularStringField"), - 229: .same(proto: "decodeSingularUInt32Field"), - 230: .same(proto: "decodeSingularUInt64Field"), - 231: .same(proto: "decodeTextFormat"), - 232: .same(proto: "defaultAnyTypeURLPrefix"), - 233: .same(proto: "defaults"), - 234: .same(proto: "defaultValue"), - 235: .same(proto: "dependency"), - 236: .same(proto: "deprecated"), - 237: .same(proto: "deprecatedLegacyJsonFieldConflicts"), - 238: .same(proto: "deprecationWarning"), - 239: .same(proto: "description"), - 240: .same(proto: "DescriptorProto"), - 241: .same(proto: "Dictionary"), - 242: .same(proto: "dictionaryLiteral"), - 243: .same(proto: "digit"), - 244: .same(proto: "digit0"), - 245: .same(proto: "digit1"), - 246: .same(proto: "digitCount"), - 247: .same(proto: "digits"), - 248: .same(proto: "digitValue"), - 249: .same(proto: "discardableResult"), - 250: .same(proto: "discardUnknownFields"), - 251: .same(proto: "Double"), - 252: .same(proto: "doubleValue"), - 253: .same(proto: "Duration"), - 254: .same(proto: "E"), - 255: .same(proto: "edition"), - 256: .same(proto: "EditionDefault"), - 257: .same(proto: "editionDefaults"), - 258: .same(proto: "editionDeprecated"), - 259: .same(proto: "editionIntroduced"), - 260: .same(proto: "editionRemoved"), - 261: .same(proto: "Element"), - 262: .same(proto: "elements"), - 263: .same(proto: "emitExtensionFieldName"), - 264: .same(proto: "emitFieldName"), - 265: .same(proto: "emitFieldNumber"), - 266: .same(proto: "Empty"), - 267: .same(proto: "encodeAsBytes"), - 268: .same(proto: "encoded"), - 269: .same(proto: "encodedJSONString"), - 270: .same(proto: "encodedSize"), - 271: .same(proto: "encodeField"), - 272: .same(proto: "encoder"), - 273: .same(proto: "end"), - 274: .same(proto: "endArray"), - 275: .same(proto: "endMessageField"), - 276: .same(proto: "endObject"), - 277: .same(proto: "endRegularField"), - 278: .same(proto: "enum"), - 279: .same(proto: "EnumDescriptorProto"), - 280: .same(proto: "EnumOptions"), - 281: .same(proto: "EnumReservedRange"), - 282: .same(proto: "enumType"), - 283: .same(proto: "enumvalue"), - 284: .same(proto: "EnumValueDescriptorProto"), - 285: .same(proto: "EnumValueOptions"), - 286: .same(proto: "Equatable"), - 287: .same(proto: "Error"), - 288: .same(proto: "ExpressibleByArrayLiteral"), - 289: .same(proto: "ExpressibleByDictionaryLiteral"), - 290: .same(proto: "ext"), - 291: .same(proto: "extDecoder"), - 292: .same(proto: "extendedGraphemeClusterLiteral"), - 293: .same(proto: "ExtendedGraphemeClusterLiteralType"), - 294: .same(proto: "extendee"), - 295: .same(proto: "ExtensibleMessage"), - 296: .same(proto: "extension"), - 297: .same(proto: "ExtensionField"), - 298: .same(proto: "extensionFieldNumber"), - 299: .same(proto: "ExtensionFieldValueSet"), - 300: .same(proto: "ExtensionMap"), - 301: .same(proto: "extensionRange"), - 302: .same(proto: "ExtensionRangeOptions"), - 303: .same(proto: "extensions"), - 304: .same(proto: "extras"), - 305: .same(proto: "F"), - 306: .same(proto: "false"), - 307: .same(proto: "features"), - 308: .same(proto: "FeatureSet"), - 309: .same(proto: "FeatureSetDefaults"), - 310: .same(proto: "FeatureSetEditionDefault"), - 311: .same(proto: "featureSupport"), - 312: .same(proto: "field"), - 313: .same(proto: "fieldData"), - 314: .same(proto: "FieldDescriptorProto"), - 315: .same(proto: "FieldMask"), - 316: .same(proto: "fieldName"), - 317: .same(proto: "fieldNameCount"), - 318: .same(proto: "fieldNum"), - 319: .same(proto: "fieldNumber"), - 320: .same(proto: "fieldNumberForProto"), - 321: .same(proto: "FieldOptions"), - 322: .same(proto: "fieldPresence"), - 323: .same(proto: "fields"), - 324: .same(proto: "fieldSize"), - 325: .same(proto: "FieldTag"), - 326: .same(proto: "fieldType"), - 327: .same(proto: "file"), - 328: .same(proto: "FileDescriptorProto"), - 329: .same(proto: "FileDescriptorSet"), - 330: .same(proto: "fileName"), - 331: .same(proto: "FileOptions"), - 332: .same(proto: "filter"), - 333: .same(proto: "final"), - 334: .same(proto: "finiteOnly"), - 335: .same(proto: "first"), - 336: .same(proto: "firstItem"), - 337: .same(proto: "fixedFeatures"), - 338: .same(proto: "Float"), - 339: .same(proto: "floatLiteral"), - 340: .same(proto: "FloatLiteralType"), - 341: .same(proto: "FloatValue"), - 342: .same(proto: "forMessageName"), - 343: .same(proto: "formUnion"), - 344: .same(proto: "forReadingFrom"), - 345: .same(proto: "forTypeURL"), - 346: .same(proto: "ForwardParser"), - 347: .same(proto: "forWritingInto"), - 348: .same(proto: "from"), - 349: .same(proto: "fromAscii2"), - 350: .same(proto: "fromAscii4"), - 351: .same(proto: "fromByteOffset"), - 352: .same(proto: "fromHexDigit"), - 353: .same(proto: "fullName"), - 354: .same(proto: "func"), - 355: .same(proto: "G"), - 356: .same(proto: "GeneratedCodeInfo"), - 357: .same(proto: "get"), - 358: .same(proto: "getExtensionValue"), - 359: .same(proto: "googleapis"), - 360: .standard(proto: "Google_Protobuf_Any"), - 361: .standard(proto: "Google_Protobuf_Api"), - 362: .standard(proto: "Google_Protobuf_BoolValue"), - 363: .standard(proto: "Google_Protobuf_BytesValue"), - 364: .standard(proto: "Google_Protobuf_DescriptorProto"), - 365: .standard(proto: "Google_Protobuf_DoubleValue"), - 366: .standard(proto: "Google_Protobuf_Duration"), - 367: .standard(proto: "Google_Protobuf_Edition"), - 368: .standard(proto: "Google_Protobuf_Empty"), - 369: .standard(proto: "Google_Protobuf_Enum"), - 370: .standard(proto: "Google_Protobuf_EnumDescriptorProto"), - 371: .standard(proto: "Google_Protobuf_EnumOptions"), - 372: .standard(proto: "Google_Protobuf_EnumValue"), - 373: .standard(proto: "Google_Protobuf_EnumValueDescriptorProto"), - 374: .standard(proto: "Google_Protobuf_EnumValueOptions"), - 375: .standard(proto: "Google_Protobuf_ExtensionRangeOptions"), - 376: .standard(proto: "Google_Protobuf_FeatureSet"), - 377: .standard(proto: "Google_Protobuf_FeatureSetDefaults"), - 378: .standard(proto: "Google_Protobuf_Field"), - 379: .standard(proto: "Google_Protobuf_FieldDescriptorProto"), - 380: .standard(proto: "Google_Protobuf_FieldMask"), - 381: .standard(proto: "Google_Protobuf_FieldOptions"), - 382: .standard(proto: "Google_Protobuf_FileDescriptorProto"), - 383: .standard(proto: "Google_Protobuf_FileDescriptorSet"), - 384: .standard(proto: "Google_Protobuf_FileOptions"), - 385: .standard(proto: "Google_Protobuf_FloatValue"), - 386: .standard(proto: "Google_Protobuf_GeneratedCodeInfo"), - 387: .standard(proto: "Google_Protobuf_Int32Value"), - 388: .standard(proto: "Google_Protobuf_Int64Value"), - 389: .standard(proto: "Google_Protobuf_ListValue"), - 390: .standard(proto: "Google_Protobuf_MessageOptions"), - 391: .standard(proto: "Google_Protobuf_Method"), - 392: .standard(proto: "Google_Protobuf_MethodDescriptorProto"), - 393: .standard(proto: "Google_Protobuf_MethodOptions"), - 394: .standard(proto: "Google_Protobuf_Mixin"), - 395: .standard(proto: "Google_Protobuf_NullValue"), - 396: .standard(proto: "Google_Protobuf_OneofDescriptorProto"), - 397: .standard(proto: "Google_Protobuf_OneofOptions"), - 398: .standard(proto: "Google_Protobuf_Option"), - 399: .standard(proto: "Google_Protobuf_ServiceDescriptorProto"), - 400: .standard(proto: "Google_Protobuf_ServiceOptions"), - 401: .standard(proto: "Google_Protobuf_SourceCodeInfo"), - 402: .standard(proto: "Google_Protobuf_SourceContext"), - 403: .standard(proto: "Google_Protobuf_StringValue"), - 404: .standard(proto: "Google_Protobuf_Struct"), - 405: .standard(proto: "Google_Protobuf_Syntax"), - 406: .standard(proto: "Google_Protobuf_Timestamp"), - 407: .standard(proto: "Google_Protobuf_Type"), - 408: .standard(proto: "Google_Protobuf_UInt32Value"), - 409: .standard(proto: "Google_Protobuf_UInt64Value"), - 410: .standard(proto: "Google_Protobuf_UninterpretedOption"), - 411: .standard(proto: "Google_Protobuf_Value"), - 412: .same(proto: "goPackage"), - 413: .same(proto: "group"), - 414: .same(proto: "groupFieldNumberStack"), - 415: .same(proto: "groupSize"), - 416: .same(proto: "hadOneofValue"), - 417: .same(proto: "handleConflictingOneOf"), - 418: .same(proto: "hasAggregateValue"), - 419: .same(proto: "hasAllowAlias"), - 420: .same(proto: "hasBegin"), - 421: .same(proto: "hasCcEnableArenas"), - 422: .same(proto: "hasCcGenericServices"), - 423: .same(proto: "hasClientStreaming"), - 424: .same(proto: "hasCsharpNamespace"), - 425: .same(proto: "hasCtype"), - 426: .same(proto: "hasDebugRedact"), - 427: .same(proto: "hasDefaultValue"), - 428: .same(proto: "hasDeprecated"), - 429: .same(proto: "hasDeprecatedLegacyJsonFieldConflicts"), - 430: .same(proto: "hasDeprecationWarning"), - 431: .same(proto: "hasDoubleValue"), - 432: .same(proto: "hasEdition"), - 433: .same(proto: "hasEditionDeprecated"), - 434: .same(proto: "hasEditionIntroduced"), - 435: .same(proto: "hasEditionRemoved"), - 436: .same(proto: "hasEnd"), - 437: .same(proto: "hasEnumType"), - 438: .same(proto: "hasExtendee"), - 439: .same(proto: "hasExtensionValue"), - 440: .same(proto: "hasFeatures"), - 441: .same(proto: "hasFeatureSupport"), - 442: .same(proto: "hasFieldPresence"), - 443: .same(proto: "hasFixedFeatures"), - 444: .same(proto: "hasFullName"), - 445: .same(proto: "hasGoPackage"), - 446: .same(proto: "hash"), - 447: .same(proto: "Hashable"), - 448: .same(proto: "hasher"), - 449: .same(proto: "HashVisitor"), - 450: .same(proto: "hasIdempotencyLevel"), - 451: .same(proto: "hasIdentifierValue"), - 452: .same(proto: "hasInputType"), - 453: .same(proto: "hasIsExtension"), - 454: .same(proto: "hasJavaGenerateEqualsAndHash"), - 455: .same(proto: "hasJavaGenericServices"), - 456: .same(proto: "hasJavaMultipleFiles"), - 457: .same(proto: "hasJavaOuterClassname"), - 458: .same(proto: "hasJavaPackage"), - 459: .same(proto: "hasJavaStringCheckUtf8"), - 460: .same(proto: "hasJsonFormat"), - 461: .same(proto: "hasJsonName"), - 462: .same(proto: "hasJstype"), - 463: .same(proto: "hasLabel"), - 464: .same(proto: "hasLazy"), - 465: .same(proto: "hasLeadingComments"), - 466: .same(proto: "hasMapEntry"), - 467: .same(proto: "hasMaximumEdition"), - 468: .same(proto: "hasMessageEncoding"), - 469: .same(proto: "hasMessageSetWireFormat"), - 470: .same(proto: "hasMinimumEdition"), - 471: .same(proto: "hasName"), - 472: .same(proto: "hasNamePart"), - 473: .same(proto: "hasNegativeIntValue"), - 474: .same(proto: "hasNoStandardDescriptorAccessor"), - 475: .same(proto: "hasNumber"), - 476: .same(proto: "hasObjcClassPrefix"), - 477: .same(proto: "hasOneofIndex"), - 478: .same(proto: "hasOptimizeFor"), - 479: .same(proto: "hasOptions"), - 480: .same(proto: "hasOutputType"), - 481: .same(proto: "hasOverridableFeatures"), - 482: .same(proto: "hasPackage"), - 483: .same(proto: "hasPacked"), - 484: .same(proto: "hasPhpClassPrefix"), - 485: .same(proto: "hasPhpMetadataNamespace"), - 486: .same(proto: "hasPhpNamespace"), - 487: .same(proto: "hasPositiveIntValue"), - 488: .same(proto: "hasProto3Optional"), - 489: .same(proto: "hasPyGenericServices"), - 490: .same(proto: "hasRepeated"), - 491: .same(proto: "hasRepeatedFieldEncoding"), - 492: .same(proto: "hasReserved"), - 493: .same(proto: "hasRetention"), - 494: .same(proto: "hasRubyPackage"), - 495: .same(proto: "hasSemantic"), - 496: .same(proto: "hasServerStreaming"), - 497: .same(proto: "hasSourceCodeInfo"), - 498: .same(proto: "hasSourceContext"), - 499: .same(proto: "hasSourceFile"), - 500: .same(proto: "hasStart"), - 501: .same(proto: "hasStringValue"), - 502: .same(proto: "hasSwiftPrefix"), - 503: .same(proto: "hasSyntax"), - 504: .same(proto: "hasTrailingComments"), - 505: .same(proto: "hasType"), - 506: .same(proto: "hasTypeName"), - 507: .same(proto: "hasUnverifiedLazy"), - 508: .same(proto: "hasUtf8Validation"), - 509: .same(proto: "hasValue"), - 510: .same(proto: "hasVerification"), - 511: .same(proto: "hasWeak"), - 512: .same(proto: "hour"), - 513: .same(proto: "i"), - 514: .same(proto: "idempotencyLevel"), - 515: .same(proto: "identifierValue"), - 516: .same(proto: "if"), - 517: .same(proto: "ignoreUnknownExtensionFields"), - 518: .same(proto: "ignoreUnknownFields"), - 519: .same(proto: "index"), - 520: .same(proto: "init"), - 521: .same(proto: "inout"), - 522: .same(proto: "inputType"), - 523: .same(proto: "insert"), - 524: .same(proto: "Int"), - 525: .same(proto: "Int32"), - 526: .same(proto: "Int32Value"), - 527: .same(proto: "Int64"), - 528: .same(proto: "Int64Value"), - 529: .same(proto: "Int8"), - 530: .same(proto: "integerLiteral"), - 531: .same(proto: "IntegerLiteralType"), - 532: .same(proto: "intern"), - 533: .same(proto: "Internal"), - 534: .same(proto: "InternalState"), - 535: .same(proto: "into"), - 536: .same(proto: "ints"), - 537: .same(proto: "isA"), - 538: .same(proto: "isEqual"), - 539: .same(proto: "isEqualTo"), - 540: .same(proto: "isExtension"), - 541: .same(proto: "isInitialized"), - 542: .same(proto: "isNegative"), - 543: .same(proto: "itemTagsEncodedSize"), - 544: .same(proto: "iterator"), - 545: .same(proto: "javaGenerateEqualsAndHash"), - 546: .same(proto: "javaGenericServices"), - 547: .same(proto: "javaMultipleFiles"), - 548: .same(proto: "javaOuterClassname"), - 549: .same(proto: "javaPackage"), - 550: .same(proto: "javaStringCheckUtf8"), - 551: .same(proto: "JSONDecoder"), - 552: .same(proto: "JSONDecodingError"), - 553: .same(proto: "JSONDecodingOptions"), - 554: .same(proto: "jsonEncoder"), - 555: .same(proto: "JSONEncodingError"), - 556: .same(proto: "JSONEncodingOptions"), - 557: .same(proto: "JSONEncodingVisitor"), - 558: .same(proto: "jsonFormat"), - 559: .same(proto: "JSONMapEncodingVisitor"), - 560: .same(proto: "jsonName"), - 561: .same(proto: "jsonPath"), - 562: .same(proto: "jsonPaths"), - 563: .same(proto: "JSONScanner"), - 564: .same(proto: "jsonString"), - 565: .same(proto: "jsonText"), - 566: .same(proto: "jsonUTF8Bytes"), - 567: .same(proto: "jsonUTF8Data"), - 568: .same(proto: "jstype"), - 569: .same(proto: "k"), - 570: .same(proto: "kChunkSize"), - 571: .same(proto: "Key"), - 572: .same(proto: "keyField"), - 573: .same(proto: "keyFieldOpt"), - 574: .same(proto: "KeyType"), - 575: .same(proto: "kind"), - 576: .same(proto: "l"), - 577: .same(proto: "label"), - 578: .same(proto: "lazy"), - 579: .same(proto: "leadingComments"), - 580: .same(proto: "leadingDetachedComments"), - 581: .same(proto: "length"), - 582: .same(proto: "lessThan"), - 583: .same(proto: "let"), - 584: .same(proto: "lhs"), - 585: .same(proto: "list"), - 586: .same(proto: "listOfMessages"), - 587: .same(proto: "listValue"), - 588: .same(proto: "littleEndian"), - 589: .same(proto: "load"), - 590: .same(proto: "localHasher"), - 591: .same(proto: "location"), - 592: .same(proto: "M"), - 593: .same(proto: "major"), - 594: .same(proto: "makeAsyncIterator"), - 595: .same(proto: "makeIterator"), - 596: .same(proto: "mapEntry"), - 597: .same(proto: "MapKeyType"), - 598: .same(proto: "mapToMessages"), - 599: .same(proto: "MapValueType"), - 600: .same(proto: "mapVisitor"), - 601: .same(proto: "maximumEdition"), - 602: .same(proto: "mdayStart"), - 603: .same(proto: "merge"), - 604: .same(proto: "message"), - 605: .same(proto: "messageDepthLimit"), - 606: .same(proto: "messageEncoding"), - 607: .same(proto: "MessageExtension"), - 608: .same(proto: "MessageImplementationBase"), - 609: .same(proto: "MessageOptions"), - 610: .same(proto: "MessageSet"), - 611: .same(proto: "messageSetWireFormat"), - 612: .same(proto: "messageSize"), - 613: .same(proto: "messageType"), - 614: .same(proto: "Method"), - 615: .same(proto: "MethodDescriptorProto"), - 616: .same(proto: "MethodOptions"), - 617: .same(proto: "methods"), - 618: .same(proto: "min"), - 619: .same(proto: "minimumEdition"), - 620: .same(proto: "minor"), - 621: .same(proto: "Mixin"), - 622: .same(proto: "mixins"), - 623: .same(proto: "modifier"), - 624: .same(proto: "modify"), - 625: .same(proto: "month"), - 626: .same(proto: "msgExtension"), - 627: .same(proto: "mutating"), - 628: .same(proto: "n"), - 629: .same(proto: "name"), - 630: .same(proto: "NameDescription"), - 631: .same(proto: "NameMap"), - 632: .same(proto: "NamePart"), - 633: .same(proto: "names"), - 634: .same(proto: "nanos"), - 635: .same(proto: "negativeIntValue"), - 636: .same(proto: "nestedType"), - 637: .same(proto: "newL"), - 638: .same(proto: "newList"), - 639: .same(proto: "newValue"), - 640: .same(proto: "next"), - 641: .same(proto: "nextByte"), - 642: .same(proto: "nextFieldNumber"), - 643: .same(proto: "nextVarInt"), - 644: .same(proto: "nil"), - 645: .same(proto: "nilLiteral"), - 646: .same(proto: "noStandardDescriptorAccessor"), - 647: .same(proto: "nullValue"), - 648: .same(proto: "number"), - 649: .same(proto: "numberValue"), - 650: .same(proto: "objcClassPrefix"), - 651: .same(proto: "of"), - 652: .same(proto: "oneofDecl"), - 653: .same(proto: "OneofDescriptorProto"), - 654: .same(proto: "oneofIndex"), - 655: .same(proto: "OneofOptions"), - 656: .same(proto: "oneofs"), - 657: .standard(proto: "OneOf_Kind"), - 658: .same(proto: "optimizeFor"), - 659: .same(proto: "OptimizeMode"), - 660: .same(proto: "Option"), - 661: .same(proto: "OptionalEnumExtensionField"), - 662: .same(proto: "OptionalExtensionField"), - 663: .same(proto: "OptionalGroupExtensionField"), - 664: .same(proto: "OptionalMessageExtensionField"), - 665: .same(proto: "OptionRetention"), - 666: .same(proto: "options"), - 667: .same(proto: "OptionTargetType"), - 668: .same(proto: "other"), - 669: .same(proto: "others"), - 670: .same(proto: "out"), - 671: .same(proto: "outputType"), - 672: .same(proto: "overridableFeatures"), - 673: .same(proto: "p"), - 674: .same(proto: "package"), - 675: .same(proto: "packed"), - 676: .same(proto: "PackedEnumExtensionField"), - 677: .same(proto: "PackedExtensionField"), - 678: .same(proto: "padding"), - 679: .same(proto: "parent"), - 680: .same(proto: "parse"), - 681: .same(proto: "path"), - 682: .same(proto: "paths"), - 683: .same(proto: "payload"), - 684: .same(proto: "payloadSize"), - 685: .same(proto: "phpClassPrefix"), - 686: .same(proto: "phpMetadataNamespace"), - 687: .same(proto: "phpNamespace"), - 688: .same(proto: "pos"), - 689: .same(proto: "positiveIntValue"), - 690: .same(proto: "prefix"), - 691: .same(proto: "preserveProtoFieldNames"), - 692: .same(proto: "preTraverse"), - 693: .same(proto: "printUnknownFields"), - 694: .same(proto: "proto2"), - 695: .same(proto: "proto3DefaultValue"), - 696: .same(proto: "proto3Optional"), - 697: .same(proto: "ProtobufAPIVersionCheck"), - 698: .standard(proto: "ProtobufAPIVersion_3"), - 699: .same(proto: "ProtobufBool"), - 700: .same(proto: "ProtobufBytes"), - 701: .same(proto: "ProtobufDouble"), - 702: .same(proto: "ProtobufEnumMap"), - 703: .same(proto: "protobufExtension"), - 704: .same(proto: "ProtobufFixed32"), - 705: .same(proto: "ProtobufFixed64"), - 706: .same(proto: "ProtobufFloat"), - 707: .same(proto: "ProtobufInt32"), - 708: .same(proto: "ProtobufInt64"), - 709: .same(proto: "ProtobufMap"), - 710: .same(proto: "ProtobufMessageMap"), - 711: .same(proto: "ProtobufSFixed32"), - 712: .same(proto: "ProtobufSFixed64"), - 713: .same(proto: "ProtobufSInt32"), - 714: .same(proto: "ProtobufSInt64"), - 715: .same(proto: "ProtobufString"), - 716: .same(proto: "ProtobufUInt32"), - 717: .same(proto: "ProtobufUInt64"), - 718: .standard(proto: "protobuf_extensionFieldValues"), - 719: .standard(proto: "protobuf_fieldNumber"), - 720: .standard(proto: "protobuf_generated_isEqualTo"), - 721: .standard(proto: "protobuf_nameMap"), - 722: .standard(proto: "protobuf_newField"), - 723: .standard(proto: "protobuf_package"), - 724: .same(proto: "protocol"), - 725: .same(proto: "protoFieldName"), - 726: .same(proto: "protoMessageName"), - 727: .same(proto: "ProtoNameProviding"), - 728: .same(proto: "protoPaths"), - 729: .same(proto: "public"), - 730: .same(proto: "publicDependency"), - 731: .same(proto: "putBoolValue"), - 732: .same(proto: "putBytesValue"), - 733: .same(proto: "putDoubleValue"), - 734: .same(proto: "putEnumValue"), - 735: .same(proto: "putFixedUInt32"), - 736: .same(proto: "putFixedUInt64"), - 737: .same(proto: "putFloatValue"), - 738: .same(proto: "putInt64"), - 739: .same(proto: "putStringValue"), - 740: .same(proto: "putUInt64"), - 741: .same(proto: "putUInt64Hex"), - 742: .same(proto: "putVarInt"), - 743: .same(proto: "putZigZagVarInt"), - 744: .same(proto: "pyGenericServices"), - 745: .same(proto: "R"), - 746: .same(proto: "rawChars"), - 747: .same(proto: "RawRepresentable"), - 748: .same(proto: "RawValue"), - 749: .same(proto: "read4HexDigits"), - 750: .same(proto: "readBytes"), - 751: .same(proto: "register"), - 752: .same(proto: "repeated"), - 753: .same(proto: "RepeatedEnumExtensionField"), - 754: .same(proto: "RepeatedExtensionField"), - 755: .same(proto: "repeatedFieldEncoding"), - 756: .same(proto: "RepeatedGroupExtensionField"), - 757: .same(proto: "RepeatedMessageExtensionField"), - 758: .same(proto: "repeating"), - 759: .same(proto: "requestStreaming"), - 760: .same(proto: "requestTypeURL"), - 761: .same(proto: "requiredSize"), - 762: .same(proto: "responseStreaming"), - 763: .same(proto: "responseTypeURL"), - 764: .same(proto: "result"), - 765: .same(proto: "retention"), - 766: .same(proto: "rethrows"), - 767: .same(proto: "return"), - 768: .same(proto: "ReturnType"), - 769: .same(proto: "revision"), - 770: .same(proto: "rhs"), - 771: .same(proto: "root"), - 772: .same(proto: "rubyPackage"), - 773: .same(proto: "s"), - 774: .same(proto: "sawBackslash"), - 775: .same(proto: "sawSection4Characters"), - 776: .same(proto: "sawSection5Characters"), - 777: .same(proto: "scan"), - 778: .same(proto: "scanner"), - 779: .same(proto: "seconds"), - 780: .same(proto: "self"), - 781: .same(proto: "semantic"), - 782: .same(proto: "Sendable"), - 783: .same(proto: "separator"), - 784: .same(proto: "serialize"), - 785: .same(proto: "serializedBytes"), - 786: .same(proto: "serializedData"), - 787: .same(proto: "serializedSize"), - 788: .same(proto: "serverStreaming"), - 789: .same(proto: "service"), - 790: .same(proto: "ServiceDescriptorProto"), - 791: .same(proto: "ServiceOptions"), - 792: .same(proto: "set"), - 793: .same(proto: "setExtensionValue"), - 794: .same(proto: "shift"), - 795: .same(proto: "SimpleExtensionMap"), - 796: .same(proto: "size"), - 797: .same(proto: "sizer"), - 798: .same(proto: "source"), - 799: .same(proto: "sourceCodeInfo"), - 800: .same(proto: "sourceContext"), - 801: .same(proto: "sourceEncoding"), - 802: .same(proto: "sourceFile"), - 803: .same(proto: "span"), - 804: .same(proto: "split"), - 805: .same(proto: "start"), - 806: .same(proto: "startArray"), - 807: .same(proto: "startArrayObject"), - 808: .same(proto: "startField"), - 809: .same(proto: "startIndex"), - 810: .same(proto: "startMessageField"), - 811: .same(proto: "startObject"), - 812: .same(proto: "startRegularField"), - 813: .same(proto: "state"), - 814: .same(proto: "static"), - 815: .same(proto: "StaticString"), - 816: .same(proto: "storage"), - 817: .same(proto: "String"), - 818: .same(proto: "stringLiteral"), - 819: .same(proto: "StringLiteralType"), - 820: .same(proto: "stringResult"), - 821: .same(proto: "stringValue"), - 822: .same(proto: "struct"), - 823: .same(proto: "structValue"), - 824: .same(proto: "subDecoder"), - 825: .same(proto: "subscript"), - 826: .same(proto: "subVisitor"), - 827: .same(proto: "Swift"), - 828: .same(proto: "swiftPrefix"), - 829: .same(proto: "SwiftProtobufContiguousBytes"), - 830: .same(proto: "syntax"), - 831: .same(proto: "T"), - 832: .same(proto: "tag"), - 833: .same(proto: "targets"), - 834: .same(proto: "terminator"), - 835: .same(proto: "testDecoder"), - 836: .same(proto: "text"), - 837: .same(proto: "textDecoder"), - 838: .same(proto: "TextFormatDecoder"), - 839: .same(proto: "TextFormatDecodingError"), - 840: .same(proto: "TextFormatDecodingOptions"), - 841: .same(proto: "TextFormatEncodingOptions"), - 842: .same(proto: "TextFormatEncodingVisitor"), - 843: .same(proto: "textFormatString"), - 844: .same(proto: "throwOrIgnore"), - 845: .same(proto: "throws"), - 846: .same(proto: "timeInterval"), - 847: .same(proto: "timeIntervalSince1970"), - 848: .same(proto: "timeIntervalSinceReferenceDate"), - 849: .same(proto: "Timestamp"), - 850: .same(proto: "total"), - 851: .same(proto: "totalArrayDepth"), - 852: .same(proto: "totalSize"), - 853: .same(proto: "trailingComments"), - 854: .same(proto: "traverse"), - 855: .same(proto: "true"), - 856: .same(proto: "try"), - 857: .same(proto: "type"), - 858: .same(proto: "typealias"), - 859: .same(proto: "TypeEnum"), - 860: .same(proto: "typeName"), - 861: .same(proto: "typePrefix"), - 862: .same(proto: "typeStart"), - 863: .same(proto: "typeUnknown"), - 864: .same(proto: "typeURL"), - 865: .same(proto: "UInt32"), - 866: .same(proto: "UInt32Value"), - 867: .same(proto: "UInt64"), - 868: .same(proto: "UInt64Value"), - 869: .same(proto: "UInt8"), - 870: .same(proto: "unchecked"), - 871: .same(proto: "unicodeScalarLiteral"), - 872: .same(proto: "UnicodeScalarLiteralType"), - 873: .same(proto: "unicodeScalars"), - 874: .same(proto: "UnicodeScalarView"), - 875: .same(proto: "uninterpretedOption"), - 876: .same(proto: "union"), - 877: .same(proto: "uniqueStorage"), - 878: .same(proto: "unknown"), - 879: .same(proto: "unknownFields"), - 880: .same(proto: "UnknownStorage"), - 881: .same(proto: "unpackTo"), - 882: .same(proto: "UnsafeBufferPointer"), - 883: .same(proto: "UnsafeMutablePointer"), - 884: .same(proto: "UnsafeMutableRawBufferPointer"), - 885: .same(proto: "UnsafeRawBufferPointer"), - 886: .same(proto: "UnsafeRawPointer"), - 887: .same(proto: "unverifiedLazy"), - 888: .same(proto: "updatedOptions"), - 889: .same(proto: "url"), - 890: .same(proto: "useDeterministicOrdering"), - 891: .same(proto: "utf8"), - 892: .same(proto: "utf8Ptr"), - 893: .same(proto: "utf8ToDouble"), - 894: .same(proto: "utf8Validation"), - 895: .same(proto: "UTF8View"), - 896: .same(proto: "v"), - 897: .same(proto: "value"), - 898: .same(proto: "valueField"), - 899: .same(proto: "values"), - 900: .same(proto: "ValueType"), - 901: .same(proto: "var"), - 902: .same(proto: "verification"), - 903: .same(proto: "VerificationState"), - 904: .same(proto: "Version"), - 905: .same(proto: "versionString"), - 906: .same(proto: "visitExtensionFields"), - 907: .same(proto: "visitExtensionFieldsAsMessageSet"), - 908: .same(proto: "visitMapField"), - 909: .same(proto: "visitor"), - 910: .same(proto: "visitPacked"), - 911: .same(proto: "visitPackedBoolField"), - 912: .same(proto: "visitPackedDoubleField"), - 913: .same(proto: "visitPackedEnumField"), - 914: .same(proto: "visitPackedFixed32Field"), - 915: .same(proto: "visitPackedFixed64Field"), - 916: .same(proto: "visitPackedFloatField"), - 917: .same(proto: "visitPackedInt32Field"), - 918: .same(proto: "visitPackedInt64Field"), - 919: .same(proto: "visitPackedSFixed32Field"), - 920: .same(proto: "visitPackedSFixed64Field"), - 921: .same(proto: "visitPackedSInt32Field"), - 922: .same(proto: "visitPackedSInt64Field"), - 923: .same(proto: "visitPackedUInt32Field"), - 924: .same(proto: "visitPackedUInt64Field"), - 925: .same(proto: "visitRepeated"), - 926: .same(proto: "visitRepeatedBoolField"), - 927: .same(proto: "visitRepeatedBytesField"), - 928: .same(proto: "visitRepeatedDoubleField"), - 929: .same(proto: "visitRepeatedEnumField"), - 930: .same(proto: "visitRepeatedFixed32Field"), - 931: .same(proto: "visitRepeatedFixed64Field"), - 932: .same(proto: "visitRepeatedFloatField"), - 933: .same(proto: "visitRepeatedGroupField"), - 934: .same(proto: "visitRepeatedInt32Field"), - 935: .same(proto: "visitRepeatedInt64Field"), - 936: .same(proto: "visitRepeatedMessageField"), - 937: .same(proto: "visitRepeatedSFixed32Field"), - 938: .same(proto: "visitRepeatedSFixed64Field"), - 939: .same(proto: "visitRepeatedSInt32Field"), - 940: .same(proto: "visitRepeatedSInt64Field"), - 941: .same(proto: "visitRepeatedStringField"), - 942: .same(proto: "visitRepeatedUInt32Field"), - 943: .same(proto: "visitRepeatedUInt64Field"), - 944: .same(proto: "visitSingular"), - 945: .same(proto: "visitSingularBoolField"), - 946: .same(proto: "visitSingularBytesField"), - 947: .same(proto: "visitSingularDoubleField"), - 948: .same(proto: "visitSingularEnumField"), - 949: .same(proto: "visitSingularFixed32Field"), - 950: .same(proto: "visitSingularFixed64Field"), - 951: .same(proto: "visitSingularFloatField"), - 952: .same(proto: "visitSingularGroupField"), - 953: .same(proto: "visitSingularInt32Field"), - 954: .same(proto: "visitSingularInt64Field"), - 955: .same(proto: "visitSingularMessageField"), - 956: .same(proto: "visitSingularSFixed32Field"), - 957: .same(proto: "visitSingularSFixed64Field"), - 958: .same(proto: "visitSingularSInt32Field"), - 959: .same(proto: "visitSingularSInt64Field"), - 960: .same(proto: "visitSingularStringField"), - 961: .same(proto: "visitSingularUInt32Field"), - 962: .same(proto: "visitSingularUInt64Field"), - 963: .same(proto: "visitUnknown"), - 964: .same(proto: "wasDecoded"), - 965: .same(proto: "weak"), - 966: .same(proto: "weakDependency"), - 967: .same(proto: "where"), - 968: .same(proto: "wireFormat"), - 969: .same(proto: "with"), - 970: .same(proto: "withUnsafeBytes"), - 971: .same(proto: "withUnsafeMutableBytes"), - 972: .same(proto: "work"), - 973: .same(proto: "Wrapped"), - 974: .same(proto: "WrappedType"), - 975: .same(proto: "wrappedValue"), - 976: .same(proto: "written"), - 977: .same(proto: "yday"), + 12: .same(proto: "anyTypeURLNotRegistered"), + 13: .same(proto: "AnyUnpackError"), + 14: .same(proto: "Api"), + 15: .same(proto: "appended"), + 16: .same(proto: "appendUIntHex"), + 17: .same(proto: "appendUnknown"), + 18: .same(proto: "areAllInitialized"), + 19: .same(proto: "Array"), + 20: .same(proto: "arrayDepth"), + 21: .same(proto: "arrayLiteral"), + 22: .same(proto: "arraySeparator"), + 23: .same(proto: "as"), + 24: .same(proto: "asciiOpenCurlyBracket"), + 25: .same(proto: "asciiZero"), + 26: .same(proto: "async"), + 27: .same(proto: "AsyncIterator"), + 28: .same(proto: "AsyncIteratorProtocol"), + 29: .same(proto: "AsyncMessageSequence"), + 30: .same(proto: "available"), + 31: .same(proto: "b"), + 32: .same(proto: "Base"), + 33: .same(proto: "base64Values"), + 34: .same(proto: "baseAddress"), + 35: .same(proto: "BaseType"), + 36: .same(proto: "begin"), + 37: .same(proto: "binary"), + 38: .same(proto: "BinaryDecoder"), + 39: .same(proto: "BinaryDecoding"), + 40: .same(proto: "BinaryDecodingError"), + 41: .same(proto: "BinaryDecodingOptions"), + 42: .same(proto: "BinaryDelimited"), + 43: .same(proto: "BinaryEncoder"), + 44: .same(proto: "BinaryEncoding"), + 45: .same(proto: "BinaryEncodingError"), + 46: .same(proto: "BinaryEncodingMessageSetSizeVisitor"), + 47: .same(proto: "BinaryEncodingMessageSetVisitor"), + 48: .same(proto: "BinaryEncodingOptions"), + 49: .same(proto: "BinaryEncodingSizeVisitor"), + 50: .same(proto: "BinaryEncodingVisitor"), + 51: .same(proto: "binaryOptions"), + 52: .same(proto: "binaryProtobufDelimitedMessages"), + 53: .same(proto: "BinaryStreamDecoding"), + 54: .same(proto: "binaryStreamDecodingError"), + 55: .same(proto: "bitPattern"), + 56: .same(proto: "body"), + 57: .same(proto: "Bool"), + 58: .same(proto: "booleanLiteral"), + 59: .same(proto: "BooleanLiteralType"), + 60: .same(proto: "boolValue"), + 61: .same(proto: "buffer"), + 62: .same(proto: "bytes"), + 63: .same(proto: "bytesInGroup"), + 64: .same(proto: "bytesNeeded"), + 65: .same(proto: "bytesRead"), + 66: .same(proto: "BytesValue"), + 67: .same(proto: "c"), + 68: .same(proto: "capitalizeNext"), + 69: .same(proto: "cardinality"), + 70: .same(proto: "CaseIterable"), + 71: .same(proto: "ccEnableArenas"), + 72: .same(proto: "ccGenericServices"), + 73: .same(proto: "Character"), + 74: .same(proto: "chars"), + 75: .same(proto: "chunk"), + 76: .same(proto: "class"), + 77: .same(proto: "clearAggregateValue"), + 78: .same(proto: "clearAllowAlias"), + 79: .same(proto: "clearBegin"), + 80: .same(proto: "clearCcEnableArenas"), + 81: .same(proto: "clearCcGenericServices"), + 82: .same(proto: "clearClientStreaming"), + 83: .same(proto: "clearCsharpNamespace"), + 84: .same(proto: "clearCtype"), + 85: .same(proto: "clearDebugRedact"), + 86: .same(proto: "clearDefaultValue"), + 87: .same(proto: "clearDeprecated"), + 88: .same(proto: "clearDeprecatedLegacyJsonFieldConflicts"), + 89: .same(proto: "clearDeprecationWarning"), + 90: .same(proto: "clearDoubleValue"), + 91: .same(proto: "clearEdition"), + 92: .same(proto: "clearEditionDeprecated"), + 93: .same(proto: "clearEditionIntroduced"), + 94: .same(proto: "clearEditionRemoved"), + 95: .same(proto: "clearEnd"), + 96: .same(proto: "clearEnumType"), + 97: .same(proto: "clearExtendee"), + 98: .same(proto: "clearExtensionValue"), + 99: .same(proto: "clearFeatures"), + 100: .same(proto: "clearFeatureSupport"), + 101: .same(proto: "clearFieldPresence"), + 102: .same(proto: "clearFixedFeatures"), + 103: .same(proto: "clearFullName"), + 104: .same(proto: "clearGoPackage"), + 105: .same(proto: "clearIdempotencyLevel"), + 106: .same(proto: "clearIdentifierValue"), + 107: .same(proto: "clearInputType"), + 108: .same(proto: "clearIsExtension"), + 109: .same(proto: "clearJavaGenerateEqualsAndHash"), + 110: .same(proto: "clearJavaGenericServices"), + 111: .same(proto: "clearJavaMultipleFiles"), + 112: .same(proto: "clearJavaOuterClassname"), + 113: .same(proto: "clearJavaPackage"), + 114: .same(proto: "clearJavaStringCheckUtf8"), + 115: .same(proto: "clearJsonFormat"), + 116: .same(proto: "clearJsonName"), + 117: .same(proto: "clearJstype"), + 118: .same(proto: "clearLabel"), + 119: .same(proto: "clearLazy"), + 120: .same(proto: "clearLeadingComments"), + 121: .same(proto: "clearMapEntry"), + 122: .same(proto: "clearMaximumEdition"), + 123: .same(proto: "clearMessageEncoding"), + 124: .same(proto: "clearMessageSetWireFormat"), + 125: .same(proto: "clearMinimumEdition"), + 126: .same(proto: "clearName"), + 127: .same(proto: "clearNamePart"), + 128: .same(proto: "clearNegativeIntValue"), + 129: .same(proto: "clearNoStandardDescriptorAccessor"), + 130: .same(proto: "clearNumber"), + 131: .same(proto: "clearObjcClassPrefix"), + 132: .same(proto: "clearOneofIndex"), + 133: .same(proto: "clearOptimizeFor"), + 134: .same(proto: "clearOptions"), + 135: .same(proto: "clearOutputType"), + 136: .same(proto: "clearOverridableFeatures"), + 137: .same(proto: "clearPackage"), + 138: .same(proto: "clearPacked"), + 139: .same(proto: "clearPhpClassPrefix"), + 140: .same(proto: "clearPhpMetadataNamespace"), + 141: .same(proto: "clearPhpNamespace"), + 142: .same(proto: "clearPositiveIntValue"), + 143: .same(proto: "clearProto3Optional"), + 144: .same(proto: "clearPyGenericServices"), + 145: .same(proto: "clearRepeated"), + 146: .same(proto: "clearRepeatedFieldEncoding"), + 147: .same(proto: "clearReserved"), + 148: .same(proto: "clearRetention"), + 149: .same(proto: "clearRubyPackage"), + 150: .same(proto: "clearSemantic"), + 151: .same(proto: "clearServerStreaming"), + 152: .same(proto: "clearSourceCodeInfo"), + 153: .same(proto: "clearSourceContext"), + 154: .same(proto: "clearSourceFile"), + 155: .same(proto: "clearStart"), + 156: .same(proto: "clearStringValue"), + 157: .same(proto: "clearSwiftPrefix"), + 158: .same(proto: "clearSyntax"), + 159: .same(proto: "clearTrailingComments"), + 160: .same(proto: "clearType"), + 161: .same(proto: "clearTypeName"), + 162: .same(proto: "clearUnverifiedLazy"), + 163: .same(proto: "clearUtf8Validation"), + 164: .same(proto: "clearValue"), + 165: .same(proto: "clearVerification"), + 166: .same(proto: "clearWeak"), + 167: .same(proto: "clientStreaming"), + 168: .same(proto: "code"), + 169: .same(proto: "codePoint"), + 170: .same(proto: "codeUnits"), + 171: .same(proto: "Collection"), + 172: .same(proto: "com"), + 173: .same(proto: "comma"), + 174: .same(proto: "consumedBytes"), + 175: .same(proto: "contentsOf"), + 176: .same(proto: "copy"), + 177: .same(proto: "count"), + 178: .same(proto: "countVarintsInBuffer"), + 179: .same(proto: "csharpNamespace"), + 180: .same(proto: "ctype"), + 181: .same(proto: "customCodable"), + 182: .same(proto: "CustomDebugStringConvertible"), + 183: .same(proto: "CustomStringConvertible"), + 184: .same(proto: "d"), + 185: .same(proto: "Data"), + 186: .same(proto: "dataResult"), + 187: .same(proto: "date"), + 188: .same(proto: "daySec"), + 189: .same(proto: "daysSinceEpoch"), + 190: .same(proto: "debugDescription"), + 191: .same(proto: "debugRedact"), + 192: .same(proto: "declaration"), + 193: .same(proto: "decoded"), + 194: .same(proto: "decodedFromJSONNull"), + 195: .same(proto: "decodeExtensionField"), + 196: .same(proto: "decodeExtensionFieldsAsMessageSet"), + 197: .same(proto: "decodeJSON"), + 198: .same(proto: "decodeMapField"), + 199: .same(proto: "decodeMessage"), + 200: .same(proto: "decoder"), + 201: .same(proto: "decodeRepeated"), + 202: .same(proto: "decodeRepeatedBoolField"), + 203: .same(proto: "decodeRepeatedBytesField"), + 204: .same(proto: "decodeRepeatedDoubleField"), + 205: .same(proto: "decodeRepeatedEnumField"), + 206: .same(proto: "decodeRepeatedFixed32Field"), + 207: .same(proto: "decodeRepeatedFixed64Field"), + 208: .same(proto: "decodeRepeatedFloatField"), + 209: .same(proto: "decodeRepeatedGroupField"), + 210: .same(proto: "decodeRepeatedInt32Field"), + 211: .same(proto: "decodeRepeatedInt64Field"), + 212: .same(proto: "decodeRepeatedMessageField"), + 213: .same(proto: "decodeRepeatedSFixed32Field"), + 214: .same(proto: "decodeRepeatedSFixed64Field"), + 215: .same(proto: "decodeRepeatedSInt32Field"), + 216: .same(proto: "decodeRepeatedSInt64Field"), + 217: .same(proto: "decodeRepeatedStringField"), + 218: .same(proto: "decodeRepeatedUInt32Field"), + 219: .same(proto: "decodeRepeatedUInt64Field"), + 220: .same(proto: "decodeSingular"), + 221: .same(proto: "decodeSingularBoolField"), + 222: .same(proto: "decodeSingularBytesField"), + 223: .same(proto: "decodeSingularDoubleField"), + 224: .same(proto: "decodeSingularEnumField"), + 225: .same(proto: "decodeSingularFixed32Field"), + 226: .same(proto: "decodeSingularFixed64Field"), + 227: .same(proto: "decodeSingularFloatField"), + 228: .same(proto: "decodeSingularGroupField"), + 229: .same(proto: "decodeSingularInt32Field"), + 230: .same(proto: "decodeSingularInt64Field"), + 231: .same(proto: "decodeSingularMessageField"), + 232: .same(proto: "decodeSingularSFixed32Field"), + 233: .same(proto: "decodeSingularSFixed64Field"), + 234: .same(proto: "decodeSingularSInt32Field"), + 235: .same(proto: "decodeSingularSInt64Field"), + 236: .same(proto: "decodeSingularStringField"), + 237: .same(proto: "decodeSingularUInt32Field"), + 238: .same(proto: "decodeSingularUInt64Field"), + 239: .same(proto: "decodeTextFormat"), + 240: .same(proto: "defaultAnyTypeURLPrefix"), + 241: .same(proto: "defaults"), + 242: .same(proto: "defaultValue"), + 243: .same(proto: "dependency"), + 244: .same(proto: "deprecated"), + 245: .same(proto: "deprecatedLegacyJsonFieldConflicts"), + 246: .same(proto: "deprecationWarning"), + 247: .same(proto: "description"), + 248: .same(proto: "DescriptorProto"), + 249: .same(proto: "Dictionary"), + 250: .same(proto: "dictionaryLiteral"), + 251: .same(proto: "digit"), + 252: .same(proto: "digit0"), + 253: .same(proto: "digit1"), + 254: .same(proto: "digitCount"), + 255: .same(proto: "digits"), + 256: .same(proto: "digitValue"), + 257: .same(proto: "discardableResult"), + 258: .same(proto: "discardUnknownFields"), + 259: .same(proto: "Double"), + 260: .same(proto: "doubleValue"), + 261: .same(proto: "Duration"), + 262: .same(proto: "E"), + 263: .same(proto: "edition"), + 264: .same(proto: "EditionDefault"), + 265: .same(proto: "editionDefaults"), + 266: .same(proto: "editionDeprecated"), + 267: .same(proto: "editionIntroduced"), + 268: .same(proto: "editionRemoved"), + 269: .same(proto: "Element"), + 270: .same(proto: "elements"), + 271: .same(proto: "emitExtensionFieldName"), + 272: .same(proto: "emitFieldName"), + 273: .same(proto: "emitFieldNumber"), + 274: .same(proto: "Empty"), + 275: .same(proto: "encodeAsBytes"), + 276: .same(proto: "encoded"), + 277: .same(proto: "encodedJSONString"), + 278: .same(proto: "encodedSize"), + 279: .same(proto: "encodeField"), + 280: .same(proto: "encoder"), + 281: .same(proto: "end"), + 282: .same(proto: "endArray"), + 283: .same(proto: "endMessageField"), + 284: .same(proto: "endObject"), + 285: .same(proto: "endRegularField"), + 286: .same(proto: "enum"), + 287: .same(proto: "EnumDescriptorProto"), + 288: .same(proto: "EnumOptions"), + 289: .same(proto: "EnumReservedRange"), + 290: .same(proto: "enumType"), + 291: .same(proto: "enumvalue"), + 292: .same(proto: "EnumValueDescriptorProto"), + 293: .same(proto: "EnumValueOptions"), + 294: .same(proto: "Equatable"), + 295: .same(proto: "Error"), + 296: .same(proto: "ExpressibleByArrayLiteral"), + 297: .same(proto: "ExpressibleByDictionaryLiteral"), + 298: .same(proto: "ext"), + 299: .same(proto: "extDecoder"), + 300: .same(proto: "extendedGraphemeClusterLiteral"), + 301: .same(proto: "ExtendedGraphemeClusterLiteralType"), + 302: .same(proto: "extendee"), + 303: .same(proto: "ExtensibleMessage"), + 304: .same(proto: "extension"), + 305: .same(proto: "ExtensionField"), + 306: .same(proto: "extensionFieldNumber"), + 307: .same(proto: "ExtensionFieldValueSet"), + 308: .same(proto: "ExtensionMap"), + 309: .same(proto: "extensionRange"), + 310: .same(proto: "ExtensionRangeOptions"), + 311: .same(proto: "extensions"), + 312: .same(proto: "extras"), + 313: .same(proto: "F"), + 314: .same(proto: "false"), + 315: .same(proto: "features"), + 316: .same(proto: "FeatureSet"), + 317: .same(proto: "FeatureSetDefaults"), + 318: .same(proto: "FeatureSetEditionDefault"), + 319: .same(proto: "featureSupport"), + 320: .same(proto: "field"), + 321: .same(proto: "fieldData"), + 322: .same(proto: "FieldDescriptorProto"), + 323: .same(proto: "FieldMask"), + 324: .same(proto: "fieldName"), + 325: .same(proto: "fieldNameCount"), + 326: .same(proto: "fieldNum"), + 327: .same(proto: "fieldNumber"), + 328: .same(proto: "fieldNumberForProto"), + 329: .same(proto: "FieldOptions"), + 330: .same(proto: "fieldPresence"), + 331: .same(proto: "fields"), + 332: .same(proto: "fieldSize"), + 333: .same(proto: "FieldTag"), + 334: .same(proto: "fieldType"), + 335: .same(proto: "file"), + 336: .same(proto: "FileDescriptorProto"), + 337: .same(proto: "FileDescriptorSet"), + 338: .same(proto: "fileName"), + 339: .same(proto: "FileOptions"), + 340: .same(proto: "filter"), + 341: .same(proto: "final"), + 342: .same(proto: "finiteOnly"), + 343: .same(proto: "first"), + 344: .same(proto: "firstItem"), + 345: .same(proto: "fixedFeatures"), + 346: .same(proto: "Float"), + 347: .same(proto: "floatLiteral"), + 348: .same(proto: "FloatLiteralType"), + 349: .same(proto: "FloatValue"), + 350: .same(proto: "forMessageName"), + 351: .same(proto: "formUnion"), + 352: .same(proto: "forReadingFrom"), + 353: .same(proto: "forTypeURL"), + 354: .same(proto: "ForwardParser"), + 355: .same(proto: "forWritingInto"), + 356: .same(proto: "from"), + 357: .same(proto: "fromAscii2"), + 358: .same(proto: "fromAscii4"), + 359: .same(proto: "fromByteOffset"), + 360: .same(proto: "fromHexDigit"), + 361: .same(proto: "fullName"), + 362: .same(proto: "func"), + 363: .same(proto: "function"), + 364: .same(proto: "G"), + 365: .same(proto: "GeneratedCodeInfo"), + 366: .same(proto: "get"), + 367: .same(proto: "getExtensionValue"), + 368: .same(proto: "googleapis"), + 369: .standard(proto: "Google_Protobuf_Any"), + 370: .standard(proto: "Google_Protobuf_Api"), + 371: .standard(proto: "Google_Protobuf_BoolValue"), + 372: .standard(proto: "Google_Protobuf_BytesValue"), + 373: .standard(proto: "Google_Protobuf_DescriptorProto"), + 374: .standard(proto: "Google_Protobuf_DoubleValue"), + 375: .standard(proto: "Google_Protobuf_Duration"), + 376: .standard(proto: "Google_Protobuf_Edition"), + 377: .standard(proto: "Google_Protobuf_Empty"), + 378: .standard(proto: "Google_Protobuf_Enum"), + 379: .standard(proto: "Google_Protobuf_EnumDescriptorProto"), + 380: .standard(proto: "Google_Protobuf_EnumOptions"), + 381: .standard(proto: "Google_Protobuf_EnumValue"), + 382: .standard(proto: "Google_Protobuf_EnumValueDescriptorProto"), + 383: .standard(proto: "Google_Protobuf_EnumValueOptions"), + 384: .standard(proto: "Google_Protobuf_ExtensionRangeOptions"), + 385: .standard(proto: "Google_Protobuf_FeatureSet"), + 386: .standard(proto: "Google_Protobuf_FeatureSetDefaults"), + 387: .standard(proto: "Google_Protobuf_Field"), + 388: .standard(proto: "Google_Protobuf_FieldDescriptorProto"), + 389: .standard(proto: "Google_Protobuf_FieldMask"), + 390: .standard(proto: "Google_Protobuf_FieldOptions"), + 391: .standard(proto: "Google_Protobuf_FileDescriptorProto"), + 392: .standard(proto: "Google_Protobuf_FileDescriptorSet"), + 393: .standard(proto: "Google_Protobuf_FileOptions"), + 394: .standard(proto: "Google_Protobuf_FloatValue"), + 395: .standard(proto: "Google_Protobuf_GeneratedCodeInfo"), + 396: .standard(proto: "Google_Protobuf_Int32Value"), + 397: .standard(proto: "Google_Protobuf_Int64Value"), + 398: .standard(proto: "Google_Protobuf_ListValue"), + 399: .standard(proto: "Google_Protobuf_MessageOptions"), + 400: .standard(proto: "Google_Protobuf_Method"), + 401: .standard(proto: "Google_Protobuf_MethodDescriptorProto"), + 402: .standard(proto: "Google_Protobuf_MethodOptions"), + 403: .standard(proto: "Google_Protobuf_Mixin"), + 404: .standard(proto: "Google_Protobuf_NullValue"), + 405: .standard(proto: "Google_Protobuf_OneofDescriptorProto"), + 406: .standard(proto: "Google_Protobuf_OneofOptions"), + 407: .standard(proto: "Google_Protobuf_Option"), + 408: .standard(proto: "Google_Protobuf_ServiceDescriptorProto"), + 409: .standard(proto: "Google_Protobuf_ServiceOptions"), + 410: .standard(proto: "Google_Protobuf_SourceCodeInfo"), + 411: .standard(proto: "Google_Protobuf_SourceContext"), + 412: .standard(proto: "Google_Protobuf_StringValue"), + 413: .standard(proto: "Google_Protobuf_Struct"), + 414: .standard(proto: "Google_Protobuf_Syntax"), + 415: .standard(proto: "Google_Protobuf_Timestamp"), + 416: .standard(proto: "Google_Protobuf_Type"), + 417: .standard(proto: "Google_Protobuf_UInt32Value"), + 418: .standard(proto: "Google_Protobuf_UInt64Value"), + 419: .standard(proto: "Google_Protobuf_UninterpretedOption"), + 420: .standard(proto: "Google_Protobuf_Value"), + 421: .same(proto: "goPackage"), + 422: .same(proto: "group"), + 423: .same(proto: "groupFieldNumberStack"), + 424: .same(proto: "groupSize"), + 425: .same(proto: "hadOneofValue"), + 426: .same(proto: "handleConflictingOneOf"), + 427: .same(proto: "hasAggregateValue"), + 428: .same(proto: "hasAllowAlias"), + 429: .same(proto: "hasBegin"), + 430: .same(proto: "hasCcEnableArenas"), + 431: .same(proto: "hasCcGenericServices"), + 432: .same(proto: "hasClientStreaming"), + 433: .same(proto: "hasCsharpNamespace"), + 434: .same(proto: "hasCtype"), + 435: .same(proto: "hasDebugRedact"), + 436: .same(proto: "hasDefaultValue"), + 437: .same(proto: "hasDeprecated"), + 438: .same(proto: "hasDeprecatedLegacyJsonFieldConflicts"), + 439: .same(proto: "hasDeprecationWarning"), + 440: .same(proto: "hasDoubleValue"), + 441: .same(proto: "hasEdition"), + 442: .same(proto: "hasEditionDeprecated"), + 443: .same(proto: "hasEditionIntroduced"), + 444: .same(proto: "hasEditionRemoved"), + 445: .same(proto: "hasEnd"), + 446: .same(proto: "hasEnumType"), + 447: .same(proto: "hasExtendee"), + 448: .same(proto: "hasExtensionValue"), + 449: .same(proto: "hasFeatures"), + 450: .same(proto: "hasFeatureSupport"), + 451: .same(proto: "hasFieldPresence"), + 452: .same(proto: "hasFixedFeatures"), + 453: .same(proto: "hasFullName"), + 454: .same(proto: "hasGoPackage"), + 455: .same(proto: "hash"), + 456: .same(proto: "Hashable"), + 457: .same(proto: "hasher"), + 458: .same(proto: "HashVisitor"), + 459: .same(proto: "hasIdempotencyLevel"), + 460: .same(proto: "hasIdentifierValue"), + 461: .same(proto: "hasInputType"), + 462: .same(proto: "hasIsExtension"), + 463: .same(proto: "hasJavaGenerateEqualsAndHash"), + 464: .same(proto: "hasJavaGenericServices"), + 465: .same(proto: "hasJavaMultipleFiles"), + 466: .same(proto: "hasJavaOuterClassname"), + 467: .same(proto: "hasJavaPackage"), + 468: .same(proto: "hasJavaStringCheckUtf8"), + 469: .same(proto: "hasJsonFormat"), + 470: .same(proto: "hasJsonName"), + 471: .same(proto: "hasJstype"), + 472: .same(proto: "hasLabel"), + 473: .same(proto: "hasLazy"), + 474: .same(proto: "hasLeadingComments"), + 475: .same(proto: "hasMapEntry"), + 476: .same(proto: "hasMaximumEdition"), + 477: .same(proto: "hasMessageEncoding"), + 478: .same(proto: "hasMessageSetWireFormat"), + 479: .same(proto: "hasMinimumEdition"), + 480: .same(proto: "hasName"), + 481: .same(proto: "hasNamePart"), + 482: .same(proto: "hasNegativeIntValue"), + 483: .same(proto: "hasNoStandardDescriptorAccessor"), + 484: .same(proto: "hasNumber"), + 485: .same(proto: "hasObjcClassPrefix"), + 486: .same(proto: "hasOneofIndex"), + 487: .same(proto: "hasOptimizeFor"), + 488: .same(proto: "hasOptions"), + 489: .same(proto: "hasOutputType"), + 490: .same(proto: "hasOverridableFeatures"), + 491: .same(proto: "hasPackage"), + 492: .same(proto: "hasPacked"), + 493: .same(proto: "hasPhpClassPrefix"), + 494: .same(proto: "hasPhpMetadataNamespace"), + 495: .same(proto: "hasPhpNamespace"), + 496: .same(proto: "hasPositiveIntValue"), + 497: .same(proto: "hasProto3Optional"), + 498: .same(proto: "hasPyGenericServices"), + 499: .same(proto: "hasRepeated"), + 500: .same(proto: "hasRepeatedFieldEncoding"), + 501: .same(proto: "hasReserved"), + 502: .same(proto: "hasRetention"), + 503: .same(proto: "hasRubyPackage"), + 504: .same(proto: "hasSemantic"), + 505: .same(proto: "hasServerStreaming"), + 506: .same(proto: "hasSourceCodeInfo"), + 507: .same(proto: "hasSourceContext"), + 508: .same(proto: "hasSourceFile"), + 509: .same(proto: "hasStart"), + 510: .same(proto: "hasStringValue"), + 511: .same(proto: "hasSwiftPrefix"), + 512: .same(proto: "hasSyntax"), + 513: .same(proto: "hasTrailingComments"), + 514: .same(proto: "hasType"), + 515: .same(proto: "hasTypeName"), + 516: .same(proto: "hasUnverifiedLazy"), + 517: .same(proto: "hasUtf8Validation"), + 518: .same(proto: "hasValue"), + 519: .same(proto: "hasVerification"), + 520: .same(proto: "hasWeak"), + 521: .same(proto: "hour"), + 522: .same(proto: "i"), + 523: .same(proto: "idempotencyLevel"), + 524: .same(proto: "identifierValue"), + 525: .same(proto: "if"), + 526: .same(proto: "ignoreUnknownExtensionFields"), + 527: .same(proto: "ignoreUnknownFields"), + 528: .same(proto: "index"), + 529: .same(proto: "init"), + 530: .same(proto: "inout"), + 531: .same(proto: "inputType"), + 532: .same(proto: "insert"), + 533: .same(proto: "Int"), + 534: .same(proto: "Int32"), + 535: .same(proto: "Int32Value"), + 536: .same(proto: "Int64"), + 537: .same(proto: "Int64Value"), + 538: .same(proto: "Int8"), + 539: .same(proto: "integerLiteral"), + 540: .same(proto: "IntegerLiteralType"), + 541: .same(proto: "intern"), + 542: .same(proto: "Internal"), + 543: .same(proto: "InternalState"), + 544: .same(proto: "into"), + 545: .same(proto: "ints"), + 546: .same(proto: "isA"), + 547: .same(proto: "isEqual"), + 548: .same(proto: "isEqualTo"), + 549: .same(proto: "isExtension"), + 550: .same(proto: "isInitialized"), + 551: .same(proto: "isNegative"), + 552: .same(proto: "itemTagsEncodedSize"), + 553: .same(proto: "iterator"), + 554: .same(proto: "javaGenerateEqualsAndHash"), + 555: .same(proto: "javaGenericServices"), + 556: .same(proto: "javaMultipleFiles"), + 557: .same(proto: "javaOuterClassname"), + 558: .same(proto: "javaPackage"), + 559: .same(proto: "javaStringCheckUtf8"), + 560: .same(proto: "JSONDecoder"), + 561: .same(proto: "JSONDecodingError"), + 562: .same(proto: "JSONDecodingOptions"), + 563: .same(proto: "jsonEncoder"), + 564: .same(proto: "JSONEncoding"), + 565: .same(proto: "JSONEncodingError"), + 566: .same(proto: "JSONEncodingOptions"), + 567: .same(proto: "JSONEncodingVisitor"), + 568: .same(proto: "jsonFormat"), + 569: .same(proto: "JSONMapEncodingVisitor"), + 570: .same(proto: "jsonName"), + 571: .same(proto: "jsonPath"), + 572: .same(proto: "jsonPaths"), + 573: .same(proto: "JSONScanner"), + 574: .same(proto: "jsonString"), + 575: .same(proto: "jsonText"), + 576: .same(proto: "jsonUTF8Bytes"), + 577: .same(proto: "jsonUTF8Data"), + 578: .same(proto: "jstype"), + 579: .same(proto: "k"), + 580: .same(proto: "kChunkSize"), + 581: .same(proto: "Key"), + 582: .same(proto: "keyField"), + 583: .same(proto: "keyFieldOpt"), + 584: .same(proto: "KeyType"), + 585: .same(proto: "kind"), + 586: .same(proto: "l"), + 587: .same(proto: "label"), + 588: .same(proto: "lazy"), + 589: .same(proto: "leadingComments"), + 590: .same(proto: "leadingDetachedComments"), + 591: .same(proto: "length"), + 592: .same(proto: "lessThan"), + 593: .same(proto: "let"), + 594: .same(proto: "lhs"), + 595: .same(proto: "line"), + 596: .same(proto: "list"), + 597: .same(proto: "listOfMessages"), + 598: .same(proto: "listValue"), + 599: .same(proto: "littleEndian"), + 600: .same(proto: "load"), + 601: .same(proto: "localHasher"), + 602: .same(proto: "location"), + 603: .same(proto: "M"), + 604: .same(proto: "major"), + 605: .same(proto: "makeAsyncIterator"), + 606: .same(proto: "makeIterator"), + 607: .same(proto: "malformedLength"), + 608: .same(proto: "mapEntry"), + 609: .same(proto: "MapKeyType"), + 610: .same(proto: "mapToMessages"), + 611: .same(proto: "MapValueType"), + 612: .same(proto: "mapVisitor"), + 613: .same(proto: "maximumEdition"), + 614: .same(proto: "mdayStart"), + 615: .same(proto: "merge"), + 616: .same(proto: "message"), + 617: .same(proto: "messageDepthLimit"), + 618: .same(proto: "messageEncoding"), + 619: .same(proto: "MessageExtension"), + 620: .same(proto: "MessageImplementationBase"), + 621: .same(proto: "MessageOptions"), + 622: .same(proto: "MessageSet"), + 623: .same(proto: "messageSetWireFormat"), + 624: .same(proto: "messageSize"), + 625: .same(proto: "messageType"), + 626: .same(proto: "Method"), + 627: .same(proto: "MethodDescriptorProto"), + 628: .same(proto: "MethodOptions"), + 629: .same(proto: "methods"), + 630: .same(proto: "min"), + 631: .same(proto: "minimumEdition"), + 632: .same(proto: "minor"), + 633: .same(proto: "Mixin"), + 634: .same(proto: "mixins"), + 635: .same(proto: "modifier"), + 636: .same(proto: "modify"), + 637: .same(proto: "month"), + 638: .same(proto: "msgExtension"), + 639: .same(proto: "mutating"), + 640: .same(proto: "n"), + 641: .same(proto: "name"), + 642: .same(proto: "NameDescription"), + 643: .same(proto: "NameMap"), + 644: .same(proto: "NamePart"), + 645: .same(proto: "names"), + 646: .same(proto: "nanos"), + 647: .same(proto: "negativeIntValue"), + 648: .same(proto: "nestedType"), + 649: .same(proto: "newL"), + 650: .same(proto: "newList"), + 651: .same(proto: "newValue"), + 652: .same(proto: "next"), + 653: .same(proto: "nextByte"), + 654: .same(proto: "nextFieldNumber"), + 655: .same(proto: "nextVarInt"), + 656: .same(proto: "nil"), + 657: .same(proto: "nilLiteral"), + 658: .same(proto: "noBytesAvailable"), + 659: .same(proto: "noStandardDescriptorAccessor"), + 660: .same(proto: "nullValue"), + 661: .same(proto: "number"), + 662: .same(proto: "numberValue"), + 663: .same(proto: "objcClassPrefix"), + 664: .same(proto: "of"), + 665: .same(proto: "oneofDecl"), + 666: .same(proto: "OneofDescriptorProto"), + 667: .same(proto: "oneofIndex"), + 668: .same(proto: "OneofOptions"), + 669: .same(proto: "oneofs"), + 670: .standard(proto: "OneOf_Kind"), + 671: .same(proto: "optimizeFor"), + 672: .same(proto: "OptimizeMode"), + 673: .same(proto: "Option"), + 674: .same(proto: "OptionalEnumExtensionField"), + 675: .same(proto: "OptionalExtensionField"), + 676: .same(proto: "OptionalGroupExtensionField"), + 677: .same(proto: "OptionalMessageExtensionField"), + 678: .same(proto: "OptionRetention"), + 679: .same(proto: "options"), + 680: .same(proto: "OptionTargetType"), + 681: .same(proto: "other"), + 682: .same(proto: "others"), + 683: .same(proto: "out"), + 684: .same(proto: "outputType"), + 685: .same(proto: "overridableFeatures"), + 686: .same(proto: "p"), + 687: .same(proto: "package"), + 688: .same(proto: "packed"), + 689: .same(proto: "PackedEnumExtensionField"), + 690: .same(proto: "PackedExtensionField"), + 691: .same(proto: "padding"), + 692: .same(proto: "parent"), + 693: .same(proto: "parse"), + 694: .same(proto: "path"), + 695: .same(proto: "paths"), + 696: .same(proto: "payload"), + 697: .same(proto: "payloadSize"), + 698: .same(proto: "phpClassPrefix"), + 699: .same(proto: "phpMetadataNamespace"), + 700: .same(proto: "phpNamespace"), + 701: .same(proto: "pos"), + 702: .same(proto: "positiveIntValue"), + 703: .same(proto: "prefix"), + 704: .same(proto: "preserveProtoFieldNames"), + 705: .same(proto: "preTraverse"), + 706: .same(proto: "printUnknownFields"), + 707: .same(proto: "proto2"), + 708: .same(proto: "proto3DefaultValue"), + 709: .same(proto: "proto3Optional"), + 710: .same(proto: "ProtobufAPIVersionCheck"), + 711: .standard(proto: "ProtobufAPIVersion_3"), + 712: .same(proto: "ProtobufBool"), + 713: .same(proto: "ProtobufBytes"), + 714: .same(proto: "ProtobufDouble"), + 715: .same(proto: "ProtobufEnumMap"), + 716: .same(proto: "protobufExtension"), + 717: .same(proto: "ProtobufFixed32"), + 718: .same(proto: "ProtobufFixed64"), + 719: .same(proto: "ProtobufFloat"), + 720: .same(proto: "ProtobufInt32"), + 721: .same(proto: "ProtobufInt64"), + 722: .same(proto: "ProtobufMap"), + 723: .same(proto: "ProtobufMessageMap"), + 724: .same(proto: "ProtobufSFixed32"), + 725: .same(proto: "ProtobufSFixed64"), + 726: .same(proto: "ProtobufSInt32"), + 727: .same(proto: "ProtobufSInt64"), + 728: .same(proto: "ProtobufString"), + 729: .same(proto: "ProtobufUInt32"), + 730: .same(proto: "ProtobufUInt64"), + 731: .standard(proto: "protobuf_extensionFieldValues"), + 732: .standard(proto: "protobuf_fieldNumber"), + 733: .standard(proto: "protobuf_generated_isEqualTo"), + 734: .standard(proto: "protobuf_nameMap"), + 735: .standard(proto: "protobuf_newField"), + 736: .standard(proto: "protobuf_package"), + 737: .same(proto: "protocol"), + 738: .same(proto: "protoFieldName"), + 739: .same(proto: "protoMessageName"), + 740: .same(proto: "ProtoNameProviding"), + 741: .same(proto: "protoPaths"), + 742: .same(proto: "public"), + 743: .same(proto: "publicDependency"), + 744: .same(proto: "putBoolValue"), + 745: .same(proto: "putBytesValue"), + 746: .same(proto: "putDoubleValue"), + 747: .same(proto: "putEnumValue"), + 748: .same(proto: "putFixedUInt32"), + 749: .same(proto: "putFixedUInt64"), + 750: .same(proto: "putFloatValue"), + 751: .same(proto: "putInt64"), + 752: .same(proto: "putStringValue"), + 753: .same(proto: "putUInt64"), + 754: .same(proto: "putUInt64Hex"), + 755: .same(proto: "putVarInt"), + 756: .same(proto: "putZigZagVarInt"), + 757: .same(proto: "pyGenericServices"), + 758: .same(proto: "R"), + 759: .same(proto: "rawChars"), + 760: .same(proto: "RawRepresentable"), + 761: .same(proto: "RawValue"), + 762: .same(proto: "read4HexDigits"), + 763: .same(proto: "readBytes"), + 764: .same(proto: "register"), + 765: .same(proto: "repeated"), + 766: .same(proto: "RepeatedEnumExtensionField"), + 767: .same(proto: "RepeatedExtensionField"), + 768: .same(proto: "repeatedFieldEncoding"), + 769: .same(proto: "RepeatedGroupExtensionField"), + 770: .same(proto: "RepeatedMessageExtensionField"), + 771: .same(proto: "repeating"), + 772: .same(proto: "requestStreaming"), + 773: .same(proto: "requestTypeURL"), + 774: .same(proto: "requiredSize"), + 775: .same(proto: "responseStreaming"), + 776: .same(proto: "responseTypeURL"), + 777: .same(proto: "result"), + 778: .same(proto: "retention"), + 779: .same(proto: "rethrows"), + 780: .same(proto: "return"), + 781: .same(proto: "ReturnType"), + 782: .same(proto: "revision"), + 783: .same(proto: "rhs"), + 784: .same(proto: "root"), + 785: .same(proto: "rubyPackage"), + 786: .same(proto: "s"), + 787: .same(proto: "sawBackslash"), + 788: .same(proto: "sawSection4Characters"), + 789: .same(proto: "sawSection5Characters"), + 790: .same(proto: "scan"), + 791: .same(proto: "scanner"), + 792: .same(proto: "seconds"), + 793: .same(proto: "self"), + 794: .same(proto: "semantic"), + 795: .same(proto: "Sendable"), + 796: .same(proto: "separator"), + 797: .same(proto: "serialize"), + 798: .same(proto: "serializedBytes"), + 799: .same(proto: "serializedData"), + 800: .same(proto: "serializedSize"), + 801: .same(proto: "serverStreaming"), + 802: .same(proto: "service"), + 803: .same(proto: "ServiceDescriptorProto"), + 804: .same(proto: "ServiceOptions"), + 805: .same(proto: "set"), + 806: .same(proto: "setExtensionValue"), + 807: .same(proto: "shift"), + 808: .same(proto: "SimpleExtensionMap"), + 809: .same(proto: "size"), + 810: .same(proto: "sizer"), + 811: .same(proto: "source"), + 812: .same(proto: "sourceCodeInfo"), + 813: .same(proto: "sourceContext"), + 814: .same(proto: "sourceEncoding"), + 815: .same(proto: "sourceFile"), + 816: .same(proto: "SourceLocation"), + 817: .same(proto: "span"), + 818: .same(proto: "split"), + 819: .same(proto: "start"), + 820: .same(proto: "startArray"), + 821: .same(proto: "startArrayObject"), + 822: .same(proto: "startField"), + 823: .same(proto: "startIndex"), + 824: .same(proto: "startMessageField"), + 825: .same(proto: "startObject"), + 826: .same(proto: "startRegularField"), + 827: .same(proto: "state"), + 828: .same(proto: "static"), + 829: .same(proto: "StaticString"), + 830: .same(proto: "storage"), + 831: .same(proto: "String"), + 832: .same(proto: "stringLiteral"), + 833: .same(proto: "StringLiteralType"), + 834: .same(proto: "stringResult"), + 835: .same(proto: "stringValue"), + 836: .same(proto: "struct"), + 837: .same(proto: "structValue"), + 838: .same(proto: "subDecoder"), + 839: .same(proto: "subscript"), + 840: .same(proto: "subVisitor"), + 841: .same(proto: "Swift"), + 842: .same(proto: "swiftPrefix"), + 843: .same(proto: "SwiftProtobufContiguousBytes"), + 844: .same(proto: "SwiftProtobufError"), + 845: .same(proto: "syntax"), + 846: .same(proto: "T"), + 847: .same(proto: "tag"), + 848: .same(proto: "targets"), + 849: .same(proto: "terminator"), + 850: .same(proto: "testDecoder"), + 851: .same(proto: "text"), + 852: .same(proto: "textDecoder"), + 853: .same(proto: "TextFormatDecoder"), + 854: .same(proto: "TextFormatDecodingError"), + 855: .same(proto: "TextFormatDecodingOptions"), + 856: .same(proto: "TextFormatEncodingOptions"), + 857: .same(proto: "TextFormatEncodingVisitor"), + 858: .same(proto: "textFormatString"), + 859: .same(proto: "throwOrIgnore"), + 860: .same(proto: "throws"), + 861: .same(proto: "timeInterval"), + 862: .same(proto: "timeIntervalSince1970"), + 863: .same(proto: "timeIntervalSinceReferenceDate"), + 864: .same(proto: "Timestamp"), + 865: .same(proto: "tooLarge"), + 866: .same(proto: "total"), + 867: .same(proto: "totalArrayDepth"), + 868: .same(proto: "totalSize"), + 869: .same(proto: "trailingComments"), + 870: .same(proto: "traverse"), + 871: .same(proto: "true"), + 872: .same(proto: "try"), + 873: .same(proto: "type"), + 874: .same(proto: "typealias"), + 875: .same(proto: "TypeEnum"), + 876: .same(proto: "typeName"), + 877: .same(proto: "typePrefix"), + 878: .same(proto: "typeStart"), + 879: .same(proto: "typeUnknown"), + 880: .same(proto: "typeURL"), + 881: .same(proto: "UInt32"), + 882: .same(proto: "UInt32Value"), + 883: .same(proto: "UInt64"), + 884: .same(proto: "UInt64Value"), + 885: .same(proto: "UInt8"), + 886: .same(proto: "unchecked"), + 887: .same(proto: "unicodeScalarLiteral"), + 888: .same(proto: "UnicodeScalarLiteralType"), + 889: .same(proto: "unicodeScalars"), + 890: .same(proto: "UnicodeScalarView"), + 891: .same(proto: "uninterpretedOption"), + 892: .same(proto: "union"), + 893: .same(proto: "uniqueStorage"), + 894: .same(proto: "unknown"), + 895: .same(proto: "unknownFields"), + 896: .same(proto: "UnknownStorage"), + 897: .same(proto: "unpackTo"), + 898: .same(proto: "unregisteredTypeURL"), + 899: .same(proto: "UnsafeBufferPointer"), + 900: .same(proto: "UnsafeMutablePointer"), + 901: .same(proto: "UnsafeMutableRawBufferPointer"), + 902: .same(proto: "UnsafeRawBufferPointer"), + 903: .same(proto: "UnsafeRawPointer"), + 904: .same(proto: "unverifiedLazy"), + 905: .same(proto: "updatedOptions"), + 906: .same(proto: "url"), + 907: .same(proto: "useDeterministicOrdering"), + 908: .same(proto: "utf8"), + 909: .same(proto: "utf8Ptr"), + 910: .same(proto: "utf8ToDouble"), + 911: .same(proto: "utf8Validation"), + 912: .same(proto: "UTF8View"), + 913: .same(proto: "v"), + 914: .same(proto: "value"), + 915: .same(proto: "valueField"), + 916: .same(proto: "values"), + 917: .same(proto: "ValueType"), + 918: .same(proto: "var"), + 919: .same(proto: "verification"), + 920: .same(proto: "VerificationState"), + 921: .same(proto: "Version"), + 922: .same(proto: "versionString"), + 923: .same(proto: "visitExtensionFields"), + 924: .same(proto: "visitExtensionFieldsAsMessageSet"), + 925: .same(proto: "visitMapField"), + 926: .same(proto: "visitor"), + 927: .same(proto: "visitPacked"), + 928: .same(proto: "visitPackedBoolField"), + 929: .same(proto: "visitPackedDoubleField"), + 930: .same(proto: "visitPackedEnumField"), + 931: .same(proto: "visitPackedFixed32Field"), + 932: .same(proto: "visitPackedFixed64Field"), + 933: .same(proto: "visitPackedFloatField"), + 934: .same(proto: "visitPackedInt32Field"), + 935: .same(proto: "visitPackedInt64Field"), + 936: .same(proto: "visitPackedSFixed32Field"), + 937: .same(proto: "visitPackedSFixed64Field"), + 938: .same(proto: "visitPackedSInt32Field"), + 939: .same(proto: "visitPackedSInt64Field"), + 940: .same(proto: "visitPackedUInt32Field"), + 941: .same(proto: "visitPackedUInt64Field"), + 942: .same(proto: "visitRepeated"), + 943: .same(proto: "visitRepeatedBoolField"), + 944: .same(proto: "visitRepeatedBytesField"), + 945: .same(proto: "visitRepeatedDoubleField"), + 946: .same(proto: "visitRepeatedEnumField"), + 947: .same(proto: "visitRepeatedFixed32Field"), + 948: .same(proto: "visitRepeatedFixed64Field"), + 949: .same(proto: "visitRepeatedFloatField"), + 950: .same(proto: "visitRepeatedGroupField"), + 951: .same(proto: "visitRepeatedInt32Field"), + 952: .same(proto: "visitRepeatedInt64Field"), + 953: .same(proto: "visitRepeatedMessageField"), + 954: .same(proto: "visitRepeatedSFixed32Field"), + 955: .same(proto: "visitRepeatedSFixed64Field"), + 956: .same(proto: "visitRepeatedSInt32Field"), + 957: .same(proto: "visitRepeatedSInt64Field"), + 958: .same(proto: "visitRepeatedStringField"), + 959: .same(proto: "visitRepeatedUInt32Field"), + 960: .same(proto: "visitRepeatedUInt64Field"), + 961: .same(proto: "visitSingular"), + 962: .same(proto: "visitSingularBoolField"), + 963: .same(proto: "visitSingularBytesField"), + 964: .same(proto: "visitSingularDoubleField"), + 965: .same(proto: "visitSingularEnumField"), + 966: .same(proto: "visitSingularFixed32Field"), + 967: .same(proto: "visitSingularFixed64Field"), + 968: .same(proto: "visitSingularFloatField"), + 969: .same(proto: "visitSingularGroupField"), + 970: .same(proto: "visitSingularInt32Field"), + 971: .same(proto: "visitSingularInt64Field"), + 972: .same(proto: "visitSingularMessageField"), + 973: .same(proto: "visitSingularSFixed32Field"), + 974: .same(proto: "visitSingularSFixed64Field"), + 975: .same(proto: "visitSingularSInt32Field"), + 976: .same(proto: "visitSingularSInt64Field"), + 977: .same(proto: "visitSingularStringField"), + 978: .same(proto: "visitSingularUInt32Field"), + 979: .same(proto: "visitSingularUInt64Field"), + 980: .same(proto: "visitUnknown"), + 981: .same(proto: "wasDecoded"), + 982: .same(proto: "weak"), + 983: .same(proto: "weakDependency"), + 984: .same(proto: "where"), + 985: .same(proto: "wireFormat"), + 986: .same(proto: "with"), + 987: .same(proto: "withUnsafeBytes"), + 988: .same(proto: "withUnsafeMutableBytes"), + 989: .same(proto: "work"), + 990: .same(proto: "Wrapped"), + 991: .same(proto: "WrappedType"), + 992: .same(proto: "wrappedValue"), + 993: .same(proto: "written"), + 994: .same(proto: "yday"), ] fileprivate class _StorageClass { @@ -5919,6 +6021,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _anyExtensionField: Int32 = 0 var _anyMessageExtension: Int32 = 0 var _anyMessageStorage: Int32 = 0 + var _anyTypeUrlnotRegistered: Int32 = 0 var _anyUnpackError: Int32 = 0 var _api: Int32 = 0 var _appended: Int32 = 0 @@ -5945,10 +6048,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _begin: Int32 = 0 var _binary: Int32 = 0 var _binaryDecoder: Int32 = 0 + var _binaryDecoding: Int32 = 0 var _binaryDecodingError: Int32 = 0 var _binaryDecodingOptions: Int32 = 0 var _binaryDelimited: Int32 = 0 var _binaryEncoder: Int32 = 0 + var _binaryEncoding: Int32 = 0 var _binaryEncodingError: Int32 = 0 var _binaryEncodingMessageSetSizeVisitor: Int32 = 0 var _binaryEncodingMessageSetVisitor: Int32 = 0 @@ -5957,6 +6062,8 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _binaryEncodingVisitor: Int32 = 0 var _binaryOptions: Int32 = 0 var _binaryProtobufDelimitedMessages: Int32 = 0 + var _binaryStreamDecoding: Int32 = 0 + var _binaryStreamDecodingError: Int32 = 0 var _bitPattern: Int32 = 0 var _body: Int32 = 0 var _bool: Int32 = 0 @@ -6070,6 +6177,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _clearVerification_p: Int32 = 0 var _clearWeak_p: Int32 = 0 var _clientStreaming: Int32 = 0 + var _code: Int32 = 0 var _codePoint: Int32 = 0 var _codeUnits: Int32 = 0 var _collection: Int32 = 0 @@ -6077,12 +6185,14 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _comma: Int32 = 0 var _consumedBytes: Int32 = 0 var _contentsOf: Int32 = 0 + var _copy: Int32 = 0 var _count: Int32 = 0 var _countVarintsInBuffer: Int32 = 0 var _csharpNamespace: Int32 = 0 var _ctype: Int32 = 0 var _customCodable: Int32 = 0 var _customDebugStringConvertible: Int32 = 0 + var _customStringConvertible: Int32 = 0 var _d: Int32 = 0 var _data: Int32 = 0 var _dataResult: Int32 = 0 @@ -6262,6 +6372,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _fromHexDigit: Int32 = 0 var _fullName: Int32 = 0 var _func: Int32 = 0 + var _function: Int32 = 0 var _g: Int32 = 0 var _generatedCodeInfo: Int32 = 0 var _get: Int32 = 0 @@ -6462,6 +6573,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _jsondecodingError: Int32 = 0 var _jsondecodingOptions: Int32 = 0 var _jsonEncoder: Int32 = 0 + var _jsonencoding: Int32 = 0 var _jsonencodingError: Int32 = 0 var _jsonencodingOptions: Int32 = 0 var _jsonencodingVisitor: Int32 = 0 @@ -6492,6 +6604,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _lessThan: Int32 = 0 var _let: Int32 = 0 var _lhs: Int32 = 0 + var _line: Int32 = 0 var _list: Int32 = 0 var _listOfMessages: Int32 = 0 var _listValue: Int32 = 0 @@ -6503,6 +6616,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _major: Int32 = 0 var _makeAsyncIterator: Int32 = 0 var _makeIterator: Int32 = 0 + var _malformedLength: Int32 = 0 var _mapEntry: Int32 = 0 var _mapKeyType: Int32 = 0 var _mapToMessages: Int32 = 0 @@ -6553,6 +6667,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _nextVarInt: Int32 = 0 var _nil: Int32 = 0 var _nilLiteral: Int32 = 0 + var _noBytesAvailable: Int32 = 0 var _noStandardDescriptorAccessor: Int32 = 0 var _nullValue: Int32 = 0 var _number: Int32 = 0 @@ -6710,6 +6825,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _sourceContext: Int32 = 0 var _sourceEncoding: Int32 = 0 var _sourceFile: Int32 = 0 + var _sourceLocation: Int32 = 0 var _span: Int32 = 0 var _split: Int32 = 0 var _start: Int32 = 0 @@ -6737,6 +6853,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _swift: Int32 = 0 var _swiftPrefix: Int32 = 0 var _swiftProtobufContiguousBytes: Int32 = 0 + var _swiftProtobufError: Int32 = 0 var _syntax: Int32 = 0 var _t: Int32 = 0 var _tag: Int32 = 0 @@ -6757,6 +6874,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _timeIntervalSince1970: Int32 = 0 var _timeIntervalSinceReferenceDate: Int32 = 0 var _timestamp: Int32 = 0 + var _tooLarge: Int32 = 0 var _total: Int32 = 0 var _totalArrayDepth: Int32 = 0 var _totalSize: Int32 = 0 @@ -6789,6 +6907,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _unknownFields_p: Int32 = 0 var _unknownStorage: Int32 = 0 var _unpackTo: Int32 = 0 + var _unregisteredTypeURL: Int32 = 0 var _unsafeBufferPointer: Int32 = 0 var _unsafeMutablePointer: Int32 = 0 var _unsafeMutableRawBufferPointer: Int32 = 0 @@ -6910,6 +7029,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _anyExtensionField = source._anyExtensionField _anyMessageExtension = source._anyMessageExtension _anyMessageStorage = source._anyMessageStorage + _anyTypeUrlnotRegistered = source._anyTypeUrlnotRegistered _anyUnpackError = source._anyUnpackError _api = source._api _appended = source._appended @@ -6936,10 +7056,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _begin = source._begin _binary = source._binary _binaryDecoder = source._binaryDecoder + _binaryDecoding = source._binaryDecoding _binaryDecodingError = source._binaryDecodingError _binaryDecodingOptions = source._binaryDecodingOptions _binaryDelimited = source._binaryDelimited _binaryEncoder = source._binaryEncoder + _binaryEncoding = source._binaryEncoding _binaryEncodingError = source._binaryEncodingError _binaryEncodingMessageSetSizeVisitor = source._binaryEncodingMessageSetSizeVisitor _binaryEncodingMessageSetVisitor = source._binaryEncodingMessageSetVisitor @@ -6948,6 +7070,8 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _binaryEncodingVisitor = source._binaryEncodingVisitor _binaryOptions = source._binaryOptions _binaryProtobufDelimitedMessages = source._binaryProtobufDelimitedMessages + _binaryStreamDecoding = source._binaryStreamDecoding + _binaryStreamDecodingError = source._binaryStreamDecodingError _bitPattern = source._bitPattern _body = source._body _bool = source._bool @@ -7061,6 +7185,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _clearVerification_p = source._clearVerification_p _clearWeak_p = source._clearWeak_p _clientStreaming = source._clientStreaming + _code = source._code _codePoint = source._codePoint _codeUnits = source._codeUnits _collection = source._collection @@ -7068,12 +7193,14 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _comma = source._comma _consumedBytes = source._consumedBytes _contentsOf = source._contentsOf + _copy = source._copy _count = source._count _countVarintsInBuffer = source._countVarintsInBuffer _csharpNamespace = source._csharpNamespace _ctype = source._ctype _customCodable = source._customCodable _customDebugStringConvertible = source._customDebugStringConvertible + _customStringConvertible = source._customStringConvertible _d = source._d _data = source._data _dataResult = source._dataResult @@ -7253,6 +7380,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _fromHexDigit = source._fromHexDigit _fullName = source._fullName _func = source._func + _function = source._function _g = source._g _generatedCodeInfo = source._generatedCodeInfo _get = source._get @@ -7453,6 +7581,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _jsondecodingError = source._jsondecodingError _jsondecodingOptions = source._jsondecodingOptions _jsonEncoder = source._jsonEncoder + _jsonencoding = source._jsonencoding _jsonencodingError = source._jsonencodingError _jsonencodingOptions = source._jsonencodingOptions _jsonencodingVisitor = source._jsonencodingVisitor @@ -7483,6 +7612,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _lessThan = source._lessThan _let = source._let _lhs = source._lhs + _line = source._line _list = source._list _listOfMessages = source._listOfMessages _listValue = source._listValue @@ -7494,6 +7624,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _major = source._major _makeAsyncIterator = source._makeAsyncIterator _makeIterator = source._makeIterator + _malformedLength = source._malformedLength _mapEntry = source._mapEntry _mapKeyType = source._mapKeyType _mapToMessages = source._mapToMessages @@ -7544,6 +7675,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _nextVarInt = source._nextVarInt _nil = source._nil _nilLiteral = source._nilLiteral + _noBytesAvailable = source._noBytesAvailable _noStandardDescriptorAccessor = source._noStandardDescriptorAccessor _nullValue = source._nullValue _number = source._number @@ -7701,6 +7833,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _sourceContext = source._sourceContext _sourceEncoding = source._sourceEncoding _sourceFile = source._sourceFile + _sourceLocation = source._sourceLocation _span = source._span _split = source._split _start = source._start @@ -7728,6 +7861,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _swift = source._swift _swiftPrefix = source._swiftPrefix _swiftProtobufContiguousBytes = source._swiftProtobufContiguousBytes + _swiftProtobufError = source._swiftProtobufError _syntax = source._syntax _t = source._t _tag = source._tag @@ -7748,6 +7882,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _timeIntervalSince1970 = source._timeIntervalSince1970 _timeIntervalSinceReferenceDate = source._timeIntervalSinceReferenceDate _timestamp = source._timestamp + _tooLarge = source._tooLarge _total = source._total _totalArrayDepth = source._totalArrayDepth _totalSize = source._totalSize @@ -7780,6 +7915,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _unknownFields_p = source._unknownFields_p _unknownStorage = source._unknownStorage _unpackTo = source._unpackTo + _unregisteredTypeURL = source._unregisteredTypeURL _unsafeBufferPointer = source._unsafeBufferPointer _unsafeMutablePointer = source._unsafeMutablePointer _unsafeMutableRawBufferPointer = source._unsafeMutableRawBufferPointer @@ -7905,972 +8041,989 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu case 9: try { try decoder.decodeSingularInt32Field(value: &_storage._anyExtensionField) }() case 10: try { try decoder.decodeSingularInt32Field(value: &_storage._anyMessageExtension) }() case 11: try { try decoder.decodeSingularInt32Field(value: &_storage._anyMessageStorage) }() - case 12: try { try decoder.decodeSingularInt32Field(value: &_storage._anyUnpackError) }() - case 13: try { try decoder.decodeSingularInt32Field(value: &_storage._api) }() - case 14: try { try decoder.decodeSingularInt32Field(value: &_storage._appended) }() - case 15: try { try decoder.decodeSingularInt32Field(value: &_storage._appendUintHex) }() - case 16: try { try decoder.decodeSingularInt32Field(value: &_storage._appendUnknown) }() - case 17: try { try decoder.decodeSingularInt32Field(value: &_storage._areAllInitialized) }() - case 18: try { try decoder.decodeSingularInt32Field(value: &_storage._array) }() - case 19: try { try decoder.decodeSingularInt32Field(value: &_storage._arrayDepth) }() - case 20: try { try decoder.decodeSingularInt32Field(value: &_storage._arrayLiteral) }() - case 21: try { try decoder.decodeSingularInt32Field(value: &_storage._arraySeparator) }() - case 22: try { try decoder.decodeSingularInt32Field(value: &_storage._as) }() - case 23: try { try decoder.decodeSingularInt32Field(value: &_storage._asciiOpenCurlyBracket) }() - case 24: try { try decoder.decodeSingularInt32Field(value: &_storage._asciiZero) }() - case 25: try { try decoder.decodeSingularInt32Field(value: &_storage._async) }() - case 26: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncIterator) }() - case 27: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncIteratorProtocol) }() - case 28: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncMessageSequence) }() - case 29: try { try decoder.decodeSingularInt32Field(value: &_storage._available) }() - case 30: try { try decoder.decodeSingularInt32Field(value: &_storage._b) }() - case 31: try { try decoder.decodeSingularInt32Field(value: &_storage._base) }() - case 32: try { try decoder.decodeSingularInt32Field(value: &_storage._base64Values) }() - case 33: try { try decoder.decodeSingularInt32Field(value: &_storage._baseAddress) }() - case 34: try { try decoder.decodeSingularInt32Field(value: &_storage._baseType) }() - case 35: try { try decoder.decodeSingularInt32Field(value: &_storage._begin) }() - case 36: try { try decoder.decodeSingularInt32Field(value: &_storage._binary) }() - case 37: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecoder) }() - case 38: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecodingError) }() - case 39: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecodingOptions) }() - case 40: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDelimited) }() - case 41: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncoder) }() - case 42: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingError) }() - case 43: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingMessageSetSizeVisitor) }() - case 44: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingMessageSetVisitor) }() - case 45: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingOptions) }() - case 46: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingSizeVisitor) }() - case 47: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingVisitor) }() - case 48: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryOptions) }() - case 49: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryProtobufDelimitedMessages) }() - case 50: try { try decoder.decodeSingularInt32Field(value: &_storage._bitPattern) }() - case 51: try { try decoder.decodeSingularInt32Field(value: &_storage._body) }() - case 52: try { try decoder.decodeSingularInt32Field(value: &_storage._bool) }() - case 53: try { try decoder.decodeSingularInt32Field(value: &_storage._booleanLiteral) }() - case 54: try { try decoder.decodeSingularInt32Field(value: &_storage._booleanLiteralType) }() - case 55: try { try decoder.decodeSingularInt32Field(value: &_storage._boolValue) }() - case 56: try { try decoder.decodeSingularInt32Field(value: &_storage._buffer) }() - case 57: try { try decoder.decodeSingularInt32Field(value: &_storage._bytes) }() - case 58: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesInGroup) }() - case 59: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesNeeded) }() - case 60: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesRead) }() - case 61: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesValue) }() - case 62: try { try decoder.decodeSingularInt32Field(value: &_storage._c) }() - case 63: try { try decoder.decodeSingularInt32Field(value: &_storage._capitalizeNext) }() - case 64: try { try decoder.decodeSingularInt32Field(value: &_storage._cardinality) }() - case 65: try { try decoder.decodeSingularInt32Field(value: &_storage._caseIterable) }() - case 66: try { try decoder.decodeSingularInt32Field(value: &_storage._ccEnableArenas) }() - case 67: try { try decoder.decodeSingularInt32Field(value: &_storage._ccGenericServices) }() - case 68: try { try decoder.decodeSingularInt32Field(value: &_storage._character) }() - case 69: try { try decoder.decodeSingularInt32Field(value: &_storage._chars) }() - case 70: try { try decoder.decodeSingularInt32Field(value: &_storage._chunk) }() - case 71: try { try decoder.decodeSingularInt32Field(value: &_storage._class) }() - case 72: try { try decoder.decodeSingularInt32Field(value: &_storage._clearAggregateValue_p) }() - case 73: try { try decoder.decodeSingularInt32Field(value: &_storage._clearAllowAlias_p) }() - case 74: try { try decoder.decodeSingularInt32Field(value: &_storage._clearBegin_p) }() - case 75: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCcEnableArenas_p) }() - case 76: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCcGenericServices_p) }() - case 77: try { try decoder.decodeSingularInt32Field(value: &_storage._clearClientStreaming_p) }() - case 78: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCsharpNamespace_p) }() - case 79: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCtype_p) }() - case 80: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDebugRedact_p) }() - case 81: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDefaultValue_p) }() - case 82: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecated_p) }() - case 83: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecatedLegacyJsonFieldConflicts_p) }() - case 84: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecationWarning_p) }() - case 85: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDoubleValue_p) }() - case 86: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEdition_p) }() - case 87: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionDeprecated_p) }() - case 88: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionIntroduced_p) }() - case 89: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionRemoved_p) }() - case 90: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEnd_p) }() - case 91: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEnumType_p) }() - case 92: try { try decoder.decodeSingularInt32Field(value: &_storage._clearExtendee_p) }() - case 93: try { try decoder.decodeSingularInt32Field(value: &_storage._clearExtensionValue_p) }() - case 94: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFeatures_p) }() - case 95: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFeatureSupport_p) }() - case 96: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFieldPresence_p) }() - case 97: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFixedFeatures_p) }() - case 98: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFullName_p) }() - case 99: try { try decoder.decodeSingularInt32Field(value: &_storage._clearGoPackage_p) }() - case 100: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIdempotencyLevel_p) }() - case 101: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIdentifierValue_p) }() - case 102: try { try decoder.decodeSingularInt32Field(value: &_storage._clearInputType_p) }() - case 103: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIsExtension_p) }() - case 104: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaGenerateEqualsAndHash_p) }() - case 105: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaGenericServices_p) }() - case 106: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaMultipleFiles_p) }() - case 107: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaOuterClassname_p) }() - case 108: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaPackage_p) }() - case 109: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaStringCheckUtf8_p) }() - case 110: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJsonFormat_p) }() - case 111: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJsonName_p) }() - case 112: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJstype_p) }() - case 113: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLabel_p) }() - case 114: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLazy_p) }() - case 115: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLeadingComments_p) }() - case 116: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMapEntry_p) }() - case 117: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMaximumEdition_p) }() - case 118: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMessageEncoding_p) }() - case 119: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMessageSetWireFormat_p) }() - case 120: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMinimumEdition_p) }() - case 121: try { try decoder.decodeSingularInt32Field(value: &_storage._clearName_p) }() - case 122: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNamePart_p) }() - case 123: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNegativeIntValue_p) }() - case 124: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNoStandardDescriptorAccessor_p) }() - case 125: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNumber_p) }() - case 126: try { try decoder.decodeSingularInt32Field(value: &_storage._clearObjcClassPrefix_p) }() - case 127: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOneofIndex_p) }() - case 128: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOptimizeFor_p) }() - case 129: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOptions_p) }() - case 130: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOutputType_p) }() - case 131: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOverridableFeatures_p) }() - case 132: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPackage_p) }() - case 133: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPacked_p) }() - case 134: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpClassPrefix_p) }() - case 135: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpMetadataNamespace_p) }() - case 136: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpNamespace_p) }() - case 137: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPositiveIntValue_p) }() - case 138: try { try decoder.decodeSingularInt32Field(value: &_storage._clearProto3Optional_p) }() - case 139: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPyGenericServices_p) }() - case 140: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRepeated_p) }() - case 141: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRepeatedFieldEncoding_p) }() - case 142: try { try decoder.decodeSingularInt32Field(value: &_storage._clearReserved_p) }() - case 143: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRetention_p) }() - case 144: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRubyPackage_p) }() - case 145: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSemantic_p) }() - case 146: try { try decoder.decodeSingularInt32Field(value: &_storage._clearServerStreaming_p) }() - case 147: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceCodeInfo_p) }() - case 148: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceContext_p) }() - case 149: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceFile_p) }() - case 150: try { try decoder.decodeSingularInt32Field(value: &_storage._clearStart_p) }() - case 151: try { try decoder.decodeSingularInt32Field(value: &_storage._clearStringValue_p) }() - case 152: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSwiftPrefix_p) }() - case 153: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSyntax_p) }() - case 154: try { try decoder.decodeSingularInt32Field(value: &_storage._clearTrailingComments_p) }() - case 155: try { try decoder.decodeSingularInt32Field(value: &_storage._clearType_p) }() - case 156: try { try decoder.decodeSingularInt32Field(value: &_storage._clearTypeName_p) }() - case 157: try { try decoder.decodeSingularInt32Field(value: &_storage._clearUnverifiedLazy_p) }() - case 158: try { try decoder.decodeSingularInt32Field(value: &_storage._clearUtf8Validation_p) }() - case 159: try { try decoder.decodeSingularInt32Field(value: &_storage._clearValue_p) }() - case 160: try { try decoder.decodeSingularInt32Field(value: &_storage._clearVerification_p) }() - case 161: try { try decoder.decodeSingularInt32Field(value: &_storage._clearWeak_p) }() - case 162: try { try decoder.decodeSingularInt32Field(value: &_storage._clientStreaming) }() - case 163: try { try decoder.decodeSingularInt32Field(value: &_storage._codePoint) }() - case 164: try { try decoder.decodeSingularInt32Field(value: &_storage._codeUnits) }() - case 165: try { try decoder.decodeSingularInt32Field(value: &_storage._collection) }() - case 166: try { try decoder.decodeSingularInt32Field(value: &_storage._com) }() - case 167: try { try decoder.decodeSingularInt32Field(value: &_storage._comma) }() - case 168: try { try decoder.decodeSingularInt32Field(value: &_storage._consumedBytes) }() - case 169: try { try decoder.decodeSingularInt32Field(value: &_storage._contentsOf) }() - case 170: try { try decoder.decodeSingularInt32Field(value: &_storage._count) }() - case 171: try { try decoder.decodeSingularInt32Field(value: &_storage._countVarintsInBuffer) }() - case 172: try { try decoder.decodeSingularInt32Field(value: &_storage._csharpNamespace) }() - case 173: try { try decoder.decodeSingularInt32Field(value: &_storage._ctype) }() - case 174: try { try decoder.decodeSingularInt32Field(value: &_storage._customCodable) }() - case 175: try { try decoder.decodeSingularInt32Field(value: &_storage._customDebugStringConvertible) }() - case 176: try { try decoder.decodeSingularInt32Field(value: &_storage._d) }() - case 177: try { try decoder.decodeSingularInt32Field(value: &_storage._data) }() - case 178: try { try decoder.decodeSingularInt32Field(value: &_storage._dataResult) }() - case 179: try { try decoder.decodeSingularInt32Field(value: &_storage._date) }() - case 180: try { try decoder.decodeSingularInt32Field(value: &_storage._daySec) }() - case 181: try { try decoder.decodeSingularInt32Field(value: &_storage._daysSinceEpoch) }() - case 182: try { try decoder.decodeSingularInt32Field(value: &_storage._debugDescription_p) }() - case 183: try { try decoder.decodeSingularInt32Field(value: &_storage._debugRedact) }() - case 184: try { try decoder.decodeSingularInt32Field(value: &_storage._declaration) }() - case 185: try { try decoder.decodeSingularInt32Field(value: &_storage._decoded) }() - case 186: try { try decoder.decodeSingularInt32Field(value: &_storage._decodedFromJsonnull) }() - case 187: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeExtensionField) }() - case 188: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeExtensionFieldsAsMessageSet) }() - case 189: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeJson) }() - case 190: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeMapField) }() - case 191: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeMessage) }() - case 192: try { try decoder.decodeSingularInt32Field(value: &_storage._decoder) }() - case 193: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeated) }() - case 194: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedBoolField) }() - case 195: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedBytesField) }() - case 196: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedDoubleField) }() - case 197: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedEnumField) }() - case 198: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFixed32Field) }() - case 199: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFixed64Field) }() - case 200: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFloatField) }() - case 201: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedGroupField) }() - case 202: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedInt32Field) }() - case 203: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedInt64Field) }() - case 204: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedMessageField) }() - case 205: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSfixed32Field) }() - case 206: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSfixed64Field) }() - case 207: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSint32Field) }() - case 208: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSint64Field) }() - case 209: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedStringField) }() - case 210: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedUint32Field) }() - case 211: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedUint64Field) }() - case 212: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingular) }() - case 213: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularBoolField) }() - case 214: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularBytesField) }() - case 215: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularDoubleField) }() - case 216: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularEnumField) }() - case 217: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFixed32Field) }() - case 218: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFixed64Field) }() - case 219: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFloatField) }() - case 220: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularGroupField) }() - case 221: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularInt32Field) }() - case 222: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularInt64Field) }() - case 223: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularMessageField) }() - case 224: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSfixed32Field) }() - case 225: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSfixed64Field) }() - case 226: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSint32Field) }() - case 227: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSint64Field) }() - case 228: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularStringField) }() - case 229: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularUint32Field) }() - case 230: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularUint64Field) }() - case 231: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeTextFormat) }() - case 232: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultAnyTypeUrlprefix) }() - case 233: try { try decoder.decodeSingularInt32Field(value: &_storage._defaults) }() - case 234: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultValue) }() - case 235: try { try decoder.decodeSingularInt32Field(value: &_storage._dependency) }() - case 236: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecated) }() - case 237: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecatedLegacyJsonFieldConflicts) }() - case 238: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecationWarning) }() - case 239: try { try decoder.decodeSingularInt32Field(value: &_storage._description_p) }() - case 240: try { try decoder.decodeSingularInt32Field(value: &_storage._descriptorProto) }() - case 241: try { try decoder.decodeSingularInt32Field(value: &_storage._dictionary) }() - case 242: try { try decoder.decodeSingularInt32Field(value: &_storage._dictionaryLiteral) }() - case 243: try { try decoder.decodeSingularInt32Field(value: &_storage._digit) }() - case 244: try { try decoder.decodeSingularInt32Field(value: &_storage._digit0) }() - case 245: try { try decoder.decodeSingularInt32Field(value: &_storage._digit1) }() - case 246: try { try decoder.decodeSingularInt32Field(value: &_storage._digitCount) }() - case 247: try { try decoder.decodeSingularInt32Field(value: &_storage._digits) }() - case 248: try { try decoder.decodeSingularInt32Field(value: &_storage._digitValue) }() - case 249: try { try decoder.decodeSingularInt32Field(value: &_storage._discardableResult) }() - case 250: try { try decoder.decodeSingularInt32Field(value: &_storage._discardUnknownFields) }() - case 251: try { try decoder.decodeSingularInt32Field(value: &_storage._double) }() - case 252: try { try decoder.decodeSingularInt32Field(value: &_storage._doubleValue) }() - case 253: try { try decoder.decodeSingularInt32Field(value: &_storage._duration) }() - case 254: try { try decoder.decodeSingularInt32Field(value: &_storage._e) }() - case 255: try { try decoder.decodeSingularInt32Field(value: &_storage._edition) }() - case 256: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDefault) }() - case 257: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDefaults) }() - case 258: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDeprecated) }() - case 259: try { try decoder.decodeSingularInt32Field(value: &_storage._editionIntroduced) }() - case 260: try { try decoder.decodeSingularInt32Field(value: &_storage._editionRemoved) }() - case 261: try { try decoder.decodeSingularInt32Field(value: &_storage._element) }() - case 262: try { try decoder.decodeSingularInt32Field(value: &_storage._elements) }() - case 263: try { try decoder.decodeSingularInt32Field(value: &_storage._emitExtensionFieldName) }() - case 264: try { try decoder.decodeSingularInt32Field(value: &_storage._emitFieldName) }() - case 265: try { try decoder.decodeSingularInt32Field(value: &_storage._emitFieldNumber) }() - case 266: try { try decoder.decodeSingularInt32Field(value: &_storage._empty) }() - case 267: try { try decoder.decodeSingularInt32Field(value: &_storage._encodeAsBytes) }() - case 268: try { try decoder.decodeSingularInt32Field(value: &_storage._encoded) }() - case 269: try { try decoder.decodeSingularInt32Field(value: &_storage._encodedJsonstring) }() - case 270: try { try decoder.decodeSingularInt32Field(value: &_storage._encodedSize) }() - case 271: try { try decoder.decodeSingularInt32Field(value: &_storage._encodeField) }() - case 272: try { try decoder.decodeSingularInt32Field(value: &_storage._encoder) }() - case 273: try { try decoder.decodeSingularInt32Field(value: &_storage._end) }() - case 274: try { try decoder.decodeSingularInt32Field(value: &_storage._endArray) }() - case 275: try { try decoder.decodeSingularInt32Field(value: &_storage._endMessageField) }() - case 276: try { try decoder.decodeSingularInt32Field(value: &_storage._endObject) }() - case 277: try { try decoder.decodeSingularInt32Field(value: &_storage._endRegularField) }() - case 278: try { try decoder.decodeSingularInt32Field(value: &_storage._enum) }() - case 279: try { try decoder.decodeSingularInt32Field(value: &_storage._enumDescriptorProto) }() - case 280: try { try decoder.decodeSingularInt32Field(value: &_storage._enumOptions) }() - case 281: try { try decoder.decodeSingularInt32Field(value: &_storage._enumReservedRange) }() - case 282: try { try decoder.decodeSingularInt32Field(value: &_storage._enumType) }() - case 283: try { try decoder.decodeSingularInt32Field(value: &_storage._enumvalue) }() - case 284: try { try decoder.decodeSingularInt32Field(value: &_storage._enumValueDescriptorProto) }() - case 285: try { try decoder.decodeSingularInt32Field(value: &_storage._enumValueOptions) }() - case 286: try { try decoder.decodeSingularInt32Field(value: &_storage._equatable) }() - case 287: try { try decoder.decodeSingularInt32Field(value: &_storage._error) }() - case 288: try { try decoder.decodeSingularInt32Field(value: &_storage._expressibleByArrayLiteral) }() - case 289: try { try decoder.decodeSingularInt32Field(value: &_storage._expressibleByDictionaryLiteral) }() - case 290: try { try decoder.decodeSingularInt32Field(value: &_storage._ext) }() - case 291: try { try decoder.decodeSingularInt32Field(value: &_storage._extDecoder) }() - case 292: try { try decoder.decodeSingularInt32Field(value: &_storage._extendedGraphemeClusterLiteral) }() - case 293: try { try decoder.decodeSingularInt32Field(value: &_storage._extendedGraphemeClusterLiteralType) }() - case 294: try { try decoder.decodeSingularInt32Field(value: &_storage._extendee) }() - case 295: try { try decoder.decodeSingularInt32Field(value: &_storage._extensibleMessage) }() - case 296: try { try decoder.decodeSingularInt32Field(value: &_storage._extension) }() - case 297: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionField) }() - case 298: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionFieldNumber) }() - case 299: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionFieldValueSet) }() - case 300: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionMap) }() - case 301: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionRange) }() - case 302: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionRangeOptions) }() - case 303: try { try decoder.decodeSingularInt32Field(value: &_storage._extensions) }() - case 304: try { try decoder.decodeSingularInt32Field(value: &_storage._extras) }() - case 305: try { try decoder.decodeSingularInt32Field(value: &_storage._f) }() - case 306: try { try decoder.decodeSingularInt32Field(value: &_storage._false) }() - case 307: try { try decoder.decodeSingularInt32Field(value: &_storage._features) }() - case 308: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSet) }() - case 309: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSetDefaults) }() - case 310: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSetEditionDefault) }() - case 311: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSupport) }() - case 312: try { try decoder.decodeSingularInt32Field(value: &_storage._field) }() - case 313: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldData) }() - case 314: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldDescriptorProto) }() - case 315: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldMask) }() - case 316: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldName) }() - case 317: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNameCount) }() - case 318: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNum) }() - case 319: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNumber) }() - case 320: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNumberForProto) }() - case 321: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldOptions) }() - case 322: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldPresence) }() - case 323: try { try decoder.decodeSingularInt32Field(value: &_storage._fields) }() - case 324: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldSize) }() - case 325: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldTag) }() - case 326: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldType) }() - case 327: try { try decoder.decodeSingularInt32Field(value: &_storage._file) }() - case 328: try { try decoder.decodeSingularInt32Field(value: &_storage._fileDescriptorProto) }() - case 329: try { try decoder.decodeSingularInt32Field(value: &_storage._fileDescriptorSet) }() - case 330: try { try decoder.decodeSingularInt32Field(value: &_storage._fileName) }() - case 331: try { try decoder.decodeSingularInt32Field(value: &_storage._fileOptions) }() - case 332: try { try decoder.decodeSingularInt32Field(value: &_storage._filter) }() - case 333: try { try decoder.decodeSingularInt32Field(value: &_storage._final) }() - case 334: try { try decoder.decodeSingularInt32Field(value: &_storage._finiteOnly) }() - case 335: try { try decoder.decodeSingularInt32Field(value: &_storage._first) }() - case 336: try { try decoder.decodeSingularInt32Field(value: &_storage._firstItem) }() - case 337: try { try decoder.decodeSingularInt32Field(value: &_storage._fixedFeatures) }() - case 338: try { try decoder.decodeSingularInt32Field(value: &_storage._float) }() - case 339: try { try decoder.decodeSingularInt32Field(value: &_storage._floatLiteral) }() - case 340: try { try decoder.decodeSingularInt32Field(value: &_storage._floatLiteralType) }() - case 341: try { try decoder.decodeSingularInt32Field(value: &_storage._floatValue) }() - case 342: try { try decoder.decodeSingularInt32Field(value: &_storage._forMessageName) }() - case 343: try { try decoder.decodeSingularInt32Field(value: &_storage._formUnion) }() - case 344: try { try decoder.decodeSingularInt32Field(value: &_storage._forReadingFrom) }() - case 345: try { try decoder.decodeSingularInt32Field(value: &_storage._forTypeURL) }() - case 346: try { try decoder.decodeSingularInt32Field(value: &_storage._forwardParser) }() - case 347: try { try decoder.decodeSingularInt32Field(value: &_storage._forWritingInto) }() - case 348: try { try decoder.decodeSingularInt32Field(value: &_storage._from) }() - case 349: try { try decoder.decodeSingularInt32Field(value: &_storage._fromAscii2) }() - case 350: try { try decoder.decodeSingularInt32Field(value: &_storage._fromAscii4) }() - case 351: try { try decoder.decodeSingularInt32Field(value: &_storage._fromByteOffset) }() - case 352: try { try decoder.decodeSingularInt32Field(value: &_storage._fromHexDigit) }() - case 353: try { try decoder.decodeSingularInt32Field(value: &_storage._fullName) }() - case 354: try { try decoder.decodeSingularInt32Field(value: &_storage._func) }() - case 355: try { try decoder.decodeSingularInt32Field(value: &_storage._g) }() - case 356: try { try decoder.decodeSingularInt32Field(value: &_storage._generatedCodeInfo) }() - case 357: try { try decoder.decodeSingularInt32Field(value: &_storage._get) }() - case 358: try { try decoder.decodeSingularInt32Field(value: &_storage._getExtensionValue) }() - case 359: try { try decoder.decodeSingularInt32Field(value: &_storage._googleapis) }() - case 360: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufAny) }() - case 361: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufApi) }() - case 362: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufBoolValue) }() - case 363: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufBytesValue) }() - case 364: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDescriptorProto) }() - case 365: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDoubleValue) }() - case 366: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDuration) }() - case 367: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEdition) }() - case 368: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEmpty) }() - case 369: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnum) }() - case 370: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumDescriptorProto) }() - case 371: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumOptions) }() - case 372: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValue) }() - case 373: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValueDescriptorProto) }() - case 374: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValueOptions) }() - case 375: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufExtensionRangeOptions) }() - case 376: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFeatureSet) }() - case 377: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFeatureSetDefaults) }() - case 378: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufField) }() - case 379: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldDescriptorProto) }() - case 380: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldMask) }() - case 381: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldOptions) }() - case 382: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileDescriptorProto) }() - case 383: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileDescriptorSet) }() - case 384: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileOptions) }() - case 385: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFloatValue) }() - case 386: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufGeneratedCodeInfo) }() - case 387: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufInt32Value) }() - case 388: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufInt64Value) }() - case 389: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufListValue) }() - case 390: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMessageOptions) }() - case 391: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethod) }() - case 392: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethodDescriptorProto) }() - case 393: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethodOptions) }() - case 394: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMixin) }() - case 395: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufNullValue) }() - case 396: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOneofDescriptorProto) }() - case 397: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOneofOptions) }() - case 398: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOption) }() - case 399: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufServiceDescriptorProto) }() - case 400: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufServiceOptions) }() - case 401: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSourceCodeInfo) }() - case 402: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSourceContext) }() - case 403: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufStringValue) }() - case 404: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufStruct) }() - case 405: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSyntax) }() - case 406: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufTimestamp) }() - case 407: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufType) }() - case 408: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUint32Value) }() - case 409: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUint64Value) }() - case 410: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUninterpretedOption) }() - case 411: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufValue) }() - case 412: try { try decoder.decodeSingularInt32Field(value: &_storage._goPackage) }() - case 413: try { try decoder.decodeSingularInt32Field(value: &_storage._group) }() - case 414: try { try decoder.decodeSingularInt32Field(value: &_storage._groupFieldNumberStack) }() - case 415: try { try decoder.decodeSingularInt32Field(value: &_storage._groupSize) }() - case 416: try { try decoder.decodeSingularInt32Field(value: &_storage._hadOneofValue) }() - case 417: try { try decoder.decodeSingularInt32Field(value: &_storage._handleConflictingOneOf) }() - case 418: try { try decoder.decodeSingularInt32Field(value: &_storage._hasAggregateValue_p) }() - case 419: try { try decoder.decodeSingularInt32Field(value: &_storage._hasAllowAlias_p) }() - case 420: try { try decoder.decodeSingularInt32Field(value: &_storage._hasBegin_p) }() - case 421: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCcEnableArenas_p) }() - case 422: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCcGenericServices_p) }() - case 423: try { try decoder.decodeSingularInt32Field(value: &_storage._hasClientStreaming_p) }() - case 424: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCsharpNamespace_p) }() - case 425: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCtype_p) }() - case 426: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDebugRedact_p) }() - case 427: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDefaultValue_p) }() - case 428: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecated_p) }() - case 429: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecatedLegacyJsonFieldConflicts_p) }() - case 430: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecationWarning_p) }() - case 431: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDoubleValue_p) }() - case 432: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEdition_p) }() - case 433: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionDeprecated_p) }() - case 434: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionIntroduced_p) }() - case 435: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionRemoved_p) }() - case 436: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEnd_p) }() - case 437: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEnumType_p) }() - case 438: try { try decoder.decodeSingularInt32Field(value: &_storage._hasExtendee_p) }() - case 439: try { try decoder.decodeSingularInt32Field(value: &_storage._hasExtensionValue_p) }() - case 440: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFeatures_p) }() - case 441: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFeatureSupport_p) }() - case 442: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFieldPresence_p) }() - case 443: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFixedFeatures_p) }() - case 444: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFullName_p) }() - case 445: try { try decoder.decodeSingularInt32Field(value: &_storage._hasGoPackage_p) }() - case 446: try { try decoder.decodeSingularInt32Field(value: &_storage._hash) }() - case 447: try { try decoder.decodeSingularInt32Field(value: &_storage._hashable) }() - case 448: try { try decoder.decodeSingularInt32Field(value: &_storage._hasher) }() - case 449: try { try decoder.decodeSingularInt32Field(value: &_storage._hashVisitor) }() - case 450: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIdempotencyLevel_p) }() - case 451: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIdentifierValue_p) }() - case 452: try { try decoder.decodeSingularInt32Field(value: &_storage._hasInputType_p) }() - case 453: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIsExtension_p) }() - case 454: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaGenerateEqualsAndHash_p) }() - case 455: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaGenericServices_p) }() - case 456: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaMultipleFiles_p) }() - case 457: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaOuterClassname_p) }() - case 458: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaPackage_p) }() - case 459: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaStringCheckUtf8_p) }() - case 460: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJsonFormat_p) }() - case 461: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJsonName_p) }() - case 462: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJstype_p) }() - case 463: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLabel_p) }() - case 464: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLazy_p) }() - case 465: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLeadingComments_p) }() - case 466: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMapEntry_p) }() - case 467: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMaximumEdition_p) }() - case 468: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMessageEncoding_p) }() - case 469: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMessageSetWireFormat_p) }() - case 470: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMinimumEdition_p) }() - case 471: try { try decoder.decodeSingularInt32Field(value: &_storage._hasName_p) }() - case 472: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNamePart_p) }() - case 473: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNegativeIntValue_p) }() - case 474: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNoStandardDescriptorAccessor_p) }() - case 475: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNumber_p) }() - case 476: try { try decoder.decodeSingularInt32Field(value: &_storage._hasObjcClassPrefix_p) }() - case 477: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOneofIndex_p) }() - case 478: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOptimizeFor_p) }() - case 479: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOptions_p) }() - case 480: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOutputType_p) }() - case 481: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOverridableFeatures_p) }() - case 482: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPackage_p) }() - case 483: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPacked_p) }() - case 484: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpClassPrefix_p) }() - case 485: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpMetadataNamespace_p) }() - case 486: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpNamespace_p) }() - case 487: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPositiveIntValue_p) }() - case 488: try { try decoder.decodeSingularInt32Field(value: &_storage._hasProto3Optional_p) }() - case 489: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPyGenericServices_p) }() - case 490: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRepeated_p) }() - case 491: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRepeatedFieldEncoding_p) }() - case 492: try { try decoder.decodeSingularInt32Field(value: &_storage._hasReserved_p) }() - case 493: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRetention_p) }() - case 494: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRubyPackage_p) }() - case 495: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSemantic_p) }() - case 496: try { try decoder.decodeSingularInt32Field(value: &_storage._hasServerStreaming_p) }() - case 497: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceCodeInfo_p) }() - case 498: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceContext_p) }() - case 499: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceFile_p) }() - case 500: try { try decoder.decodeSingularInt32Field(value: &_storage._hasStart_p) }() - case 501: try { try decoder.decodeSingularInt32Field(value: &_storage._hasStringValue_p) }() - case 502: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSwiftPrefix_p) }() - case 503: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSyntax_p) }() - case 504: try { try decoder.decodeSingularInt32Field(value: &_storage._hasTrailingComments_p) }() - case 505: try { try decoder.decodeSingularInt32Field(value: &_storage._hasType_p) }() - case 506: try { try decoder.decodeSingularInt32Field(value: &_storage._hasTypeName_p) }() - case 507: try { try decoder.decodeSingularInt32Field(value: &_storage._hasUnverifiedLazy_p) }() - case 508: try { try decoder.decodeSingularInt32Field(value: &_storage._hasUtf8Validation_p) }() - case 509: try { try decoder.decodeSingularInt32Field(value: &_storage._hasValue_p) }() - case 510: try { try decoder.decodeSingularInt32Field(value: &_storage._hasVerification_p) }() - case 511: try { try decoder.decodeSingularInt32Field(value: &_storage._hasWeak_p) }() - case 512: try { try decoder.decodeSingularInt32Field(value: &_storage._hour) }() - case 513: try { try decoder.decodeSingularInt32Field(value: &_storage._i) }() - case 514: try { try decoder.decodeSingularInt32Field(value: &_storage._idempotencyLevel) }() - case 515: try { try decoder.decodeSingularInt32Field(value: &_storage._identifierValue) }() - case 516: try { try decoder.decodeSingularInt32Field(value: &_storage._if) }() - case 517: try { try decoder.decodeSingularInt32Field(value: &_storage._ignoreUnknownExtensionFields) }() - case 518: try { try decoder.decodeSingularInt32Field(value: &_storage._ignoreUnknownFields) }() - case 519: try { try decoder.decodeSingularInt32Field(value: &_storage._index) }() - case 520: try { try decoder.decodeSingularInt32Field(value: &_storage._init_p) }() - case 521: try { try decoder.decodeSingularInt32Field(value: &_storage._inout) }() - case 522: try { try decoder.decodeSingularInt32Field(value: &_storage._inputType) }() - case 523: try { try decoder.decodeSingularInt32Field(value: &_storage._insert) }() - case 524: try { try decoder.decodeSingularInt32Field(value: &_storage._int) }() - case 525: try { try decoder.decodeSingularInt32Field(value: &_storage._int32) }() - case 526: try { try decoder.decodeSingularInt32Field(value: &_storage._int32Value) }() - case 527: try { try decoder.decodeSingularInt32Field(value: &_storage._int64) }() - case 528: try { try decoder.decodeSingularInt32Field(value: &_storage._int64Value) }() - case 529: try { try decoder.decodeSingularInt32Field(value: &_storage._int8) }() - case 530: try { try decoder.decodeSingularInt32Field(value: &_storage._integerLiteral) }() - case 531: try { try decoder.decodeSingularInt32Field(value: &_storage._integerLiteralType) }() - case 532: try { try decoder.decodeSingularInt32Field(value: &_storage._intern) }() - case 533: try { try decoder.decodeSingularInt32Field(value: &_storage._internal) }() - case 534: try { try decoder.decodeSingularInt32Field(value: &_storage._internalState) }() - case 535: try { try decoder.decodeSingularInt32Field(value: &_storage._into) }() - case 536: try { try decoder.decodeSingularInt32Field(value: &_storage._ints) }() - case 537: try { try decoder.decodeSingularInt32Field(value: &_storage._isA) }() - case 538: try { try decoder.decodeSingularInt32Field(value: &_storage._isEqual) }() - case 539: try { try decoder.decodeSingularInt32Field(value: &_storage._isEqualTo) }() - case 540: try { try decoder.decodeSingularInt32Field(value: &_storage._isExtension) }() - case 541: try { try decoder.decodeSingularInt32Field(value: &_storage._isInitialized_p) }() - case 542: try { try decoder.decodeSingularInt32Field(value: &_storage._isNegative) }() - case 543: try { try decoder.decodeSingularInt32Field(value: &_storage._itemTagsEncodedSize) }() - case 544: try { try decoder.decodeSingularInt32Field(value: &_storage._iterator) }() - case 545: try { try decoder.decodeSingularInt32Field(value: &_storage._javaGenerateEqualsAndHash) }() - case 546: try { try decoder.decodeSingularInt32Field(value: &_storage._javaGenericServices) }() - case 547: try { try decoder.decodeSingularInt32Field(value: &_storage._javaMultipleFiles) }() - case 548: try { try decoder.decodeSingularInt32Field(value: &_storage._javaOuterClassname) }() - case 549: try { try decoder.decodeSingularInt32Field(value: &_storage._javaPackage) }() - case 550: try { try decoder.decodeSingularInt32Field(value: &_storage._javaStringCheckUtf8) }() - case 551: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecoder) }() - case 552: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecodingError) }() - case 553: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecodingOptions) }() - case 554: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonEncoder) }() - case 555: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingError) }() - case 556: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingOptions) }() - case 557: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingVisitor) }() - case 558: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonFormat) }() - case 559: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonmapEncodingVisitor) }() - case 560: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonName) }() - case 561: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonPath) }() - case 562: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonPaths) }() - case 563: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonscanner) }() - case 564: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonString) }() - case 565: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonText) }() - case 566: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonUtf8Bytes) }() - case 567: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonUtf8Data) }() - case 568: try { try decoder.decodeSingularInt32Field(value: &_storage._jstype) }() - case 569: try { try decoder.decodeSingularInt32Field(value: &_storage._k) }() - case 570: try { try decoder.decodeSingularInt32Field(value: &_storage._kChunkSize) }() - case 571: try { try decoder.decodeSingularInt32Field(value: &_storage._key) }() - case 572: try { try decoder.decodeSingularInt32Field(value: &_storage._keyField) }() - case 573: try { try decoder.decodeSingularInt32Field(value: &_storage._keyFieldOpt) }() - case 574: try { try decoder.decodeSingularInt32Field(value: &_storage._keyType) }() - case 575: try { try decoder.decodeSingularInt32Field(value: &_storage._kind) }() - case 576: try { try decoder.decodeSingularInt32Field(value: &_storage._l) }() - case 577: try { try decoder.decodeSingularInt32Field(value: &_storage._label) }() - case 578: try { try decoder.decodeSingularInt32Field(value: &_storage._lazy) }() - case 579: try { try decoder.decodeSingularInt32Field(value: &_storage._leadingComments) }() - case 580: try { try decoder.decodeSingularInt32Field(value: &_storage._leadingDetachedComments) }() - case 581: try { try decoder.decodeSingularInt32Field(value: &_storage._length) }() - case 582: try { try decoder.decodeSingularInt32Field(value: &_storage._lessThan) }() - case 583: try { try decoder.decodeSingularInt32Field(value: &_storage._let) }() - case 584: try { try decoder.decodeSingularInt32Field(value: &_storage._lhs) }() - case 585: try { try decoder.decodeSingularInt32Field(value: &_storage._list) }() - case 586: try { try decoder.decodeSingularInt32Field(value: &_storage._listOfMessages) }() - case 587: try { try decoder.decodeSingularInt32Field(value: &_storage._listValue) }() - case 588: try { try decoder.decodeSingularInt32Field(value: &_storage._littleEndian) }() - case 589: try { try decoder.decodeSingularInt32Field(value: &_storage._load) }() - case 590: try { try decoder.decodeSingularInt32Field(value: &_storage._localHasher) }() - case 591: try { try decoder.decodeSingularInt32Field(value: &_storage._location) }() - case 592: try { try decoder.decodeSingularInt32Field(value: &_storage._m) }() - case 593: try { try decoder.decodeSingularInt32Field(value: &_storage._major) }() - case 594: try { try decoder.decodeSingularInt32Field(value: &_storage._makeAsyncIterator) }() - case 595: try { try decoder.decodeSingularInt32Field(value: &_storage._makeIterator) }() - case 596: try { try decoder.decodeSingularInt32Field(value: &_storage._mapEntry) }() - case 597: try { try decoder.decodeSingularInt32Field(value: &_storage._mapKeyType) }() - case 598: try { try decoder.decodeSingularInt32Field(value: &_storage._mapToMessages) }() - case 599: try { try decoder.decodeSingularInt32Field(value: &_storage._mapValueType) }() - case 600: try { try decoder.decodeSingularInt32Field(value: &_storage._mapVisitor) }() - case 601: try { try decoder.decodeSingularInt32Field(value: &_storage._maximumEdition) }() - case 602: try { try decoder.decodeSingularInt32Field(value: &_storage._mdayStart) }() - case 603: try { try decoder.decodeSingularInt32Field(value: &_storage._merge) }() - case 604: try { try decoder.decodeSingularInt32Field(value: &_storage._message) }() - case 605: try { try decoder.decodeSingularInt32Field(value: &_storage._messageDepthLimit) }() - case 606: try { try decoder.decodeSingularInt32Field(value: &_storage._messageEncoding) }() - case 607: try { try decoder.decodeSingularInt32Field(value: &_storage._messageExtension) }() - case 608: try { try decoder.decodeSingularInt32Field(value: &_storage._messageImplementationBase) }() - case 609: try { try decoder.decodeSingularInt32Field(value: &_storage._messageOptions) }() - case 610: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSet) }() - case 611: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSetWireFormat) }() - case 612: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSize) }() - case 613: try { try decoder.decodeSingularInt32Field(value: &_storage._messageType) }() - case 614: try { try decoder.decodeSingularInt32Field(value: &_storage._method) }() - case 615: try { try decoder.decodeSingularInt32Field(value: &_storage._methodDescriptorProto) }() - case 616: try { try decoder.decodeSingularInt32Field(value: &_storage._methodOptions) }() - case 617: try { try decoder.decodeSingularInt32Field(value: &_storage._methods) }() - case 618: try { try decoder.decodeSingularInt32Field(value: &_storage._min) }() - case 619: try { try decoder.decodeSingularInt32Field(value: &_storage._minimumEdition) }() - case 620: try { try decoder.decodeSingularInt32Field(value: &_storage._minor) }() - case 621: try { try decoder.decodeSingularInt32Field(value: &_storage._mixin) }() - case 622: try { try decoder.decodeSingularInt32Field(value: &_storage._mixins) }() - case 623: try { try decoder.decodeSingularInt32Field(value: &_storage._modifier) }() - case 624: try { try decoder.decodeSingularInt32Field(value: &_storage._modify) }() - case 625: try { try decoder.decodeSingularInt32Field(value: &_storage._month) }() - case 626: try { try decoder.decodeSingularInt32Field(value: &_storage._msgExtension) }() - case 627: try { try decoder.decodeSingularInt32Field(value: &_storage._mutating) }() - case 628: try { try decoder.decodeSingularInt32Field(value: &_storage._n) }() - case 629: try { try decoder.decodeSingularInt32Field(value: &_storage._name) }() - case 630: try { try decoder.decodeSingularInt32Field(value: &_storage._nameDescription) }() - case 631: try { try decoder.decodeSingularInt32Field(value: &_storage._nameMap) }() - case 632: try { try decoder.decodeSingularInt32Field(value: &_storage._namePart) }() - case 633: try { try decoder.decodeSingularInt32Field(value: &_storage._names) }() - case 634: try { try decoder.decodeSingularInt32Field(value: &_storage._nanos) }() - case 635: try { try decoder.decodeSingularInt32Field(value: &_storage._negativeIntValue) }() - case 636: try { try decoder.decodeSingularInt32Field(value: &_storage._nestedType) }() - case 637: try { try decoder.decodeSingularInt32Field(value: &_storage._newL) }() - case 638: try { try decoder.decodeSingularInt32Field(value: &_storage._newList) }() - case 639: try { try decoder.decodeSingularInt32Field(value: &_storage._newValue) }() - case 640: try { try decoder.decodeSingularInt32Field(value: &_storage._next) }() - case 641: try { try decoder.decodeSingularInt32Field(value: &_storage._nextByte) }() - case 642: try { try decoder.decodeSingularInt32Field(value: &_storage._nextFieldNumber) }() - case 643: try { try decoder.decodeSingularInt32Field(value: &_storage._nextVarInt) }() - case 644: try { try decoder.decodeSingularInt32Field(value: &_storage._nil) }() - case 645: try { try decoder.decodeSingularInt32Field(value: &_storage._nilLiteral) }() - case 646: try { try decoder.decodeSingularInt32Field(value: &_storage._noStandardDescriptorAccessor) }() - case 647: try { try decoder.decodeSingularInt32Field(value: &_storage._nullValue) }() - case 648: try { try decoder.decodeSingularInt32Field(value: &_storage._number) }() - case 649: try { try decoder.decodeSingularInt32Field(value: &_storage._numberValue) }() - case 650: try { try decoder.decodeSingularInt32Field(value: &_storage._objcClassPrefix) }() - case 651: try { try decoder.decodeSingularInt32Field(value: &_storage._of) }() - case 652: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofDecl) }() - case 653: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofDescriptorProto) }() - case 654: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofIndex) }() - case 655: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofOptions) }() - case 656: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofs) }() - case 657: try { try decoder.decodeSingularInt32Field(value: &_storage._oneOfKind) }() - case 658: try { try decoder.decodeSingularInt32Field(value: &_storage._optimizeFor) }() - case 659: try { try decoder.decodeSingularInt32Field(value: &_storage._optimizeMode) }() - case 660: try { try decoder.decodeSingularInt32Field(value: &_storage._option) }() - case 661: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalEnumExtensionField) }() - case 662: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalExtensionField) }() - case 663: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalGroupExtensionField) }() - case 664: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalMessageExtensionField) }() - case 665: try { try decoder.decodeSingularInt32Field(value: &_storage._optionRetention) }() - case 666: try { try decoder.decodeSingularInt32Field(value: &_storage._options) }() - case 667: try { try decoder.decodeSingularInt32Field(value: &_storage._optionTargetType) }() - case 668: try { try decoder.decodeSingularInt32Field(value: &_storage._other) }() - case 669: try { try decoder.decodeSingularInt32Field(value: &_storage._others) }() - case 670: try { try decoder.decodeSingularInt32Field(value: &_storage._out) }() - case 671: try { try decoder.decodeSingularInt32Field(value: &_storage._outputType) }() - case 672: try { try decoder.decodeSingularInt32Field(value: &_storage._overridableFeatures) }() - case 673: try { try decoder.decodeSingularInt32Field(value: &_storage._p) }() - case 674: try { try decoder.decodeSingularInt32Field(value: &_storage._package) }() - case 675: try { try decoder.decodeSingularInt32Field(value: &_storage._packed) }() - case 676: try { try decoder.decodeSingularInt32Field(value: &_storage._packedEnumExtensionField) }() - case 677: try { try decoder.decodeSingularInt32Field(value: &_storage._packedExtensionField) }() - case 678: try { try decoder.decodeSingularInt32Field(value: &_storage._padding) }() - case 679: try { try decoder.decodeSingularInt32Field(value: &_storage._parent) }() - case 680: try { try decoder.decodeSingularInt32Field(value: &_storage._parse) }() - case 681: try { try decoder.decodeSingularInt32Field(value: &_storage._path) }() - case 682: try { try decoder.decodeSingularInt32Field(value: &_storage._paths) }() - case 683: try { try decoder.decodeSingularInt32Field(value: &_storage._payload) }() - case 684: try { try decoder.decodeSingularInt32Field(value: &_storage._payloadSize) }() - case 685: try { try decoder.decodeSingularInt32Field(value: &_storage._phpClassPrefix) }() - case 686: try { try decoder.decodeSingularInt32Field(value: &_storage._phpMetadataNamespace) }() - case 687: try { try decoder.decodeSingularInt32Field(value: &_storage._phpNamespace) }() - case 688: try { try decoder.decodeSingularInt32Field(value: &_storage._pos) }() - case 689: try { try decoder.decodeSingularInt32Field(value: &_storage._positiveIntValue) }() - case 690: try { try decoder.decodeSingularInt32Field(value: &_storage._prefix) }() - case 691: try { try decoder.decodeSingularInt32Field(value: &_storage._preserveProtoFieldNames) }() - case 692: try { try decoder.decodeSingularInt32Field(value: &_storage._preTraverse) }() - case 693: try { try decoder.decodeSingularInt32Field(value: &_storage._printUnknownFields) }() - case 694: try { try decoder.decodeSingularInt32Field(value: &_storage._proto2) }() - case 695: try { try decoder.decodeSingularInt32Field(value: &_storage._proto3DefaultValue) }() - case 696: try { try decoder.decodeSingularInt32Field(value: &_storage._proto3Optional) }() - case 697: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufApiversionCheck) }() - case 698: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufApiversion3) }() - case 699: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufBool) }() - case 700: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufBytes) }() - case 701: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufDouble) }() - case 702: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufEnumMap) }() - case 703: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufExtension) }() - case 704: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFixed32) }() - case 705: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFixed64) }() - case 706: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFloat) }() - case 707: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufInt32) }() - case 708: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufInt64) }() - case 709: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufMap) }() - case 710: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufMessageMap) }() - case 711: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSfixed32) }() - case 712: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSfixed64) }() - case 713: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSint32) }() - case 714: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSint64) }() - case 715: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufString) }() - case 716: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufUint32) }() - case 717: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufUint64) }() - case 718: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufExtensionFieldValues) }() - case 719: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFieldNumber) }() - case 720: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufGeneratedIsEqualTo) }() - case 721: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufNameMap) }() - case 722: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufNewField) }() - case 723: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufPackage) }() - case 724: try { try decoder.decodeSingularInt32Field(value: &_storage._protocol) }() - case 725: try { try decoder.decodeSingularInt32Field(value: &_storage._protoFieldName) }() - case 726: try { try decoder.decodeSingularInt32Field(value: &_storage._protoMessageName) }() - case 727: try { try decoder.decodeSingularInt32Field(value: &_storage._protoNameProviding) }() - case 728: try { try decoder.decodeSingularInt32Field(value: &_storage._protoPaths) }() - case 729: try { try decoder.decodeSingularInt32Field(value: &_storage._public) }() - case 730: try { try decoder.decodeSingularInt32Field(value: &_storage._publicDependency) }() - case 731: try { try decoder.decodeSingularInt32Field(value: &_storage._putBoolValue) }() - case 732: try { try decoder.decodeSingularInt32Field(value: &_storage._putBytesValue) }() - case 733: try { try decoder.decodeSingularInt32Field(value: &_storage._putDoubleValue) }() - case 734: try { try decoder.decodeSingularInt32Field(value: &_storage._putEnumValue) }() - case 735: try { try decoder.decodeSingularInt32Field(value: &_storage._putFixedUint32) }() - case 736: try { try decoder.decodeSingularInt32Field(value: &_storage._putFixedUint64) }() - case 737: try { try decoder.decodeSingularInt32Field(value: &_storage._putFloatValue) }() - case 738: try { try decoder.decodeSingularInt32Field(value: &_storage._putInt64) }() - case 739: try { try decoder.decodeSingularInt32Field(value: &_storage._putStringValue) }() - case 740: try { try decoder.decodeSingularInt32Field(value: &_storage._putUint64) }() - case 741: try { try decoder.decodeSingularInt32Field(value: &_storage._putUint64Hex) }() - case 742: try { try decoder.decodeSingularInt32Field(value: &_storage._putVarInt) }() - case 743: try { try decoder.decodeSingularInt32Field(value: &_storage._putZigZagVarInt) }() - case 744: try { try decoder.decodeSingularInt32Field(value: &_storage._pyGenericServices) }() - case 745: try { try decoder.decodeSingularInt32Field(value: &_storage._r) }() - case 746: try { try decoder.decodeSingularInt32Field(value: &_storage._rawChars) }() - case 747: try { try decoder.decodeSingularInt32Field(value: &_storage._rawRepresentable) }() - case 748: try { try decoder.decodeSingularInt32Field(value: &_storage._rawValue) }() - case 749: try { try decoder.decodeSingularInt32Field(value: &_storage._read4HexDigits) }() - case 750: try { try decoder.decodeSingularInt32Field(value: &_storage._readBytes) }() - case 751: try { try decoder.decodeSingularInt32Field(value: &_storage._register) }() - case 752: try { try decoder.decodeSingularInt32Field(value: &_storage._repeated) }() - case 753: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedEnumExtensionField) }() - case 754: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedExtensionField) }() - case 755: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedFieldEncoding) }() - case 756: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedGroupExtensionField) }() - case 757: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedMessageExtensionField) }() - case 758: try { try decoder.decodeSingularInt32Field(value: &_storage._repeating) }() - case 759: try { try decoder.decodeSingularInt32Field(value: &_storage._requestStreaming) }() - case 760: try { try decoder.decodeSingularInt32Field(value: &_storage._requestTypeURL) }() - case 761: try { try decoder.decodeSingularInt32Field(value: &_storage._requiredSize) }() - case 762: try { try decoder.decodeSingularInt32Field(value: &_storage._responseStreaming) }() - case 763: try { try decoder.decodeSingularInt32Field(value: &_storage._responseTypeURL) }() - case 764: try { try decoder.decodeSingularInt32Field(value: &_storage._result) }() - case 765: try { try decoder.decodeSingularInt32Field(value: &_storage._retention) }() - case 766: try { try decoder.decodeSingularInt32Field(value: &_storage._rethrows) }() - case 767: try { try decoder.decodeSingularInt32Field(value: &_storage._return) }() - case 768: try { try decoder.decodeSingularInt32Field(value: &_storage._returnType) }() - case 769: try { try decoder.decodeSingularInt32Field(value: &_storage._revision) }() - case 770: try { try decoder.decodeSingularInt32Field(value: &_storage._rhs) }() - case 771: try { try decoder.decodeSingularInt32Field(value: &_storage._root) }() - case 772: try { try decoder.decodeSingularInt32Field(value: &_storage._rubyPackage) }() - case 773: try { try decoder.decodeSingularInt32Field(value: &_storage._s) }() - case 774: try { try decoder.decodeSingularInt32Field(value: &_storage._sawBackslash) }() - case 775: try { try decoder.decodeSingularInt32Field(value: &_storage._sawSection4Characters) }() - case 776: try { try decoder.decodeSingularInt32Field(value: &_storage._sawSection5Characters) }() - case 777: try { try decoder.decodeSingularInt32Field(value: &_storage._scan) }() - case 778: try { try decoder.decodeSingularInt32Field(value: &_storage._scanner) }() - case 779: try { try decoder.decodeSingularInt32Field(value: &_storage._seconds) }() - case 780: try { try decoder.decodeSingularInt32Field(value: &_storage._self_p) }() - case 781: try { try decoder.decodeSingularInt32Field(value: &_storage._semantic) }() - case 782: try { try decoder.decodeSingularInt32Field(value: &_storage._sendable) }() - case 783: try { try decoder.decodeSingularInt32Field(value: &_storage._separator) }() - case 784: try { try decoder.decodeSingularInt32Field(value: &_storage._serialize) }() - case 785: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedBytes) }() - case 786: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedData) }() - case 787: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedSize) }() - case 788: try { try decoder.decodeSingularInt32Field(value: &_storage._serverStreaming) }() - case 789: try { try decoder.decodeSingularInt32Field(value: &_storage._service) }() - case 790: try { try decoder.decodeSingularInt32Field(value: &_storage._serviceDescriptorProto) }() - case 791: try { try decoder.decodeSingularInt32Field(value: &_storage._serviceOptions) }() - case 792: try { try decoder.decodeSingularInt32Field(value: &_storage._set) }() - case 793: try { try decoder.decodeSingularInt32Field(value: &_storage._setExtensionValue) }() - case 794: try { try decoder.decodeSingularInt32Field(value: &_storage._shift) }() - case 795: try { try decoder.decodeSingularInt32Field(value: &_storage._simpleExtensionMap) }() - case 796: try { try decoder.decodeSingularInt32Field(value: &_storage._size) }() - case 797: try { try decoder.decodeSingularInt32Field(value: &_storage._sizer) }() - case 798: try { try decoder.decodeSingularInt32Field(value: &_storage._source) }() - case 799: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceCodeInfo) }() - case 800: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceContext) }() - case 801: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceEncoding) }() - case 802: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceFile) }() - case 803: try { try decoder.decodeSingularInt32Field(value: &_storage._span) }() - case 804: try { try decoder.decodeSingularInt32Field(value: &_storage._split) }() - case 805: try { try decoder.decodeSingularInt32Field(value: &_storage._start) }() - case 806: try { try decoder.decodeSingularInt32Field(value: &_storage._startArray) }() - case 807: try { try decoder.decodeSingularInt32Field(value: &_storage._startArrayObject) }() - case 808: try { try decoder.decodeSingularInt32Field(value: &_storage._startField) }() - case 809: try { try decoder.decodeSingularInt32Field(value: &_storage._startIndex) }() - case 810: try { try decoder.decodeSingularInt32Field(value: &_storage._startMessageField) }() - case 811: try { try decoder.decodeSingularInt32Field(value: &_storage._startObject) }() - case 812: try { try decoder.decodeSingularInt32Field(value: &_storage._startRegularField) }() - case 813: try { try decoder.decodeSingularInt32Field(value: &_storage._state) }() - case 814: try { try decoder.decodeSingularInt32Field(value: &_storage._static) }() - case 815: try { try decoder.decodeSingularInt32Field(value: &_storage._staticString) }() - case 816: try { try decoder.decodeSingularInt32Field(value: &_storage._storage) }() - case 817: try { try decoder.decodeSingularInt32Field(value: &_storage._string) }() - case 818: try { try decoder.decodeSingularInt32Field(value: &_storage._stringLiteral) }() - case 819: try { try decoder.decodeSingularInt32Field(value: &_storage._stringLiteralType) }() - case 820: try { try decoder.decodeSingularInt32Field(value: &_storage._stringResult) }() - case 821: try { try decoder.decodeSingularInt32Field(value: &_storage._stringValue) }() - case 822: try { try decoder.decodeSingularInt32Field(value: &_storage._struct) }() - case 823: try { try decoder.decodeSingularInt32Field(value: &_storage._structValue) }() - case 824: try { try decoder.decodeSingularInt32Field(value: &_storage._subDecoder) }() - case 825: try { try decoder.decodeSingularInt32Field(value: &_storage._subscript) }() - case 826: try { try decoder.decodeSingularInt32Field(value: &_storage._subVisitor) }() - case 827: try { try decoder.decodeSingularInt32Field(value: &_storage._swift) }() - case 828: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftPrefix) }() - case 829: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftProtobufContiguousBytes) }() - case 830: try { try decoder.decodeSingularInt32Field(value: &_storage._syntax) }() - case 831: try { try decoder.decodeSingularInt32Field(value: &_storage._t) }() - case 832: try { try decoder.decodeSingularInt32Field(value: &_storage._tag) }() - case 833: try { try decoder.decodeSingularInt32Field(value: &_storage._targets) }() - case 834: try { try decoder.decodeSingularInt32Field(value: &_storage._terminator) }() - case 835: try { try decoder.decodeSingularInt32Field(value: &_storage._testDecoder) }() - case 836: try { try decoder.decodeSingularInt32Field(value: &_storage._text) }() - case 837: try { try decoder.decodeSingularInt32Field(value: &_storage._textDecoder) }() - case 838: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecoder) }() - case 839: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecodingError) }() - case 840: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecodingOptions) }() - case 841: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatEncodingOptions) }() - case 842: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatEncodingVisitor) }() - case 843: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatString) }() - case 844: try { try decoder.decodeSingularInt32Field(value: &_storage._throwOrIgnore) }() - case 845: try { try decoder.decodeSingularInt32Field(value: &_storage._throws) }() - case 846: try { try decoder.decodeSingularInt32Field(value: &_storage._timeInterval) }() - case 847: try { try decoder.decodeSingularInt32Field(value: &_storage._timeIntervalSince1970) }() - case 848: try { try decoder.decodeSingularInt32Field(value: &_storage._timeIntervalSinceReferenceDate) }() - case 849: try { try decoder.decodeSingularInt32Field(value: &_storage._timestamp) }() - case 850: try { try decoder.decodeSingularInt32Field(value: &_storage._total) }() - case 851: try { try decoder.decodeSingularInt32Field(value: &_storage._totalArrayDepth) }() - case 852: try { try decoder.decodeSingularInt32Field(value: &_storage._totalSize) }() - case 853: try { try decoder.decodeSingularInt32Field(value: &_storage._trailingComments) }() - case 854: try { try decoder.decodeSingularInt32Field(value: &_storage._traverse) }() - case 855: try { try decoder.decodeSingularInt32Field(value: &_storage._true) }() - case 856: try { try decoder.decodeSingularInt32Field(value: &_storage._try) }() - case 857: try { try decoder.decodeSingularInt32Field(value: &_storage._type) }() - case 858: try { try decoder.decodeSingularInt32Field(value: &_storage._typealias) }() - case 859: try { try decoder.decodeSingularInt32Field(value: &_storage._typeEnum) }() - case 860: try { try decoder.decodeSingularInt32Field(value: &_storage._typeName) }() - case 861: try { try decoder.decodeSingularInt32Field(value: &_storage._typePrefix) }() - case 862: try { try decoder.decodeSingularInt32Field(value: &_storage._typeStart) }() - case 863: try { try decoder.decodeSingularInt32Field(value: &_storage._typeUnknown) }() - case 864: try { try decoder.decodeSingularInt32Field(value: &_storage._typeURL) }() - case 865: try { try decoder.decodeSingularInt32Field(value: &_storage._uint32) }() - case 866: try { try decoder.decodeSingularInt32Field(value: &_storage._uint32Value) }() - case 867: try { try decoder.decodeSingularInt32Field(value: &_storage._uint64) }() - case 868: try { try decoder.decodeSingularInt32Field(value: &_storage._uint64Value) }() - case 869: try { try decoder.decodeSingularInt32Field(value: &_storage._uint8) }() - case 870: try { try decoder.decodeSingularInt32Field(value: &_storage._unchecked) }() - case 871: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarLiteral) }() - case 872: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarLiteralType) }() - case 873: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalars) }() - case 874: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarView) }() - case 875: try { try decoder.decodeSingularInt32Field(value: &_storage._uninterpretedOption) }() - case 876: try { try decoder.decodeSingularInt32Field(value: &_storage._union) }() - case 877: try { try decoder.decodeSingularInt32Field(value: &_storage._uniqueStorage) }() - case 878: try { try decoder.decodeSingularInt32Field(value: &_storage._unknown) }() - case 879: try { try decoder.decodeSingularInt32Field(value: &_storage._unknownFields_p) }() - case 880: try { try decoder.decodeSingularInt32Field(value: &_storage._unknownStorage) }() - case 881: try { try decoder.decodeSingularInt32Field(value: &_storage._unpackTo) }() - case 882: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeBufferPointer) }() - case 883: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeMutablePointer) }() - case 884: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeMutableRawBufferPointer) }() - case 885: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeRawBufferPointer) }() - case 886: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeRawPointer) }() - case 887: try { try decoder.decodeSingularInt32Field(value: &_storage._unverifiedLazy) }() - case 888: try { try decoder.decodeSingularInt32Field(value: &_storage._updatedOptions) }() - case 889: try { try decoder.decodeSingularInt32Field(value: &_storage._url) }() - case 890: try { try decoder.decodeSingularInt32Field(value: &_storage._useDeterministicOrdering) }() - case 891: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8) }() - case 892: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8Ptr) }() - case 893: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8ToDouble) }() - case 894: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8Validation) }() - case 895: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8View) }() - case 896: try { try decoder.decodeSingularInt32Field(value: &_storage._v) }() - case 897: try { try decoder.decodeSingularInt32Field(value: &_storage._value) }() - case 898: try { try decoder.decodeSingularInt32Field(value: &_storage._valueField) }() - case 899: try { try decoder.decodeSingularInt32Field(value: &_storage._values) }() - case 900: try { try decoder.decodeSingularInt32Field(value: &_storage._valueType) }() - case 901: try { try decoder.decodeSingularInt32Field(value: &_storage._var) }() - case 902: try { try decoder.decodeSingularInt32Field(value: &_storage._verification) }() - case 903: try { try decoder.decodeSingularInt32Field(value: &_storage._verificationState) }() - case 904: try { try decoder.decodeSingularInt32Field(value: &_storage._version) }() - case 905: try { try decoder.decodeSingularInt32Field(value: &_storage._versionString) }() - case 906: try { try decoder.decodeSingularInt32Field(value: &_storage._visitExtensionFields) }() - case 907: try { try decoder.decodeSingularInt32Field(value: &_storage._visitExtensionFieldsAsMessageSet) }() - case 908: try { try decoder.decodeSingularInt32Field(value: &_storage._visitMapField) }() - case 909: try { try decoder.decodeSingularInt32Field(value: &_storage._visitor) }() - case 910: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPacked) }() - case 911: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedBoolField) }() - case 912: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedDoubleField) }() - case 913: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedEnumField) }() - case 914: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFixed32Field) }() - case 915: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFixed64Field) }() - case 916: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFloatField) }() - case 917: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedInt32Field) }() - case 918: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedInt64Field) }() - case 919: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSfixed32Field) }() - case 920: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSfixed64Field) }() - case 921: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSint32Field) }() - case 922: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSint64Field) }() - case 923: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedUint32Field) }() - case 924: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedUint64Field) }() - case 925: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeated) }() - case 926: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedBoolField) }() - case 927: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedBytesField) }() - case 928: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedDoubleField) }() - case 929: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedEnumField) }() - case 930: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFixed32Field) }() - case 931: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFixed64Field) }() - case 932: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFloatField) }() - case 933: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedGroupField) }() - case 934: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedInt32Field) }() - case 935: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedInt64Field) }() - case 936: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedMessageField) }() - case 937: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSfixed32Field) }() - case 938: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSfixed64Field) }() - case 939: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSint32Field) }() - case 940: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSint64Field) }() - case 941: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedStringField) }() - case 942: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedUint32Field) }() - case 943: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedUint64Field) }() - case 944: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingular) }() - case 945: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularBoolField) }() - case 946: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularBytesField) }() - case 947: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularDoubleField) }() - case 948: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularEnumField) }() - case 949: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFixed32Field) }() - case 950: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFixed64Field) }() - case 951: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFloatField) }() - case 952: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularGroupField) }() - case 953: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularInt32Field) }() - case 954: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularInt64Field) }() - case 955: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularMessageField) }() - case 956: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSfixed32Field) }() - case 957: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSfixed64Field) }() - case 958: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSint32Field) }() - case 959: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSint64Field) }() - case 960: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularStringField) }() - case 961: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularUint32Field) }() - case 962: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularUint64Field) }() - case 963: try { try decoder.decodeSingularInt32Field(value: &_storage._visitUnknown) }() - case 964: try { try decoder.decodeSingularInt32Field(value: &_storage._wasDecoded) }() - case 965: try { try decoder.decodeSingularInt32Field(value: &_storage._weak) }() - case 966: try { try decoder.decodeSingularInt32Field(value: &_storage._weakDependency) }() - case 967: try { try decoder.decodeSingularInt32Field(value: &_storage._where) }() - case 968: try { try decoder.decodeSingularInt32Field(value: &_storage._wireFormat) }() - case 969: try { try decoder.decodeSingularInt32Field(value: &_storage._with) }() - case 970: try { try decoder.decodeSingularInt32Field(value: &_storage._withUnsafeBytes) }() - case 971: try { try decoder.decodeSingularInt32Field(value: &_storage._withUnsafeMutableBytes) }() - case 972: try { try decoder.decodeSingularInt32Field(value: &_storage._work) }() - case 973: try { try decoder.decodeSingularInt32Field(value: &_storage._wrapped) }() - case 974: try { try decoder.decodeSingularInt32Field(value: &_storage._wrappedType) }() - case 975: try { try decoder.decodeSingularInt32Field(value: &_storage._wrappedValue) }() - case 976: try { try decoder.decodeSingularInt32Field(value: &_storage._written) }() - case 977: try { try decoder.decodeSingularInt32Field(value: &_storage._yday) }() + case 12: try { try decoder.decodeSingularInt32Field(value: &_storage._anyTypeUrlnotRegistered) }() + case 13: try { try decoder.decodeSingularInt32Field(value: &_storage._anyUnpackError) }() + case 14: try { try decoder.decodeSingularInt32Field(value: &_storage._api) }() + case 15: try { try decoder.decodeSingularInt32Field(value: &_storage._appended) }() + case 16: try { try decoder.decodeSingularInt32Field(value: &_storage._appendUintHex) }() + case 17: try { try decoder.decodeSingularInt32Field(value: &_storage._appendUnknown) }() + case 18: try { try decoder.decodeSingularInt32Field(value: &_storage._areAllInitialized) }() + case 19: try { try decoder.decodeSingularInt32Field(value: &_storage._array) }() + case 20: try { try decoder.decodeSingularInt32Field(value: &_storage._arrayDepth) }() + case 21: try { try decoder.decodeSingularInt32Field(value: &_storage._arrayLiteral) }() + case 22: try { try decoder.decodeSingularInt32Field(value: &_storage._arraySeparator) }() + case 23: try { try decoder.decodeSingularInt32Field(value: &_storage._as) }() + case 24: try { try decoder.decodeSingularInt32Field(value: &_storage._asciiOpenCurlyBracket) }() + case 25: try { try decoder.decodeSingularInt32Field(value: &_storage._asciiZero) }() + case 26: try { try decoder.decodeSingularInt32Field(value: &_storage._async) }() + case 27: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncIterator) }() + case 28: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncIteratorProtocol) }() + case 29: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncMessageSequence) }() + case 30: try { try decoder.decodeSingularInt32Field(value: &_storage._available) }() + case 31: try { try decoder.decodeSingularInt32Field(value: &_storage._b) }() + case 32: try { try decoder.decodeSingularInt32Field(value: &_storage._base) }() + case 33: try { try decoder.decodeSingularInt32Field(value: &_storage._base64Values) }() + case 34: try { try decoder.decodeSingularInt32Field(value: &_storage._baseAddress) }() + case 35: try { try decoder.decodeSingularInt32Field(value: &_storage._baseType) }() + case 36: try { try decoder.decodeSingularInt32Field(value: &_storage._begin) }() + case 37: try { try decoder.decodeSingularInt32Field(value: &_storage._binary) }() + case 38: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecoder) }() + case 39: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecoding) }() + case 40: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecodingError) }() + case 41: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecodingOptions) }() + case 42: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDelimited) }() + case 43: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncoder) }() + case 44: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncoding) }() + case 45: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingError) }() + case 46: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingMessageSetSizeVisitor) }() + case 47: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingMessageSetVisitor) }() + case 48: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingOptions) }() + case 49: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingSizeVisitor) }() + case 50: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingVisitor) }() + case 51: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryOptions) }() + case 52: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryProtobufDelimitedMessages) }() + case 53: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryStreamDecoding) }() + case 54: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryStreamDecodingError) }() + case 55: try { try decoder.decodeSingularInt32Field(value: &_storage._bitPattern) }() + case 56: try { try decoder.decodeSingularInt32Field(value: &_storage._body) }() + case 57: try { try decoder.decodeSingularInt32Field(value: &_storage._bool) }() + case 58: try { try decoder.decodeSingularInt32Field(value: &_storage._booleanLiteral) }() + case 59: try { try decoder.decodeSingularInt32Field(value: &_storage._booleanLiteralType) }() + case 60: try { try decoder.decodeSingularInt32Field(value: &_storage._boolValue) }() + case 61: try { try decoder.decodeSingularInt32Field(value: &_storage._buffer) }() + case 62: try { try decoder.decodeSingularInt32Field(value: &_storage._bytes) }() + case 63: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesInGroup) }() + case 64: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesNeeded) }() + case 65: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesRead) }() + case 66: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesValue) }() + case 67: try { try decoder.decodeSingularInt32Field(value: &_storage._c) }() + case 68: try { try decoder.decodeSingularInt32Field(value: &_storage._capitalizeNext) }() + case 69: try { try decoder.decodeSingularInt32Field(value: &_storage._cardinality) }() + case 70: try { try decoder.decodeSingularInt32Field(value: &_storage._caseIterable) }() + case 71: try { try decoder.decodeSingularInt32Field(value: &_storage._ccEnableArenas) }() + case 72: try { try decoder.decodeSingularInt32Field(value: &_storage._ccGenericServices) }() + case 73: try { try decoder.decodeSingularInt32Field(value: &_storage._character) }() + case 74: try { try decoder.decodeSingularInt32Field(value: &_storage._chars) }() + case 75: try { try decoder.decodeSingularInt32Field(value: &_storage._chunk) }() + case 76: try { try decoder.decodeSingularInt32Field(value: &_storage._class) }() + case 77: try { try decoder.decodeSingularInt32Field(value: &_storage._clearAggregateValue_p) }() + case 78: try { try decoder.decodeSingularInt32Field(value: &_storage._clearAllowAlias_p) }() + case 79: try { try decoder.decodeSingularInt32Field(value: &_storage._clearBegin_p) }() + case 80: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCcEnableArenas_p) }() + case 81: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCcGenericServices_p) }() + case 82: try { try decoder.decodeSingularInt32Field(value: &_storage._clearClientStreaming_p) }() + case 83: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCsharpNamespace_p) }() + case 84: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCtype_p) }() + case 85: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDebugRedact_p) }() + case 86: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDefaultValue_p) }() + case 87: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecated_p) }() + case 88: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecatedLegacyJsonFieldConflicts_p) }() + case 89: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecationWarning_p) }() + case 90: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDoubleValue_p) }() + case 91: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEdition_p) }() + case 92: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionDeprecated_p) }() + case 93: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionIntroduced_p) }() + case 94: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionRemoved_p) }() + case 95: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEnd_p) }() + case 96: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEnumType_p) }() + case 97: try { try decoder.decodeSingularInt32Field(value: &_storage._clearExtendee_p) }() + case 98: try { try decoder.decodeSingularInt32Field(value: &_storage._clearExtensionValue_p) }() + case 99: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFeatures_p) }() + case 100: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFeatureSupport_p) }() + case 101: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFieldPresence_p) }() + case 102: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFixedFeatures_p) }() + case 103: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFullName_p) }() + case 104: try { try decoder.decodeSingularInt32Field(value: &_storage._clearGoPackage_p) }() + case 105: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIdempotencyLevel_p) }() + case 106: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIdentifierValue_p) }() + case 107: try { try decoder.decodeSingularInt32Field(value: &_storage._clearInputType_p) }() + case 108: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIsExtension_p) }() + case 109: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaGenerateEqualsAndHash_p) }() + case 110: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaGenericServices_p) }() + case 111: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaMultipleFiles_p) }() + case 112: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaOuterClassname_p) }() + case 113: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaPackage_p) }() + case 114: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaStringCheckUtf8_p) }() + case 115: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJsonFormat_p) }() + case 116: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJsonName_p) }() + case 117: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJstype_p) }() + case 118: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLabel_p) }() + case 119: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLazy_p) }() + case 120: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLeadingComments_p) }() + case 121: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMapEntry_p) }() + case 122: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMaximumEdition_p) }() + case 123: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMessageEncoding_p) }() + case 124: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMessageSetWireFormat_p) }() + case 125: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMinimumEdition_p) }() + case 126: try { try decoder.decodeSingularInt32Field(value: &_storage._clearName_p) }() + case 127: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNamePart_p) }() + case 128: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNegativeIntValue_p) }() + case 129: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNoStandardDescriptorAccessor_p) }() + case 130: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNumber_p) }() + case 131: try { try decoder.decodeSingularInt32Field(value: &_storage._clearObjcClassPrefix_p) }() + case 132: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOneofIndex_p) }() + case 133: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOptimizeFor_p) }() + case 134: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOptions_p) }() + case 135: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOutputType_p) }() + case 136: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOverridableFeatures_p) }() + case 137: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPackage_p) }() + case 138: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPacked_p) }() + case 139: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpClassPrefix_p) }() + case 140: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpMetadataNamespace_p) }() + case 141: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpNamespace_p) }() + case 142: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPositiveIntValue_p) }() + case 143: try { try decoder.decodeSingularInt32Field(value: &_storage._clearProto3Optional_p) }() + case 144: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPyGenericServices_p) }() + case 145: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRepeated_p) }() + case 146: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRepeatedFieldEncoding_p) }() + case 147: try { try decoder.decodeSingularInt32Field(value: &_storage._clearReserved_p) }() + case 148: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRetention_p) }() + case 149: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRubyPackage_p) }() + case 150: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSemantic_p) }() + case 151: try { try decoder.decodeSingularInt32Field(value: &_storage._clearServerStreaming_p) }() + case 152: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceCodeInfo_p) }() + case 153: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceContext_p) }() + case 154: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceFile_p) }() + case 155: try { try decoder.decodeSingularInt32Field(value: &_storage._clearStart_p) }() + case 156: try { try decoder.decodeSingularInt32Field(value: &_storage._clearStringValue_p) }() + case 157: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSwiftPrefix_p) }() + case 158: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSyntax_p) }() + case 159: try { try decoder.decodeSingularInt32Field(value: &_storage._clearTrailingComments_p) }() + case 160: try { try decoder.decodeSingularInt32Field(value: &_storage._clearType_p) }() + case 161: try { try decoder.decodeSingularInt32Field(value: &_storage._clearTypeName_p) }() + case 162: try { try decoder.decodeSingularInt32Field(value: &_storage._clearUnverifiedLazy_p) }() + case 163: try { try decoder.decodeSingularInt32Field(value: &_storage._clearUtf8Validation_p) }() + case 164: try { try decoder.decodeSingularInt32Field(value: &_storage._clearValue_p) }() + case 165: try { try decoder.decodeSingularInt32Field(value: &_storage._clearVerification_p) }() + case 166: try { try decoder.decodeSingularInt32Field(value: &_storage._clearWeak_p) }() + case 167: try { try decoder.decodeSingularInt32Field(value: &_storage._clientStreaming) }() + case 168: try { try decoder.decodeSingularInt32Field(value: &_storage._code) }() + case 169: try { try decoder.decodeSingularInt32Field(value: &_storage._codePoint) }() + case 170: try { try decoder.decodeSingularInt32Field(value: &_storage._codeUnits) }() + case 171: try { try decoder.decodeSingularInt32Field(value: &_storage._collection) }() + case 172: try { try decoder.decodeSingularInt32Field(value: &_storage._com) }() + case 173: try { try decoder.decodeSingularInt32Field(value: &_storage._comma) }() + case 174: try { try decoder.decodeSingularInt32Field(value: &_storage._consumedBytes) }() + case 175: try { try decoder.decodeSingularInt32Field(value: &_storage._contentsOf) }() + case 176: try { try decoder.decodeSingularInt32Field(value: &_storage._copy) }() + case 177: try { try decoder.decodeSingularInt32Field(value: &_storage._count) }() + case 178: try { try decoder.decodeSingularInt32Field(value: &_storage._countVarintsInBuffer) }() + case 179: try { try decoder.decodeSingularInt32Field(value: &_storage._csharpNamespace) }() + case 180: try { try decoder.decodeSingularInt32Field(value: &_storage._ctype) }() + case 181: try { try decoder.decodeSingularInt32Field(value: &_storage._customCodable) }() + case 182: try { try decoder.decodeSingularInt32Field(value: &_storage._customDebugStringConvertible) }() + case 183: try { try decoder.decodeSingularInt32Field(value: &_storage._customStringConvertible) }() + case 184: try { try decoder.decodeSingularInt32Field(value: &_storage._d) }() + case 185: try { try decoder.decodeSingularInt32Field(value: &_storage._data) }() + case 186: try { try decoder.decodeSingularInt32Field(value: &_storage._dataResult) }() + case 187: try { try decoder.decodeSingularInt32Field(value: &_storage._date) }() + case 188: try { try decoder.decodeSingularInt32Field(value: &_storage._daySec) }() + case 189: try { try decoder.decodeSingularInt32Field(value: &_storage._daysSinceEpoch) }() + case 190: try { try decoder.decodeSingularInt32Field(value: &_storage._debugDescription_p) }() + case 191: try { try decoder.decodeSingularInt32Field(value: &_storage._debugRedact) }() + case 192: try { try decoder.decodeSingularInt32Field(value: &_storage._declaration) }() + case 193: try { try decoder.decodeSingularInt32Field(value: &_storage._decoded) }() + case 194: try { try decoder.decodeSingularInt32Field(value: &_storage._decodedFromJsonnull) }() + case 195: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeExtensionField) }() + case 196: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeExtensionFieldsAsMessageSet) }() + case 197: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeJson) }() + case 198: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeMapField) }() + case 199: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeMessage) }() + case 200: try { try decoder.decodeSingularInt32Field(value: &_storage._decoder) }() + case 201: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeated) }() + case 202: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedBoolField) }() + case 203: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedBytesField) }() + case 204: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedDoubleField) }() + case 205: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedEnumField) }() + case 206: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFixed32Field) }() + case 207: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFixed64Field) }() + case 208: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFloatField) }() + case 209: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedGroupField) }() + case 210: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedInt32Field) }() + case 211: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedInt64Field) }() + case 212: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedMessageField) }() + case 213: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSfixed32Field) }() + case 214: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSfixed64Field) }() + case 215: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSint32Field) }() + case 216: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSint64Field) }() + case 217: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedStringField) }() + case 218: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedUint32Field) }() + case 219: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedUint64Field) }() + case 220: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingular) }() + case 221: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularBoolField) }() + case 222: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularBytesField) }() + case 223: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularDoubleField) }() + case 224: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularEnumField) }() + case 225: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFixed32Field) }() + case 226: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFixed64Field) }() + case 227: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFloatField) }() + case 228: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularGroupField) }() + case 229: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularInt32Field) }() + case 230: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularInt64Field) }() + case 231: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularMessageField) }() + case 232: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSfixed32Field) }() + case 233: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSfixed64Field) }() + case 234: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSint32Field) }() + case 235: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSint64Field) }() + case 236: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularStringField) }() + case 237: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularUint32Field) }() + case 238: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularUint64Field) }() + case 239: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeTextFormat) }() + case 240: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultAnyTypeUrlprefix) }() + case 241: try { try decoder.decodeSingularInt32Field(value: &_storage._defaults) }() + case 242: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultValue) }() + case 243: try { try decoder.decodeSingularInt32Field(value: &_storage._dependency) }() + case 244: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecated) }() + case 245: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecatedLegacyJsonFieldConflicts) }() + case 246: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecationWarning) }() + case 247: try { try decoder.decodeSingularInt32Field(value: &_storage._description_p) }() + case 248: try { try decoder.decodeSingularInt32Field(value: &_storage._descriptorProto) }() + case 249: try { try decoder.decodeSingularInt32Field(value: &_storage._dictionary) }() + case 250: try { try decoder.decodeSingularInt32Field(value: &_storage._dictionaryLiteral) }() + case 251: try { try decoder.decodeSingularInt32Field(value: &_storage._digit) }() + case 252: try { try decoder.decodeSingularInt32Field(value: &_storage._digit0) }() + case 253: try { try decoder.decodeSingularInt32Field(value: &_storage._digit1) }() + case 254: try { try decoder.decodeSingularInt32Field(value: &_storage._digitCount) }() + case 255: try { try decoder.decodeSingularInt32Field(value: &_storage._digits) }() + case 256: try { try decoder.decodeSingularInt32Field(value: &_storage._digitValue) }() + case 257: try { try decoder.decodeSingularInt32Field(value: &_storage._discardableResult) }() + case 258: try { try decoder.decodeSingularInt32Field(value: &_storage._discardUnknownFields) }() + case 259: try { try decoder.decodeSingularInt32Field(value: &_storage._double) }() + case 260: try { try decoder.decodeSingularInt32Field(value: &_storage._doubleValue) }() + case 261: try { try decoder.decodeSingularInt32Field(value: &_storage._duration) }() + case 262: try { try decoder.decodeSingularInt32Field(value: &_storage._e) }() + case 263: try { try decoder.decodeSingularInt32Field(value: &_storage._edition) }() + case 264: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDefault) }() + case 265: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDefaults) }() + case 266: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDeprecated) }() + case 267: try { try decoder.decodeSingularInt32Field(value: &_storage._editionIntroduced) }() + case 268: try { try decoder.decodeSingularInt32Field(value: &_storage._editionRemoved) }() + case 269: try { try decoder.decodeSingularInt32Field(value: &_storage._element) }() + case 270: try { try decoder.decodeSingularInt32Field(value: &_storage._elements) }() + case 271: try { try decoder.decodeSingularInt32Field(value: &_storage._emitExtensionFieldName) }() + case 272: try { try decoder.decodeSingularInt32Field(value: &_storage._emitFieldName) }() + case 273: try { try decoder.decodeSingularInt32Field(value: &_storage._emitFieldNumber) }() + case 274: try { try decoder.decodeSingularInt32Field(value: &_storage._empty) }() + case 275: try { try decoder.decodeSingularInt32Field(value: &_storage._encodeAsBytes) }() + case 276: try { try decoder.decodeSingularInt32Field(value: &_storage._encoded) }() + case 277: try { try decoder.decodeSingularInt32Field(value: &_storage._encodedJsonstring) }() + case 278: try { try decoder.decodeSingularInt32Field(value: &_storage._encodedSize) }() + case 279: try { try decoder.decodeSingularInt32Field(value: &_storage._encodeField) }() + case 280: try { try decoder.decodeSingularInt32Field(value: &_storage._encoder) }() + case 281: try { try decoder.decodeSingularInt32Field(value: &_storage._end) }() + case 282: try { try decoder.decodeSingularInt32Field(value: &_storage._endArray) }() + case 283: try { try decoder.decodeSingularInt32Field(value: &_storage._endMessageField) }() + case 284: try { try decoder.decodeSingularInt32Field(value: &_storage._endObject) }() + case 285: try { try decoder.decodeSingularInt32Field(value: &_storage._endRegularField) }() + case 286: try { try decoder.decodeSingularInt32Field(value: &_storage._enum) }() + case 287: try { try decoder.decodeSingularInt32Field(value: &_storage._enumDescriptorProto) }() + case 288: try { try decoder.decodeSingularInt32Field(value: &_storage._enumOptions) }() + case 289: try { try decoder.decodeSingularInt32Field(value: &_storage._enumReservedRange) }() + case 290: try { try decoder.decodeSingularInt32Field(value: &_storage._enumType) }() + case 291: try { try decoder.decodeSingularInt32Field(value: &_storage._enumvalue) }() + case 292: try { try decoder.decodeSingularInt32Field(value: &_storage._enumValueDescriptorProto) }() + case 293: try { try decoder.decodeSingularInt32Field(value: &_storage._enumValueOptions) }() + case 294: try { try decoder.decodeSingularInt32Field(value: &_storage._equatable) }() + case 295: try { try decoder.decodeSingularInt32Field(value: &_storage._error) }() + case 296: try { try decoder.decodeSingularInt32Field(value: &_storage._expressibleByArrayLiteral) }() + case 297: try { try decoder.decodeSingularInt32Field(value: &_storage._expressibleByDictionaryLiteral) }() + case 298: try { try decoder.decodeSingularInt32Field(value: &_storage._ext) }() + case 299: try { try decoder.decodeSingularInt32Field(value: &_storage._extDecoder) }() + case 300: try { try decoder.decodeSingularInt32Field(value: &_storage._extendedGraphemeClusterLiteral) }() + case 301: try { try decoder.decodeSingularInt32Field(value: &_storage._extendedGraphemeClusterLiteralType) }() + case 302: try { try decoder.decodeSingularInt32Field(value: &_storage._extendee) }() + case 303: try { try decoder.decodeSingularInt32Field(value: &_storage._extensibleMessage) }() + case 304: try { try decoder.decodeSingularInt32Field(value: &_storage._extension) }() + case 305: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionField) }() + case 306: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionFieldNumber) }() + case 307: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionFieldValueSet) }() + case 308: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionMap) }() + case 309: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionRange) }() + case 310: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionRangeOptions) }() + case 311: try { try decoder.decodeSingularInt32Field(value: &_storage._extensions) }() + case 312: try { try decoder.decodeSingularInt32Field(value: &_storage._extras) }() + case 313: try { try decoder.decodeSingularInt32Field(value: &_storage._f) }() + case 314: try { try decoder.decodeSingularInt32Field(value: &_storage._false) }() + case 315: try { try decoder.decodeSingularInt32Field(value: &_storage._features) }() + case 316: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSet) }() + case 317: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSetDefaults) }() + case 318: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSetEditionDefault) }() + case 319: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSupport) }() + case 320: try { try decoder.decodeSingularInt32Field(value: &_storage._field) }() + case 321: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldData) }() + case 322: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldDescriptorProto) }() + case 323: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldMask) }() + case 324: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldName) }() + case 325: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNameCount) }() + case 326: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNum) }() + case 327: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNumber) }() + case 328: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNumberForProto) }() + case 329: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldOptions) }() + case 330: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldPresence) }() + case 331: try { try decoder.decodeSingularInt32Field(value: &_storage._fields) }() + case 332: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldSize) }() + case 333: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldTag) }() + case 334: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldType) }() + case 335: try { try decoder.decodeSingularInt32Field(value: &_storage._file) }() + case 336: try { try decoder.decodeSingularInt32Field(value: &_storage._fileDescriptorProto) }() + case 337: try { try decoder.decodeSingularInt32Field(value: &_storage._fileDescriptorSet) }() + case 338: try { try decoder.decodeSingularInt32Field(value: &_storage._fileName) }() + case 339: try { try decoder.decodeSingularInt32Field(value: &_storage._fileOptions) }() + case 340: try { try decoder.decodeSingularInt32Field(value: &_storage._filter) }() + case 341: try { try decoder.decodeSingularInt32Field(value: &_storage._final) }() + case 342: try { try decoder.decodeSingularInt32Field(value: &_storage._finiteOnly) }() + case 343: try { try decoder.decodeSingularInt32Field(value: &_storage._first) }() + case 344: try { try decoder.decodeSingularInt32Field(value: &_storage._firstItem) }() + case 345: try { try decoder.decodeSingularInt32Field(value: &_storage._fixedFeatures) }() + case 346: try { try decoder.decodeSingularInt32Field(value: &_storage._float) }() + case 347: try { try decoder.decodeSingularInt32Field(value: &_storage._floatLiteral) }() + case 348: try { try decoder.decodeSingularInt32Field(value: &_storage._floatLiteralType) }() + case 349: try { try decoder.decodeSingularInt32Field(value: &_storage._floatValue) }() + case 350: try { try decoder.decodeSingularInt32Field(value: &_storage._forMessageName) }() + case 351: try { try decoder.decodeSingularInt32Field(value: &_storage._formUnion) }() + case 352: try { try decoder.decodeSingularInt32Field(value: &_storage._forReadingFrom) }() + case 353: try { try decoder.decodeSingularInt32Field(value: &_storage._forTypeURL) }() + case 354: try { try decoder.decodeSingularInt32Field(value: &_storage._forwardParser) }() + case 355: try { try decoder.decodeSingularInt32Field(value: &_storage._forWritingInto) }() + case 356: try { try decoder.decodeSingularInt32Field(value: &_storage._from) }() + case 357: try { try decoder.decodeSingularInt32Field(value: &_storage._fromAscii2) }() + case 358: try { try decoder.decodeSingularInt32Field(value: &_storage._fromAscii4) }() + case 359: try { try decoder.decodeSingularInt32Field(value: &_storage._fromByteOffset) }() + case 360: try { try decoder.decodeSingularInt32Field(value: &_storage._fromHexDigit) }() + case 361: try { try decoder.decodeSingularInt32Field(value: &_storage._fullName) }() + case 362: try { try decoder.decodeSingularInt32Field(value: &_storage._func) }() + case 363: try { try decoder.decodeSingularInt32Field(value: &_storage._function) }() + case 364: try { try decoder.decodeSingularInt32Field(value: &_storage._g) }() + case 365: try { try decoder.decodeSingularInt32Field(value: &_storage._generatedCodeInfo) }() + case 366: try { try decoder.decodeSingularInt32Field(value: &_storage._get) }() + case 367: try { try decoder.decodeSingularInt32Field(value: &_storage._getExtensionValue) }() + case 368: try { try decoder.decodeSingularInt32Field(value: &_storage._googleapis) }() + case 369: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufAny) }() + case 370: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufApi) }() + case 371: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufBoolValue) }() + case 372: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufBytesValue) }() + case 373: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDescriptorProto) }() + case 374: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDoubleValue) }() + case 375: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDuration) }() + case 376: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEdition) }() + case 377: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEmpty) }() + case 378: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnum) }() + case 379: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumDescriptorProto) }() + case 380: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumOptions) }() + case 381: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValue) }() + case 382: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValueDescriptorProto) }() + case 383: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValueOptions) }() + case 384: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufExtensionRangeOptions) }() + case 385: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFeatureSet) }() + case 386: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFeatureSetDefaults) }() + case 387: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufField) }() + case 388: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldDescriptorProto) }() + case 389: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldMask) }() + case 390: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldOptions) }() + case 391: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileDescriptorProto) }() + case 392: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileDescriptorSet) }() + case 393: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileOptions) }() + case 394: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFloatValue) }() + case 395: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufGeneratedCodeInfo) }() + case 396: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufInt32Value) }() + case 397: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufInt64Value) }() + case 398: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufListValue) }() + case 399: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMessageOptions) }() + case 400: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethod) }() + case 401: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethodDescriptorProto) }() + case 402: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethodOptions) }() + case 403: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMixin) }() + case 404: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufNullValue) }() + case 405: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOneofDescriptorProto) }() + case 406: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOneofOptions) }() + case 407: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOption) }() + case 408: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufServiceDescriptorProto) }() + case 409: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufServiceOptions) }() + case 410: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSourceCodeInfo) }() + case 411: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSourceContext) }() + case 412: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufStringValue) }() + case 413: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufStruct) }() + case 414: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSyntax) }() + case 415: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufTimestamp) }() + case 416: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufType) }() + case 417: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUint32Value) }() + case 418: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUint64Value) }() + case 419: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUninterpretedOption) }() + case 420: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufValue) }() + case 421: try { try decoder.decodeSingularInt32Field(value: &_storage._goPackage) }() + case 422: try { try decoder.decodeSingularInt32Field(value: &_storage._group) }() + case 423: try { try decoder.decodeSingularInt32Field(value: &_storage._groupFieldNumberStack) }() + case 424: try { try decoder.decodeSingularInt32Field(value: &_storage._groupSize) }() + case 425: try { try decoder.decodeSingularInt32Field(value: &_storage._hadOneofValue) }() + case 426: try { try decoder.decodeSingularInt32Field(value: &_storage._handleConflictingOneOf) }() + case 427: try { try decoder.decodeSingularInt32Field(value: &_storage._hasAggregateValue_p) }() + case 428: try { try decoder.decodeSingularInt32Field(value: &_storage._hasAllowAlias_p) }() + case 429: try { try decoder.decodeSingularInt32Field(value: &_storage._hasBegin_p) }() + case 430: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCcEnableArenas_p) }() + case 431: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCcGenericServices_p) }() + case 432: try { try decoder.decodeSingularInt32Field(value: &_storage._hasClientStreaming_p) }() + case 433: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCsharpNamespace_p) }() + case 434: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCtype_p) }() + case 435: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDebugRedact_p) }() + case 436: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDefaultValue_p) }() + case 437: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecated_p) }() + case 438: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecatedLegacyJsonFieldConflicts_p) }() + case 439: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecationWarning_p) }() + case 440: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDoubleValue_p) }() + case 441: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEdition_p) }() + case 442: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionDeprecated_p) }() + case 443: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionIntroduced_p) }() + case 444: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionRemoved_p) }() + case 445: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEnd_p) }() + case 446: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEnumType_p) }() + case 447: try { try decoder.decodeSingularInt32Field(value: &_storage._hasExtendee_p) }() + case 448: try { try decoder.decodeSingularInt32Field(value: &_storage._hasExtensionValue_p) }() + case 449: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFeatures_p) }() + case 450: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFeatureSupport_p) }() + case 451: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFieldPresence_p) }() + case 452: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFixedFeatures_p) }() + case 453: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFullName_p) }() + case 454: try { try decoder.decodeSingularInt32Field(value: &_storage._hasGoPackage_p) }() + case 455: try { try decoder.decodeSingularInt32Field(value: &_storage._hash) }() + case 456: try { try decoder.decodeSingularInt32Field(value: &_storage._hashable) }() + case 457: try { try decoder.decodeSingularInt32Field(value: &_storage._hasher) }() + case 458: try { try decoder.decodeSingularInt32Field(value: &_storage._hashVisitor) }() + case 459: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIdempotencyLevel_p) }() + case 460: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIdentifierValue_p) }() + case 461: try { try decoder.decodeSingularInt32Field(value: &_storage._hasInputType_p) }() + case 462: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIsExtension_p) }() + case 463: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaGenerateEqualsAndHash_p) }() + case 464: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaGenericServices_p) }() + case 465: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaMultipleFiles_p) }() + case 466: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaOuterClassname_p) }() + case 467: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaPackage_p) }() + case 468: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaStringCheckUtf8_p) }() + case 469: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJsonFormat_p) }() + case 470: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJsonName_p) }() + case 471: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJstype_p) }() + case 472: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLabel_p) }() + case 473: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLazy_p) }() + case 474: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLeadingComments_p) }() + case 475: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMapEntry_p) }() + case 476: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMaximumEdition_p) }() + case 477: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMessageEncoding_p) }() + case 478: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMessageSetWireFormat_p) }() + case 479: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMinimumEdition_p) }() + case 480: try { try decoder.decodeSingularInt32Field(value: &_storage._hasName_p) }() + case 481: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNamePart_p) }() + case 482: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNegativeIntValue_p) }() + case 483: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNoStandardDescriptorAccessor_p) }() + case 484: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNumber_p) }() + case 485: try { try decoder.decodeSingularInt32Field(value: &_storage._hasObjcClassPrefix_p) }() + case 486: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOneofIndex_p) }() + case 487: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOptimizeFor_p) }() + case 488: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOptions_p) }() + case 489: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOutputType_p) }() + case 490: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOverridableFeatures_p) }() + case 491: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPackage_p) }() + case 492: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPacked_p) }() + case 493: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpClassPrefix_p) }() + case 494: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpMetadataNamespace_p) }() + case 495: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpNamespace_p) }() + case 496: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPositiveIntValue_p) }() + case 497: try { try decoder.decodeSingularInt32Field(value: &_storage._hasProto3Optional_p) }() + case 498: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPyGenericServices_p) }() + case 499: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRepeated_p) }() + case 500: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRepeatedFieldEncoding_p) }() + case 501: try { try decoder.decodeSingularInt32Field(value: &_storage._hasReserved_p) }() + case 502: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRetention_p) }() + case 503: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRubyPackage_p) }() + case 504: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSemantic_p) }() + case 505: try { try decoder.decodeSingularInt32Field(value: &_storage._hasServerStreaming_p) }() + case 506: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceCodeInfo_p) }() + case 507: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceContext_p) }() + case 508: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceFile_p) }() + case 509: try { try decoder.decodeSingularInt32Field(value: &_storage._hasStart_p) }() + case 510: try { try decoder.decodeSingularInt32Field(value: &_storage._hasStringValue_p) }() + case 511: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSwiftPrefix_p) }() + case 512: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSyntax_p) }() + case 513: try { try decoder.decodeSingularInt32Field(value: &_storage._hasTrailingComments_p) }() + case 514: try { try decoder.decodeSingularInt32Field(value: &_storage._hasType_p) }() + case 515: try { try decoder.decodeSingularInt32Field(value: &_storage._hasTypeName_p) }() + case 516: try { try decoder.decodeSingularInt32Field(value: &_storage._hasUnverifiedLazy_p) }() + case 517: try { try decoder.decodeSingularInt32Field(value: &_storage._hasUtf8Validation_p) }() + case 518: try { try decoder.decodeSingularInt32Field(value: &_storage._hasValue_p) }() + case 519: try { try decoder.decodeSingularInt32Field(value: &_storage._hasVerification_p) }() + case 520: try { try decoder.decodeSingularInt32Field(value: &_storage._hasWeak_p) }() + case 521: try { try decoder.decodeSingularInt32Field(value: &_storage._hour) }() + case 522: try { try decoder.decodeSingularInt32Field(value: &_storage._i) }() + case 523: try { try decoder.decodeSingularInt32Field(value: &_storage._idempotencyLevel) }() + case 524: try { try decoder.decodeSingularInt32Field(value: &_storage._identifierValue) }() + case 525: try { try decoder.decodeSingularInt32Field(value: &_storage._if) }() + case 526: try { try decoder.decodeSingularInt32Field(value: &_storage._ignoreUnknownExtensionFields) }() + case 527: try { try decoder.decodeSingularInt32Field(value: &_storage._ignoreUnknownFields) }() + case 528: try { try decoder.decodeSingularInt32Field(value: &_storage._index) }() + case 529: try { try decoder.decodeSingularInt32Field(value: &_storage._init_p) }() + case 530: try { try decoder.decodeSingularInt32Field(value: &_storage._inout) }() + case 531: try { try decoder.decodeSingularInt32Field(value: &_storage._inputType) }() + case 532: try { try decoder.decodeSingularInt32Field(value: &_storage._insert) }() + case 533: try { try decoder.decodeSingularInt32Field(value: &_storage._int) }() + case 534: try { try decoder.decodeSingularInt32Field(value: &_storage._int32) }() + case 535: try { try decoder.decodeSingularInt32Field(value: &_storage._int32Value) }() + case 536: try { try decoder.decodeSingularInt32Field(value: &_storage._int64) }() + case 537: try { try decoder.decodeSingularInt32Field(value: &_storage._int64Value) }() + case 538: try { try decoder.decodeSingularInt32Field(value: &_storage._int8) }() + case 539: try { try decoder.decodeSingularInt32Field(value: &_storage._integerLiteral) }() + case 540: try { try decoder.decodeSingularInt32Field(value: &_storage._integerLiteralType) }() + case 541: try { try decoder.decodeSingularInt32Field(value: &_storage._intern) }() + case 542: try { try decoder.decodeSingularInt32Field(value: &_storage._internal) }() + case 543: try { try decoder.decodeSingularInt32Field(value: &_storage._internalState) }() + case 544: try { try decoder.decodeSingularInt32Field(value: &_storage._into) }() + case 545: try { try decoder.decodeSingularInt32Field(value: &_storage._ints) }() + case 546: try { try decoder.decodeSingularInt32Field(value: &_storage._isA) }() + case 547: try { try decoder.decodeSingularInt32Field(value: &_storage._isEqual) }() + case 548: try { try decoder.decodeSingularInt32Field(value: &_storage._isEqualTo) }() + case 549: try { try decoder.decodeSingularInt32Field(value: &_storage._isExtension) }() + case 550: try { try decoder.decodeSingularInt32Field(value: &_storage._isInitialized_p) }() + case 551: try { try decoder.decodeSingularInt32Field(value: &_storage._isNegative) }() + case 552: try { try decoder.decodeSingularInt32Field(value: &_storage._itemTagsEncodedSize) }() + case 553: try { try decoder.decodeSingularInt32Field(value: &_storage._iterator) }() + case 554: try { try decoder.decodeSingularInt32Field(value: &_storage._javaGenerateEqualsAndHash) }() + case 555: try { try decoder.decodeSingularInt32Field(value: &_storage._javaGenericServices) }() + case 556: try { try decoder.decodeSingularInt32Field(value: &_storage._javaMultipleFiles) }() + case 557: try { try decoder.decodeSingularInt32Field(value: &_storage._javaOuterClassname) }() + case 558: try { try decoder.decodeSingularInt32Field(value: &_storage._javaPackage) }() + case 559: try { try decoder.decodeSingularInt32Field(value: &_storage._javaStringCheckUtf8) }() + case 560: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecoder) }() + case 561: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecodingError) }() + case 562: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecodingOptions) }() + case 563: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonEncoder) }() + case 564: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencoding) }() + case 565: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingError) }() + case 566: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingOptions) }() + case 567: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingVisitor) }() + case 568: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonFormat) }() + case 569: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonmapEncodingVisitor) }() + case 570: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonName) }() + case 571: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonPath) }() + case 572: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonPaths) }() + case 573: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonscanner) }() + case 574: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonString) }() + case 575: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonText) }() + case 576: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonUtf8Bytes) }() + case 577: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonUtf8Data) }() + case 578: try { try decoder.decodeSingularInt32Field(value: &_storage._jstype) }() + case 579: try { try decoder.decodeSingularInt32Field(value: &_storage._k) }() + case 580: try { try decoder.decodeSingularInt32Field(value: &_storage._kChunkSize) }() + case 581: try { try decoder.decodeSingularInt32Field(value: &_storage._key) }() + case 582: try { try decoder.decodeSingularInt32Field(value: &_storage._keyField) }() + case 583: try { try decoder.decodeSingularInt32Field(value: &_storage._keyFieldOpt) }() + case 584: try { try decoder.decodeSingularInt32Field(value: &_storage._keyType) }() + case 585: try { try decoder.decodeSingularInt32Field(value: &_storage._kind) }() + case 586: try { try decoder.decodeSingularInt32Field(value: &_storage._l) }() + case 587: try { try decoder.decodeSingularInt32Field(value: &_storage._label) }() + case 588: try { try decoder.decodeSingularInt32Field(value: &_storage._lazy) }() + case 589: try { try decoder.decodeSingularInt32Field(value: &_storage._leadingComments) }() + case 590: try { try decoder.decodeSingularInt32Field(value: &_storage._leadingDetachedComments) }() + case 591: try { try decoder.decodeSingularInt32Field(value: &_storage._length) }() + case 592: try { try decoder.decodeSingularInt32Field(value: &_storage._lessThan) }() + case 593: try { try decoder.decodeSingularInt32Field(value: &_storage._let) }() + case 594: try { try decoder.decodeSingularInt32Field(value: &_storage._lhs) }() + case 595: try { try decoder.decodeSingularInt32Field(value: &_storage._line) }() + case 596: try { try decoder.decodeSingularInt32Field(value: &_storage._list) }() + case 597: try { try decoder.decodeSingularInt32Field(value: &_storage._listOfMessages) }() + case 598: try { try decoder.decodeSingularInt32Field(value: &_storage._listValue) }() + case 599: try { try decoder.decodeSingularInt32Field(value: &_storage._littleEndian) }() + case 600: try { try decoder.decodeSingularInt32Field(value: &_storage._load) }() + case 601: try { try decoder.decodeSingularInt32Field(value: &_storage._localHasher) }() + case 602: try { try decoder.decodeSingularInt32Field(value: &_storage._location) }() + case 603: try { try decoder.decodeSingularInt32Field(value: &_storage._m) }() + case 604: try { try decoder.decodeSingularInt32Field(value: &_storage._major) }() + case 605: try { try decoder.decodeSingularInt32Field(value: &_storage._makeAsyncIterator) }() + case 606: try { try decoder.decodeSingularInt32Field(value: &_storage._makeIterator) }() + case 607: try { try decoder.decodeSingularInt32Field(value: &_storage._malformedLength) }() + case 608: try { try decoder.decodeSingularInt32Field(value: &_storage._mapEntry) }() + case 609: try { try decoder.decodeSingularInt32Field(value: &_storage._mapKeyType) }() + case 610: try { try decoder.decodeSingularInt32Field(value: &_storage._mapToMessages) }() + case 611: try { try decoder.decodeSingularInt32Field(value: &_storage._mapValueType) }() + case 612: try { try decoder.decodeSingularInt32Field(value: &_storage._mapVisitor) }() + case 613: try { try decoder.decodeSingularInt32Field(value: &_storage._maximumEdition) }() + case 614: try { try decoder.decodeSingularInt32Field(value: &_storage._mdayStart) }() + case 615: try { try decoder.decodeSingularInt32Field(value: &_storage._merge) }() + case 616: try { try decoder.decodeSingularInt32Field(value: &_storage._message) }() + case 617: try { try decoder.decodeSingularInt32Field(value: &_storage._messageDepthLimit) }() + case 618: try { try decoder.decodeSingularInt32Field(value: &_storage._messageEncoding) }() + case 619: try { try decoder.decodeSingularInt32Field(value: &_storage._messageExtension) }() + case 620: try { try decoder.decodeSingularInt32Field(value: &_storage._messageImplementationBase) }() + case 621: try { try decoder.decodeSingularInt32Field(value: &_storage._messageOptions) }() + case 622: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSet) }() + case 623: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSetWireFormat) }() + case 624: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSize) }() + case 625: try { try decoder.decodeSingularInt32Field(value: &_storage._messageType) }() + case 626: try { try decoder.decodeSingularInt32Field(value: &_storage._method) }() + case 627: try { try decoder.decodeSingularInt32Field(value: &_storage._methodDescriptorProto) }() + case 628: try { try decoder.decodeSingularInt32Field(value: &_storage._methodOptions) }() + case 629: try { try decoder.decodeSingularInt32Field(value: &_storage._methods) }() + case 630: try { try decoder.decodeSingularInt32Field(value: &_storage._min) }() + case 631: try { try decoder.decodeSingularInt32Field(value: &_storage._minimumEdition) }() + case 632: try { try decoder.decodeSingularInt32Field(value: &_storage._minor) }() + case 633: try { try decoder.decodeSingularInt32Field(value: &_storage._mixin) }() + case 634: try { try decoder.decodeSingularInt32Field(value: &_storage._mixins) }() + case 635: try { try decoder.decodeSingularInt32Field(value: &_storage._modifier) }() + case 636: try { try decoder.decodeSingularInt32Field(value: &_storage._modify) }() + case 637: try { try decoder.decodeSingularInt32Field(value: &_storage._month) }() + case 638: try { try decoder.decodeSingularInt32Field(value: &_storage._msgExtension) }() + case 639: try { try decoder.decodeSingularInt32Field(value: &_storage._mutating) }() + case 640: try { try decoder.decodeSingularInt32Field(value: &_storage._n) }() + case 641: try { try decoder.decodeSingularInt32Field(value: &_storage._name) }() + case 642: try { try decoder.decodeSingularInt32Field(value: &_storage._nameDescription) }() + case 643: try { try decoder.decodeSingularInt32Field(value: &_storage._nameMap) }() + case 644: try { try decoder.decodeSingularInt32Field(value: &_storage._namePart) }() + case 645: try { try decoder.decodeSingularInt32Field(value: &_storage._names) }() + case 646: try { try decoder.decodeSingularInt32Field(value: &_storage._nanos) }() + case 647: try { try decoder.decodeSingularInt32Field(value: &_storage._negativeIntValue) }() + case 648: try { try decoder.decodeSingularInt32Field(value: &_storage._nestedType) }() + case 649: try { try decoder.decodeSingularInt32Field(value: &_storage._newL) }() + case 650: try { try decoder.decodeSingularInt32Field(value: &_storage._newList) }() + case 651: try { try decoder.decodeSingularInt32Field(value: &_storage._newValue) }() + case 652: try { try decoder.decodeSingularInt32Field(value: &_storage._next) }() + case 653: try { try decoder.decodeSingularInt32Field(value: &_storage._nextByte) }() + case 654: try { try decoder.decodeSingularInt32Field(value: &_storage._nextFieldNumber) }() + case 655: try { try decoder.decodeSingularInt32Field(value: &_storage._nextVarInt) }() + case 656: try { try decoder.decodeSingularInt32Field(value: &_storage._nil) }() + case 657: try { try decoder.decodeSingularInt32Field(value: &_storage._nilLiteral) }() + case 658: try { try decoder.decodeSingularInt32Field(value: &_storage._noBytesAvailable) }() + case 659: try { try decoder.decodeSingularInt32Field(value: &_storage._noStandardDescriptorAccessor) }() + case 660: try { try decoder.decodeSingularInt32Field(value: &_storage._nullValue) }() + case 661: try { try decoder.decodeSingularInt32Field(value: &_storage._number) }() + case 662: try { try decoder.decodeSingularInt32Field(value: &_storage._numberValue) }() + case 663: try { try decoder.decodeSingularInt32Field(value: &_storage._objcClassPrefix) }() + case 664: try { try decoder.decodeSingularInt32Field(value: &_storage._of) }() + case 665: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofDecl) }() + case 666: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofDescriptorProto) }() + case 667: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofIndex) }() + case 668: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofOptions) }() + case 669: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofs) }() + case 670: try { try decoder.decodeSingularInt32Field(value: &_storage._oneOfKind) }() + case 671: try { try decoder.decodeSingularInt32Field(value: &_storage._optimizeFor) }() + case 672: try { try decoder.decodeSingularInt32Field(value: &_storage._optimizeMode) }() + case 673: try { try decoder.decodeSingularInt32Field(value: &_storage._option) }() + case 674: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalEnumExtensionField) }() + case 675: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalExtensionField) }() + case 676: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalGroupExtensionField) }() + case 677: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalMessageExtensionField) }() + case 678: try { try decoder.decodeSingularInt32Field(value: &_storage._optionRetention) }() + case 679: try { try decoder.decodeSingularInt32Field(value: &_storage._options) }() + case 680: try { try decoder.decodeSingularInt32Field(value: &_storage._optionTargetType) }() + case 681: try { try decoder.decodeSingularInt32Field(value: &_storage._other) }() + case 682: try { try decoder.decodeSingularInt32Field(value: &_storage._others) }() + case 683: try { try decoder.decodeSingularInt32Field(value: &_storage._out) }() + case 684: try { try decoder.decodeSingularInt32Field(value: &_storage._outputType) }() + case 685: try { try decoder.decodeSingularInt32Field(value: &_storage._overridableFeatures) }() + case 686: try { try decoder.decodeSingularInt32Field(value: &_storage._p) }() + case 687: try { try decoder.decodeSingularInt32Field(value: &_storage._package) }() + case 688: try { try decoder.decodeSingularInt32Field(value: &_storage._packed) }() + case 689: try { try decoder.decodeSingularInt32Field(value: &_storage._packedEnumExtensionField) }() + case 690: try { try decoder.decodeSingularInt32Field(value: &_storage._packedExtensionField) }() + case 691: try { try decoder.decodeSingularInt32Field(value: &_storage._padding) }() + case 692: try { try decoder.decodeSingularInt32Field(value: &_storage._parent) }() + case 693: try { try decoder.decodeSingularInt32Field(value: &_storage._parse) }() + case 694: try { try decoder.decodeSingularInt32Field(value: &_storage._path) }() + case 695: try { try decoder.decodeSingularInt32Field(value: &_storage._paths) }() + case 696: try { try decoder.decodeSingularInt32Field(value: &_storage._payload) }() + case 697: try { try decoder.decodeSingularInt32Field(value: &_storage._payloadSize) }() + case 698: try { try decoder.decodeSingularInt32Field(value: &_storage._phpClassPrefix) }() + case 699: try { try decoder.decodeSingularInt32Field(value: &_storage._phpMetadataNamespace) }() + case 700: try { try decoder.decodeSingularInt32Field(value: &_storage._phpNamespace) }() + case 701: try { try decoder.decodeSingularInt32Field(value: &_storage._pos) }() + case 702: try { try decoder.decodeSingularInt32Field(value: &_storage._positiveIntValue) }() + case 703: try { try decoder.decodeSingularInt32Field(value: &_storage._prefix) }() + case 704: try { try decoder.decodeSingularInt32Field(value: &_storage._preserveProtoFieldNames) }() + case 705: try { try decoder.decodeSingularInt32Field(value: &_storage._preTraverse) }() + case 706: try { try decoder.decodeSingularInt32Field(value: &_storage._printUnknownFields) }() + case 707: try { try decoder.decodeSingularInt32Field(value: &_storage._proto2) }() + case 708: try { try decoder.decodeSingularInt32Field(value: &_storage._proto3DefaultValue) }() + case 709: try { try decoder.decodeSingularInt32Field(value: &_storage._proto3Optional) }() + case 710: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufApiversionCheck) }() + case 711: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufApiversion3) }() + case 712: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufBool) }() + case 713: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufBytes) }() + case 714: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufDouble) }() + case 715: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufEnumMap) }() + case 716: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufExtension) }() + case 717: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFixed32) }() + case 718: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFixed64) }() + case 719: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFloat) }() + case 720: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufInt32) }() + case 721: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufInt64) }() + case 722: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufMap) }() + case 723: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufMessageMap) }() + case 724: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSfixed32) }() + case 725: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSfixed64) }() + case 726: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSint32) }() + case 727: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSint64) }() + case 728: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufString) }() + case 729: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufUint32) }() + case 730: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufUint64) }() + case 731: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufExtensionFieldValues) }() + case 732: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFieldNumber) }() + case 733: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufGeneratedIsEqualTo) }() + case 734: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufNameMap) }() + case 735: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufNewField) }() + case 736: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufPackage) }() + case 737: try { try decoder.decodeSingularInt32Field(value: &_storage._protocol) }() + case 738: try { try decoder.decodeSingularInt32Field(value: &_storage._protoFieldName) }() + case 739: try { try decoder.decodeSingularInt32Field(value: &_storage._protoMessageName) }() + case 740: try { try decoder.decodeSingularInt32Field(value: &_storage._protoNameProviding) }() + case 741: try { try decoder.decodeSingularInt32Field(value: &_storage._protoPaths) }() + case 742: try { try decoder.decodeSingularInt32Field(value: &_storage._public) }() + case 743: try { try decoder.decodeSingularInt32Field(value: &_storage._publicDependency) }() + case 744: try { try decoder.decodeSingularInt32Field(value: &_storage._putBoolValue) }() + case 745: try { try decoder.decodeSingularInt32Field(value: &_storage._putBytesValue) }() + case 746: try { try decoder.decodeSingularInt32Field(value: &_storage._putDoubleValue) }() + case 747: try { try decoder.decodeSingularInt32Field(value: &_storage._putEnumValue) }() + case 748: try { try decoder.decodeSingularInt32Field(value: &_storage._putFixedUint32) }() + case 749: try { try decoder.decodeSingularInt32Field(value: &_storage._putFixedUint64) }() + case 750: try { try decoder.decodeSingularInt32Field(value: &_storage._putFloatValue) }() + case 751: try { try decoder.decodeSingularInt32Field(value: &_storage._putInt64) }() + case 752: try { try decoder.decodeSingularInt32Field(value: &_storage._putStringValue) }() + case 753: try { try decoder.decodeSingularInt32Field(value: &_storage._putUint64) }() + case 754: try { try decoder.decodeSingularInt32Field(value: &_storage._putUint64Hex) }() + case 755: try { try decoder.decodeSingularInt32Field(value: &_storage._putVarInt) }() + case 756: try { try decoder.decodeSingularInt32Field(value: &_storage._putZigZagVarInt) }() + case 757: try { try decoder.decodeSingularInt32Field(value: &_storage._pyGenericServices) }() + case 758: try { try decoder.decodeSingularInt32Field(value: &_storage._r) }() + case 759: try { try decoder.decodeSingularInt32Field(value: &_storage._rawChars) }() + case 760: try { try decoder.decodeSingularInt32Field(value: &_storage._rawRepresentable) }() + case 761: try { try decoder.decodeSingularInt32Field(value: &_storage._rawValue) }() + case 762: try { try decoder.decodeSingularInt32Field(value: &_storage._read4HexDigits) }() + case 763: try { try decoder.decodeSingularInt32Field(value: &_storage._readBytes) }() + case 764: try { try decoder.decodeSingularInt32Field(value: &_storage._register) }() + case 765: try { try decoder.decodeSingularInt32Field(value: &_storage._repeated) }() + case 766: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedEnumExtensionField) }() + case 767: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedExtensionField) }() + case 768: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedFieldEncoding) }() + case 769: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedGroupExtensionField) }() + case 770: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedMessageExtensionField) }() + case 771: try { try decoder.decodeSingularInt32Field(value: &_storage._repeating) }() + case 772: try { try decoder.decodeSingularInt32Field(value: &_storage._requestStreaming) }() + case 773: try { try decoder.decodeSingularInt32Field(value: &_storage._requestTypeURL) }() + case 774: try { try decoder.decodeSingularInt32Field(value: &_storage._requiredSize) }() + case 775: try { try decoder.decodeSingularInt32Field(value: &_storage._responseStreaming) }() + case 776: try { try decoder.decodeSingularInt32Field(value: &_storage._responseTypeURL) }() + case 777: try { try decoder.decodeSingularInt32Field(value: &_storage._result) }() + case 778: try { try decoder.decodeSingularInt32Field(value: &_storage._retention) }() + case 779: try { try decoder.decodeSingularInt32Field(value: &_storage._rethrows) }() + case 780: try { try decoder.decodeSingularInt32Field(value: &_storage._return) }() + case 781: try { try decoder.decodeSingularInt32Field(value: &_storage._returnType) }() + case 782: try { try decoder.decodeSingularInt32Field(value: &_storage._revision) }() + case 783: try { try decoder.decodeSingularInt32Field(value: &_storage._rhs) }() + case 784: try { try decoder.decodeSingularInt32Field(value: &_storage._root) }() + case 785: try { try decoder.decodeSingularInt32Field(value: &_storage._rubyPackage) }() + case 786: try { try decoder.decodeSingularInt32Field(value: &_storage._s) }() + case 787: try { try decoder.decodeSingularInt32Field(value: &_storage._sawBackslash) }() + case 788: try { try decoder.decodeSingularInt32Field(value: &_storage._sawSection4Characters) }() + case 789: try { try decoder.decodeSingularInt32Field(value: &_storage._sawSection5Characters) }() + case 790: try { try decoder.decodeSingularInt32Field(value: &_storage._scan) }() + case 791: try { try decoder.decodeSingularInt32Field(value: &_storage._scanner) }() + case 792: try { try decoder.decodeSingularInt32Field(value: &_storage._seconds) }() + case 793: try { try decoder.decodeSingularInt32Field(value: &_storage._self_p) }() + case 794: try { try decoder.decodeSingularInt32Field(value: &_storage._semantic) }() + case 795: try { try decoder.decodeSingularInt32Field(value: &_storage._sendable) }() + case 796: try { try decoder.decodeSingularInt32Field(value: &_storage._separator) }() + case 797: try { try decoder.decodeSingularInt32Field(value: &_storage._serialize) }() + case 798: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedBytes) }() + case 799: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedData) }() + case 800: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedSize) }() + case 801: try { try decoder.decodeSingularInt32Field(value: &_storage._serverStreaming) }() + case 802: try { try decoder.decodeSingularInt32Field(value: &_storage._service) }() + case 803: try { try decoder.decodeSingularInt32Field(value: &_storage._serviceDescriptorProto) }() + case 804: try { try decoder.decodeSingularInt32Field(value: &_storage._serviceOptions) }() + case 805: try { try decoder.decodeSingularInt32Field(value: &_storage._set) }() + case 806: try { try decoder.decodeSingularInt32Field(value: &_storage._setExtensionValue) }() + case 807: try { try decoder.decodeSingularInt32Field(value: &_storage._shift) }() + case 808: try { try decoder.decodeSingularInt32Field(value: &_storage._simpleExtensionMap) }() + case 809: try { try decoder.decodeSingularInt32Field(value: &_storage._size) }() + case 810: try { try decoder.decodeSingularInt32Field(value: &_storage._sizer) }() + case 811: try { try decoder.decodeSingularInt32Field(value: &_storage._source) }() + case 812: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceCodeInfo) }() + case 813: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceContext) }() + case 814: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceEncoding) }() + case 815: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceFile) }() + case 816: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceLocation) }() + case 817: try { try decoder.decodeSingularInt32Field(value: &_storage._span) }() + case 818: try { try decoder.decodeSingularInt32Field(value: &_storage._split) }() + case 819: try { try decoder.decodeSingularInt32Field(value: &_storage._start) }() + case 820: try { try decoder.decodeSingularInt32Field(value: &_storage._startArray) }() + case 821: try { try decoder.decodeSingularInt32Field(value: &_storage._startArrayObject) }() + case 822: try { try decoder.decodeSingularInt32Field(value: &_storage._startField) }() + case 823: try { try decoder.decodeSingularInt32Field(value: &_storage._startIndex) }() + case 824: try { try decoder.decodeSingularInt32Field(value: &_storage._startMessageField) }() + case 825: try { try decoder.decodeSingularInt32Field(value: &_storage._startObject) }() + case 826: try { try decoder.decodeSingularInt32Field(value: &_storage._startRegularField) }() + case 827: try { try decoder.decodeSingularInt32Field(value: &_storage._state) }() + case 828: try { try decoder.decodeSingularInt32Field(value: &_storage._static) }() + case 829: try { try decoder.decodeSingularInt32Field(value: &_storage._staticString) }() + case 830: try { try decoder.decodeSingularInt32Field(value: &_storage._storage) }() + case 831: try { try decoder.decodeSingularInt32Field(value: &_storage._string) }() + case 832: try { try decoder.decodeSingularInt32Field(value: &_storage._stringLiteral) }() + case 833: try { try decoder.decodeSingularInt32Field(value: &_storage._stringLiteralType) }() + case 834: try { try decoder.decodeSingularInt32Field(value: &_storage._stringResult) }() + case 835: try { try decoder.decodeSingularInt32Field(value: &_storage._stringValue) }() + case 836: try { try decoder.decodeSingularInt32Field(value: &_storage._struct) }() + case 837: try { try decoder.decodeSingularInt32Field(value: &_storage._structValue) }() + case 838: try { try decoder.decodeSingularInt32Field(value: &_storage._subDecoder) }() + case 839: try { try decoder.decodeSingularInt32Field(value: &_storage._subscript) }() + case 840: try { try decoder.decodeSingularInt32Field(value: &_storage._subVisitor) }() + case 841: try { try decoder.decodeSingularInt32Field(value: &_storage._swift) }() + case 842: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftPrefix) }() + case 843: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftProtobufContiguousBytes) }() + case 844: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftProtobufError) }() + case 845: try { try decoder.decodeSingularInt32Field(value: &_storage._syntax) }() + case 846: try { try decoder.decodeSingularInt32Field(value: &_storage._t) }() + case 847: try { try decoder.decodeSingularInt32Field(value: &_storage._tag) }() + case 848: try { try decoder.decodeSingularInt32Field(value: &_storage._targets) }() + case 849: try { try decoder.decodeSingularInt32Field(value: &_storage._terminator) }() + case 850: try { try decoder.decodeSingularInt32Field(value: &_storage._testDecoder) }() + case 851: try { try decoder.decodeSingularInt32Field(value: &_storage._text) }() + case 852: try { try decoder.decodeSingularInt32Field(value: &_storage._textDecoder) }() + case 853: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecoder) }() + case 854: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecodingError) }() + case 855: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecodingOptions) }() + case 856: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatEncodingOptions) }() + case 857: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatEncodingVisitor) }() + case 858: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatString) }() + case 859: try { try decoder.decodeSingularInt32Field(value: &_storage._throwOrIgnore) }() + case 860: try { try decoder.decodeSingularInt32Field(value: &_storage._throws) }() + case 861: try { try decoder.decodeSingularInt32Field(value: &_storage._timeInterval) }() + case 862: try { try decoder.decodeSingularInt32Field(value: &_storage._timeIntervalSince1970) }() + case 863: try { try decoder.decodeSingularInt32Field(value: &_storage._timeIntervalSinceReferenceDate) }() + case 864: try { try decoder.decodeSingularInt32Field(value: &_storage._timestamp) }() + case 865: try { try decoder.decodeSingularInt32Field(value: &_storage._tooLarge) }() + case 866: try { try decoder.decodeSingularInt32Field(value: &_storage._total) }() + case 867: try { try decoder.decodeSingularInt32Field(value: &_storage._totalArrayDepth) }() + case 868: try { try decoder.decodeSingularInt32Field(value: &_storage._totalSize) }() + case 869: try { try decoder.decodeSingularInt32Field(value: &_storage._trailingComments) }() + case 870: try { try decoder.decodeSingularInt32Field(value: &_storage._traverse) }() + case 871: try { try decoder.decodeSingularInt32Field(value: &_storage._true) }() + case 872: try { try decoder.decodeSingularInt32Field(value: &_storage._try) }() + case 873: try { try decoder.decodeSingularInt32Field(value: &_storage._type) }() + case 874: try { try decoder.decodeSingularInt32Field(value: &_storage._typealias) }() + case 875: try { try decoder.decodeSingularInt32Field(value: &_storage._typeEnum) }() + case 876: try { try decoder.decodeSingularInt32Field(value: &_storage._typeName) }() + case 877: try { try decoder.decodeSingularInt32Field(value: &_storage._typePrefix) }() + case 878: try { try decoder.decodeSingularInt32Field(value: &_storage._typeStart) }() + case 879: try { try decoder.decodeSingularInt32Field(value: &_storage._typeUnknown) }() + case 880: try { try decoder.decodeSingularInt32Field(value: &_storage._typeURL) }() + case 881: try { try decoder.decodeSingularInt32Field(value: &_storage._uint32) }() + case 882: try { try decoder.decodeSingularInt32Field(value: &_storage._uint32Value) }() + case 883: try { try decoder.decodeSingularInt32Field(value: &_storage._uint64) }() + case 884: try { try decoder.decodeSingularInt32Field(value: &_storage._uint64Value) }() + case 885: try { try decoder.decodeSingularInt32Field(value: &_storage._uint8) }() + case 886: try { try decoder.decodeSingularInt32Field(value: &_storage._unchecked) }() + case 887: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarLiteral) }() + case 888: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarLiteralType) }() + case 889: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalars) }() + case 890: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarView) }() + case 891: try { try decoder.decodeSingularInt32Field(value: &_storage._uninterpretedOption) }() + case 892: try { try decoder.decodeSingularInt32Field(value: &_storage._union) }() + case 893: try { try decoder.decodeSingularInt32Field(value: &_storage._uniqueStorage) }() + case 894: try { try decoder.decodeSingularInt32Field(value: &_storage._unknown) }() + case 895: try { try decoder.decodeSingularInt32Field(value: &_storage._unknownFields_p) }() + case 896: try { try decoder.decodeSingularInt32Field(value: &_storage._unknownStorage) }() + case 897: try { try decoder.decodeSingularInt32Field(value: &_storage._unpackTo) }() + case 898: try { try decoder.decodeSingularInt32Field(value: &_storage._unregisteredTypeURL) }() + case 899: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeBufferPointer) }() + case 900: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeMutablePointer) }() + case 901: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeMutableRawBufferPointer) }() + case 902: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeRawBufferPointer) }() + case 903: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeRawPointer) }() + case 904: try { try decoder.decodeSingularInt32Field(value: &_storage._unverifiedLazy) }() + case 905: try { try decoder.decodeSingularInt32Field(value: &_storage._updatedOptions) }() + case 906: try { try decoder.decodeSingularInt32Field(value: &_storage._url) }() + case 907: try { try decoder.decodeSingularInt32Field(value: &_storage._useDeterministicOrdering) }() + case 908: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8) }() + case 909: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8Ptr) }() + case 910: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8ToDouble) }() + case 911: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8Validation) }() + case 912: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8View) }() + case 913: try { try decoder.decodeSingularInt32Field(value: &_storage._v) }() + case 914: try { try decoder.decodeSingularInt32Field(value: &_storage._value) }() + case 915: try { try decoder.decodeSingularInt32Field(value: &_storage._valueField) }() + case 916: try { try decoder.decodeSingularInt32Field(value: &_storage._values) }() + case 917: try { try decoder.decodeSingularInt32Field(value: &_storage._valueType) }() + case 918: try { try decoder.decodeSingularInt32Field(value: &_storage._var) }() + case 919: try { try decoder.decodeSingularInt32Field(value: &_storage._verification) }() + case 920: try { try decoder.decodeSingularInt32Field(value: &_storage._verificationState) }() + case 921: try { try decoder.decodeSingularInt32Field(value: &_storage._version) }() + case 922: try { try decoder.decodeSingularInt32Field(value: &_storage._versionString) }() + case 923: try { try decoder.decodeSingularInt32Field(value: &_storage._visitExtensionFields) }() + case 924: try { try decoder.decodeSingularInt32Field(value: &_storage._visitExtensionFieldsAsMessageSet) }() + case 925: try { try decoder.decodeSingularInt32Field(value: &_storage._visitMapField) }() + case 926: try { try decoder.decodeSingularInt32Field(value: &_storage._visitor) }() + case 927: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPacked) }() + case 928: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedBoolField) }() + case 929: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedDoubleField) }() + case 930: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedEnumField) }() + case 931: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFixed32Field) }() + case 932: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFixed64Field) }() + case 933: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFloatField) }() + case 934: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedInt32Field) }() + case 935: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedInt64Field) }() + case 936: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSfixed32Field) }() + case 937: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSfixed64Field) }() + case 938: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSint32Field) }() + case 939: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSint64Field) }() + case 940: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedUint32Field) }() + case 941: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedUint64Field) }() + case 942: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeated) }() + case 943: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedBoolField) }() + case 944: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedBytesField) }() + case 945: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedDoubleField) }() + case 946: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedEnumField) }() + case 947: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFixed32Field) }() + case 948: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFixed64Field) }() + case 949: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFloatField) }() + case 950: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedGroupField) }() + case 951: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedInt32Field) }() + case 952: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedInt64Field) }() + case 953: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedMessageField) }() + case 954: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSfixed32Field) }() + case 955: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSfixed64Field) }() + case 956: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSint32Field) }() + case 957: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSint64Field) }() + case 958: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedStringField) }() + case 959: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedUint32Field) }() + case 960: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedUint64Field) }() + case 961: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingular) }() + case 962: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularBoolField) }() + case 963: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularBytesField) }() + case 964: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularDoubleField) }() + case 965: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularEnumField) }() + case 966: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFixed32Field) }() + case 967: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFixed64Field) }() + case 968: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFloatField) }() + case 969: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularGroupField) }() + case 970: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularInt32Field) }() + case 971: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularInt64Field) }() + case 972: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularMessageField) }() + case 973: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSfixed32Field) }() + case 974: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSfixed64Field) }() + case 975: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSint32Field) }() + case 976: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSint64Field) }() + case 977: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularStringField) }() + case 978: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularUint32Field) }() + case 979: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularUint64Field) }() + case 980: try { try decoder.decodeSingularInt32Field(value: &_storage._visitUnknown) }() + case 981: try { try decoder.decodeSingularInt32Field(value: &_storage._wasDecoded) }() + case 982: try { try decoder.decodeSingularInt32Field(value: &_storage._weak) }() + case 983: try { try decoder.decodeSingularInt32Field(value: &_storage._weakDependency) }() + case 984: try { try decoder.decodeSingularInt32Field(value: &_storage._where) }() + case 985: try { try decoder.decodeSingularInt32Field(value: &_storage._wireFormat) }() + case 986: try { try decoder.decodeSingularInt32Field(value: &_storage._with) }() + case 987: try { try decoder.decodeSingularInt32Field(value: &_storage._withUnsafeBytes) }() + case 988: try { try decoder.decodeSingularInt32Field(value: &_storage._withUnsafeMutableBytes) }() + case 989: try { try decoder.decodeSingularInt32Field(value: &_storage._work) }() + case 990: try { try decoder.decodeSingularInt32Field(value: &_storage._wrapped) }() + case 991: try { try decoder.decodeSingularInt32Field(value: &_storage._wrappedType) }() + case 992: try { try decoder.decodeSingularInt32Field(value: &_storage._wrappedValue) }() + case 993: try { try decoder.decodeSingularInt32Field(value: &_storage._written) }() + case 994: try { try decoder.decodeSingularInt32Field(value: &_storage._yday) }() default: break } } @@ -8912,2903 +9065,2954 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._anyMessageStorage != 0 { try visitor.visitSingularInt32Field(value: _storage._anyMessageStorage, fieldNumber: 11) } + if _storage._anyTypeUrlnotRegistered != 0 { + try visitor.visitSingularInt32Field(value: _storage._anyTypeUrlnotRegistered, fieldNumber: 12) + } if _storage._anyUnpackError != 0 { - try visitor.visitSingularInt32Field(value: _storage._anyUnpackError, fieldNumber: 12) + try visitor.visitSingularInt32Field(value: _storage._anyUnpackError, fieldNumber: 13) } if _storage._api != 0 { - try visitor.visitSingularInt32Field(value: _storage._api, fieldNumber: 13) + try visitor.visitSingularInt32Field(value: _storage._api, fieldNumber: 14) } if _storage._appended != 0 { - try visitor.visitSingularInt32Field(value: _storage._appended, fieldNumber: 14) + try visitor.visitSingularInt32Field(value: _storage._appended, fieldNumber: 15) } if _storage._appendUintHex != 0 { - try visitor.visitSingularInt32Field(value: _storage._appendUintHex, fieldNumber: 15) + try visitor.visitSingularInt32Field(value: _storage._appendUintHex, fieldNumber: 16) } if _storage._appendUnknown != 0 { - try visitor.visitSingularInt32Field(value: _storage._appendUnknown, fieldNumber: 16) + try visitor.visitSingularInt32Field(value: _storage._appendUnknown, fieldNumber: 17) } if _storage._areAllInitialized != 0 { - try visitor.visitSingularInt32Field(value: _storage._areAllInitialized, fieldNumber: 17) + try visitor.visitSingularInt32Field(value: _storage._areAllInitialized, fieldNumber: 18) } if _storage._array != 0 { - try visitor.visitSingularInt32Field(value: _storage._array, fieldNumber: 18) + try visitor.visitSingularInt32Field(value: _storage._array, fieldNumber: 19) } if _storage._arrayDepth != 0 { - try visitor.visitSingularInt32Field(value: _storage._arrayDepth, fieldNumber: 19) + try visitor.visitSingularInt32Field(value: _storage._arrayDepth, fieldNumber: 20) } if _storage._arrayLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._arrayLiteral, fieldNumber: 20) + try visitor.visitSingularInt32Field(value: _storage._arrayLiteral, fieldNumber: 21) } if _storage._arraySeparator != 0 { - try visitor.visitSingularInt32Field(value: _storage._arraySeparator, fieldNumber: 21) + try visitor.visitSingularInt32Field(value: _storage._arraySeparator, fieldNumber: 22) } if _storage._as != 0 { - try visitor.visitSingularInt32Field(value: _storage._as, fieldNumber: 22) + try visitor.visitSingularInt32Field(value: _storage._as, fieldNumber: 23) } if _storage._asciiOpenCurlyBracket != 0 { - try visitor.visitSingularInt32Field(value: _storage._asciiOpenCurlyBracket, fieldNumber: 23) + try visitor.visitSingularInt32Field(value: _storage._asciiOpenCurlyBracket, fieldNumber: 24) } if _storage._asciiZero != 0 { - try visitor.visitSingularInt32Field(value: _storage._asciiZero, fieldNumber: 24) + try visitor.visitSingularInt32Field(value: _storage._asciiZero, fieldNumber: 25) } if _storage._async != 0 { - try visitor.visitSingularInt32Field(value: _storage._async, fieldNumber: 25) + try visitor.visitSingularInt32Field(value: _storage._async, fieldNumber: 26) } if _storage._asyncIterator != 0 { - try visitor.visitSingularInt32Field(value: _storage._asyncIterator, fieldNumber: 26) + try visitor.visitSingularInt32Field(value: _storage._asyncIterator, fieldNumber: 27) } if _storage._asyncIteratorProtocol != 0 { - try visitor.visitSingularInt32Field(value: _storage._asyncIteratorProtocol, fieldNumber: 27) + try visitor.visitSingularInt32Field(value: _storage._asyncIteratorProtocol, fieldNumber: 28) } if _storage._asyncMessageSequence != 0 { - try visitor.visitSingularInt32Field(value: _storage._asyncMessageSequence, fieldNumber: 28) + try visitor.visitSingularInt32Field(value: _storage._asyncMessageSequence, fieldNumber: 29) } if _storage._available != 0 { - try visitor.visitSingularInt32Field(value: _storage._available, fieldNumber: 29) + try visitor.visitSingularInt32Field(value: _storage._available, fieldNumber: 30) } if _storage._b != 0 { - try visitor.visitSingularInt32Field(value: _storage._b, fieldNumber: 30) + try visitor.visitSingularInt32Field(value: _storage._b, fieldNumber: 31) } if _storage._base != 0 { - try visitor.visitSingularInt32Field(value: _storage._base, fieldNumber: 31) + try visitor.visitSingularInt32Field(value: _storage._base, fieldNumber: 32) } if _storage._base64Values != 0 { - try visitor.visitSingularInt32Field(value: _storage._base64Values, fieldNumber: 32) + try visitor.visitSingularInt32Field(value: _storage._base64Values, fieldNumber: 33) } if _storage._baseAddress != 0 { - try visitor.visitSingularInt32Field(value: _storage._baseAddress, fieldNumber: 33) + try visitor.visitSingularInt32Field(value: _storage._baseAddress, fieldNumber: 34) } if _storage._baseType != 0 { - try visitor.visitSingularInt32Field(value: _storage._baseType, fieldNumber: 34) + try visitor.visitSingularInt32Field(value: _storage._baseType, fieldNumber: 35) } if _storage._begin != 0 { - try visitor.visitSingularInt32Field(value: _storage._begin, fieldNumber: 35) + try visitor.visitSingularInt32Field(value: _storage._begin, fieldNumber: 36) } if _storage._binary != 0 { - try visitor.visitSingularInt32Field(value: _storage._binary, fieldNumber: 36) + try visitor.visitSingularInt32Field(value: _storage._binary, fieldNumber: 37) } if _storage._binaryDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryDecoder, fieldNumber: 37) + try visitor.visitSingularInt32Field(value: _storage._binaryDecoder, fieldNumber: 38) + } + if _storage._binaryDecoding != 0 { + try visitor.visitSingularInt32Field(value: _storage._binaryDecoding, fieldNumber: 39) } if _storage._binaryDecodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryDecodingError, fieldNumber: 38) + try visitor.visitSingularInt32Field(value: _storage._binaryDecodingError, fieldNumber: 40) } if _storage._binaryDecodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryDecodingOptions, fieldNumber: 39) + try visitor.visitSingularInt32Field(value: _storage._binaryDecodingOptions, fieldNumber: 41) } if _storage._binaryDelimited != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryDelimited, fieldNumber: 40) + try visitor.visitSingularInt32Field(value: _storage._binaryDelimited, fieldNumber: 42) } if _storage._binaryEncoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncoder, fieldNumber: 41) + try visitor.visitSingularInt32Field(value: _storage._binaryEncoder, fieldNumber: 43) + } + if _storage._binaryEncoding != 0 { + try visitor.visitSingularInt32Field(value: _storage._binaryEncoding, fieldNumber: 44) } if _storage._binaryEncodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingError, fieldNumber: 42) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingError, fieldNumber: 45) } if _storage._binaryEncodingMessageSetSizeVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingMessageSetSizeVisitor, fieldNumber: 43) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingMessageSetSizeVisitor, fieldNumber: 46) } if _storage._binaryEncodingMessageSetVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingMessageSetVisitor, fieldNumber: 44) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingMessageSetVisitor, fieldNumber: 47) } if _storage._binaryEncodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingOptions, fieldNumber: 45) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingOptions, fieldNumber: 48) } if _storage._binaryEncodingSizeVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingSizeVisitor, fieldNumber: 46) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingSizeVisitor, fieldNumber: 49) } if _storage._binaryEncodingVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingVisitor, fieldNumber: 47) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingVisitor, fieldNumber: 50) } if _storage._binaryOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryOptions, fieldNumber: 48) + try visitor.visitSingularInt32Field(value: _storage._binaryOptions, fieldNumber: 51) } if _storage._binaryProtobufDelimitedMessages != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryProtobufDelimitedMessages, fieldNumber: 49) + try visitor.visitSingularInt32Field(value: _storage._binaryProtobufDelimitedMessages, fieldNumber: 52) + } + if _storage._binaryStreamDecoding != 0 { + try visitor.visitSingularInt32Field(value: _storage._binaryStreamDecoding, fieldNumber: 53) + } + if _storage._binaryStreamDecodingError != 0 { + try visitor.visitSingularInt32Field(value: _storage._binaryStreamDecodingError, fieldNumber: 54) } if _storage._bitPattern != 0 { - try visitor.visitSingularInt32Field(value: _storage._bitPattern, fieldNumber: 50) + try visitor.visitSingularInt32Field(value: _storage._bitPattern, fieldNumber: 55) } if _storage._body != 0 { - try visitor.visitSingularInt32Field(value: _storage._body, fieldNumber: 51) + try visitor.visitSingularInt32Field(value: _storage._body, fieldNumber: 56) } if _storage._bool != 0 { - try visitor.visitSingularInt32Field(value: _storage._bool, fieldNumber: 52) + try visitor.visitSingularInt32Field(value: _storage._bool, fieldNumber: 57) } if _storage._booleanLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._booleanLiteral, fieldNumber: 53) + try visitor.visitSingularInt32Field(value: _storage._booleanLiteral, fieldNumber: 58) } if _storage._booleanLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._booleanLiteralType, fieldNumber: 54) + try visitor.visitSingularInt32Field(value: _storage._booleanLiteralType, fieldNumber: 59) } if _storage._boolValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._boolValue, fieldNumber: 55) + try visitor.visitSingularInt32Field(value: _storage._boolValue, fieldNumber: 60) } if _storage._buffer != 0 { - try visitor.visitSingularInt32Field(value: _storage._buffer, fieldNumber: 56) + try visitor.visitSingularInt32Field(value: _storage._buffer, fieldNumber: 61) } if _storage._bytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytes, fieldNumber: 57) + try visitor.visitSingularInt32Field(value: _storage._bytes, fieldNumber: 62) } if _storage._bytesInGroup != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytesInGroup, fieldNumber: 58) + try visitor.visitSingularInt32Field(value: _storage._bytesInGroup, fieldNumber: 63) } if _storage._bytesNeeded != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytesNeeded, fieldNumber: 59) + try visitor.visitSingularInt32Field(value: _storage._bytesNeeded, fieldNumber: 64) } if _storage._bytesRead != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytesRead, fieldNumber: 60) + try visitor.visitSingularInt32Field(value: _storage._bytesRead, fieldNumber: 65) } if _storage._bytesValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytesValue, fieldNumber: 61) + try visitor.visitSingularInt32Field(value: _storage._bytesValue, fieldNumber: 66) } if _storage._c != 0 { - try visitor.visitSingularInt32Field(value: _storage._c, fieldNumber: 62) + try visitor.visitSingularInt32Field(value: _storage._c, fieldNumber: 67) } if _storage._capitalizeNext != 0 { - try visitor.visitSingularInt32Field(value: _storage._capitalizeNext, fieldNumber: 63) + try visitor.visitSingularInt32Field(value: _storage._capitalizeNext, fieldNumber: 68) } if _storage._cardinality != 0 { - try visitor.visitSingularInt32Field(value: _storage._cardinality, fieldNumber: 64) + try visitor.visitSingularInt32Field(value: _storage._cardinality, fieldNumber: 69) } if _storage._caseIterable != 0 { - try visitor.visitSingularInt32Field(value: _storage._caseIterable, fieldNumber: 65) + try visitor.visitSingularInt32Field(value: _storage._caseIterable, fieldNumber: 70) } if _storage._ccEnableArenas != 0 { - try visitor.visitSingularInt32Field(value: _storage._ccEnableArenas, fieldNumber: 66) + try visitor.visitSingularInt32Field(value: _storage._ccEnableArenas, fieldNumber: 71) } if _storage._ccGenericServices != 0 { - try visitor.visitSingularInt32Field(value: _storage._ccGenericServices, fieldNumber: 67) + try visitor.visitSingularInt32Field(value: _storage._ccGenericServices, fieldNumber: 72) } if _storage._character != 0 { - try visitor.visitSingularInt32Field(value: _storage._character, fieldNumber: 68) + try visitor.visitSingularInt32Field(value: _storage._character, fieldNumber: 73) } if _storage._chars != 0 { - try visitor.visitSingularInt32Field(value: _storage._chars, fieldNumber: 69) + try visitor.visitSingularInt32Field(value: _storage._chars, fieldNumber: 74) } if _storage._chunk != 0 { - try visitor.visitSingularInt32Field(value: _storage._chunk, fieldNumber: 70) + try visitor.visitSingularInt32Field(value: _storage._chunk, fieldNumber: 75) } if _storage._class != 0 { - try visitor.visitSingularInt32Field(value: _storage._class, fieldNumber: 71) + try visitor.visitSingularInt32Field(value: _storage._class, fieldNumber: 76) } if _storage._clearAggregateValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearAggregateValue_p, fieldNumber: 72) + try visitor.visitSingularInt32Field(value: _storage._clearAggregateValue_p, fieldNumber: 77) } if _storage._clearAllowAlias_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearAllowAlias_p, fieldNumber: 73) + try visitor.visitSingularInt32Field(value: _storage._clearAllowAlias_p, fieldNumber: 78) } if _storage._clearBegin_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearBegin_p, fieldNumber: 74) + try visitor.visitSingularInt32Field(value: _storage._clearBegin_p, fieldNumber: 79) } if _storage._clearCcEnableArenas_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearCcEnableArenas_p, fieldNumber: 75) + try visitor.visitSingularInt32Field(value: _storage._clearCcEnableArenas_p, fieldNumber: 80) } if _storage._clearCcGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearCcGenericServices_p, fieldNumber: 76) + try visitor.visitSingularInt32Field(value: _storage._clearCcGenericServices_p, fieldNumber: 81) } if _storage._clearClientStreaming_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearClientStreaming_p, fieldNumber: 77) + try visitor.visitSingularInt32Field(value: _storage._clearClientStreaming_p, fieldNumber: 82) } if _storage._clearCsharpNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearCsharpNamespace_p, fieldNumber: 78) + try visitor.visitSingularInt32Field(value: _storage._clearCsharpNamespace_p, fieldNumber: 83) } if _storage._clearCtype_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearCtype_p, fieldNumber: 79) + try visitor.visitSingularInt32Field(value: _storage._clearCtype_p, fieldNumber: 84) } if _storage._clearDebugRedact_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDebugRedact_p, fieldNumber: 80) + try visitor.visitSingularInt32Field(value: _storage._clearDebugRedact_p, fieldNumber: 85) } if _storage._clearDefaultValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDefaultValue_p, fieldNumber: 81) + try visitor.visitSingularInt32Field(value: _storage._clearDefaultValue_p, fieldNumber: 86) } if _storage._clearDeprecated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDeprecated_p, fieldNumber: 82) + try visitor.visitSingularInt32Field(value: _storage._clearDeprecated_p, fieldNumber: 87) } if _storage._clearDeprecatedLegacyJsonFieldConflicts_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDeprecatedLegacyJsonFieldConflicts_p, fieldNumber: 83) + try visitor.visitSingularInt32Field(value: _storage._clearDeprecatedLegacyJsonFieldConflicts_p, fieldNumber: 88) } if _storage._clearDeprecationWarning_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDeprecationWarning_p, fieldNumber: 84) + try visitor.visitSingularInt32Field(value: _storage._clearDeprecationWarning_p, fieldNumber: 89) } if _storage._clearDoubleValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDoubleValue_p, fieldNumber: 85) + try visitor.visitSingularInt32Field(value: _storage._clearDoubleValue_p, fieldNumber: 90) } if _storage._clearEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEdition_p, fieldNumber: 86) + try visitor.visitSingularInt32Field(value: _storage._clearEdition_p, fieldNumber: 91) } if _storage._clearEditionDeprecated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEditionDeprecated_p, fieldNumber: 87) + try visitor.visitSingularInt32Field(value: _storage._clearEditionDeprecated_p, fieldNumber: 92) } if _storage._clearEditionIntroduced_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEditionIntroduced_p, fieldNumber: 88) + try visitor.visitSingularInt32Field(value: _storage._clearEditionIntroduced_p, fieldNumber: 93) } if _storage._clearEditionRemoved_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEditionRemoved_p, fieldNumber: 89) + try visitor.visitSingularInt32Field(value: _storage._clearEditionRemoved_p, fieldNumber: 94) } if _storage._clearEnd_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEnd_p, fieldNumber: 90) + try visitor.visitSingularInt32Field(value: _storage._clearEnd_p, fieldNumber: 95) } if _storage._clearEnumType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEnumType_p, fieldNumber: 91) + try visitor.visitSingularInt32Field(value: _storage._clearEnumType_p, fieldNumber: 96) } if _storage._clearExtendee_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearExtendee_p, fieldNumber: 92) + try visitor.visitSingularInt32Field(value: _storage._clearExtendee_p, fieldNumber: 97) } if _storage._clearExtensionValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearExtensionValue_p, fieldNumber: 93) + try visitor.visitSingularInt32Field(value: _storage._clearExtensionValue_p, fieldNumber: 98) } if _storage._clearFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFeatures_p, fieldNumber: 94) + try visitor.visitSingularInt32Field(value: _storage._clearFeatures_p, fieldNumber: 99) } if _storage._clearFeatureSupport_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFeatureSupport_p, fieldNumber: 95) + try visitor.visitSingularInt32Field(value: _storage._clearFeatureSupport_p, fieldNumber: 100) } if _storage._clearFieldPresence_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFieldPresence_p, fieldNumber: 96) + try visitor.visitSingularInt32Field(value: _storage._clearFieldPresence_p, fieldNumber: 101) } if _storage._clearFixedFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFixedFeatures_p, fieldNumber: 97) + try visitor.visitSingularInt32Field(value: _storage._clearFixedFeatures_p, fieldNumber: 102) } if _storage._clearFullName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFullName_p, fieldNumber: 98) + try visitor.visitSingularInt32Field(value: _storage._clearFullName_p, fieldNumber: 103) } if _storage._clearGoPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearGoPackage_p, fieldNumber: 99) + try visitor.visitSingularInt32Field(value: _storage._clearGoPackage_p, fieldNumber: 104) } if _storage._clearIdempotencyLevel_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearIdempotencyLevel_p, fieldNumber: 100) + try visitor.visitSingularInt32Field(value: _storage._clearIdempotencyLevel_p, fieldNumber: 105) } if _storage._clearIdentifierValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearIdentifierValue_p, fieldNumber: 101) + try visitor.visitSingularInt32Field(value: _storage._clearIdentifierValue_p, fieldNumber: 106) } if _storage._clearInputType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearInputType_p, fieldNumber: 102) + try visitor.visitSingularInt32Field(value: _storage._clearInputType_p, fieldNumber: 107) } if _storage._clearIsExtension_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearIsExtension_p, fieldNumber: 103) + try visitor.visitSingularInt32Field(value: _storage._clearIsExtension_p, fieldNumber: 108) } if _storage._clearJavaGenerateEqualsAndHash_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaGenerateEqualsAndHash_p, fieldNumber: 104) + try visitor.visitSingularInt32Field(value: _storage._clearJavaGenerateEqualsAndHash_p, fieldNumber: 109) } if _storage._clearJavaGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaGenericServices_p, fieldNumber: 105) + try visitor.visitSingularInt32Field(value: _storage._clearJavaGenericServices_p, fieldNumber: 110) } if _storage._clearJavaMultipleFiles_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaMultipleFiles_p, fieldNumber: 106) + try visitor.visitSingularInt32Field(value: _storage._clearJavaMultipleFiles_p, fieldNumber: 111) } if _storage._clearJavaOuterClassname_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaOuterClassname_p, fieldNumber: 107) + try visitor.visitSingularInt32Field(value: _storage._clearJavaOuterClassname_p, fieldNumber: 112) } if _storage._clearJavaPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaPackage_p, fieldNumber: 108) + try visitor.visitSingularInt32Field(value: _storage._clearJavaPackage_p, fieldNumber: 113) } if _storage._clearJavaStringCheckUtf8_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaStringCheckUtf8_p, fieldNumber: 109) + try visitor.visitSingularInt32Field(value: _storage._clearJavaStringCheckUtf8_p, fieldNumber: 114) } if _storage._clearJsonFormat_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJsonFormat_p, fieldNumber: 110) + try visitor.visitSingularInt32Field(value: _storage._clearJsonFormat_p, fieldNumber: 115) } if _storage._clearJsonName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJsonName_p, fieldNumber: 111) + try visitor.visitSingularInt32Field(value: _storage._clearJsonName_p, fieldNumber: 116) } if _storage._clearJstype_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJstype_p, fieldNumber: 112) + try visitor.visitSingularInt32Field(value: _storage._clearJstype_p, fieldNumber: 117) } if _storage._clearLabel_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearLabel_p, fieldNumber: 113) + try visitor.visitSingularInt32Field(value: _storage._clearLabel_p, fieldNumber: 118) } if _storage._clearLazy_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearLazy_p, fieldNumber: 114) + try visitor.visitSingularInt32Field(value: _storage._clearLazy_p, fieldNumber: 119) } if _storage._clearLeadingComments_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearLeadingComments_p, fieldNumber: 115) + try visitor.visitSingularInt32Field(value: _storage._clearLeadingComments_p, fieldNumber: 120) } if _storage._clearMapEntry_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMapEntry_p, fieldNumber: 116) + try visitor.visitSingularInt32Field(value: _storage._clearMapEntry_p, fieldNumber: 121) } if _storage._clearMaximumEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMaximumEdition_p, fieldNumber: 117) + try visitor.visitSingularInt32Field(value: _storage._clearMaximumEdition_p, fieldNumber: 122) } if _storage._clearMessageEncoding_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMessageEncoding_p, fieldNumber: 118) + try visitor.visitSingularInt32Field(value: _storage._clearMessageEncoding_p, fieldNumber: 123) } if _storage._clearMessageSetWireFormat_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMessageSetWireFormat_p, fieldNumber: 119) + try visitor.visitSingularInt32Field(value: _storage._clearMessageSetWireFormat_p, fieldNumber: 124) } if _storage._clearMinimumEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMinimumEdition_p, fieldNumber: 120) + try visitor.visitSingularInt32Field(value: _storage._clearMinimumEdition_p, fieldNumber: 125) } if _storage._clearName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearName_p, fieldNumber: 121) + try visitor.visitSingularInt32Field(value: _storage._clearName_p, fieldNumber: 126) } if _storage._clearNamePart_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearNamePart_p, fieldNumber: 122) + try visitor.visitSingularInt32Field(value: _storage._clearNamePart_p, fieldNumber: 127) } if _storage._clearNegativeIntValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearNegativeIntValue_p, fieldNumber: 123) + try visitor.visitSingularInt32Field(value: _storage._clearNegativeIntValue_p, fieldNumber: 128) } if _storage._clearNoStandardDescriptorAccessor_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearNoStandardDescriptorAccessor_p, fieldNumber: 124) + try visitor.visitSingularInt32Field(value: _storage._clearNoStandardDescriptorAccessor_p, fieldNumber: 129) } if _storage._clearNumber_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearNumber_p, fieldNumber: 125) + try visitor.visitSingularInt32Field(value: _storage._clearNumber_p, fieldNumber: 130) } if _storage._clearObjcClassPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearObjcClassPrefix_p, fieldNumber: 126) + try visitor.visitSingularInt32Field(value: _storage._clearObjcClassPrefix_p, fieldNumber: 131) } if _storage._clearOneofIndex_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOneofIndex_p, fieldNumber: 127) + try visitor.visitSingularInt32Field(value: _storage._clearOneofIndex_p, fieldNumber: 132) } if _storage._clearOptimizeFor_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOptimizeFor_p, fieldNumber: 128) + try visitor.visitSingularInt32Field(value: _storage._clearOptimizeFor_p, fieldNumber: 133) } if _storage._clearOptions_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOptions_p, fieldNumber: 129) + try visitor.visitSingularInt32Field(value: _storage._clearOptions_p, fieldNumber: 134) } if _storage._clearOutputType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOutputType_p, fieldNumber: 130) + try visitor.visitSingularInt32Field(value: _storage._clearOutputType_p, fieldNumber: 135) } if _storage._clearOverridableFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOverridableFeatures_p, fieldNumber: 131) + try visitor.visitSingularInt32Field(value: _storage._clearOverridableFeatures_p, fieldNumber: 136) } if _storage._clearPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPackage_p, fieldNumber: 132) + try visitor.visitSingularInt32Field(value: _storage._clearPackage_p, fieldNumber: 137) } if _storage._clearPacked_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPacked_p, fieldNumber: 133) + try visitor.visitSingularInt32Field(value: _storage._clearPacked_p, fieldNumber: 138) } if _storage._clearPhpClassPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPhpClassPrefix_p, fieldNumber: 134) + try visitor.visitSingularInt32Field(value: _storage._clearPhpClassPrefix_p, fieldNumber: 139) } if _storage._clearPhpMetadataNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPhpMetadataNamespace_p, fieldNumber: 135) + try visitor.visitSingularInt32Field(value: _storage._clearPhpMetadataNamespace_p, fieldNumber: 140) } if _storage._clearPhpNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPhpNamespace_p, fieldNumber: 136) + try visitor.visitSingularInt32Field(value: _storage._clearPhpNamespace_p, fieldNumber: 141) } if _storage._clearPositiveIntValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPositiveIntValue_p, fieldNumber: 137) + try visitor.visitSingularInt32Field(value: _storage._clearPositiveIntValue_p, fieldNumber: 142) } if _storage._clearProto3Optional_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearProto3Optional_p, fieldNumber: 138) + try visitor.visitSingularInt32Field(value: _storage._clearProto3Optional_p, fieldNumber: 143) } if _storage._clearPyGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPyGenericServices_p, fieldNumber: 139) + try visitor.visitSingularInt32Field(value: _storage._clearPyGenericServices_p, fieldNumber: 144) } if _storage._clearRepeated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearRepeated_p, fieldNumber: 140) + try visitor.visitSingularInt32Field(value: _storage._clearRepeated_p, fieldNumber: 145) } if _storage._clearRepeatedFieldEncoding_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearRepeatedFieldEncoding_p, fieldNumber: 141) + try visitor.visitSingularInt32Field(value: _storage._clearRepeatedFieldEncoding_p, fieldNumber: 146) } if _storage._clearReserved_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearReserved_p, fieldNumber: 142) + try visitor.visitSingularInt32Field(value: _storage._clearReserved_p, fieldNumber: 147) } if _storage._clearRetention_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearRetention_p, fieldNumber: 143) + try visitor.visitSingularInt32Field(value: _storage._clearRetention_p, fieldNumber: 148) } if _storage._clearRubyPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearRubyPackage_p, fieldNumber: 144) + try visitor.visitSingularInt32Field(value: _storage._clearRubyPackage_p, fieldNumber: 149) } if _storage._clearSemantic_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSemantic_p, fieldNumber: 145) + try visitor.visitSingularInt32Field(value: _storage._clearSemantic_p, fieldNumber: 150) } if _storage._clearServerStreaming_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearServerStreaming_p, fieldNumber: 146) + try visitor.visitSingularInt32Field(value: _storage._clearServerStreaming_p, fieldNumber: 151) } if _storage._clearSourceCodeInfo_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSourceCodeInfo_p, fieldNumber: 147) + try visitor.visitSingularInt32Field(value: _storage._clearSourceCodeInfo_p, fieldNumber: 152) } if _storage._clearSourceContext_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSourceContext_p, fieldNumber: 148) + try visitor.visitSingularInt32Field(value: _storage._clearSourceContext_p, fieldNumber: 153) } if _storage._clearSourceFile_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSourceFile_p, fieldNumber: 149) + try visitor.visitSingularInt32Field(value: _storage._clearSourceFile_p, fieldNumber: 154) } if _storage._clearStart_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearStart_p, fieldNumber: 150) + try visitor.visitSingularInt32Field(value: _storage._clearStart_p, fieldNumber: 155) } if _storage._clearStringValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearStringValue_p, fieldNumber: 151) + try visitor.visitSingularInt32Field(value: _storage._clearStringValue_p, fieldNumber: 156) } if _storage._clearSwiftPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSwiftPrefix_p, fieldNumber: 152) + try visitor.visitSingularInt32Field(value: _storage._clearSwiftPrefix_p, fieldNumber: 157) } if _storage._clearSyntax_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSyntax_p, fieldNumber: 153) + try visitor.visitSingularInt32Field(value: _storage._clearSyntax_p, fieldNumber: 158) } if _storage._clearTrailingComments_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearTrailingComments_p, fieldNumber: 154) + try visitor.visitSingularInt32Field(value: _storage._clearTrailingComments_p, fieldNumber: 159) } if _storage._clearType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearType_p, fieldNumber: 155) + try visitor.visitSingularInt32Field(value: _storage._clearType_p, fieldNumber: 160) } if _storage._clearTypeName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearTypeName_p, fieldNumber: 156) + try visitor.visitSingularInt32Field(value: _storage._clearTypeName_p, fieldNumber: 161) } if _storage._clearUnverifiedLazy_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearUnverifiedLazy_p, fieldNumber: 157) + try visitor.visitSingularInt32Field(value: _storage._clearUnverifiedLazy_p, fieldNumber: 162) } if _storage._clearUtf8Validation_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearUtf8Validation_p, fieldNumber: 158) + try visitor.visitSingularInt32Field(value: _storage._clearUtf8Validation_p, fieldNumber: 163) } if _storage._clearValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearValue_p, fieldNumber: 159) + try visitor.visitSingularInt32Field(value: _storage._clearValue_p, fieldNumber: 164) } if _storage._clearVerification_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearVerification_p, fieldNumber: 160) + try visitor.visitSingularInt32Field(value: _storage._clearVerification_p, fieldNumber: 165) } if _storage._clearWeak_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearWeak_p, fieldNumber: 161) + try visitor.visitSingularInt32Field(value: _storage._clearWeak_p, fieldNumber: 166) } if _storage._clientStreaming != 0 { - try visitor.visitSingularInt32Field(value: _storage._clientStreaming, fieldNumber: 162) + try visitor.visitSingularInt32Field(value: _storage._clientStreaming, fieldNumber: 167) + } + if _storage._code != 0 { + try visitor.visitSingularInt32Field(value: _storage._code, fieldNumber: 168) } if _storage._codePoint != 0 { - try visitor.visitSingularInt32Field(value: _storage._codePoint, fieldNumber: 163) + try visitor.visitSingularInt32Field(value: _storage._codePoint, fieldNumber: 169) } if _storage._codeUnits != 0 { - try visitor.visitSingularInt32Field(value: _storage._codeUnits, fieldNumber: 164) + try visitor.visitSingularInt32Field(value: _storage._codeUnits, fieldNumber: 170) } if _storage._collection != 0 { - try visitor.visitSingularInt32Field(value: _storage._collection, fieldNumber: 165) + try visitor.visitSingularInt32Field(value: _storage._collection, fieldNumber: 171) } if _storage._com != 0 { - try visitor.visitSingularInt32Field(value: _storage._com, fieldNumber: 166) + try visitor.visitSingularInt32Field(value: _storage._com, fieldNumber: 172) } if _storage._comma != 0 { - try visitor.visitSingularInt32Field(value: _storage._comma, fieldNumber: 167) + try visitor.visitSingularInt32Field(value: _storage._comma, fieldNumber: 173) } if _storage._consumedBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._consumedBytes, fieldNumber: 168) + try visitor.visitSingularInt32Field(value: _storage._consumedBytes, fieldNumber: 174) } if _storage._contentsOf != 0 { - try visitor.visitSingularInt32Field(value: _storage._contentsOf, fieldNumber: 169) + try visitor.visitSingularInt32Field(value: _storage._contentsOf, fieldNumber: 175) + } + if _storage._copy != 0 { + try visitor.visitSingularInt32Field(value: _storage._copy, fieldNumber: 176) } if _storage._count != 0 { - try visitor.visitSingularInt32Field(value: _storage._count, fieldNumber: 170) + try visitor.visitSingularInt32Field(value: _storage._count, fieldNumber: 177) } if _storage._countVarintsInBuffer != 0 { - try visitor.visitSingularInt32Field(value: _storage._countVarintsInBuffer, fieldNumber: 171) + try visitor.visitSingularInt32Field(value: _storage._countVarintsInBuffer, fieldNumber: 178) } if _storage._csharpNamespace != 0 { - try visitor.visitSingularInt32Field(value: _storage._csharpNamespace, fieldNumber: 172) + try visitor.visitSingularInt32Field(value: _storage._csharpNamespace, fieldNumber: 179) } if _storage._ctype != 0 { - try visitor.visitSingularInt32Field(value: _storage._ctype, fieldNumber: 173) + try visitor.visitSingularInt32Field(value: _storage._ctype, fieldNumber: 180) } if _storage._customCodable != 0 { - try visitor.visitSingularInt32Field(value: _storage._customCodable, fieldNumber: 174) + try visitor.visitSingularInt32Field(value: _storage._customCodable, fieldNumber: 181) } if _storage._customDebugStringConvertible != 0 { - try visitor.visitSingularInt32Field(value: _storage._customDebugStringConvertible, fieldNumber: 175) + try visitor.visitSingularInt32Field(value: _storage._customDebugStringConvertible, fieldNumber: 182) + } + if _storage._customStringConvertible != 0 { + try visitor.visitSingularInt32Field(value: _storage._customStringConvertible, fieldNumber: 183) } if _storage._d != 0 { - try visitor.visitSingularInt32Field(value: _storage._d, fieldNumber: 176) + try visitor.visitSingularInt32Field(value: _storage._d, fieldNumber: 184) } if _storage._data != 0 { - try visitor.visitSingularInt32Field(value: _storage._data, fieldNumber: 177) + try visitor.visitSingularInt32Field(value: _storage._data, fieldNumber: 185) } if _storage._dataResult != 0 { - try visitor.visitSingularInt32Field(value: _storage._dataResult, fieldNumber: 178) + try visitor.visitSingularInt32Field(value: _storage._dataResult, fieldNumber: 186) } if _storage._date != 0 { - try visitor.visitSingularInt32Field(value: _storage._date, fieldNumber: 179) + try visitor.visitSingularInt32Field(value: _storage._date, fieldNumber: 187) } if _storage._daySec != 0 { - try visitor.visitSingularInt32Field(value: _storage._daySec, fieldNumber: 180) + try visitor.visitSingularInt32Field(value: _storage._daySec, fieldNumber: 188) } if _storage._daysSinceEpoch != 0 { - try visitor.visitSingularInt32Field(value: _storage._daysSinceEpoch, fieldNumber: 181) + try visitor.visitSingularInt32Field(value: _storage._daysSinceEpoch, fieldNumber: 189) } if _storage._debugDescription_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._debugDescription_p, fieldNumber: 182) + try visitor.visitSingularInt32Field(value: _storage._debugDescription_p, fieldNumber: 190) } if _storage._debugRedact != 0 { - try visitor.visitSingularInt32Field(value: _storage._debugRedact, fieldNumber: 183) + try visitor.visitSingularInt32Field(value: _storage._debugRedact, fieldNumber: 191) } if _storage._declaration != 0 { - try visitor.visitSingularInt32Field(value: _storage._declaration, fieldNumber: 184) + try visitor.visitSingularInt32Field(value: _storage._declaration, fieldNumber: 192) } if _storage._decoded != 0 { - try visitor.visitSingularInt32Field(value: _storage._decoded, fieldNumber: 185) + try visitor.visitSingularInt32Field(value: _storage._decoded, fieldNumber: 193) } if _storage._decodedFromJsonnull != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodedFromJsonnull, fieldNumber: 186) + try visitor.visitSingularInt32Field(value: _storage._decodedFromJsonnull, fieldNumber: 194) } if _storage._decodeExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeExtensionField, fieldNumber: 187) + try visitor.visitSingularInt32Field(value: _storage._decodeExtensionField, fieldNumber: 195) } if _storage._decodeExtensionFieldsAsMessageSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeExtensionFieldsAsMessageSet, fieldNumber: 188) + try visitor.visitSingularInt32Field(value: _storage._decodeExtensionFieldsAsMessageSet, fieldNumber: 196) } if _storage._decodeJson != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeJson, fieldNumber: 189) + try visitor.visitSingularInt32Field(value: _storage._decodeJson, fieldNumber: 197) } if _storage._decodeMapField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeMapField, fieldNumber: 190) + try visitor.visitSingularInt32Field(value: _storage._decodeMapField, fieldNumber: 198) } if _storage._decodeMessage != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeMessage, fieldNumber: 191) + try visitor.visitSingularInt32Field(value: _storage._decodeMessage, fieldNumber: 199) } if _storage._decoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._decoder, fieldNumber: 192) + try visitor.visitSingularInt32Field(value: _storage._decoder, fieldNumber: 200) } if _storage._decodeRepeated != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeated, fieldNumber: 193) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeated, fieldNumber: 201) } if _storage._decodeRepeatedBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedBoolField, fieldNumber: 194) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedBoolField, fieldNumber: 202) } if _storage._decodeRepeatedBytesField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedBytesField, fieldNumber: 195) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedBytesField, fieldNumber: 203) } if _storage._decodeRepeatedDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedDoubleField, fieldNumber: 196) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedDoubleField, fieldNumber: 204) } if _storage._decodeRepeatedEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedEnumField, fieldNumber: 197) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedEnumField, fieldNumber: 205) } if _storage._decodeRepeatedFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFixed32Field, fieldNumber: 198) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFixed32Field, fieldNumber: 206) } if _storage._decodeRepeatedFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFixed64Field, fieldNumber: 199) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFixed64Field, fieldNumber: 207) } if _storage._decodeRepeatedFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFloatField, fieldNumber: 200) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFloatField, fieldNumber: 208) } if _storage._decodeRepeatedGroupField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedGroupField, fieldNumber: 201) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedGroupField, fieldNumber: 209) } if _storage._decodeRepeatedInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedInt32Field, fieldNumber: 202) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedInt32Field, fieldNumber: 210) } if _storage._decodeRepeatedInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedInt64Field, fieldNumber: 203) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedInt64Field, fieldNumber: 211) } if _storage._decodeRepeatedMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedMessageField, fieldNumber: 204) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedMessageField, fieldNumber: 212) } if _storage._decodeRepeatedSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSfixed32Field, fieldNumber: 205) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSfixed32Field, fieldNumber: 213) } if _storage._decodeRepeatedSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSfixed64Field, fieldNumber: 206) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSfixed64Field, fieldNumber: 214) } if _storage._decodeRepeatedSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSint32Field, fieldNumber: 207) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSint32Field, fieldNumber: 215) } if _storage._decodeRepeatedSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSint64Field, fieldNumber: 208) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSint64Field, fieldNumber: 216) } if _storage._decodeRepeatedStringField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedStringField, fieldNumber: 209) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedStringField, fieldNumber: 217) } if _storage._decodeRepeatedUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedUint32Field, fieldNumber: 210) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedUint32Field, fieldNumber: 218) } if _storage._decodeRepeatedUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedUint64Field, fieldNumber: 211) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedUint64Field, fieldNumber: 219) } if _storage._decodeSingular != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingular, fieldNumber: 212) + try visitor.visitSingularInt32Field(value: _storage._decodeSingular, fieldNumber: 220) } if _storage._decodeSingularBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularBoolField, fieldNumber: 213) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularBoolField, fieldNumber: 221) } if _storage._decodeSingularBytesField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularBytesField, fieldNumber: 214) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularBytesField, fieldNumber: 222) } if _storage._decodeSingularDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularDoubleField, fieldNumber: 215) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularDoubleField, fieldNumber: 223) } if _storage._decodeSingularEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularEnumField, fieldNumber: 216) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularEnumField, fieldNumber: 224) } if _storage._decodeSingularFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularFixed32Field, fieldNumber: 217) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularFixed32Field, fieldNumber: 225) } if _storage._decodeSingularFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularFixed64Field, fieldNumber: 218) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularFixed64Field, fieldNumber: 226) } if _storage._decodeSingularFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularFloatField, fieldNumber: 219) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularFloatField, fieldNumber: 227) } if _storage._decodeSingularGroupField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularGroupField, fieldNumber: 220) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularGroupField, fieldNumber: 228) } if _storage._decodeSingularInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularInt32Field, fieldNumber: 221) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularInt32Field, fieldNumber: 229) } if _storage._decodeSingularInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularInt64Field, fieldNumber: 222) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularInt64Field, fieldNumber: 230) } if _storage._decodeSingularMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularMessageField, fieldNumber: 223) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularMessageField, fieldNumber: 231) } if _storage._decodeSingularSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularSfixed32Field, fieldNumber: 224) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularSfixed32Field, fieldNumber: 232) } if _storage._decodeSingularSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularSfixed64Field, fieldNumber: 225) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularSfixed64Field, fieldNumber: 233) } if _storage._decodeSingularSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularSint32Field, fieldNumber: 226) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularSint32Field, fieldNumber: 234) } if _storage._decodeSingularSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularSint64Field, fieldNumber: 227) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularSint64Field, fieldNumber: 235) } if _storage._decodeSingularStringField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularStringField, fieldNumber: 228) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularStringField, fieldNumber: 236) } if _storage._decodeSingularUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularUint32Field, fieldNumber: 229) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularUint32Field, fieldNumber: 237) } if _storage._decodeSingularUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularUint64Field, fieldNumber: 230) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularUint64Field, fieldNumber: 238) } if _storage._decodeTextFormat != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeTextFormat, fieldNumber: 231) + try visitor.visitSingularInt32Field(value: _storage._decodeTextFormat, fieldNumber: 239) } if _storage._defaultAnyTypeUrlprefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._defaultAnyTypeUrlprefix, fieldNumber: 232) + try visitor.visitSingularInt32Field(value: _storage._defaultAnyTypeUrlprefix, fieldNumber: 240) } if _storage._defaults != 0 { - try visitor.visitSingularInt32Field(value: _storage._defaults, fieldNumber: 233) + try visitor.visitSingularInt32Field(value: _storage._defaults, fieldNumber: 241) } if _storage._defaultValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._defaultValue, fieldNumber: 234) + try visitor.visitSingularInt32Field(value: _storage._defaultValue, fieldNumber: 242) } if _storage._dependency != 0 { - try visitor.visitSingularInt32Field(value: _storage._dependency, fieldNumber: 235) + try visitor.visitSingularInt32Field(value: _storage._dependency, fieldNumber: 243) } if _storage._deprecated != 0 { - try visitor.visitSingularInt32Field(value: _storage._deprecated, fieldNumber: 236) + try visitor.visitSingularInt32Field(value: _storage._deprecated, fieldNumber: 244) } if _storage._deprecatedLegacyJsonFieldConflicts != 0 { - try visitor.visitSingularInt32Field(value: _storage._deprecatedLegacyJsonFieldConflicts, fieldNumber: 237) + try visitor.visitSingularInt32Field(value: _storage._deprecatedLegacyJsonFieldConflicts, fieldNumber: 245) } if _storage._deprecationWarning != 0 { - try visitor.visitSingularInt32Field(value: _storage._deprecationWarning, fieldNumber: 238) + try visitor.visitSingularInt32Field(value: _storage._deprecationWarning, fieldNumber: 246) } if _storage._description_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._description_p, fieldNumber: 239) + try visitor.visitSingularInt32Field(value: _storage._description_p, fieldNumber: 247) } if _storage._descriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._descriptorProto, fieldNumber: 240) + try visitor.visitSingularInt32Field(value: _storage._descriptorProto, fieldNumber: 248) } if _storage._dictionary != 0 { - try visitor.visitSingularInt32Field(value: _storage._dictionary, fieldNumber: 241) + try visitor.visitSingularInt32Field(value: _storage._dictionary, fieldNumber: 249) } if _storage._dictionaryLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._dictionaryLiteral, fieldNumber: 242) + try visitor.visitSingularInt32Field(value: _storage._dictionaryLiteral, fieldNumber: 250) } if _storage._digit != 0 { - try visitor.visitSingularInt32Field(value: _storage._digit, fieldNumber: 243) + try visitor.visitSingularInt32Field(value: _storage._digit, fieldNumber: 251) } if _storage._digit0 != 0 { - try visitor.visitSingularInt32Field(value: _storage._digit0, fieldNumber: 244) + try visitor.visitSingularInt32Field(value: _storage._digit0, fieldNumber: 252) } if _storage._digit1 != 0 { - try visitor.visitSingularInt32Field(value: _storage._digit1, fieldNumber: 245) + try visitor.visitSingularInt32Field(value: _storage._digit1, fieldNumber: 253) } if _storage._digitCount != 0 { - try visitor.visitSingularInt32Field(value: _storage._digitCount, fieldNumber: 246) + try visitor.visitSingularInt32Field(value: _storage._digitCount, fieldNumber: 254) } if _storage._digits != 0 { - try visitor.visitSingularInt32Field(value: _storage._digits, fieldNumber: 247) + try visitor.visitSingularInt32Field(value: _storage._digits, fieldNumber: 255) } if _storage._digitValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._digitValue, fieldNumber: 248) + try visitor.visitSingularInt32Field(value: _storage._digitValue, fieldNumber: 256) } if _storage._discardableResult != 0 { - try visitor.visitSingularInt32Field(value: _storage._discardableResult, fieldNumber: 249) + try visitor.visitSingularInt32Field(value: _storage._discardableResult, fieldNumber: 257) } if _storage._discardUnknownFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._discardUnknownFields, fieldNumber: 250) + try visitor.visitSingularInt32Field(value: _storage._discardUnknownFields, fieldNumber: 258) } if _storage._double != 0 { - try visitor.visitSingularInt32Field(value: _storage._double, fieldNumber: 251) + try visitor.visitSingularInt32Field(value: _storage._double, fieldNumber: 259) } if _storage._doubleValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._doubleValue, fieldNumber: 252) + try visitor.visitSingularInt32Field(value: _storage._doubleValue, fieldNumber: 260) } if _storage._duration != 0 { - try visitor.visitSingularInt32Field(value: _storage._duration, fieldNumber: 253) + try visitor.visitSingularInt32Field(value: _storage._duration, fieldNumber: 261) } if _storage._e != 0 { - try visitor.visitSingularInt32Field(value: _storage._e, fieldNumber: 254) + try visitor.visitSingularInt32Field(value: _storage._e, fieldNumber: 262) } if _storage._edition != 0 { - try visitor.visitSingularInt32Field(value: _storage._edition, fieldNumber: 255) + try visitor.visitSingularInt32Field(value: _storage._edition, fieldNumber: 263) } if _storage._editionDefault != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionDefault, fieldNumber: 256) + try visitor.visitSingularInt32Field(value: _storage._editionDefault, fieldNumber: 264) } if _storage._editionDefaults != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionDefaults, fieldNumber: 257) + try visitor.visitSingularInt32Field(value: _storage._editionDefaults, fieldNumber: 265) } if _storage._editionDeprecated != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionDeprecated, fieldNumber: 258) + try visitor.visitSingularInt32Field(value: _storage._editionDeprecated, fieldNumber: 266) } if _storage._editionIntroduced != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionIntroduced, fieldNumber: 259) + try visitor.visitSingularInt32Field(value: _storage._editionIntroduced, fieldNumber: 267) } if _storage._editionRemoved != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionRemoved, fieldNumber: 260) + try visitor.visitSingularInt32Field(value: _storage._editionRemoved, fieldNumber: 268) } if _storage._element != 0 { - try visitor.visitSingularInt32Field(value: _storage._element, fieldNumber: 261) + try visitor.visitSingularInt32Field(value: _storage._element, fieldNumber: 269) } if _storage._elements != 0 { - try visitor.visitSingularInt32Field(value: _storage._elements, fieldNumber: 262) + try visitor.visitSingularInt32Field(value: _storage._elements, fieldNumber: 270) } if _storage._emitExtensionFieldName != 0 { - try visitor.visitSingularInt32Field(value: _storage._emitExtensionFieldName, fieldNumber: 263) + try visitor.visitSingularInt32Field(value: _storage._emitExtensionFieldName, fieldNumber: 271) } if _storage._emitFieldName != 0 { - try visitor.visitSingularInt32Field(value: _storage._emitFieldName, fieldNumber: 264) + try visitor.visitSingularInt32Field(value: _storage._emitFieldName, fieldNumber: 272) } if _storage._emitFieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._emitFieldNumber, fieldNumber: 265) + try visitor.visitSingularInt32Field(value: _storage._emitFieldNumber, fieldNumber: 273) } if _storage._empty != 0 { - try visitor.visitSingularInt32Field(value: _storage._empty, fieldNumber: 266) + try visitor.visitSingularInt32Field(value: _storage._empty, fieldNumber: 274) } if _storage._encodeAsBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._encodeAsBytes, fieldNumber: 267) + try visitor.visitSingularInt32Field(value: _storage._encodeAsBytes, fieldNumber: 275) } if _storage._encoded != 0 { - try visitor.visitSingularInt32Field(value: _storage._encoded, fieldNumber: 268) + try visitor.visitSingularInt32Field(value: _storage._encoded, fieldNumber: 276) } if _storage._encodedJsonstring != 0 { - try visitor.visitSingularInt32Field(value: _storage._encodedJsonstring, fieldNumber: 269) + try visitor.visitSingularInt32Field(value: _storage._encodedJsonstring, fieldNumber: 277) } if _storage._encodedSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._encodedSize, fieldNumber: 270) + try visitor.visitSingularInt32Field(value: _storage._encodedSize, fieldNumber: 278) } if _storage._encodeField != 0 { - try visitor.visitSingularInt32Field(value: _storage._encodeField, fieldNumber: 271) + try visitor.visitSingularInt32Field(value: _storage._encodeField, fieldNumber: 279) } if _storage._encoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._encoder, fieldNumber: 272) + try visitor.visitSingularInt32Field(value: _storage._encoder, fieldNumber: 280) } if _storage._end != 0 { - try visitor.visitSingularInt32Field(value: _storage._end, fieldNumber: 273) + try visitor.visitSingularInt32Field(value: _storage._end, fieldNumber: 281) } if _storage._endArray != 0 { - try visitor.visitSingularInt32Field(value: _storage._endArray, fieldNumber: 274) + try visitor.visitSingularInt32Field(value: _storage._endArray, fieldNumber: 282) } if _storage._endMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._endMessageField, fieldNumber: 275) + try visitor.visitSingularInt32Field(value: _storage._endMessageField, fieldNumber: 283) } if _storage._endObject != 0 { - try visitor.visitSingularInt32Field(value: _storage._endObject, fieldNumber: 276) + try visitor.visitSingularInt32Field(value: _storage._endObject, fieldNumber: 284) } if _storage._endRegularField != 0 { - try visitor.visitSingularInt32Field(value: _storage._endRegularField, fieldNumber: 277) + try visitor.visitSingularInt32Field(value: _storage._endRegularField, fieldNumber: 285) } if _storage._enum != 0 { - try visitor.visitSingularInt32Field(value: _storage._enum, fieldNumber: 278) + try visitor.visitSingularInt32Field(value: _storage._enum, fieldNumber: 286) } if _storage._enumDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumDescriptorProto, fieldNumber: 279) + try visitor.visitSingularInt32Field(value: _storage._enumDescriptorProto, fieldNumber: 287) } if _storage._enumOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumOptions, fieldNumber: 280) + try visitor.visitSingularInt32Field(value: _storage._enumOptions, fieldNumber: 288) } if _storage._enumReservedRange != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumReservedRange, fieldNumber: 281) + try visitor.visitSingularInt32Field(value: _storage._enumReservedRange, fieldNumber: 289) } if _storage._enumType != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumType, fieldNumber: 282) + try visitor.visitSingularInt32Field(value: _storage._enumType, fieldNumber: 290) } if _storage._enumvalue != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumvalue, fieldNumber: 283) + try visitor.visitSingularInt32Field(value: _storage._enumvalue, fieldNumber: 291) } if _storage._enumValueDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumValueDescriptorProto, fieldNumber: 284) + try visitor.visitSingularInt32Field(value: _storage._enumValueDescriptorProto, fieldNumber: 292) } if _storage._enumValueOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumValueOptions, fieldNumber: 285) + try visitor.visitSingularInt32Field(value: _storage._enumValueOptions, fieldNumber: 293) } if _storage._equatable != 0 { - try visitor.visitSingularInt32Field(value: _storage._equatable, fieldNumber: 286) + try visitor.visitSingularInt32Field(value: _storage._equatable, fieldNumber: 294) } if _storage._error != 0 { - try visitor.visitSingularInt32Field(value: _storage._error, fieldNumber: 287) + try visitor.visitSingularInt32Field(value: _storage._error, fieldNumber: 295) } if _storage._expressibleByArrayLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._expressibleByArrayLiteral, fieldNumber: 288) + try visitor.visitSingularInt32Field(value: _storage._expressibleByArrayLiteral, fieldNumber: 296) } if _storage._expressibleByDictionaryLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._expressibleByDictionaryLiteral, fieldNumber: 289) + try visitor.visitSingularInt32Field(value: _storage._expressibleByDictionaryLiteral, fieldNumber: 297) } if _storage._ext != 0 { - try visitor.visitSingularInt32Field(value: _storage._ext, fieldNumber: 290) + try visitor.visitSingularInt32Field(value: _storage._ext, fieldNumber: 298) } if _storage._extDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._extDecoder, fieldNumber: 291) + try visitor.visitSingularInt32Field(value: _storage._extDecoder, fieldNumber: 299) } if _storage._extendedGraphemeClusterLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._extendedGraphemeClusterLiteral, fieldNumber: 292) + try visitor.visitSingularInt32Field(value: _storage._extendedGraphemeClusterLiteral, fieldNumber: 300) } if _storage._extendedGraphemeClusterLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._extendedGraphemeClusterLiteralType, fieldNumber: 293) + try visitor.visitSingularInt32Field(value: _storage._extendedGraphemeClusterLiteralType, fieldNumber: 301) } if _storage._extendee != 0 { - try visitor.visitSingularInt32Field(value: _storage._extendee, fieldNumber: 294) + try visitor.visitSingularInt32Field(value: _storage._extendee, fieldNumber: 302) } if _storage._extensibleMessage != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensibleMessage, fieldNumber: 295) + try visitor.visitSingularInt32Field(value: _storage._extensibleMessage, fieldNumber: 303) } if _storage._extension != 0 { - try visitor.visitSingularInt32Field(value: _storage._extension, fieldNumber: 296) + try visitor.visitSingularInt32Field(value: _storage._extension, fieldNumber: 304) } if _storage._extensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionField, fieldNumber: 297) + try visitor.visitSingularInt32Field(value: _storage._extensionField, fieldNumber: 305) } if _storage._extensionFieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionFieldNumber, fieldNumber: 298) + try visitor.visitSingularInt32Field(value: _storage._extensionFieldNumber, fieldNumber: 306) } if _storage._extensionFieldValueSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionFieldValueSet, fieldNumber: 299) + try visitor.visitSingularInt32Field(value: _storage._extensionFieldValueSet, fieldNumber: 307) } if _storage._extensionMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionMap, fieldNumber: 300) + try visitor.visitSingularInt32Field(value: _storage._extensionMap, fieldNumber: 308) } if _storage._extensionRange != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionRange, fieldNumber: 301) + try visitor.visitSingularInt32Field(value: _storage._extensionRange, fieldNumber: 309) } if _storage._extensionRangeOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionRangeOptions, fieldNumber: 302) + try visitor.visitSingularInt32Field(value: _storage._extensionRangeOptions, fieldNumber: 310) } if _storage._extensions != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensions, fieldNumber: 303) + try visitor.visitSingularInt32Field(value: _storage._extensions, fieldNumber: 311) } if _storage._extras != 0 { - try visitor.visitSingularInt32Field(value: _storage._extras, fieldNumber: 304) + try visitor.visitSingularInt32Field(value: _storage._extras, fieldNumber: 312) } if _storage._f != 0 { - try visitor.visitSingularInt32Field(value: _storage._f, fieldNumber: 305) + try visitor.visitSingularInt32Field(value: _storage._f, fieldNumber: 313) } if _storage._false != 0 { - try visitor.visitSingularInt32Field(value: _storage._false, fieldNumber: 306) + try visitor.visitSingularInt32Field(value: _storage._false, fieldNumber: 314) } if _storage._features != 0 { - try visitor.visitSingularInt32Field(value: _storage._features, fieldNumber: 307) + try visitor.visitSingularInt32Field(value: _storage._features, fieldNumber: 315) } if _storage._featureSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._featureSet, fieldNumber: 308) + try visitor.visitSingularInt32Field(value: _storage._featureSet, fieldNumber: 316) } if _storage._featureSetDefaults != 0 { - try visitor.visitSingularInt32Field(value: _storage._featureSetDefaults, fieldNumber: 309) + try visitor.visitSingularInt32Field(value: _storage._featureSetDefaults, fieldNumber: 317) } if _storage._featureSetEditionDefault != 0 { - try visitor.visitSingularInt32Field(value: _storage._featureSetEditionDefault, fieldNumber: 310) + try visitor.visitSingularInt32Field(value: _storage._featureSetEditionDefault, fieldNumber: 318) } if _storage._featureSupport != 0 { - try visitor.visitSingularInt32Field(value: _storage._featureSupport, fieldNumber: 311) + try visitor.visitSingularInt32Field(value: _storage._featureSupport, fieldNumber: 319) } if _storage._field != 0 { - try visitor.visitSingularInt32Field(value: _storage._field, fieldNumber: 312) + try visitor.visitSingularInt32Field(value: _storage._field, fieldNumber: 320) } if _storage._fieldData != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldData, fieldNumber: 313) + try visitor.visitSingularInt32Field(value: _storage._fieldData, fieldNumber: 321) } if _storage._fieldDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldDescriptorProto, fieldNumber: 314) + try visitor.visitSingularInt32Field(value: _storage._fieldDescriptorProto, fieldNumber: 322) } if _storage._fieldMask != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldMask, fieldNumber: 315) + try visitor.visitSingularInt32Field(value: _storage._fieldMask, fieldNumber: 323) } if _storage._fieldName != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldName, fieldNumber: 316) + try visitor.visitSingularInt32Field(value: _storage._fieldName, fieldNumber: 324) } if _storage._fieldNameCount != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldNameCount, fieldNumber: 317) + try visitor.visitSingularInt32Field(value: _storage._fieldNameCount, fieldNumber: 325) } if _storage._fieldNum != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldNum, fieldNumber: 318) + try visitor.visitSingularInt32Field(value: _storage._fieldNum, fieldNumber: 326) } if _storage._fieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldNumber, fieldNumber: 319) + try visitor.visitSingularInt32Field(value: _storage._fieldNumber, fieldNumber: 327) } if _storage._fieldNumberForProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldNumberForProto, fieldNumber: 320) + try visitor.visitSingularInt32Field(value: _storage._fieldNumberForProto, fieldNumber: 328) } if _storage._fieldOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldOptions, fieldNumber: 321) + try visitor.visitSingularInt32Field(value: _storage._fieldOptions, fieldNumber: 329) } if _storage._fieldPresence != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldPresence, fieldNumber: 322) + try visitor.visitSingularInt32Field(value: _storage._fieldPresence, fieldNumber: 330) } if _storage._fields != 0 { - try visitor.visitSingularInt32Field(value: _storage._fields, fieldNumber: 323) + try visitor.visitSingularInt32Field(value: _storage._fields, fieldNumber: 331) } if _storage._fieldSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldSize, fieldNumber: 324) + try visitor.visitSingularInt32Field(value: _storage._fieldSize, fieldNumber: 332) } if _storage._fieldTag != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldTag, fieldNumber: 325) + try visitor.visitSingularInt32Field(value: _storage._fieldTag, fieldNumber: 333) } if _storage._fieldType != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldType, fieldNumber: 326) + try visitor.visitSingularInt32Field(value: _storage._fieldType, fieldNumber: 334) } if _storage._file != 0 { - try visitor.visitSingularInt32Field(value: _storage._file, fieldNumber: 327) + try visitor.visitSingularInt32Field(value: _storage._file, fieldNumber: 335) } if _storage._fileDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._fileDescriptorProto, fieldNumber: 328) + try visitor.visitSingularInt32Field(value: _storage._fileDescriptorProto, fieldNumber: 336) } if _storage._fileDescriptorSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._fileDescriptorSet, fieldNumber: 329) + try visitor.visitSingularInt32Field(value: _storage._fileDescriptorSet, fieldNumber: 337) } if _storage._fileName != 0 { - try visitor.visitSingularInt32Field(value: _storage._fileName, fieldNumber: 330) + try visitor.visitSingularInt32Field(value: _storage._fileName, fieldNumber: 338) } if _storage._fileOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._fileOptions, fieldNumber: 331) + try visitor.visitSingularInt32Field(value: _storage._fileOptions, fieldNumber: 339) } if _storage._filter != 0 { - try visitor.visitSingularInt32Field(value: _storage._filter, fieldNumber: 332) + try visitor.visitSingularInt32Field(value: _storage._filter, fieldNumber: 340) } if _storage._final != 0 { - try visitor.visitSingularInt32Field(value: _storage._final, fieldNumber: 333) + try visitor.visitSingularInt32Field(value: _storage._final, fieldNumber: 341) } if _storage._finiteOnly != 0 { - try visitor.visitSingularInt32Field(value: _storage._finiteOnly, fieldNumber: 334) + try visitor.visitSingularInt32Field(value: _storage._finiteOnly, fieldNumber: 342) } if _storage._first != 0 { - try visitor.visitSingularInt32Field(value: _storage._first, fieldNumber: 335) + try visitor.visitSingularInt32Field(value: _storage._first, fieldNumber: 343) } if _storage._firstItem != 0 { - try visitor.visitSingularInt32Field(value: _storage._firstItem, fieldNumber: 336) + try visitor.visitSingularInt32Field(value: _storage._firstItem, fieldNumber: 344) } if _storage._fixedFeatures != 0 { - try visitor.visitSingularInt32Field(value: _storage._fixedFeatures, fieldNumber: 337) + try visitor.visitSingularInt32Field(value: _storage._fixedFeatures, fieldNumber: 345) } if _storage._float != 0 { - try visitor.visitSingularInt32Field(value: _storage._float, fieldNumber: 338) + try visitor.visitSingularInt32Field(value: _storage._float, fieldNumber: 346) } if _storage._floatLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._floatLiteral, fieldNumber: 339) + try visitor.visitSingularInt32Field(value: _storage._floatLiteral, fieldNumber: 347) } if _storage._floatLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._floatLiteralType, fieldNumber: 340) + try visitor.visitSingularInt32Field(value: _storage._floatLiteralType, fieldNumber: 348) } if _storage._floatValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._floatValue, fieldNumber: 341) + try visitor.visitSingularInt32Field(value: _storage._floatValue, fieldNumber: 349) } if _storage._forMessageName != 0 { - try visitor.visitSingularInt32Field(value: _storage._forMessageName, fieldNumber: 342) + try visitor.visitSingularInt32Field(value: _storage._forMessageName, fieldNumber: 350) } if _storage._formUnion != 0 { - try visitor.visitSingularInt32Field(value: _storage._formUnion, fieldNumber: 343) + try visitor.visitSingularInt32Field(value: _storage._formUnion, fieldNumber: 351) } if _storage._forReadingFrom != 0 { - try visitor.visitSingularInt32Field(value: _storage._forReadingFrom, fieldNumber: 344) + try visitor.visitSingularInt32Field(value: _storage._forReadingFrom, fieldNumber: 352) } if _storage._forTypeURL != 0 { - try visitor.visitSingularInt32Field(value: _storage._forTypeURL, fieldNumber: 345) + try visitor.visitSingularInt32Field(value: _storage._forTypeURL, fieldNumber: 353) } if _storage._forwardParser != 0 { - try visitor.visitSingularInt32Field(value: _storage._forwardParser, fieldNumber: 346) + try visitor.visitSingularInt32Field(value: _storage._forwardParser, fieldNumber: 354) } if _storage._forWritingInto != 0 { - try visitor.visitSingularInt32Field(value: _storage._forWritingInto, fieldNumber: 347) + try visitor.visitSingularInt32Field(value: _storage._forWritingInto, fieldNumber: 355) } if _storage._from != 0 { - try visitor.visitSingularInt32Field(value: _storage._from, fieldNumber: 348) + try visitor.visitSingularInt32Field(value: _storage._from, fieldNumber: 356) } if _storage._fromAscii2 != 0 { - try visitor.visitSingularInt32Field(value: _storage._fromAscii2, fieldNumber: 349) + try visitor.visitSingularInt32Field(value: _storage._fromAscii2, fieldNumber: 357) } if _storage._fromAscii4 != 0 { - try visitor.visitSingularInt32Field(value: _storage._fromAscii4, fieldNumber: 350) + try visitor.visitSingularInt32Field(value: _storage._fromAscii4, fieldNumber: 358) } if _storage._fromByteOffset != 0 { - try visitor.visitSingularInt32Field(value: _storage._fromByteOffset, fieldNumber: 351) + try visitor.visitSingularInt32Field(value: _storage._fromByteOffset, fieldNumber: 359) } if _storage._fromHexDigit != 0 { - try visitor.visitSingularInt32Field(value: _storage._fromHexDigit, fieldNumber: 352) + try visitor.visitSingularInt32Field(value: _storage._fromHexDigit, fieldNumber: 360) } if _storage._fullName != 0 { - try visitor.visitSingularInt32Field(value: _storage._fullName, fieldNumber: 353) + try visitor.visitSingularInt32Field(value: _storage._fullName, fieldNumber: 361) } if _storage._func != 0 { - try visitor.visitSingularInt32Field(value: _storage._func, fieldNumber: 354) + try visitor.visitSingularInt32Field(value: _storage._func, fieldNumber: 362) + } + if _storage._function != 0 { + try visitor.visitSingularInt32Field(value: _storage._function, fieldNumber: 363) } if _storage._g != 0 { - try visitor.visitSingularInt32Field(value: _storage._g, fieldNumber: 355) + try visitor.visitSingularInt32Field(value: _storage._g, fieldNumber: 364) } if _storage._generatedCodeInfo != 0 { - try visitor.visitSingularInt32Field(value: _storage._generatedCodeInfo, fieldNumber: 356) + try visitor.visitSingularInt32Field(value: _storage._generatedCodeInfo, fieldNumber: 365) } if _storage._get != 0 { - try visitor.visitSingularInt32Field(value: _storage._get, fieldNumber: 357) + try visitor.visitSingularInt32Field(value: _storage._get, fieldNumber: 366) } if _storage._getExtensionValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._getExtensionValue, fieldNumber: 358) + try visitor.visitSingularInt32Field(value: _storage._getExtensionValue, fieldNumber: 367) } if _storage._googleapis != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleapis, fieldNumber: 359) + try visitor.visitSingularInt32Field(value: _storage._googleapis, fieldNumber: 368) } if _storage._googleProtobufAny != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufAny, fieldNumber: 360) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufAny, fieldNumber: 369) } if _storage._googleProtobufApi != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufApi, fieldNumber: 361) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufApi, fieldNumber: 370) } if _storage._googleProtobufBoolValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufBoolValue, fieldNumber: 362) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufBoolValue, fieldNumber: 371) } if _storage._googleProtobufBytesValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufBytesValue, fieldNumber: 363) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufBytesValue, fieldNumber: 372) } if _storage._googleProtobufDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufDescriptorProto, fieldNumber: 364) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufDescriptorProto, fieldNumber: 373) } if _storage._googleProtobufDoubleValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufDoubleValue, fieldNumber: 365) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufDoubleValue, fieldNumber: 374) } if _storage._googleProtobufDuration != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufDuration, fieldNumber: 366) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufDuration, fieldNumber: 375) } if _storage._googleProtobufEdition != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEdition, fieldNumber: 367) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEdition, fieldNumber: 376) } if _storage._googleProtobufEmpty != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEmpty, fieldNumber: 368) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEmpty, fieldNumber: 377) } if _storage._googleProtobufEnum != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnum, fieldNumber: 369) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnum, fieldNumber: 378) } if _storage._googleProtobufEnumDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumDescriptorProto, fieldNumber: 370) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumDescriptorProto, fieldNumber: 379) } if _storage._googleProtobufEnumOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumOptions, fieldNumber: 371) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumOptions, fieldNumber: 380) } if _storage._googleProtobufEnumValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValue, fieldNumber: 372) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValue, fieldNumber: 381) } if _storage._googleProtobufEnumValueDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValueDescriptorProto, fieldNumber: 373) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValueDescriptorProto, fieldNumber: 382) } if _storage._googleProtobufEnumValueOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValueOptions, fieldNumber: 374) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValueOptions, fieldNumber: 383) } if _storage._googleProtobufExtensionRangeOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufExtensionRangeOptions, fieldNumber: 375) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufExtensionRangeOptions, fieldNumber: 384) } if _storage._googleProtobufFeatureSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFeatureSet, fieldNumber: 376) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFeatureSet, fieldNumber: 385) } if _storage._googleProtobufFeatureSetDefaults != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFeatureSetDefaults, fieldNumber: 377) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFeatureSetDefaults, fieldNumber: 386) } if _storage._googleProtobufField != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufField, fieldNumber: 378) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufField, fieldNumber: 387) } if _storage._googleProtobufFieldDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldDescriptorProto, fieldNumber: 379) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldDescriptorProto, fieldNumber: 388) } if _storage._googleProtobufFieldMask != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldMask, fieldNumber: 380) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldMask, fieldNumber: 389) } if _storage._googleProtobufFieldOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldOptions, fieldNumber: 381) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldOptions, fieldNumber: 390) } if _storage._googleProtobufFileDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileDescriptorProto, fieldNumber: 382) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileDescriptorProto, fieldNumber: 391) } if _storage._googleProtobufFileDescriptorSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileDescriptorSet, fieldNumber: 383) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileDescriptorSet, fieldNumber: 392) } if _storage._googleProtobufFileOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileOptions, fieldNumber: 384) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileOptions, fieldNumber: 393) } if _storage._googleProtobufFloatValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFloatValue, fieldNumber: 385) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFloatValue, fieldNumber: 394) } if _storage._googleProtobufGeneratedCodeInfo != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufGeneratedCodeInfo, fieldNumber: 386) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufGeneratedCodeInfo, fieldNumber: 395) } if _storage._googleProtobufInt32Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufInt32Value, fieldNumber: 387) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufInt32Value, fieldNumber: 396) } if _storage._googleProtobufInt64Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufInt64Value, fieldNumber: 388) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufInt64Value, fieldNumber: 397) } if _storage._googleProtobufListValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufListValue, fieldNumber: 389) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufListValue, fieldNumber: 398) } if _storage._googleProtobufMessageOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMessageOptions, fieldNumber: 390) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMessageOptions, fieldNumber: 399) } if _storage._googleProtobufMethod != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethod, fieldNumber: 391) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethod, fieldNumber: 400) } if _storage._googleProtobufMethodDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethodDescriptorProto, fieldNumber: 392) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethodDescriptorProto, fieldNumber: 401) } if _storage._googleProtobufMethodOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethodOptions, fieldNumber: 393) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethodOptions, fieldNumber: 402) } if _storage._googleProtobufMixin != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMixin, fieldNumber: 394) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMixin, fieldNumber: 403) } if _storage._googleProtobufNullValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufNullValue, fieldNumber: 395) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufNullValue, fieldNumber: 404) } if _storage._googleProtobufOneofDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufOneofDescriptorProto, fieldNumber: 396) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufOneofDescriptorProto, fieldNumber: 405) } if _storage._googleProtobufOneofOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufOneofOptions, fieldNumber: 397) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufOneofOptions, fieldNumber: 406) } if _storage._googleProtobufOption != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufOption, fieldNumber: 398) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufOption, fieldNumber: 407) } if _storage._googleProtobufServiceDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufServiceDescriptorProto, fieldNumber: 399) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufServiceDescriptorProto, fieldNumber: 408) } if _storage._googleProtobufServiceOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufServiceOptions, fieldNumber: 400) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufServiceOptions, fieldNumber: 409) } if _storage._googleProtobufSourceCodeInfo != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufSourceCodeInfo, fieldNumber: 401) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufSourceCodeInfo, fieldNumber: 410) } if _storage._googleProtobufSourceContext != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufSourceContext, fieldNumber: 402) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufSourceContext, fieldNumber: 411) } if _storage._googleProtobufStringValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufStringValue, fieldNumber: 403) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufStringValue, fieldNumber: 412) } if _storage._googleProtobufStruct != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufStruct, fieldNumber: 404) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufStruct, fieldNumber: 413) } if _storage._googleProtobufSyntax != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufSyntax, fieldNumber: 405) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufSyntax, fieldNumber: 414) } if _storage._googleProtobufTimestamp != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufTimestamp, fieldNumber: 406) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufTimestamp, fieldNumber: 415) } if _storage._googleProtobufType != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufType, fieldNumber: 407) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufType, fieldNumber: 416) } if _storage._googleProtobufUint32Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufUint32Value, fieldNumber: 408) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufUint32Value, fieldNumber: 417) } if _storage._googleProtobufUint64Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufUint64Value, fieldNumber: 409) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufUint64Value, fieldNumber: 418) } if _storage._googleProtobufUninterpretedOption != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufUninterpretedOption, fieldNumber: 410) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufUninterpretedOption, fieldNumber: 419) } if _storage._googleProtobufValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufValue, fieldNumber: 411) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufValue, fieldNumber: 420) } if _storage._goPackage != 0 { - try visitor.visitSingularInt32Field(value: _storage._goPackage, fieldNumber: 412) + try visitor.visitSingularInt32Field(value: _storage._goPackage, fieldNumber: 421) } if _storage._group != 0 { - try visitor.visitSingularInt32Field(value: _storage._group, fieldNumber: 413) + try visitor.visitSingularInt32Field(value: _storage._group, fieldNumber: 422) } if _storage._groupFieldNumberStack != 0 { - try visitor.visitSingularInt32Field(value: _storage._groupFieldNumberStack, fieldNumber: 414) + try visitor.visitSingularInt32Field(value: _storage._groupFieldNumberStack, fieldNumber: 423) } if _storage._groupSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._groupSize, fieldNumber: 415) + try visitor.visitSingularInt32Field(value: _storage._groupSize, fieldNumber: 424) } if _storage._hadOneofValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._hadOneofValue, fieldNumber: 416) + try visitor.visitSingularInt32Field(value: _storage._hadOneofValue, fieldNumber: 425) } if _storage._handleConflictingOneOf != 0 { - try visitor.visitSingularInt32Field(value: _storage._handleConflictingOneOf, fieldNumber: 417) + try visitor.visitSingularInt32Field(value: _storage._handleConflictingOneOf, fieldNumber: 426) } if _storage._hasAggregateValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasAggregateValue_p, fieldNumber: 418) + try visitor.visitSingularInt32Field(value: _storage._hasAggregateValue_p, fieldNumber: 427) } if _storage._hasAllowAlias_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasAllowAlias_p, fieldNumber: 419) + try visitor.visitSingularInt32Field(value: _storage._hasAllowAlias_p, fieldNumber: 428) } if _storage._hasBegin_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasBegin_p, fieldNumber: 420) + try visitor.visitSingularInt32Field(value: _storage._hasBegin_p, fieldNumber: 429) } if _storage._hasCcEnableArenas_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasCcEnableArenas_p, fieldNumber: 421) + try visitor.visitSingularInt32Field(value: _storage._hasCcEnableArenas_p, fieldNumber: 430) } if _storage._hasCcGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasCcGenericServices_p, fieldNumber: 422) + try visitor.visitSingularInt32Field(value: _storage._hasCcGenericServices_p, fieldNumber: 431) } if _storage._hasClientStreaming_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasClientStreaming_p, fieldNumber: 423) + try visitor.visitSingularInt32Field(value: _storage._hasClientStreaming_p, fieldNumber: 432) } if _storage._hasCsharpNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasCsharpNamespace_p, fieldNumber: 424) + try visitor.visitSingularInt32Field(value: _storage._hasCsharpNamespace_p, fieldNumber: 433) } if _storage._hasCtype_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasCtype_p, fieldNumber: 425) + try visitor.visitSingularInt32Field(value: _storage._hasCtype_p, fieldNumber: 434) } if _storage._hasDebugRedact_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDebugRedact_p, fieldNumber: 426) + try visitor.visitSingularInt32Field(value: _storage._hasDebugRedact_p, fieldNumber: 435) } if _storage._hasDefaultValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDefaultValue_p, fieldNumber: 427) + try visitor.visitSingularInt32Field(value: _storage._hasDefaultValue_p, fieldNumber: 436) } if _storage._hasDeprecated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDeprecated_p, fieldNumber: 428) + try visitor.visitSingularInt32Field(value: _storage._hasDeprecated_p, fieldNumber: 437) } if _storage._hasDeprecatedLegacyJsonFieldConflicts_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDeprecatedLegacyJsonFieldConflicts_p, fieldNumber: 429) + try visitor.visitSingularInt32Field(value: _storage._hasDeprecatedLegacyJsonFieldConflicts_p, fieldNumber: 438) } if _storage._hasDeprecationWarning_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDeprecationWarning_p, fieldNumber: 430) + try visitor.visitSingularInt32Field(value: _storage._hasDeprecationWarning_p, fieldNumber: 439) } if _storage._hasDoubleValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDoubleValue_p, fieldNumber: 431) + try visitor.visitSingularInt32Field(value: _storage._hasDoubleValue_p, fieldNumber: 440) } if _storage._hasEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEdition_p, fieldNumber: 432) + try visitor.visitSingularInt32Field(value: _storage._hasEdition_p, fieldNumber: 441) } if _storage._hasEditionDeprecated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEditionDeprecated_p, fieldNumber: 433) + try visitor.visitSingularInt32Field(value: _storage._hasEditionDeprecated_p, fieldNumber: 442) } if _storage._hasEditionIntroduced_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEditionIntroduced_p, fieldNumber: 434) + try visitor.visitSingularInt32Field(value: _storage._hasEditionIntroduced_p, fieldNumber: 443) } if _storage._hasEditionRemoved_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEditionRemoved_p, fieldNumber: 435) + try visitor.visitSingularInt32Field(value: _storage._hasEditionRemoved_p, fieldNumber: 444) } if _storage._hasEnd_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEnd_p, fieldNumber: 436) + try visitor.visitSingularInt32Field(value: _storage._hasEnd_p, fieldNumber: 445) } if _storage._hasEnumType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEnumType_p, fieldNumber: 437) + try visitor.visitSingularInt32Field(value: _storage._hasEnumType_p, fieldNumber: 446) } if _storage._hasExtendee_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasExtendee_p, fieldNumber: 438) + try visitor.visitSingularInt32Field(value: _storage._hasExtendee_p, fieldNumber: 447) } if _storage._hasExtensionValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasExtensionValue_p, fieldNumber: 439) + try visitor.visitSingularInt32Field(value: _storage._hasExtensionValue_p, fieldNumber: 448) } if _storage._hasFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFeatures_p, fieldNumber: 440) + try visitor.visitSingularInt32Field(value: _storage._hasFeatures_p, fieldNumber: 449) } if _storage._hasFeatureSupport_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFeatureSupport_p, fieldNumber: 441) + try visitor.visitSingularInt32Field(value: _storage._hasFeatureSupport_p, fieldNumber: 450) } if _storage._hasFieldPresence_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFieldPresence_p, fieldNumber: 442) + try visitor.visitSingularInt32Field(value: _storage._hasFieldPresence_p, fieldNumber: 451) } if _storage._hasFixedFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFixedFeatures_p, fieldNumber: 443) + try visitor.visitSingularInt32Field(value: _storage._hasFixedFeatures_p, fieldNumber: 452) } if _storage._hasFullName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFullName_p, fieldNumber: 444) + try visitor.visitSingularInt32Field(value: _storage._hasFullName_p, fieldNumber: 453) } if _storage._hasGoPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasGoPackage_p, fieldNumber: 445) + try visitor.visitSingularInt32Field(value: _storage._hasGoPackage_p, fieldNumber: 454) } if _storage._hash != 0 { - try visitor.visitSingularInt32Field(value: _storage._hash, fieldNumber: 446) + try visitor.visitSingularInt32Field(value: _storage._hash, fieldNumber: 455) } if _storage._hashable != 0 { - try visitor.visitSingularInt32Field(value: _storage._hashable, fieldNumber: 447) + try visitor.visitSingularInt32Field(value: _storage._hashable, fieldNumber: 456) } if _storage._hasher != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasher, fieldNumber: 448) + try visitor.visitSingularInt32Field(value: _storage._hasher, fieldNumber: 457) } if _storage._hashVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._hashVisitor, fieldNumber: 449) + try visitor.visitSingularInt32Field(value: _storage._hashVisitor, fieldNumber: 458) } if _storage._hasIdempotencyLevel_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasIdempotencyLevel_p, fieldNumber: 450) + try visitor.visitSingularInt32Field(value: _storage._hasIdempotencyLevel_p, fieldNumber: 459) } if _storage._hasIdentifierValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasIdentifierValue_p, fieldNumber: 451) + try visitor.visitSingularInt32Field(value: _storage._hasIdentifierValue_p, fieldNumber: 460) } if _storage._hasInputType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasInputType_p, fieldNumber: 452) + try visitor.visitSingularInt32Field(value: _storage._hasInputType_p, fieldNumber: 461) } if _storage._hasIsExtension_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasIsExtension_p, fieldNumber: 453) + try visitor.visitSingularInt32Field(value: _storage._hasIsExtension_p, fieldNumber: 462) } if _storage._hasJavaGenerateEqualsAndHash_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaGenerateEqualsAndHash_p, fieldNumber: 454) + try visitor.visitSingularInt32Field(value: _storage._hasJavaGenerateEqualsAndHash_p, fieldNumber: 463) } if _storage._hasJavaGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaGenericServices_p, fieldNumber: 455) + try visitor.visitSingularInt32Field(value: _storage._hasJavaGenericServices_p, fieldNumber: 464) } if _storage._hasJavaMultipleFiles_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaMultipleFiles_p, fieldNumber: 456) + try visitor.visitSingularInt32Field(value: _storage._hasJavaMultipleFiles_p, fieldNumber: 465) } if _storage._hasJavaOuterClassname_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaOuterClassname_p, fieldNumber: 457) + try visitor.visitSingularInt32Field(value: _storage._hasJavaOuterClassname_p, fieldNumber: 466) } if _storage._hasJavaPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaPackage_p, fieldNumber: 458) + try visitor.visitSingularInt32Field(value: _storage._hasJavaPackage_p, fieldNumber: 467) } if _storage._hasJavaStringCheckUtf8_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaStringCheckUtf8_p, fieldNumber: 459) + try visitor.visitSingularInt32Field(value: _storage._hasJavaStringCheckUtf8_p, fieldNumber: 468) } if _storage._hasJsonFormat_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJsonFormat_p, fieldNumber: 460) + try visitor.visitSingularInt32Field(value: _storage._hasJsonFormat_p, fieldNumber: 469) } if _storage._hasJsonName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJsonName_p, fieldNumber: 461) + try visitor.visitSingularInt32Field(value: _storage._hasJsonName_p, fieldNumber: 470) } if _storage._hasJstype_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJstype_p, fieldNumber: 462) + try visitor.visitSingularInt32Field(value: _storage._hasJstype_p, fieldNumber: 471) } if _storage._hasLabel_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasLabel_p, fieldNumber: 463) + try visitor.visitSingularInt32Field(value: _storage._hasLabel_p, fieldNumber: 472) } if _storage._hasLazy_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasLazy_p, fieldNumber: 464) + try visitor.visitSingularInt32Field(value: _storage._hasLazy_p, fieldNumber: 473) } if _storage._hasLeadingComments_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasLeadingComments_p, fieldNumber: 465) + try visitor.visitSingularInt32Field(value: _storage._hasLeadingComments_p, fieldNumber: 474) } if _storage._hasMapEntry_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMapEntry_p, fieldNumber: 466) + try visitor.visitSingularInt32Field(value: _storage._hasMapEntry_p, fieldNumber: 475) } if _storage._hasMaximumEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMaximumEdition_p, fieldNumber: 467) + try visitor.visitSingularInt32Field(value: _storage._hasMaximumEdition_p, fieldNumber: 476) } if _storage._hasMessageEncoding_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMessageEncoding_p, fieldNumber: 468) + try visitor.visitSingularInt32Field(value: _storage._hasMessageEncoding_p, fieldNumber: 477) } if _storage._hasMessageSetWireFormat_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMessageSetWireFormat_p, fieldNumber: 469) + try visitor.visitSingularInt32Field(value: _storage._hasMessageSetWireFormat_p, fieldNumber: 478) } if _storage._hasMinimumEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMinimumEdition_p, fieldNumber: 470) + try visitor.visitSingularInt32Field(value: _storage._hasMinimumEdition_p, fieldNumber: 479) } if _storage._hasName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasName_p, fieldNumber: 471) + try visitor.visitSingularInt32Field(value: _storage._hasName_p, fieldNumber: 480) } if _storage._hasNamePart_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasNamePart_p, fieldNumber: 472) + try visitor.visitSingularInt32Field(value: _storage._hasNamePart_p, fieldNumber: 481) } if _storage._hasNegativeIntValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasNegativeIntValue_p, fieldNumber: 473) + try visitor.visitSingularInt32Field(value: _storage._hasNegativeIntValue_p, fieldNumber: 482) } if _storage._hasNoStandardDescriptorAccessor_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasNoStandardDescriptorAccessor_p, fieldNumber: 474) + try visitor.visitSingularInt32Field(value: _storage._hasNoStandardDescriptorAccessor_p, fieldNumber: 483) } if _storage._hasNumber_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasNumber_p, fieldNumber: 475) + try visitor.visitSingularInt32Field(value: _storage._hasNumber_p, fieldNumber: 484) } if _storage._hasObjcClassPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasObjcClassPrefix_p, fieldNumber: 476) + try visitor.visitSingularInt32Field(value: _storage._hasObjcClassPrefix_p, fieldNumber: 485) } if _storage._hasOneofIndex_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOneofIndex_p, fieldNumber: 477) + try visitor.visitSingularInt32Field(value: _storage._hasOneofIndex_p, fieldNumber: 486) } if _storage._hasOptimizeFor_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOptimizeFor_p, fieldNumber: 478) + try visitor.visitSingularInt32Field(value: _storage._hasOptimizeFor_p, fieldNumber: 487) } if _storage._hasOptions_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOptions_p, fieldNumber: 479) + try visitor.visitSingularInt32Field(value: _storage._hasOptions_p, fieldNumber: 488) } if _storage._hasOutputType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOutputType_p, fieldNumber: 480) + try visitor.visitSingularInt32Field(value: _storage._hasOutputType_p, fieldNumber: 489) } if _storage._hasOverridableFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOverridableFeatures_p, fieldNumber: 481) + try visitor.visitSingularInt32Field(value: _storage._hasOverridableFeatures_p, fieldNumber: 490) } if _storage._hasPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPackage_p, fieldNumber: 482) + try visitor.visitSingularInt32Field(value: _storage._hasPackage_p, fieldNumber: 491) } if _storage._hasPacked_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPacked_p, fieldNumber: 483) + try visitor.visitSingularInt32Field(value: _storage._hasPacked_p, fieldNumber: 492) } if _storage._hasPhpClassPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPhpClassPrefix_p, fieldNumber: 484) + try visitor.visitSingularInt32Field(value: _storage._hasPhpClassPrefix_p, fieldNumber: 493) } if _storage._hasPhpMetadataNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPhpMetadataNamespace_p, fieldNumber: 485) + try visitor.visitSingularInt32Field(value: _storage._hasPhpMetadataNamespace_p, fieldNumber: 494) } if _storage._hasPhpNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPhpNamespace_p, fieldNumber: 486) + try visitor.visitSingularInt32Field(value: _storage._hasPhpNamespace_p, fieldNumber: 495) } if _storage._hasPositiveIntValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPositiveIntValue_p, fieldNumber: 487) + try visitor.visitSingularInt32Field(value: _storage._hasPositiveIntValue_p, fieldNumber: 496) } if _storage._hasProto3Optional_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasProto3Optional_p, fieldNumber: 488) + try visitor.visitSingularInt32Field(value: _storage._hasProto3Optional_p, fieldNumber: 497) } if _storage._hasPyGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPyGenericServices_p, fieldNumber: 489) + try visitor.visitSingularInt32Field(value: _storage._hasPyGenericServices_p, fieldNumber: 498) } if _storage._hasRepeated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasRepeated_p, fieldNumber: 490) + try visitor.visitSingularInt32Field(value: _storage._hasRepeated_p, fieldNumber: 499) } if _storage._hasRepeatedFieldEncoding_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasRepeatedFieldEncoding_p, fieldNumber: 491) + try visitor.visitSingularInt32Field(value: _storage._hasRepeatedFieldEncoding_p, fieldNumber: 500) } if _storage._hasReserved_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasReserved_p, fieldNumber: 492) + try visitor.visitSingularInt32Field(value: _storage._hasReserved_p, fieldNumber: 501) } if _storage._hasRetention_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasRetention_p, fieldNumber: 493) + try visitor.visitSingularInt32Field(value: _storage._hasRetention_p, fieldNumber: 502) } if _storage._hasRubyPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasRubyPackage_p, fieldNumber: 494) + try visitor.visitSingularInt32Field(value: _storage._hasRubyPackage_p, fieldNumber: 503) } if _storage._hasSemantic_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSemantic_p, fieldNumber: 495) + try visitor.visitSingularInt32Field(value: _storage._hasSemantic_p, fieldNumber: 504) } if _storage._hasServerStreaming_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasServerStreaming_p, fieldNumber: 496) + try visitor.visitSingularInt32Field(value: _storage._hasServerStreaming_p, fieldNumber: 505) } if _storage._hasSourceCodeInfo_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSourceCodeInfo_p, fieldNumber: 497) + try visitor.visitSingularInt32Field(value: _storage._hasSourceCodeInfo_p, fieldNumber: 506) } if _storage._hasSourceContext_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSourceContext_p, fieldNumber: 498) + try visitor.visitSingularInt32Field(value: _storage._hasSourceContext_p, fieldNumber: 507) } if _storage._hasSourceFile_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSourceFile_p, fieldNumber: 499) + try visitor.visitSingularInt32Field(value: _storage._hasSourceFile_p, fieldNumber: 508) } if _storage._hasStart_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasStart_p, fieldNumber: 500) + try visitor.visitSingularInt32Field(value: _storage._hasStart_p, fieldNumber: 509) } if _storage._hasStringValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasStringValue_p, fieldNumber: 501) + try visitor.visitSingularInt32Field(value: _storage._hasStringValue_p, fieldNumber: 510) } if _storage._hasSwiftPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSwiftPrefix_p, fieldNumber: 502) + try visitor.visitSingularInt32Field(value: _storage._hasSwiftPrefix_p, fieldNumber: 511) } if _storage._hasSyntax_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSyntax_p, fieldNumber: 503) + try visitor.visitSingularInt32Field(value: _storage._hasSyntax_p, fieldNumber: 512) } if _storage._hasTrailingComments_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasTrailingComments_p, fieldNumber: 504) + try visitor.visitSingularInt32Field(value: _storage._hasTrailingComments_p, fieldNumber: 513) } if _storage._hasType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasType_p, fieldNumber: 505) + try visitor.visitSingularInt32Field(value: _storage._hasType_p, fieldNumber: 514) } if _storage._hasTypeName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasTypeName_p, fieldNumber: 506) + try visitor.visitSingularInt32Field(value: _storage._hasTypeName_p, fieldNumber: 515) } if _storage._hasUnverifiedLazy_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasUnverifiedLazy_p, fieldNumber: 507) + try visitor.visitSingularInt32Field(value: _storage._hasUnverifiedLazy_p, fieldNumber: 516) } if _storage._hasUtf8Validation_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasUtf8Validation_p, fieldNumber: 508) + try visitor.visitSingularInt32Field(value: _storage._hasUtf8Validation_p, fieldNumber: 517) } if _storage._hasValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasValue_p, fieldNumber: 509) + try visitor.visitSingularInt32Field(value: _storage._hasValue_p, fieldNumber: 518) } if _storage._hasVerification_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasVerification_p, fieldNumber: 510) + try visitor.visitSingularInt32Field(value: _storage._hasVerification_p, fieldNumber: 519) } if _storage._hasWeak_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasWeak_p, fieldNumber: 511) + try visitor.visitSingularInt32Field(value: _storage._hasWeak_p, fieldNumber: 520) } if _storage._hour != 0 { - try visitor.visitSingularInt32Field(value: _storage._hour, fieldNumber: 512) + try visitor.visitSingularInt32Field(value: _storage._hour, fieldNumber: 521) } if _storage._i != 0 { - try visitor.visitSingularInt32Field(value: _storage._i, fieldNumber: 513) + try visitor.visitSingularInt32Field(value: _storage._i, fieldNumber: 522) } if _storage._idempotencyLevel != 0 { - try visitor.visitSingularInt32Field(value: _storage._idempotencyLevel, fieldNumber: 514) + try visitor.visitSingularInt32Field(value: _storage._idempotencyLevel, fieldNumber: 523) } if _storage._identifierValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._identifierValue, fieldNumber: 515) + try visitor.visitSingularInt32Field(value: _storage._identifierValue, fieldNumber: 524) } if _storage._if != 0 { - try visitor.visitSingularInt32Field(value: _storage._if, fieldNumber: 516) + try visitor.visitSingularInt32Field(value: _storage._if, fieldNumber: 525) } if _storage._ignoreUnknownExtensionFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._ignoreUnknownExtensionFields, fieldNumber: 517) + try visitor.visitSingularInt32Field(value: _storage._ignoreUnknownExtensionFields, fieldNumber: 526) } if _storage._ignoreUnknownFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._ignoreUnknownFields, fieldNumber: 518) + try visitor.visitSingularInt32Field(value: _storage._ignoreUnknownFields, fieldNumber: 527) } if _storage._index != 0 { - try visitor.visitSingularInt32Field(value: _storage._index, fieldNumber: 519) + try visitor.visitSingularInt32Field(value: _storage._index, fieldNumber: 528) } if _storage._init_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._init_p, fieldNumber: 520) + try visitor.visitSingularInt32Field(value: _storage._init_p, fieldNumber: 529) } if _storage._inout != 0 { - try visitor.visitSingularInt32Field(value: _storage._inout, fieldNumber: 521) + try visitor.visitSingularInt32Field(value: _storage._inout, fieldNumber: 530) } if _storage._inputType != 0 { - try visitor.visitSingularInt32Field(value: _storage._inputType, fieldNumber: 522) + try visitor.visitSingularInt32Field(value: _storage._inputType, fieldNumber: 531) } if _storage._insert != 0 { - try visitor.visitSingularInt32Field(value: _storage._insert, fieldNumber: 523) + try visitor.visitSingularInt32Field(value: _storage._insert, fieldNumber: 532) } if _storage._int != 0 { - try visitor.visitSingularInt32Field(value: _storage._int, fieldNumber: 524) + try visitor.visitSingularInt32Field(value: _storage._int, fieldNumber: 533) } if _storage._int32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._int32, fieldNumber: 525) + try visitor.visitSingularInt32Field(value: _storage._int32, fieldNumber: 534) } if _storage._int32Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._int32Value, fieldNumber: 526) + try visitor.visitSingularInt32Field(value: _storage._int32Value, fieldNumber: 535) } if _storage._int64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._int64, fieldNumber: 527) + try visitor.visitSingularInt32Field(value: _storage._int64, fieldNumber: 536) } if _storage._int64Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._int64Value, fieldNumber: 528) + try visitor.visitSingularInt32Field(value: _storage._int64Value, fieldNumber: 537) } if _storage._int8 != 0 { - try visitor.visitSingularInt32Field(value: _storage._int8, fieldNumber: 529) + try visitor.visitSingularInt32Field(value: _storage._int8, fieldNumber: 538) } if _storage._integerLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._integerLiteral, fieldNumber: 530) + try visitor.visitSingularInt32Field(value: _storage._integerLiteral, fieldNumber: 539) } if _storage._integerLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._integerLiteralType, fieldNumber: 531) + try visitor.visitSingularInt32Field(value: _storage._integerLiteralType, fieldNumber: 540) } if _storage._intern != 0 { - try visitor.visitSingularInt32Field(value: _storage._intern, fieldNumber: 532) + try visitor.visitSingularInt32Field(value: _storage._intern, fieldNumber: 541) } if _storage._internal != 0 { - try visitor.visitSingularInt32Field(value: _storage._internal, fieldNumber: 533) + try visitor.visitSingularInt32Field(value: _storage._internal, fieldNumber: 542) } if _storage._internalState != 0 { - try visitor.visitSingularInt32Field(value: _storage._internalState, fieldNumber: 534) + try visitor.visitSingularInt32Field(value: _storage._internalState, fieldNumber: 543) } if _storage._into != 0 { - try visitor.visitSingularInt32Field(value: _storage._into, fieldNumber: 535) + try visitor.visitSingularInt32Field(value: _storage._into, fieldNumber: 544) } if _storage._ints != 0 { - try visitor.visitSingularInt32Field(value: _storage._ints, fieldNumber: 536) + try visitor.visitSingularInt32Field(value: _storage._ints, fieldNumber: 545) } if _storage._isA != 0 { - try visitor.visitSingularInt32Field(value: _storage._isA, fieldNumber: 537) + try visitor.visitSingularInt32Field(value: _storage._isA, fieldNumber: 546) } if _storage._isEqual != 0 { - try visitor.visitSingularInt32Field(value: _storage._isEqual, fieldNumber: 538) + try visitor.visitSingularInt32Field(value: _storage._isEqual, fieldNumber: 547) } if _storage._isEqualTo != 0 { - try visitor.visitSingularInt32Field(value: _storage._isEqualTo, fieldNumber: 539) + try visitor.visitSingularInt32Field(value: _storage._isEqualTo, fieldNumber: 548) } if _storage._isExtension != 0 { - try visitor.visitSingularInt32Field(value: _storage._isExtension, fieldNumber: 540) + try visitor.visitSingularInt32Field(value: _storage._isExtension, fieldNumber: 549) } if _storage._isInitialized_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._isInitialized_p, fieldNumber: 541) + try visitor.visitSingularInt32Field(value: _storage._isInitialized_p, fieldNumber: 550) } if _storage._isNegative != 0 { - try visitor.visitSingularInt32Field(value: _storage._isNegative, fieldNumber: 542) + try visitor.visitSingularInt32Field(value: _storage._isNegative, fieldNumber: 551) } if _storage._itemTagsEncodedSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._itemTagsEncodedSize, fieldNumber: 543) + try visitor.visitSingularInt32Field(value: _storage._itemTagsEncodedSize, fieldNumber: 552) } if _storage._iterator != 0 { - try visitor.visitSingularInt32Field(value: _storage._iterator, fieldNumber: 544) + try visitor.visitSingularInt32Field(value: _storage._iterator, fieldNumber: 553) } if _storage._javaGenerateEqualsAndHash != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaGenerateEqualsAndHash, fieldNumber: 545) + try visitor.visitSingularInt32Field(value: _storage._javaGenerateEqualsAndHash, fieldNumber: 554) } if _storage._javaGenericServices != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaGenericServices, fieldNumber: 546) + try visitor.visitSingularInt32Field(value: _storage._javaGenericServices, fieldNumber: 555) } if _storage._javaMultipleFiles != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaMultipleFiles, fieldNumber: 547) + try visitor.visitSingularInt32Field(value: _storage._javaMultipleFiles, fieldNumber: 556) } if _storage._javaOuterClassname != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaOuterClassname, fieldNumber: 548) + try visitor.visitSingularInt32Field(value: _storage._javaOuterClassname, fieldNumber: 557) } if _storage._javaPackage != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaPackage, fieldNumber: 549) + try visitor.visitSingularInt32Field(value: _storage._javaPackage, fieldNumber: 558) } if _storage._javaStringCheckUtf8 != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaStringCheckUtf8, fieldNumber: 550) + try visitor.visitSingularInt32Field(value: _storage._javaStringCheckUtf8, fieldNumber: 559) } if _storage._jsondecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsondecoder, fieldNumber: 551) + try visitor.visitSingularInt32Field(value: _storage._jsondecoder, fieldNumber: 560) } if _storage._jsondecodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsondecodingError, fieldNumber: 552) + try visitor.visitSingularInt32Field(value: _storage._jsondecodingError, fieldNumber: 561) } if _storage._jsondecodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsondecodingOptions, fieldNumber: 553) + try visitor.visitSingularInt32Field(value: _storage._jsondecodingOptions, fieldNumber: 562) } if _storage._jsonEncoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonEncoder, fieldNumber: 554) + try visitor.visitSingularInt32Field(value: _storage._jsonEncoder, fieldNumber: 563) + } + if _storage._jsonencoding != 0 { + try visitor.visitSingularInt32Field(value: _storage._jsonencoding, fieldNumber: 564) } if _storage._jsonencodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonencodingError, fieldNumber: 555) + try visitor.visitSingularInt32Field(value: _storage._jsonencodingError, fieldNumber: 565) } if _storage._jsonencodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonencodingOptions, fieldNumber: 556) + try visitor.visitSingularInt32Field(value: _storage._jsonencodingOptions, fieldNumber: 566) } if _storage._jsonencodingVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonencodingVisitor, fieldNumber: 557) + try visitor.visitSingularInt32Field(value: _storage._jsonencodingVisitor, fieldNumber: 567) } if _storage._jsonFormat != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonFormat, fieldNumber: 558) + try visitor.visitSingularInt32Field(value: _storage._jsonFormat, fieldNumber: 568) } if _storage._jsonmapEncodingVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonmapEncodingVisitor, fieldNumber: 559) + try visitor.visitSingularInt32Field(value: _storage._jsonmapEncodingVisitor, fieldNumber: 569) } if _storage._jsonName != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonName, fieldNumber: 560) + try visitor.visitSingularInt32Field(value: _storage._jsonName, fieldNumber: 570) } if _storage._jsonPath != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonPath, fieldNumber: 561) + try visitor.visitSingularInt32Field(value: _storage._jsonPath, fieldNumber: 571) } if _storage._jsonPaths != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonPaths, fieldNumber: 562) + try visitor.visitSingularInt32Field(value: _storage._jsonPaths, fieldNumber: 572) } if _storage._jsonscanner != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonscanner, fieldNumber: 563) + try visitor.visitSingularInt32Field(value: _storage._jsonscanner, fieldNumber: 573) } if _storage._jsonString != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonString, fieldNumber: 564) + try visitor.visitSingularInt32Field(value: _storage._jsonString, fieldNumber: 574) } if _storage._jsonText != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonText, fieldNumber: 565) + try visitor.visitSingularInt32Field(value: _storage._jsonText, fieldNumber: 575) } if _storage._jsonUtf8Bytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonUtf8Bytes, fieldNumber: 566) + try visitor.visitSingularInt32Field(value: _storage._jsonUtf8Bytes, fieldNumber: 576) } if _storage._jsonUtf8Data != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonUtf8Data, fieldNumber: 567) + try visitor.visitSingularInt32Field(value: _storage._jsonUtf8Data, fieldNumber: 577) } if _storage._jstype != 0 { - try visitor.visitSingularInt32Field(value: _storage._jstype, fieldNumber: 568) + try visitor.visitSingularInt32Field(value: _storage._jstype, fieldNumber: 578) } if _storage._k != 0 { - try visitor.visitSingularInt32Field(value: _storage._k, fieldNumber: 569) + try visitor.visitSingularInt32Field(value: _storage._k, fieldNumber: 579) } if _storage._kChunkSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._kChunkSize, fieldNumber: 570) + try visitor.visitSingularInt32Field(value: _storage._kChunkSize, fieldNumber: 580) } if _storage._key != 0 { - try visitor.visitSingularInt32Field(value: _storage._key, fieldNumber: 571) + try visitor.visitSingularInt32Field(value: _storage._key, fieldNumber: 581) } if _storage._keyField != 0 { - try visitor.visitSingularInt32Field(value: _storage._keyField, fieldNumber: 572) + try visitor.visitSingularInt32Field(value: _storage._keyField, fieldNumber: 582) } if _storage._keyFieldOpt != 0 { - try visitor.visitSingularInt32Field(value: _storage._keyFieldOpt, fieldNumber: 573) + try visitor.visitSingularInt32Field(value: _storage._keyFieldOpt, fieldNumber: 583) } if _storage._keyType != 0 { - try visitor.visitSingularInt32Field(value: _storage._keyType, fieldNumber: 574) + try visitor.visitSingularInt32Field(value: _storage._keyType, fieldNumber: 584) } if _storage._kind != 0 { - try visitor.visitSingularInt32Field(value: _storage._kind, fieldNumber: 575) + try visitor.visitSingularInt32Field(value: _storage._kind, fieldNumber: 585) } if _storage._l != 0 { - try visitor.visitSingularInt32Field(value: _storage._l, fieldNumber: 576) + try visitor.visitSingularInt32Field(value: _storage._l, fieldNumber: 586) } if _storage._label != 0 { - try visitor.visitSingularInt32Field(value: _storage._label, fieldNumber: 577) + try visitor.visitSingularInt32Field(value: _storage._label, fieldNumber: 587) } if _storage._lazy != 0 { - try visitor.visitSingularInt32Field(value: _storage._lazy, fieldNumber: 578) + try visitor.visitSingularInt32Field(value: _storage._lazy, fieldNumber: 588) } if _storage._leadingComments != 0 { - try visitor.visitSingularInt32Field(value: _storage._leadingComments, fieldNumber: 579) + try visitor.visitSingularInt32Field(value: _storage._leadingComments, fieldNumber: 589) } if _storage._leadingDetachedComments != 0 { - try visitor.visitSingularInt32Field(value: _storage._leadingDetachedComments, fieldNumber: 580) + try visitor.visitSingularInt32Field(value: _storage._leadingDetachedComments, fieldNumber: 590) } if _storage._length != 0 { - try visitor.visitSingularInt32Field(value: _storage._length, fieldNumber: 581) + try visitor.visitSingularInt32Field(value: _storage._length, fieldNumber: 591) } if _storage._lessThan != 0 { - try visitor.visitSingularInt32Field(value: _storage._lessThan, fieldNumber: 582) + try visitor.visitSingularInt32Field(value: _storage._lessThan, fieldNumber: 592) } if _storage._let != 0 { - try visitor.visitSingularInt32Field(value: _storage._let, fieldNumber: 583) + try visitor.visitSingularInt32Field(value: _storage._let, fieldNumber: 593) } if _storage._lhs != 0 { - try visitor.visitSingularInt32Field(value: _storage._lhs, fieldNumber: 584) + try visitor.visitSingularInt32Field(value: _storage._lhs, fieldNumber: 594) + } + if _storage._line != 0 { + try visitor.visitSingularInt32Field(value: _storage._line, fieldNumber: 595) } if _storage._list != 0 { - try visitor.visitSingularInt32Field(value: _storage._list, fieldNumber: 585) + try visitor.visitSingularInt32Field(value: _storage._list, fieldNumber: 596) } if _storage._listOfMessages != 0 { - try visitor.visitSingularInt32Field(value: _storage._listOfMessages, fieldNumber: 586) + try visitor.visitSingularInt32Field(value: _storage._listOfMessages, fieldNumber: 597) } if _storage._listValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._listValue, fieldNumber: 587) + try visitor.visitSingularInt32Field(value: _storage._listValue, fieldNumber: 598) } if _storage._littleEndian != 0 { - try visitor.visitSingularInt32Field(value: _storage._littleEndian, fieldNumber: 588) + try visitor.visitSingularInt32Field(value: _storage._littleEndian, fieldNumber: 599) } if _storage._load != 0 { - try visitor.visitSingularInt32Field(value: _storage._load, fieldNumber: 589) + try visitor.visitSingularInt32Field(value: _storage._load, fieldNumber: 600) } if _storage._localHasher != 0 { - try visitor.visitSingularInt32Field(value: _storage._localHasher, fieldNumber: 590) + try visitor.visitSingularInt32Field(value: _storage._localHasher, fieldNumber: 601) } if _storage._location != 0 { - try visitor.visitSingularInt32Field(value: _storage._location, fieldNumber: 591) + try visitor.visitSingularInt32Field(value: _storage._location, fieldNumber: 602) } if _storage._m != 0 { - try visitor.visitSingularInt32Field(value: _storage._m, fieldNumber: 592) + try visitor.visitSingularInt32Field(value: _storage._m, fieldNumber: 603) } if _storage._major != 0 { - try visitor.visitSingularInt32Field(value: _storage._major, fieldNumber: 593) + try visitor.visitSingularInt32Field(value: _storage._major, fieldNumber: 604) } if _storage._makeAsyncIterator != 0 { - try visitor.visitSingularInt32Field(value: _storage._makeAsyncIterator, fieldNumber: 594) + try visitor.visitSingularInt32Field(value: _storage._makeAsyncIterator, fieldNumber: 605) } if _storage._makeIterator != 0 { - try visitor.visitSingularInt32Field(value: _storage._makeIterator, fieldNumber: 595) + try visitor.visitSingularInt32Field(value: _storage._makeIterator, fieldNumber: 606) + } + if _storage._malformedLength != 0 { + try visitor.visitSingularInt32Field(value: _storage._malformedLength, fieldNumber: 607) } if _storage._mapEntry != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapEntry, fieldNumber: 596) + try visitor.visitSingularInt32Field(value: _storage._mapEntry, fieldNumber: 608) } if _storage._mapKeyType != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapKeyType, fieldNumber: 597) + try visitor.visitSingularInt32Field(value: _storage._mapKeyType, fieldNumber: 609) } if _storage._mapToMessages != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapToMessages, fieldNumber: 598) + try visitor.visitSingularInt32Field(value: _storage._mapToMessages, fieldNumber: 610) } if _storage._mapValueType != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapValueType, fieldNumber: 599) + try visitor.visitSingularInt32Field(value: _storage._mapValueType, fieldNumber: 611) } if _storage._mapVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapVisitor, fieldNumber: 600) + try visitor.visitSingularInt32Field(value: _storage._mapVisitor, fieldNumber: 612) } if _storage._maximumEdition != 0 { - try visitor.visitSingularInt32Field(value: _storage._maximumEdition, fieldNumber: 601) + try visitor.visitSingularInt32Field(value: _storage._maximumEdition, fieldNumber: 613) } if _storage._mdayStart != 0 { - try visitor.visitSingularInt32Field(value: _storage._mdayStart, fieldNumber: 602) + try visitor.visitSingularInt32Field(value: _storage._mdayStart, fieldNumber: 614) } if _storage._merge != 0 { - try visitor.visitSingularInt32Field(value: _storage._merge, fieldNumber: 603) + try visitor.visitSingularInt32Field(value: _storage._merge, fieldNumber: 615) } if _storage._message != 0 { - try visitor.visitSingularInt32Field(value: _storage._message, fieldNumber: 604) + try visitor.visitSingularInt32Field(value: _storage._message, fieldNumber: 616) } if _storage._messageDepthLimit != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageDepthLimit, fieldNumber: 605) + try visitor.visitSingularInt32Field(value: _storage._messageDepthLimit, fieldNumber: 617) } if _storage._messageEncoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageEncoding, fieldNumber: 606) + try visitor.visitSingularInt32Field(value: _storage._messageEncoding, fieldNumber: 618) } if _storage._messageExtension != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageExtension, fieldNumber: 607) + try visitor.visitSingularInt32Field(value: _storage._messageExtension, fieldNumber: 619) } if _storage._messageImplementationBase != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageImplementationBase, fieldNumber: 608) + try visitor.visitSingularInt32Field(value: _storage._messageImplementationBase, fieldNumber: 620) } if _storage._messageOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageOptions, fieldNumber: 609) + try visitor.visitSingularInt32Field(value: _storage._messageOptions, fieldNumber: 621) } if _storage._messageSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageSet, fieldNumber: 610) + try visitor.visitSingularInt32Field(value: _storage._messageSet, fieldNumber: 622) } if _storage._messageSetWireFormat != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageSetWireFormat, fieldNumber: 611) + try visitor.visitSingularInt32Field(value: _storage._messageSetWireFormat, fieldNumber: 623) } if _storage._messageSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageSize, fieldNumber: 612) + try visitor.visitSingularInt32Field(value: _storage._messageSize, fieldNumber: 624) } if _storage._messageType != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageType, fieldNumber: 613) + try visitor.visitSingularInt32Field(value: _storage._messageType, fieldNumber: 625) } if _storage._method != 0 { - try visitor.visitSingularInt32Field(value: _storage._method, fieldNumber: 614) + try visitor.visitSingularInt32Field(value: _storage._method, fieldNumber: 626) } if _storage._methodDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._methodDescriptorProto, fieldNumber: 615) + try visitor.visitSingularInt32Field(value: _storage._methodDescriptorProto, fieldNumber: 627) } if _storage._methodOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._methodOptions, fieldNumber: 616) + try visitor.visitSingularInt32Field(value: _storage._methodOptions, fieldNumber: 628) } if _storage._methods != 0 { - try visitor.visitSingularInt32Field(value: _storage._methods, fieldNumber: 617) + try visitor.visitSingularInt32Field(value: _storage._methods, fieldNumber: 629) } if _storage._min != 0 { - try visitor.visitSingularInt32Field(value: _storage._min, fieldNumber: 618) + try visitor.visitSingularInt32Field(value: _storage._min, fieldNumber: 630) } if _storage._minimumEdition != 0 { - try visitor.visitSingularInt32Field(value: _storage._minimumEdition, fieldNumber: 619) + try visitor.visitSingularInt32Field(value: _storage._minimumEdition, fieldNumber: 631) } if _storage._minor != 0 { - try visitor.visitSingularInt32Field(value: _storage._minor, fieldNumber: 620) + try visitor.visitSingularInt32Field(value: _storage._minor, fieldNumber: 632) } if _storage._mixin != 0 { - try visitor.visitSingularInt32Field(value: _storage._mixin, fieldNumber: 621) + try visitor.visitSingularInt32Field(value: _storage._mixin, fieldNumber: 633) } if _storage._mixins != 0 { - try visitor.visitSingularInt32Field(value: _storage._mixins, fieldNumber: 622) + try visitor.visitSingularInt32Field(value: _storage._mixins, fieldNumber: 634) } if _storage._modifier != 0 { - try visitor.visitSingularInt32Field(value: _storage._modifier, fieldNumber: 623) + try visitor.visitSingularInt32Field(value: _storage._modifier, fieldNumber: 635) } if _storage._modify != 0 { - try visitor.visitSingularInt32Field(value: _storage._modify, fieldNumber: 624) + try visitor.visitSingularInt32Field(value: _storage._modify, fieldNumber: 636) } if _storage._month != 0 { - try visitor.visitSingularInt32Field(value: _storage._month, fieldNumber: 625) + try visitor.visitSingularInt32Field(value: _storage._month, fieldNumber: 637) } if _storage._msgExtension != 0 { - try visitor.visitSingularInt32Field(value: _storage._msgExtension, fieldNumber: 626) + try visitor.visitSingularInt32Field(value: _storage._msgExtension, fieldNumber: 638) } if _storage._mutating != 0 { - try visitor.visitSingularInt32Field(value: _storage._mutating, fieldNumber: 627) + try visitor.visitSingularInt32Field(value: _storage._mutating, fieldNumber: 639) } if _storage._n != 0 { - try visitor.visitSingularInt32Field(value: _storage._n, fieldNumber: 628) + try visitor.visitSingularInt32Field(value: _storage._n, fieldNumber: 640) } if _storage._name != 0 { - try visitor.visitSingularInt32Field(value: _storage._name, fieldNumber: 629) + try visitor.visitSingularInt32Field(value: _storage._name, fieldNumber: 641) } if _storage._nameDescription != 0 { - try visitor.visitSingularInt32Field(value: _storage._nameDescription, fieldNumber: 630) + try visitor.visitSingularInt32Field(value: _storage._nameDescription, fieldNumber: 642) } if _storage._nameMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._nameMap, fieldNumber: 631) + try visitor.visitSingularInt32Field(value: _storage._nameMap, fieldNumber: 643) } if _storage._namePart != 0 { - try visitor.visitSingularInt32Field(value: _storage._namePart, fieldNumber: 632) + try visitor.visitSingularInt32Field(value: _storage._namePart, fieldNumber: 644) } if _storage._names != 0 { - try visitor.visitSingularInt32Field(value: _storage._names, fieldNumber: 633) + try visitor.visitSingularInt32Field(value: _storage._names, fieldNumber: 645) } if _storage._nanos != 0 { - try visitor.visitSingularInt32Field(value: _storage._nanos, fieldNumber: 634) + try visitor.visitSingularInt32Field(value: _storage._nanos, fieldNumber: 646) } if _storage._negativeIntValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._negativeIntValue, fieldNumber: 635) + try visitor.visitSingularInt32Field(value: _storage._negativeIntValue, fieldNumber: 647) } if _storage._nestedType != 0 { - try visitor.visitSingularInt32Field(value: _storage._nestedType, fieldNumber: 636) + try visitor.visitSingularInt32Field(value: _storage._nestedType, fieldNumber: 648) } if _storage._newL != 0 { - try visitor.visitSingularInt32Field(value: _storage._newL, fieldNumber: 637) + try visitor.visitSingularInt32Field(value: _storage._newL, fieldNumber: 649) } if _storage._newList != 0 { - try visitor.visitSingularInt32Field(value: _storage._newList, fieldNumber: 638) + try visitor.visitSingularInt32Field(value: _storage._newList, fieldNumber: 650) } if _storage._newValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._newValue, fieldNumber: 639) + try visitor.visitSingularInt32Field(value: _storage._newValue, fieldNumber: 651) } if _storage._next != 0 { - try visitor.visitSingularInt32Field(value: _storage._next, fieldNumber: 640) + try visitor.visitSingularInt32Field(value: _storage._next, fieldNumber: 652) } if _storage._nextByte != 0 { - try visitor.visitSingularInt32Field(value: _storage._nextByte, fieldNumber: 641) + try visitor.visitSingularInt32Field(value: _storage._nextByte, fieldNumber: 653) } if _storage._nextFieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._nextFieldNumber, fieldNumber: 642) + try visitor.visitSingularInt32Field(value: _storage._nextFieldNumber, fieldNumber: 654) } if _storage._nextVarInt != 0 { - try visitor.visitSingularInt32Field(value: _storage._nextVarInt, fieldNumber: 643) + try visitor.visitSingularInt32Field(value: _storage._nextVarInt, fieldNumber: 655) } if _storage._nil != 0 { - try visitor.visitSingularInt32Field(value: _storage._nil, fieldNumber: 644) + try visitor.visitSingularInt32Field(value: _storage._nil, fieldNumber: 656) } if _storage._nilLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._nilLiteral, fieldNumber: 645) + try visitor.visitSingularInt32Field(value: _storage._nilLiteral, fieldNumber: 657) + } + if _storage._noBytesAvailable != 0 { + try visitor.visitSingularInt32Field(value: _storage._noBytesAvailable, fieldNumber: 658) } if _storage._noStandardDescriptorAccessor != 0 { - try visitor.visitSingularInt32Field(value: _storage._noStandardDescriptorAccessor, fieldNumber: 646) + try visitor.visitSingularInt32Field(value: _storage._noStandardDescriptorAccessor, fieldNumber: 659) } if _storage._nullValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._nullValue, fieldNumber: 647) + try visitor.visitSingularInt32Field(value: _storage._nullValue, fieldNumber: 660) } if _storage._number != 0 { - try visitor.visitSingularInt32Field(value: _storage._number, fieldNumber: 648) + try visitor.visitSingularInt32Field(value: _storage._number, fieldNumber: 661) } if _storage._numberValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._numberValue, fieldNumber: 649) + try visitor.visitSingularInt32Field(value: _storage._numberValue, fieldNumber: 662) } if _storage._objcClassPrefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._objcClassPrefix, fieldNumber: 650) + try visitor.visitSingularInt32Field(value: _storage._objcClassPrefix, fieldNumber: 663) } if _storage._of != 0 { - try visitor.visitSingularInt32Field(value: _storage._of, fieldNumber: 651) + try visitor.visitSingularInt32Field(value: _storage._of, fieldNumber: 664) } if _storage._oneofDecl != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofDecl, fieldNumber: 652) + try visitor.visitSingularInt32Field(value: _storage._oneofDecl, fieldNumber: 665) } if _storage._oneofDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofDescriptorProto, fieldNumber: 653) + try visitor.visitSingularInt32Field(value: _storage._oneofDescriptorProto, fieldNumber: 666) } if _storage._oneofIndex != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofIndex, fieldNumber: 654) + try visitor.visitSingularInt32Field(value: _storage._oneofIndex, fieldNumber: 667) } if _storage._oneofOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofOptions, fieldNumber: 655) + try visitor.visitSingularInt32Field(value: _storage._oneofOptions, fieldNumber: 668) } if _storage._oneofs != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofs, fieldNumber: 656) + try visitor.visitSingularInt32Field(value: _storage._oneofs, fieldNumber: 669) } if _storage._oneOfKind != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneOfKind, fieldNumber: 657) + try visitor.visitSingularInt32Field(value: _storage._oneOfKind, fieldNumber: 670) } if _storage._optimizeFor != 0 { - try visitor.visitSingularInt32Field(value: _storage._optimizeFor, fieldNumber: 658) + try visitor.visitSingularInt32Field(value: _storage._optimizeFor, fieldNumber: 671) } if _storage._optimizeMode != 0 { - try visitor.visitSingularInt32Field(value: _storage._optimizeMode, fieldNumber: 659) + try visitor.visitSingularInt32Field(value: _storage._optimizeMode, fieldNumber: 672) } if _storage._option != 0 { - try visitor.visitSingularInt32Field(value: _storage._option, fieldNumber: 660) + try visitor.visitSingularInt32Field(value: _storage._option, fieldNumber: 673) } if _storage._optionalEnumExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionalEnumExtensionField, fieldNumber: 661) + try visitor.visitSingularInt32Field(value: _storage._optionalEnumExtensionField, fieldNumber: 674) } if _storage._optionalExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionalExtensionField, fieldNumber: 662) + try visitor.visitSingularInt32Field(value: _storage._optionalExtensionField, fieldNumber: 675) } if _storage._optionalGroupExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionalGroupExtensionField, fieldNumber: 663) + try visitor.visitSingularInt32Field(value: _storage._optionalGroupExtensionField, fieldNumber: 676) } if _storage._optionalMessageExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionalMessageExtensionField, fieldNumber: 664) + try visitor.visitSingularInt32Field(value: _storage._optionalMessageExtensionField, fieldNumber: 677) } if _storage._optionRetention != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionRetention, fieldNumber: 665) + try visitor.visitSingularInt32Field(value: _storage._optionRetention, fieldNumber: 678) } if _storage._options != 0 { - try visitor.visitSingularInt32Field(value: _storage._options, fieldNumber: 666) + try visitor.visitSingularInt32Field(value: _storage._options, fieldNumber: 679) } if _storage._optionTargetType != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionTargetType, fieldNumber: 667) + try visitor.visitSingularInt32Field(value: _storage._optionTargetType, fieldNumber: 680) } if _storage._other != 0 { - try visitor.visitSingularInt32Field(value: _storage._other, fieldNumber: 668) + try visitor.visitSingularInt32Field(value: _storage._other, fieldNumber: 681) } if _storage._others != 0 { - try visitor.visitSingularInt32Field(value: _storage._others, fieldNumber: 669) + try visitor.visitSingularInt32Field(value: _storage._others, fieldNumber: 682) } if _storage._out != 0 { - try visitor.visitSingularInt32Field(value: _storage._out, fieldNumber: 670) + try visitor.visitSingularInt32Field(value: _storage._out, fieldNumber: 683) } if _storage._outputType != 0 { - try visitor.visitSingularInt32Field(value: _storage._outputType, fieldNumber: 671) + try visitor.visitSingularInt32Field(value: _storage._outputType, fieldNumber: 684) } if _storage._overridableFeatures != 0 { - try visitor.visitSingularInt32Field(value: _storage._overridableFeatures, fieldNumber: 672) + try visitor.visitSingularInt32Field(value: _storage._overridableFeatures, fieldNumber: 685) } if _storage._p != 0 { - try visitor.visitSingularInt32Field(value: _storage._p, fieldNumber: 673) + try visitor.visitSingularInt32Field(value: _storage._p, fieldNumber: 686) } if _storage._package != 0 { - try visitor.visitSingularInt32Field(value: _storage._package, fieldNumber: 674) + try visitor.visitSingularInt32Field(value: _storage._package, fieldNumber: 687) } if _storage._packed != 0 { - try visitor.visitSingularInt32Field(value: _storage._packed, fieldNumber: 675) + try visitor.visitSingularInt32Field(value: _storage._packed, fieldNumber: 688) } if _storage._packedEnumExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._packedEnumExtensionField, fieldNumber: 676) + try visitor.visitSingularInt32Field(value: _storage._packedEnumExtensionField, fieldNumber: 689) } if _storage._packedExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._packedExtensionField, fieldNumber: 677) + try visitor.visitSingularInt32Field(value: _storage._packedExtensionField, fieldNumber: 690) } if _storage._padding != 0 { - try visitor.visitSingularInt32Field(value: _storage._padding, fieldNumber: 678) + try visitor.visitSingularInt32Field(value: _storage._padding, fieldNumber: 691) } if _storage._parent != 0 { - try visitor.visitSingularInt32Field(value: _storage._parent, fieldNumber: 679) + try visitor.visitSingularInt32Field(value: _storage._parent, fieldNumber: 692) } if _storage._parse != 0 { - try visitor.visitSingularInt32Field(value: _storage._parse, fieldNumber: 680) + try visitor.visitSingularInt32Field(value: _storage._parse, fieldNumber: 693) } if _storage._path != 0 { - try visitor.visitSingularInt32Field(value: _storage._path, fieldNumber: 681) + try visitor.visitSingularInt32Field(value: _storage._path, fieldNumber: 694) } if _storage._paths != 0 { - try visitor.visitSingularInt32Field(value: _storage._paths, fieldNumber: 682) + try visitor.visitSingularInt32Field(value: _storage._paths, fieldNumber: 695) } if _storage._payload != 0 { - try visitor.visitSingularInt32Field(value: _storage._payload, fieldNumber: 683) + try visitor.visitSingularInt32Field(value: _storage._payload, fieldNumber: 696) } if _storage._payloadSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._payloadSize, fieldNumber: 684) + try visitor.visitSingularInt32Field(value: _storage._payloadSize, fieldNumber: 697) } if _storage._phpClassPrefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._phpClassPrefix, fieldNumber: 685) + try visitor.visitSingularInt32Field(value: _storage._phpClassPrefix, fieldNumber: 698) } if _storage._phpMetadataNamespace != 0 { - try visitor.visitSingularInt32Field(value: _storage._phpMetadataNamespace, fieldNumber: 686) + try visitor.visitSingularInt32Field(value: _storage._phpMetadataNamespace, fieldNumber: 699) } if _storage._phpNamespace != 0 { - try visitor.visitSingularInt32Field(value: _storage._phpNamespace, fieldNumber: 687) + try visitor.visitSingularInt32Field(value: _storage._phpNamespace, fieldNumber: 700) } if _storage._pos != 0 { - try visitor.visitSingularInt32Field(value: _storage._pos, fieldNumber: 688) + try visitor.visitSingularInt32Field(value: _storage._pos, fieldNumber: 701) } if _storage._positiveIntValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._positiveIntValue, fieldNumber: 689) + try visitor.visitSingularInt32Field(value: _storage._positiveIntValue, fieldNumber: 702) } if _storage._prefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._prefix, fieldNumber: 690) + try visitor.visitSingularInt32Field(value: _storage._prefix, fieldNumber: 703) } if _storage._preserveProtoFieldNames != 0 { - try visitor.visitSingularInt32Field(value: _storage._preserveProtoFieldNames, fieldNumber: 691) + try visitor.visitSingularInt32Field(value: _storage._preserveProtoFieldNames, fieldNumber: 704) } if _storage._preTraverse != 0 { - try visitor.visitSingularInt32Field(value: _storage._preTraverse, fieldNumber: 692) + try visitor.visitSingularInt32Field(value: _storage._preTraverse, fieldNumber: 705) } if _storage._printUnknownFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._printUnknownFields, fieldNumber: 693) + try visitor.visitSingularInt32Field(value: _storage._printUnknownFields, fieldNumber: 706) } if _storage._proto2 != 0 { - try visitor.visitSingularInt32Field(value: _storage._proto2, fieldNumber: 694) + try visitor.visitSingularInt32Field(value: _storage._proto2, fieldNumber: 707) } if _storage._proto3DefaultValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._proto3DefaultValue, fieldNumber: 695) + try visitor.visitSingularInt32Field(value: _storage._proto3DefaultValue, fieldNumber: 708) } if _storage._proto3Optional != 0 { - try visitor.visitSingularInt32Field(value: _storage._proto3Optional, fieldNumber: 696) + try visitor.visitSingularInt32Field(value: _storage._proto3Optional, fieldNumber: 709) } if _storage._protobufApiversionCheck != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufApiversionCheck, fieldNumber: 697) + try visitor.visitSingularInt32Field(value: _storage._protobufApiversionCheck, fieldNumber: 710) } if _storage._protobufApiversion3 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufApiversion3, fieldNumber: 698) + try visitor.visitSingularInt32Field(value: _storage._protobufApiversion3, fieldNumber: 711) } if _storage._protobufBool != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufBool, fieldNumber: 699) + try visitor.visitSingularInt32Field(value: _storage._protobufBool, fieldNumber: 712) } if _storage._protobufBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufBytes, fieldNumber: 700) + try visitor.visitSingularInt32Field(value: _storage._protobufBytes, fieldNumber: 713) } if _storage._protobufDouble != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufDouble, fieldNumber: 701) + try visitor.visitSingularInt32Field(value: _storage._protobufDouble, fieldNumber: 714) } if _storage._protobufEnumMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufEnumMap, fieldNumber: 702) + try visitor.visitSingularInt32Field(value: _storage._protobufEnumMap, fieldNumber: 715) } if _storage._protobufExtension != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufExtension, fieldNumber: 703) + try visitor.visitSingularInt32Field(value: _storage._protobufExtension, fieldNumber: 716) } if _storage._protobufFixed32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufFixed32, fieldNumber: 704) + try visitor.visitSingularInt32Field(value: _storage._protobufFixed32, fieldNumber: 717) } if _storage._protobufFixed64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufFixed64, fieldNumber: 705) + try visitor.visitSingularInt32Field(value: _storage._protobufFixed64, fieldNumber: 718) } if _storage._protobufFloat != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufFloat, fieldNumber: 706) + try visitor.visitSingularInt32Field(value: _storage._protobufFloat, fieldNumber: 719) } if _storage._protobufInt32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufInt32, fieldNumber: 707) + try visitor.visitSingularInt32Field(value: _storage._protobufInt32, fieldNumber: 720) } if _storage._protobufInt64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufInt64, fieldNumber: 708) + try visitor.visitSingularInt32Field(value: _storage._protobufInt64, fieldNumber: 721) } if _storage._protobufMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufMap, fieldNumber: 709) + try visitor.visitSingularInt32Field(value: _storage._protobufMap, fieldNumber: 722) } if _storage._protobufMessageMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufMessageMap, fieldNumber: 710) + try visitor.visitSingularInt32Field(value: _storage._protobufMessageMap, fieldNumber: 723) } if _storage._protobufSfixed32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufSfixed32, fieldNumber: 711) + try visitor.visitSingularInt32Field(value: _storage._protobufSfixed32, fieldNumber: 724) } if _storage._protobufSfixed64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufSfixed64, fieldNumber: 712) + try visitor.visitSingularInt32Field(value: _storage._protobufSfixed64, fieldNumber: 725) } if _storage._protobufSint32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufSint32, fieldNumber: 713) + try visitor.visitSingularInt32Field(value: _storage._protobufSint32, fieldNumber: 726) } if _storage._protobufSint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufSint64, fieldNumber: 714) + try visitor.visitSingularInt32Field(value: _storage._protobufSint64, fieldNumber: 727) } if _storage._protobufString != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufString, fieldNumber: 715) + try visitor.visitSingularInt32Field(value: _storage._protobufString, fieldNumber: 728) } if _storage._protobufUint32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufUint32, fieldNumber: 716) + try visitor.visitSingularInt32Field(value: _storage._protobufUint32, fieldNumber: 729) } if _storage._protobufUint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufUint64, fieldNumber: 717) + try visitor.visitSingularInt32Field(value: _storage._protobufUint64, fieldNumber: 730) } if _storage._protobufExtensionFieldValues != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufExtensionFieldValues, fieldNumber: 718) + try visitor.visitSingularInt32Field(value: _storage._protobufExtensionFieldValues, fieldNumber: 731) } if _storage._protobufFieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufFieldNumber, fieldNumber: 719) + try visitor.visitSingularInt32Field(value: _storage._protobufFieldNumber, fieldNumber: 732) } if _storage._protobufGeneratedIsEqualTo != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufGeneratedIsEqualTo, fieldNumber: 720) + try visitor.visitSingularInt32Field(value: _storage._protobufGeneratedIsEqualTo, fieldNumber: 733) } if _storage._protobufNameMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufNameMap, fieldNumber: 721) + try visitor.visitSingularInt32Field(value: _storage._protobufNameMap, fieldNumber: 734) } if _storage._protobufNewField != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufNewField, fieldNumber: 722) + try visitor.visitSingularInt32Field(value: _storage._protobufNewField, fieldNumber: 735) } if _storage._protobufPackage != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufPackage, fieldNumber: 723) + try visitor.visitSingularInt32Field(value: _storage._protobufPackage, fieldNumber: 736) } if _storage._protocol != 0 { - try visitor.visitSingularInt32Field(value: _storage._protocol, fieldNumber: 724) + try visitor.visitSingularInt32Field(value: _storage._protocol, fieldNumber: 737) } if _storage._protoFieldName != 0 { - try visitor.visitSingularInt32Field(value: _storage._protoFieldName, fieldNumber: 725) + try visitor.visitSingularInt32Field(value: _storage._protoFieldName, fieldNumber: 738) } if _storage._protoMessageName != 0 { - try visitor.visitSingularInt32Field(value: _storage._protoMessageName, fieldNumber: 726) + try visitor.visitSingularInt32Field(value: _storage._protoMessageName, fieldNumber: 739) } if _storage._protoNameProviding != 0 { - try visitor.visitSingularInt32Field(value: _storage._protoNameProviding, fieldNumber: 727) + try visitor.visitSingularInt32Field(value: _storage._protoNameProviding, fieldNumber: 740) } if _storage._protoPaths != 0 { - try visitor.visitSingularInt32Field(value: _storage._protoPaths, fieldNumber: 728) + try visitor.visitSingularInt32Field(value: _storage._protoPaths, fieldNumber: 741) } if _storage._public != 0 { - try visitor.visitSingularInt32Field(value: _storage._public, fieldNumber: 729) + try visitor.visitSingularInt32Field(value: _storage._public, fieldNumber: 742) } if _storage._publicDependency != 0 { - try visitor.visitSingularInt32Field(value: _storage._publicDependency, fieldNumber: 730) + try visitor.visitSingularInt32Field(value: _storage._publicDependency, fieldNumber: 743) } if _storage._putBoolValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putBoolValue, fieldNumber: 731) + try visitor.visitSingularInt32Field(value: _storage._putBoolValue, fieldNumber: 744) } if _storage._putBytesValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putBytesValue, fieldNumber: 732) + try visitor.visitSingularInt32Field(value: _storage._putBytesValue, fieldNumber: 745) } if _storage._putDoubleValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putDoubleValue, fieldNumber: 733) + try visitor.visitSingularInt32Field(value: _storage._putDoubleValue, fieldNumber: 746) } if _storage._putEnumValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putEnumValue, fieldNumber: 734) + try visitor.visitSingularInt32Field(value: _storage._putEnumValue, fieldNumber: 747) } if _storage._putFixedUint32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._putFixedUint32, fieldNumber: 735) + try visitor.visitSingularInt32Field(value: _storage._putFixedUint32, fieldNumber: 748) } if _storage._putFixedUint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._putFixedUint64, fieldNumber: 736) + try visitor.visitSingularInt32Field(value: _storage._putFixedUint64, fieldNumber: 749) } if _storage._putFloatValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putFloatValue, fieldNumber: 737) + try visitor.visitSingularInt32Field(value: _storage._putFloatValue, fieldNumber: 750) } if _storage._putInt64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._putInt64, fieldNumber: 738) + try visitor.visitSingularInt32Field(value: _storage._putInt64, fieldNumber: 751) } if _storage._putStringValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putStringValue, fieldNumber: 739) + try visitor.visitSingularInt32Field(value: _storage._putStringValue, fieldNumber: 752) } if _storage._putUint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._putUint64, fieldNumber: 740) + try visitor.visitSingularInt32Field(value: _storage._putUint64, fieldNumber: 753) } if _storage._putUint64Hex != 0 { - try visitor.visitSingularInt32Field(value: _storage._putUint64Hex, fieldNumber: 741) + try visitor.visitSingularInt32Field(value: _storage._putUint64Hex, fieldNumber: 754) } if _storage._putVarInt != 0 { - try visitor.visitSingularInt32Field(value: _storage._putVarInt, fieldNumber: 742) + try visitor.visitSingularInt32Field(value: _storage._putVarInt, fieldNumber: 755) } if _storage._putZigZagVarInt != 0 { - try visitor.visitSingularInt32Field(value: _storage._putZigZagVarInt, fieldNumber: 743) + try visitor.visitSingularInt32Field(value: _storage._putZigZagVarInt, fieldNumber: 756) } if _storage._pyGenericServices != 0 { - try visitor.visitSingularInt32Field(value: _storage._pyGenericServices, fieldNumber: 744) + try visitor.visitSingularInt32Field(value: _storage._pyGenericServices, fieldNumber: 757) } if _storage._r != 0 { - try visitor.visitSingularInt32Field(value: _storage._r, fieldNumber: 745) + try visitor.visitSingularInt32Field(value: _storage._r, fieldNumber: 758) } if _storage._rawChars != 0 { - try visitor.visitSingularInt32Field(value: _storage._rawChars, fieldNumber: 746) + try visitor.visitSingularInt32Field(value: _storage._rawChars, fieldNumber: 759) } if _storage._rawRepresentable != 0 { - try visitor.visitSingularInt32Field(value: _storage._rawRepresentable, fieldNumber: 747) + try visitor.visitSingularInt32Field(value: _storage._rawRepresentable, fieldNumber: 760) } if _storage._rawValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._rawValue, fieldNumber: 748) + try visitor.visitSingularInt32Field(value: _storage._rawValue, fieldNumber: 761) } if _storage._read4HexDigits != 0 { - try visitor.visitSingularInt32Field(value: _storage._read4HexDigits, fieldNumber: 749) + try visitor.visitSingularInt32Field(value: _storage._read4HexDigits, fieldNumber: 762) } if _storage._readBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._readBytes, fieldNumber: 750) + try visitor.visitSingularInt32Field(value: _storage._readBytes, fieldNumber: 763) } if _storage._register != 0 { - try visitor.visitSingularInt32Field(value: _storage._register, fieldNumber: 751) + try visitor.visitSingularInt32Field(value: _storage._register, fieldNumber: 764) } if _storage._repeated != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeated, fieldNumber: 752) + try visitor.visitSingularInt32Field(value: _storage._repeated, fieldNumber: 765) } if _storage._repeatedEnumExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedEnumExtensionField, fieldNumber: 753) + try visitor.visitSingularInt32Field(value: _storage._repeatedEnumExtensionField, fieldNumber: 766) } if _storage._repeatedExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedExtensionField, fieldNumber: 754) + try visitor.visitSingularInt32Field(value: _storage._repeatedExtensionField, fieldNumber: 767) } if _storage._repeatedFieldEncoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedFieldEncoding, fieldNumber: 755) + try visitor.visitSingularInt32Field(value: _storage._repeatedFieldEncoding, fieldNumber: 768) } if _storage._repeatedGroupExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedGroupExtensionField, fieldNumber: 756) + try visitor.visitSingularInt32Field(value: _storage._repeatedGroupExtensionField, fieldNumber: 769) } if _storage._repeatedMessageExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedMessageExtensionField, fieldNumber: 757) + try visitor.visitSingularInt32Field(value: _storage._repeatedMessageExtensionField, fieldNumber: 770) } if _storage._repeating != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeating, fieldNumber: 758) + try visitor.visitSingularInt32Field(value: _storage._repeating, fieldNumber: 771) } if _storage._requestStreaming != 0 { - try visitor.visitSingularInt32Field(value: _storage._requestStreaming, fieldNumber: 759) + try visitor.visitSingularInt32Field(value: _storage._requestStreaming, fieldNumber: 772) } if _storage._requestTypeURL != 0 { - try visitor.visitSingularInt32Field(value: _storage._requestTypeURL, fieldNumber: 760) + try visitor.visitSingularInt32Field(value: _storage._requestTypeURL, fieldNumber: 773) } if _storage._requiredSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._requiredSize, fieldNumber: 761) + try visitor.visitSingularInt32Field(value: _storage._requiredSize, fieldNumber: 774) } if _storage._responseStreaming != 0 { - try visitor.visitSingularInt32Field(value: _storage._responseStreaming, fieldNumber: 762) + try visitor.visitSingularInt32Field(value: _storage._responseStreaming, fieldNumber: 775) } if _storage._responseTypeURL != 0 { - try visitor.visitSingularInt32Field(value: _storage._responseTypeURL, fieldNumber: 763) + try visitor.visitSingularInt32Field(value: _storage._responseTypeURL, fieldNumber: 776) } if _storage._result != 0 { - try visitor.visitSingularInt32Field(value: _storage._result, fieldNumber: 764) + try visitor.visitSingularInt32Field(value: _storage._result, fieldNumber: 777) } if _storage._retention != 0 { - try visitor.visitSingularInt32Field(value: _storage._retention, fieldNumber: 765) + try visitor.visitSingularInt32Field(value: _storage._retention, fieldNumber: 778) } if _storage._rethrows != 0 { - try visitor.visitSingularInt32Field(value: _storage._rethrows, fieldNumber: 766) + try visitor.visitSingularInt32Field(value: _storage._rethrows, fieldNumber: 779) } if _storage._return != 0 { - try visitor.visitSingularInt32Field(value: _storage._return, fieldNumber: 767) + try visitor.visitSingularInt32Field(value: _storage._return, fieldNumber: 780) } if _storage._returnType != 0 { - try visitor.visitSingularInt32Field(value: _storage._returnType, fieldNumber: 768) + try visitor.visitSingularInt32Field(value: _storage._returnType, fieldNumber: 781) } if _storage._revision != 0 { - try visitor.visitSingularInt32Field(value: _storage._revision, fieldNumber: 769) + try visitor.visitSingularInt32Field(value: _storage._revision, fieldNumber: 782) } if _storage._rhs != 0 { - try visitor.visitSingularInt32Field(value: _storage._rhs, fieldNumber: 770) + try visitor.visitSingularInt32Field(value: _storage._rhs, fieldNumber: 783) } if _storage._root != 0 { - try visitor.visitSingularInt32Field(value: _storage._root, fieldNumber: 771) + try visitor.visitSingularInt32Field(value: _storage._root, fieldNumber: 784) } if _storage._rubyPackage != 0 { - try visitor.visitSingularInt32Field(value: _storage._rubyPackage, fieldNumber: 772) + try visitor.visitSingularInt32Field(value: _storage._rubyPackage, fieldNumber: 785) } if _storage._s != 0 { - try visitor.visitSingularInt32Field(value: _storage._s, fieldNumber: 773) + try visitor.visitSingularInt32Field(value: _storage._s, fieldNumber: 786) } if _storage._sawBackslash != 0 { - try visitor.visitSingularInt32Field(value: _storage._sawBackslash, fieldNumber: 774) + try visitor.visitSingularInt32Field(value: _storage._sawBackslash, fieldNumber: 787) } if _storage._sawSection4Characters != 0 { - try visitor.visitSingularInt32Field(value: _storage._sawSection4Characters, fieldNumber: 775) + try visitor.visitSingularInt32Field(value: _storage._sawSection4Characters, fieldNumber: 788) } if _storage._sawSection5Characters != 0 { - try visitor.visitSingularInt32Field(value: _storage._sawSection5Characters, fieldNumber: 776) + try visitor.visitSingularInt32Field(value: _storage._sawSection5Characters, fieldNumber: 789) } if _storage._scan != 0 { - try visitor.visitSingularInt32Field(value: _storage._scan, fieldNumber: 777) + try visitor.visitSingularInt32Field(value: _storage._scan, fieldNumber: 790) } if _storage._scanner != 0 { - try visitor.visitSingularInt32Field(value: _storage._scanner, fieldNumber: 778) + try visitor.visitSingularInt32Field(value: _storage._scanner, fieldNumber: 791) } if _storage._seconds != 0 { - try visitor.visitSingularInt32Field(value: _storage._seconds, fieldNumber: 779) + try visitor.visitSingularInt32Field(value: _storage._seconds, fieldNumber: 792) } if _storage._self_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._self_p, fieldNumber: 780) + try visitor.visitSingularInt32Field(value: _storage._self_p, fieldNumber: 793) } if _storage._semantic != 0 { - try visitor.visitSingularInt32Field(value: _storage._semantic, fieldNumber: 781) + try visitor.visitSingularInt32Field(value: _storage._semantic, fieldNumber: 794) } if _storage._sendable != 0 { - try visitor.visitSingularInt32Field(value: _storage._sendable, fieldNumber: 782) + try visitor.visitSingularInt32Field(value: _storage._sendable, fieldNumber: 795) } if _storage._separator != 0 { - try visitor.visitSingularInt32Field(value: _storage._separator, fieldNumber: 783) + try visitor.visitSingularInt32Field(value: _storage._separator, fieldNumber: 796) } if _storage._serialize != 0 { - try visitor.visitSingularInt32Field(value: _storage._serialize, fieldNumber: 784) + try visitor.visitSingularInt32Field(value: _storage._serialize, fieldNumber: 797) } if _storage._serializedBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._serializedBytes, fieldNumber: 785) + try visitor.visitSingularInt32Field(value: _storage._serializedBytes, fieldNumber: 798) } if _storage._serializedData != 0 { - try visitor.visitSingularInt32Field(value: _storage._serializedData, fieldNumber: 786) + try visitor.visitSingularInt32Field(value: _storage._serializedData, fieldNumber: 799) } if _storage._serializedSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._serializedSize, fieldNumber: 787) + try visitor.visitSingularInt32Field(value: _storage._serializedSize, fieldNumber: 800) } if _storage._serverStreaming != 0 { - try visitor.visitSingularInt32Field(value: _storage._serverStreaming, fieldNumber: 788) + try visitor.visitSingularInt32Field(value: _storage._serverStreaming, fieldNumber: 801) } if _storage._service != 0 { - try visitor.visitSingularInt32Field(value: _storage._service, fieldNumber: 789) + try visitor.visitSingularInt32Field(value: _storage._service, fieldNumber: 802) } if _storage._serviceDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._serviceDescriptorProto, fieldNumber: 790) + try visitor.visitSingularInt32Field(value: _storage._serviceDescriptorProto, fieldNumber: 803) } if _storage._serviceOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._serviceOptions, fieldNumber: 791) + try visitor.visitSingularInt32Field(value: _storage._serviceOptions, fieldNumber: 804) } if _storage._set != 0 { - try visitor.visitSingularInt32Field(value: _storage._set, fieldNumber: 792) + try visitor.visitSingularInt32Field(value: _storage._set, fieldNumber: 805) } if _storage._setExtensionValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._setExtensionValue, fieldNumber: 793) + try visitor.visitSingularInt32Field(value: _storage._setExtensionValue, fieldNumber: 806) } if _storage._shift != 0 { - try visitor.visitSingularInt32Field(value: _storage._shift, fieldNumber: 794) + try visitor.visitSingularInt32Field(value: _storage._shift, fieldNumber: 807) } if _storage._simpleExtensionMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._simpleExtensionMap, fieldNumber: 795) + try visitor.visitSingularInt32Field(value: _storage._simpleExtensionMap, fieldNumber: 808) } if _storage._size != 0 { - try visitor.visitSingularInt32Field(value: _storage._size, fieldNumber: 796) + try visitor.visitSingularInt32Field(value: _storage._size, fieldNumber: 809) } if _storage._sizer != 0 { - try visitor.visitSingularInt32Field(value: _storage._sizer, fieldNumber: 797) + try visitor.visitSingularInt32Field(value: _storage._sizer, fieldNumber: 810) } if _storage._source != 0 { - try visitor.visitSingularInt32Field(value: _storage._source, fieldNumber: 798) + try visitor.visitSingularInt32Field(value: _storage._source, fieldNumber: 811) } if _storage._sourceCodeInfo != 0 { - try visitor.visitSingularInt32Field(value: _storage._sourceCodeInfo, fieldNumber: 799) + try visitor.visitSingularInt32Field(value: _storage._sourceCodeInfo, fieldNumber: 812) } if _storage._sourceContext != 0 { - try visitor.visitSingularInt32Field(value: _storage._sourceContext, fieldNumber: 800) + try visitor.visitSingularInt32Field(value: _storage._sourceContext, fieldNumber: 813) } if _storage._sourceEncoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._sourceEncoding, fieldNumber: 801) + try visitor.visitSingularInt32Field(value: _storage._sourceEncoding, fieldNumber: 814) } if _storage._sourceFile != 0 { - try visitor.visitSingularInt32Field(value: _storage._sourceFile, fieldNumber: 802) + try visitor.visitSingularInt32Field(value: _storage._sourceFile, fieldNumber: 815) + } + if _storage._sourceLocation != 0 { + try visitor.visitSingularInt32Field(value: _storage._sourceLocation, fieldNumber: 816) } if _storage._span != 0 { - try visitor.visitSingularInt32Field(value: _storage._span, fieldNumber: 803) + try visitor.visitSingularInt32Field(value: _storage._span, fieldNumber: 817) } if _storage._split != 0 { - try visitor.visitSingularInt32Field(value: _storage._split, fieldNumber: 804) + try visitor.visitSingularInt32Field(value: _storage._split, fieldNumber: 818) } if _storage._start != 0 { - try visitor.visitSingularInt32Field(value: _storage._start, fieldNumber: 805) + try visitor.visitSingularInt32Field(value: _storage._start, fieldNumber: 819) } if _storage._startArray != 0 { - try visitor.visitSingularInt32Field(value: _storage._startArray, fieldNumber: 806) + try visitor.visitSingularInt32Field(value: _storage._startArray, fieldNumber: 820) } if _storage._startArrayObject != 0 { - try visitor.visitSingularInt32Field(value: _storage._startArrayObject, fieldNumber: 807) + try visitor.visitSingularInt32Field(value: _storage._startArrayObject, fieldNumber: 821) } if _storage._startField != 0 { - try visitor.visitSingularInt32Field(value: _storage._startField, fieldNumber: 808) + try visitor.visitSingularInt32Field(value: _storage._startField, fieldNumber: 822) } if _storage._startIndex != 0 { - try visitor.visitSingularInt32Field(value: _storage._startIndex, fieldNumber: 809) + try visitor.visitSingularInt32Field(value: _storage._startIndex, fieldNumber: 823) } if _storage._startMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._startMessageField, fieldNumber: 810) + try visitor.visitSingularInt32Field(value: _storage._startMessageField, fieldNumber: 824) } if _storage._startObject != 0 { - try visitor.visitSingularInt32Field(value: _storage._startObject, fieldNumber: 811) + try visitor.visitSingularInt32Field(value: _storage._startObject, fieldNumber: 825) } if _storage._startRegularField != 0 { - try visitor.visitSingularInt32Field(value: _storage._startRegularField, fieldNumber: 812) + try visitor.visitSingularInt32Field(value: _storage._startRegularField, fieldNumber: 826) } if _storage._state != 0 { - try visitor.visitSingularInt32Field(value: _storage._state, fieldNumber: 813) + try visitor.visitSingularInt32Field(value: _storage._state, fieldNumber: 827) } if _storage._static != 0 { - try visitor.visitSingularInt32Field(value: _storage._static, fieldNumber: 814) + try visitor.visitSingularInt32Field(value: _storage._static, fieldNumber: 828) } if _storage._staticString != 0 { - try visitor.visitSingularInt32Field(value: _storage._staticString, fieldNumber: 815) + try visitor.visitSingularInt32Field(value: _storage._staticString, fieldNumber: 829) } if _storage._storage != 0 { - try visitor.visitSingularInt32Field(value: _storage._storage, fieldNumber: 816) + try visitor.visitSingularInt32Field(value: _storage._storage, fieldNumber: 830) } if _storage._string != 0 { - try visitor.visitSingularInt32Field(value: _storage._string, fieldNumber: 817) + try visitor.visitSingularInt32Field(value: _storage._string, fieldNumber: 831) } if _storage._stringLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._stringLiteral, fieldNumber: 818) + try visitor.visitSingularInt32Field(value: _storage._stringLiteral, fieldNumber: 832) } if _storage._stringLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._stringLiteralType, fieldNumber: 819) + try visitor.visitSingularInt32Field(value: _storage._stringLiteralType, fieldNumber: 833) } if _storage._stringResult != 0 { - try visitor.visitSingularInt32Field(value: _storage._stringResult, fieldNumber: 820) + try visitor.visitSingularInt32Field(value: _storage._stringResult, fieldNumber: 834) } if _storage._stringValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._stringValue, fieldNumber: 821) + try visitor.visitSingularInt32Field(value: _storage._stringValue, fieldNumber: 835) } if _storage._struct != 0 { - try visitor.visitSingularInt32Field(value: _storage._struct, fieldNumber: 822) + try visitor.visitSingularInt32Field(value: _storage._struct, fieldNumber: 836) } if _storage._structValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._structValue, fieldNumber: 823) + try visitor.visitSingularInt32Field(value: _storage._structValue, fieldNumber: 837) } if _storage._subDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._subDecoder, fieldNumber: 824) + try visitor.visitSingularInt32Field(value: _storage._subDecoder, fieldNumber: 838) } if _storage._subscript != 0 { - try visitor.visitSingularInt32Field(value: _storage._subscript, fieldNumber: 825) + try visitor.visitSingularInt32Field(value: _storage._subscript, fieldNumber: 839) } if _storage._subVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._subVisitor, fieldNumber: 826) + try visitor.visitSingularInt32Field(value: _storage._subVisitor, fieldNumber: 840) } if _storage._swift != 0 { - try visitor.visitSingularInt32Field(value: _storage._swift, fieldNumber: 827) + try visitor.visitSingularInt32Field(value: _storage._swift, fieldNumber: 841) } if _storage._swiftPrefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._swiftPrefix, fieldNumber: 828) + try visitor.visitSingularInt32Field(value: _storage._swiftPrefix, fieldNumber: 842) } if _storage._swiftProtobufContiguousBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._swiftProtobufContiguousBytes, fieldNumber: 829) + try visitor.visitSingularInt32Field(value: _storage._swiftProtobufContiguousBytes, fieldNumber: 843) + } + if _storage._swiftProtobufError != 0 { + try visitor.visitSingularInt32Field(value: _storage._swiftProtobufError, fieldNumber: 844) } if _storage._syntax != 0 { - try visitor.visitSingularInt32Field(value: _storage._syntax, fieldNumber: 830) + try visitor.visitSingularInt32Field(value: _storage._syntax, fieldNumber: 845) } if _storage._t != 0 { - try visitor.visitSingularInt32Field(value: _storage._t, fieldNumber: 831) + try visitor.visitSingularInt32Field(value: _storage._t, fieldNumber: 846) } if _storage._tag != 0 { - try visitor.visitSingularInt32Field(value: _storage._tag, fieldNumber: 832) + try visitor.visitSingularInt32Field(value: _storage._tag, fieldNumber: 847) } if _storage._targets != 0 { - try visitor.visitSingularInt32Field(value: _storage._targets, fieldNumber: 833) + try visitor.visitSingularInt32Field(value: _storage._targets, fieldNumber: 848) } if _storage._terminator != 0 { - try visitor.visitSingularInt32Field(value: _storage._terminator, fieldNumber: 834) + try visitor.visitSingularInt32Field(value: _storage._terminator, fieldNumber: 849) } if _storage._testDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._testDecoder, fieldNumber: 835) + try visitor.visitSingularInt32Field(value: _storage._testDecoder, fieldNumber: 850) } if _storage._text != 0 { - try visitor.visitSingularInt32Field(value: _storage._text, fieldNumber: 836) + try visitor.visitSingularInt32Field(value: _storage._text, fieldNumber: 851) } if _storage._textDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._textDecoder, fieldNumber: 837) + try visitor.visitSingularInt32Field(value: _storage._textDecoder, fieldNumber: 852) } if _storage._textFormatDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatDecoder, fieldNumber: 838) + try visitor.visitSingularInt32Field(value: _storage._textFormatDecoder, fieldNumber: 853) } if _storage._textFormatDecodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatDecodingError, fieldNumber: 839) + try visitor.visitSingularInt32Field(value: _storage._textFormatDecodingError, fieldNumber: 854) } if _storage._textFormatDecodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatDecodingOptions, fieldNumber: 840) + try visitor.visitSingularInt32Field(value: _storage._textFormatDecodingOptions, fieldNumber: 855) } if _storage._textFormatEncodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatEncodingOptions, fieldNumber: 841) + try visitor.visitSingularInt32Field(value: _storage._textFormatEncodingOptions, fieldNumber: 856) } if _storage._textFormatEncodingVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatEncodingVisitor, fieldNumber: 842) + try visitor.visitSingularInt32Field(value: _storage._textFormatEncodingVisitor, fieldNumber: 857) } if _storage._textFormatString != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatString, fieldNumber: 843) + try visitor.visitSingularInt32Field(value: _storage._textFormatString, fieldNumber: 858) } if _storage._throwOrIgnore != 0 { - try visitor.visitSingularInt32Field(value: _storage._throwOrIgnore, fieldNumber: 844) + try visitor.visitSingularInt32Field(value: _storage._throwOrIgnore, fieldNumber: 859) } if _storage._throws != 0 { - try visitor.visitSingularInt32Field(value: _storage._throws, fieldNumber: 845) + try visitor.visitSingularInt32Field(value: _storage._throws, fieldNumber: 860) } if _storage._timeInterval != 0 { - try visitor.visitSingularInt32Field(value: _storage._timeInterval, fieldNumber: 846) + try visitor.visitSingularInt32Field(value: _storage._timeInterval, fieldNumber: 861) } if _storage._timeIntervalSince1970 != 0 { - try visitor.visitSingularInt32Field(value: _storage._timeIntervalSince1970, fieldNumber: 847) + try visitor.visitSingularInt32Field(value: _storage._timeIntervalSince1970, fieldNumber: 862) } if _storage._timeIntervalSinceReferenceDate != 0 { - try visitor.visitSingularInt32Field(value: _storage._timeIntervalSinceReferenceDate, fieldNumber: 848) + try visitor.visitSingularInt32Field(value: _storage._timeIntervalSinceReferenceDate, fieldNumber: 863) } if _storage._timestamp != 0 { - try visitor.visitSingularInt32Field(value: _storage._timestamp, fieldNumber: 849) + try visitor.visitSingularInt32Field(value: _storage._timestamp, fieldNumber: 864) + } + if _storage._tooLarge != 0 { + try visitor.visitSingularInt32Field(value: _storage._tooLarge, fieldNumber: 865) } if _storage._total != 0 { - try visitor.visitSingularInt32Field(value: _storage._total, fieldNumber: 850) + try visitor.visitSingularInt32Field(value: _storage._total, fieldNumber: 866) } if _storage._totalArrayDepth != 0 { - try visitor.visitSingularInt32Field(value: _storage._totalArrayDepth, fieldNumber: 851) + try visitor.visitSingularInt32Field(value: _storage._totalArrayDepth, fieldNumber: 867) } if _storage._totalSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._totalSize, fieldNumber: 852) + try visitor.visitSingularInt32Field(value: _storage._totalSize, fieldNumber: 868) } if _storage._trailingComments != 0 { - try visitor.visitSingularInt32Field(value: _storage._trailingComments, fieldNumber: 853) + try visitor.visitSingularInt32Field(value: _storage._trailingComments, fieldNumber: 869) } if _storage._traverse != 0 { - try visitor.visitSingularInt32Field(value: _storage._traverse, fieldNumber: 854) + try visitor.visitSingularInt32Field(value: _storage._traverse, fieldNumber: 870) } if _storage._true != 0 { - try visitor.visitSingularInt32Field(value: _storage._true, fieldNumber: 855) + try visitor.visitSingularInt32Field(value: _storage._true, fieldNumber: 871) } if _storage._try != 0 { - try visitor.visitSingularInt32Field(value: _storage._try, fieldNumber: 856) + try visitor.visitSingularInt32Field(value: _storage._try, fieldNumber: 872) } if _storage._type != 0 { - try visitor.visitSingularInt32Field(value: _storage._type, fieldNumber: 857) + try visitor.visitSingularInt32Field(value: _storage._type, fieldNumber: 873) } if _storage._typealias != 0 { - try visitor.visitSingularInt32Field(value: _storage._typealias, fieldNumber: 858) + try visitor.visitSingularInt32Field(value: _storage._typealias, fieldNumber: 874) } if _storage._typeEnum != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeEnum, fieldNumber: 859) + try visitor.visitSingularInt32Field(value: _storage._typeEnum, fieldNumber: 875) } if _storage._typeName != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeName, fieldNumber: 860) + try visitor.visitSingularInt32Field(value: _storage._typeName, fieldNumber: 876) } if _storage._typePrefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._typePrefix, fieldNumber: 861) + try visitor.visitSingularInt32Field(value: _storage._typePrefix, fieldNumber: 877) } if _storage._typeStart != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeStart, fieldNumber: 862) + try visitor.visitSingularInt32Field(value: _storage._typeStart, fieldNumber: 878) } if _storage._typeUnknown != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeUnknown, fieldNumber: 863) + try visitor.visitSingularInt32Field(value: _storage._typeUnknown, fieldNumber: 879) } if _storage._typeURL != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeURL, fieldNumber: 864) + try visitor.visitSingularInt32Field(value: _storage._typeURL, fieldNumber: 880) } if _storage._uint32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint32, fieldNumber: 865) + try visitor.visitSingularInt32Field(value: _storage._uint32, fieldNumber: 881) } if _storage._uint32Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint32Value, fieldNumber: 866) + try visitor.visitSingularInt32Field(value: _storage._uint32Value, fieldNumber: 882) } if _storage._uint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint64, fieldNumber: 867) + try visitor.visitSingularInt32Field(value: _storage._uint64, fieldNumber: 883) } if _storage._uint64Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint64Value, fieldNumber: 868) + try visitor.visitSingularInt32Field(value: _storage._uint64Value, fieldNumber: 884) } if _storage._uint8 != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint8, fieldNumber: 869) + try visitor.visitSingularInt32Field(value: _storage._uint8, fieldNumber: 885) } if _storage._unchecked != 0 { - try visitor.visitSingularInt32Field(value: _storage._unchecked, fieldNumber: 870) + try visitor.visitSingularInt32Field(value: _storage._unchecked, fieldNumber: 886) } if _storage._unicodeScalarLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._unicodeScalarLiteral, fieldNumber: 871) + try visitor.visitSingularInt32Field(value: _storage._unicodeScalarLiteral, fieldNumber: 887) } if _storage._unicodeScalarLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._unicodeScalarLiteralType, fieldNumber: 872) + try visitor.visitSingularInt32Field(value: _storage._unicodeScalarLiteralType, fieldNumber: 888) } if _storage._unicodeScalars != 0 { - try visitor.visitSingularInt32Field(value: _storage._unicodeScalars, fieldNumber: 873) + try visitor.visitSingularInt32Field(value: _storage._unicodeScalars, fieldNumber: 889) } if _storage._unicodeScalarView != 0 { - try visitor.visitSingularInt32Field(value: _storage._unicodeScalarView, fieldNumber: 874) + try visitor.visitSingularInt32Field(value: _storage._unicodeScalarView, fieldNumber: 890) } if _storage._uninterpretedOption != 0 { - try visitor.visitSingularInt32Field(value: _storage._uninterpretedOption, fieldNumber: 875) + try visitor.visitSingularInt32Field(value: _storage._uninterpretedOption, fieldNumber: 891) } if _storage._union != 0 { - try visitor.visitSingularInt32Field(value: _storage._union, fieldNumber: 876) + try visitor.visitSingularInt32Field(value: _storage._union, fieldNumber: 892) } if _storage._uniqueStorage != 0 { - try visitor.visitSingularInt32Field(value: _storage._uniqueStorage, fieldNumber: 877) + try visitor.visitSingularInt32Field(value: _storage._uniqueStorage, fieldNumber: 893) } if _storage._unknown != 0 { - try visitor.visitSingularInt32Field(value: _storage._unknown, fieldNumber: 878) + try visitor.visitSingularInt32Field(value: _storage._unknown, fieldNumber: 894) } if _storage._unknownFields_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._unknownFields_p, fieldNumber: 879) + try visitor.visitSingularInt32Field(value: _storage._unknownFields_p, fieldNumber: 895) } if _storage._unknownStorage != 0 { - try visitor.visitSingularInt32Field(value: _storage._unknownStorage, fieldNumber: 880) + try visitor.visitSingularInt32Field(value: _storage._unknownStorage, fieldNumber: 896) } if _storage._unpackTo != 0 { - try visitor.visitSingularInt32Field(value: _storage._unpackTo, fieldNumber: 881) + try visitor.visitSingularInt32Field(value: _storage._unpackTo, fieldNumber: 897) + } + if _storage._unregisteredTypeURL != 0 { + try visitor.visitSingularInt32Field(value: _storage._unregisteredTypeURL, fieldNumber: 898) } if _storage._unsafeBufferPointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeBufferPointer, fieldNumber: 882) + try visitor.visitSingularInt32Field(value: _storage._unsafeBufferPointer, fieldNumber: 899) } if _storage._unsafeMutablePointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeMutablePointer, fieldNumber: 883) + try visitor.visitSingularInt32Field(value: _storage._unsafeMutablePointer, fieldNumber: 900) } if _storage._unsafeMutableRawBufferPointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeMutableRawBufferPointer, fieldNumber: 884) + try visitor.visitSingularInt32Field(value: _storage._unsafeMutableRawBufferPointer, fieldNumber: 901) } if _storage._unsafeRawBufferPointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeRawBufferPointer, fieldNumber: 885) + try visitor.visitSingularInt32Field(value: _storage._unsafeRawBufferPointer, fieldNumber: 902) } if _storage._unsafeRawPointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeRawPointer, fieldNumber: 886) + try visitor.visitSingularInt32Field(value: _storage._unsafeRawPointer, fieldNumber: 903) } if _storage._unverifiedLazy != 0 { - try visitor.visitSingularInt32Field(value: _storage._unverifiedLazy, fieldNumber: 887) + try visitor.visitSingularInt32Field(value: _storage._unverifiedLazy, fieldNumber: 904) } if _storage._updatedOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._updatedOptions, fieldNumber: 888) + try visitor.visitSingularInt32Field(value: _storage._updatedOptions, fieldNumber: 905) } if _storage._url != 0 { - try visitor.visitSingularInt32Field(value: _storage._url, fieldNumber: 889) + try visitor.visitSingularInt32Field(value: _storage._url, fieldNumber: 906) } if _storage._useDeterministicOrdering != 0 { - try visitor.visitSingularInt32Field(value: _storage._useDeterministicOrdering, fieldNumber: 890) + try visitor.visitSingularInt32Field(value: _storage._useDeterministicOrdering, fieldNumber: 907) } if _storage._utf8 != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8, fieldNumber: 891) + try visitor.visitSingularInt32Field(value: _storage._utf8, fieldNumber: 908) } if _storage._utf8Ptr != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8Ptr, fieldNumber: 892) + try visitor.visitSingularInt32Field(value: _storage._utf8Ptr, fieldNumber: 909) } if _storage._utf8ToDouble != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8ToDouble, fieldNumber: 893) + try visitor.visitSingularInt32Field(value: _storage._utf8ToDouble, fieldNumber: 910) } if _storage._utf8Validation != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8Validation, fieldNumber: 894) + try visitor.visitSingularInt32Field(value: _storage._utf8Validation, fieldNumber: 911) } if _storage._utf8View != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8View, fieldNumber: 895) + try visitor.visitSingularInt32Field(value: _storage._utf8View, fieldNumber: 912) } if _storage._v != 0 { - try visitor.visitSingularInt32Field(value: _storage._v, fieldNumber: 896) + try visitor.visitSingularInt32Field(value: _storage._v, fieldNumber: 913) } if _storage._value != 0 { - try visitor.visitSingularInt32Field(value: _storage._value, fieldNumber: 897) + try visitor.visitSingularInt32Field(value: _storage._value, fieldNumber: 914) } if _storage._valueField != 0 { - try visitor.visitSingularInt32Field(value: _storage._valueField, fieldNumber: 898) + try visitor.visitSingularInt32Field(value: _storage._valueField, fieldNumber: 915) } if _storage._values != 0 { - try visitor.visitSingularInt32Field(value: _storage._values, fieldNumber: 899) + try visitor.visitSingularInt32Field(value: _storage._values, fieldNumber: 916) } if _storage._valueType != 0 { - try visitor.visitSingularInt32Field(value: _storage._valueType, fieldNumber: 900) + try visitor.visitSingularInt32Field(value: _storage._valueType, fieldNumber: 917) } if _storage._var != 0 { - try visitor.visitSingularInt32Field(value: _storage._var, fieldNumber: 901) + try visitor.visitSingularInt32Field(value: _storage._var, fieldNumber: 918) } if _storage._verification != 0 { - try visitor.visitSingularInt32Field(value: _storage._verification, fieldNumber: 902) + try visitor.visitSingularInt32Field(value: _storage._verification, fieldNumber: 919) } if _storage._verificationState != 0 { - try visitor.visitSingularInt32Field(value: _storage._verificationState, fieldNumber: 903) + try visitor.visitSingularInt32Field(value: _storage._verificationState, fieldNumber: 920) } if _storage._version != 0 { - try visitor.visitSingularInt32Field(value: _storage._version, fieldNumber: 904) + try visitor.visitSingularInt32Field(value: _storage._version, fieldNumber: 921) } if _storage._versionString != 0 { - try visitor.visitSingularInt32Field(value: _storage._versionString, fieldNumber: 905) + try visitor.visitSingularInt32Field(value: _storage._versionString, fieldNumber: 922) } if _storage._visitExtensionFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitExtensionFields, fieldNumber: 906) + try visitor.visitSingularInt32Field(value: _storage._visitExtensionFields, fieldNumber: 923) } if _storage._visitExtensionFieldsAsMessageSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitExtensionFieldsAsMessageSet, fieldNumber: 907) + try visitor.visitSingularInt32Field(value: _storage._visitExtensionFieldsAsMessageSet, fieldNumber: 924) } if _storage._visitMapField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitMapField, fieldNumber: 908) + try visitor.visitSingularInt32Field(value: _storage._visitMapField, fieldNumber: 925) } if _storage._visitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitor, fieldNumber: 909) + try visitor.visitSingularInt32Field(value: _storage._visitor, fieldNumber: 926) } if _storage._visitPacked != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPacked, fieldNumber: 910) + try visitor.visitSingularInt32Field(value: _storage._visitPacked, fieldNumber: 927) } if _storage._visitPackedBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedBoolField, fieldNumber: 911) + try visitor.visitSingularInt32Field(value: _storage._visitPackedBoolField, fieldNumber: 928) } if _storage._visitPackedDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedDoubleField, fieldNumber: 912) + try visitor.visitSingularInt32Field(value: _storage._visitPackedDoubleField, fieldNumber: 929) } if _storage._visitPackedEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedEnumField, fieldNumber: 913) + try visitor.visitSingularInt32Field(value: _storage._visitPackedEnumField, fieldNumber: 930) } if _storage._visitPackedFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedFixed32Field, fieldNumber: 914) + try visitor.visitSingularInt32Field(value: _storage._visitPackedFixed32Field, fieldNumber: 931) } if _storage._visitPackedFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedFixed64Field, fieldNumber: 915) + try visitor.visitSingularInt32Field(value: _storage._visitPackedFixed64Field, fieldNumber: 932) } if _storage._visitPackedFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedFloatField, fieldNumber: 916) + try visitor.visitSingularInt32Field(value: _storage._visitPackedFloatField, fieldNumber: 933) } if _storage._visitPackedInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedInt32Field, fieldNumber: 917) + try visitor.visitSingularInt32Field(value: _storage._visitPackedInt32Field, fieldNumber: 934) } if _storage._visitPackedInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedInt64Field, fieldNumber: 918) + try visitor.visitSingularInt32Field(value: _storage._visitPackedInt64Field, fieldNumber: 935) } if _storage._visitPackedSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedSfixed32Field, fieldNumber: 919) + try visitor.visitSingularInt32Field(value: _storage._visitPackedSfixed32Field, fieldNumber: 936) } if _storage._visitPackedSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedSfixed64Field, fieldNumber: 920) + try visitor.visitSingularInt32Field(value: _storage._visitPackedSfixed64Field, fieldNumber: 937) } if _storage._visitPackedSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedSint32Field, fieldNumber: 921) + try visitor.visitSingularInt32Field(value: _storage._visitPackedSint32Field, fieldNumber: 938) } if _storage._visitPackedSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedSint64Field, fieldNumber: 922) + try visitor.visitSingularInt32Field(value: _storage._visitPackedSint64Field, fieldNumber: 939) } if _storage._visitPackedUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedUint32Field, fieldNumber: 923) + try visitor.visitSingularInt32Field(value: _storage._visitPackedUint32Field, fieldNumber: 940) } if _storage._visitPackedUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedUint64Field, fieldNumber: 924) + try visitor.visitSingularInt32Field(value: _storage._visitPackedUint64Field, fieldNumber: 941) } if _storage._visitRepeated != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeated, fieldNumber: 925) + try visitor.visitSingularInt32Field(value: _storage._visitRepeated, fieldNumber: 942) } if _storage._visitRepeatedBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedBoolField, fieldNumber: 926) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedBoolField, fieldNumber: 943) } if _storage._visitRepeatedBytesField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedBytesField, fieldNumber: 927) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedBytesField, fieldNumber: 944) } if _storage._visitRepeatedDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedDoubleField, fieldNumber: 928) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedDoubleField, fieldNumber: 945) } if _storage._visitRepeatedEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedEnumField, fieldNumber: 929) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedEnumField, fieldNumber: 946) } if _storage._visitRepeatedFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFixed32Field, fieldNumber: 930) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFixed32Field, fieldNumber: 947) } if _storage._visitRepeatedFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFixed64Field, fieldNumber: 931) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFixed64Field, fieldNumber: 948) } if _storage._visitRepeatedFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFloatField, fieldNumber: 932) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFloatField, fieldNumber: 949) } if _storage._visitRepeatedGroupField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedGroupField, fieldNumber: 933) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedGroupField, fieldNumber: 950) } if _storage._visitRepeatedInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedInt32Field, fieldNumber: 934) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedInt32Field, fieldNumber: 951) } if _storage._visitRepeatedInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedInt64Field, fieldNumber: 935) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedInt64Field, fieldNumber: 952) } if _storage._visitRepeatedMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedMessageField, fieldNumber: 936) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedMessageField, fieldNumber: 953) } if _storage._visitRepeatedSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSfixed32Field, fieldNumber: 937) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSfixed32Field, fieldNumber: 954) } if _storage._visitRepeatedSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSfixed64Field, fieldNumber: 938) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSfixed64Field, fieldNumber: 955) } if _storage._visitRepeatedSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSint32Field, fieldNumber: 939) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSint32Field, fieldNumber: 956) } if _storage._visitRepeatedSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSint64Field, fieldNumber: 940) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSint64Field, fieldNumber: 957) } if _storage._visitRepeatedStringField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedStringField, fieldNumber: 941) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedStringField, fieldNumber: 958) } if _storage._visitRepeatedUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedUint32Field, fieldNumber: 942) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedUint32Field, fieldNumber: 959) } if _storage._visitRepeatedUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedUint64Field, fieldNumber: 943) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedUint64Field, fieldNumber: 960) } if _storage._visitSingular != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingular, fieldNumber: 944) + try visitor.visitSingularInt32Field(value: _storage._visitSingular, fieldNumber: 961) } if _storage._visitSingularBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularBoolField, fieldNumber: 945) + try visitor.visitSingularInt32Field(value: _storage._visitSingularBoolField, fieldNumber: 962) } if _storage._visitSingularBytesField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularBytesField, fieldNumber: 946) + try visitor.visitSingularInt32Field(value: _storage._visitSingularBytesField, fieldNumber: 963) } if _storage._visitSingularDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularDoubleField, fieldNumber: 947) + try visitor.visitSingularInt32Field(value: _storage._visitSingularDoubleField, fieldNumber: 964) } if _storage._visitSingularEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularEnumField, fieldNumber: 948) + try visitor.visitSingularInt32Field(value: _storage._visitSingularEnumField, fieldNumber: 965) } if _storage._visitSingularFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularFixed32Field, fieldNumber: 949) + try visitor.visitSingularInt32Field(value: _storage._visitSingularFixed32Field, fieldNumber: 966) } if _storage._visitSingularFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularFixed64Field, fieldNumber: 950) + try visitor.visitSingularInt32Field(value: _storage._visitSingularFixed64Field, fieldNumber: 967) } if _storage._visitSingularFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularFloatField, fieldNumber: 951) + try visitor.visitSingularInt32Field(value: _storage._visitSingularFloatField, fieldNumber: 968) } if _storage._visitSingularGroupField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularGroupField, fieldNumber: 952) + try visitor.visitSingularInt32Field(value: _storage._visitSingularGroupField, fieldNumber: 969) } if _storage._visitSingularInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularInt32Field, fieldNumber: 953) + try visitor.visitSingularInt32Field(value: _storage._visitSingularInt32Field, fieldNumber: 970) } if _storage._visitSingularInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularInt64Field, fieldNumber: 954) + try visitor.visitSingularInt32Field(value: _storage._visitSingularInt64Field, fieldNumber: 971) } if _storage._visitSingularMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularMessageField, fieldNumber: 955) + try visitor.visitSingularInt32Field(value: _storage._visitSingularMessageField, fieldNumber: 972) } if _storage._visitSingularSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularSfixed32Field, fieldNumber: 956) + try visitor.visitSingularInt32Field(value: _storage._visitSingularSfixed32Field, fieldNumber: 973) } if _storage._visitSingularSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularSfixed64Field, fieldNumber: 957) + try visitor.visitSingularInt32Field(value: _storage._visitSingularSfixed64Field, fieldNumber: 974) } if _storage._visitSingularSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularSint32Field, fieldNumber: 958) + try visitor.visitSingularInt32Field(value: _storage._visitSingularSint32Field, fieldNumber: 975) } if _storage._visitSingularSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularSint64Field, fieldNumber: 959) + try visitor.visitSingularInt32Field(value: _storage._visitSingularSint64Field, fieldNumber: 976) } if _storage._visitSingularStringField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularStringField, fieldNumber: 960) + try visitor.visitSingularInt32Field(value: _storage._visitSingularStringField, fieldNumber: 977) } if _storage._visitSingularUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularUint32Field, fieldNumber: 961) + try visitor.visitSingularInt32Field(value: _storage._visitSingularUint32Field, fieldNumber: 978) } if _storage._visitSingularUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularUint64Field, fieldNumber: 962) + try visitor.visitSingularInt32Field(value: _storage._visitSingularUint64Field, fieldNumber: 979) } if _storage._visitUnknown != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitUnknown, fieldNumber: 963) + try visitor.visitSingularInt32Field(value: _storage._visitUnknown, fieldNumber: 980) } if _storage._wasDecoded != 0 { - try visitor.visitSingularInt32Field(value: _storage._wasDecoded, fieldNumber: 964) + try visitor.visitSingularInt32Field(value: _storage._wasDecoded, fieldNumber: 981) } if _storage._weak != 0 { - try visitor.visitSingularInt32Field(value: _storage._weak, fieldNumber: 965) + try visitor.visitSingularInt32Field(value: _storage._weak, fieldNumber: 982) } if _storage._weakDependency != 0 { - try visitor.visitSingularInt32Field(value: _storage._weakDependency, fieldNumber: 966) + try visitor.visitSingularInt32Field(value: _storage._weakDependency, fieldNumber: 983) } if _storage._where != 0 { - try visitor.visitSingularInt32Field(value: _storage._where, fieldNumber: 967) + try visitor.visitSingularInt32Field(value: _storage._where, fieldNumber: 984) } if _storage._wireFormat != 0 { - try visitor.visitSingularInt32Field(value: _storage._wireFormat, fieldNumber: 968) + try visitor.visitSingularInt32Field(value: _storage._wireFormat, fieldNumber: 985) } if _storage._with != 0 { - try visitor.visitSingularInt32Field(value: _storage._with, fieldNumber: 969) + try visitor.visitSingularInt32Field(value: _storage._with, fieldNumber: 986) } if _storage._withUnsafeBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._withUnsafeBytes, fieldNumber: 970) + try visitor.visitSingularInt32Field(value: _storage._withUnsafeBytes, fieldNumber: 987) } if _storage._withUnsafeMutableBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._withUnsafeMutableBytes, fieldNumber: 971) + try visitor.visitSingularInt32Field(value: _storage._withUnsafeMutableBytes, fieldNumber: 988) } if _storage._work != 0 { - try visitor.visitSingularInt32Field(value: _storage._work, fieldNumber: 972) + try visitor.visitSingularInt32Field(value: _storage._work, fieldNumber: 989) } if _storage._wrapped != 0 { - try visitor.visitSingularInt32Field(value: _storage._wrapped, fieldNumber: 973) + try visitor.visitSingularInt32Field(value: _storage._wrapped, fieldNumber: 990) } if _storage._wrappedType != 0 { - try visitor.visitSingularInt32Field(value: _storage._wrappedType, fieldNumber: 974) + try visitor.visitSingularInt32Field(value: _storage._wrappedType, fieldNumber: 991) } if _storage._wrappedValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._wrappedValue, fieldNumber: 975) + try visitor.visitSingularInt32Field(value: _storage._wrappedValue, fieldNumber: 992) } if _storage._written != 0 { - try visitor.visitSingularInt32Field(value: _storage._written, fieldNumber: 976) + try visitor.visitSingularInt32Field(value: _storage._written, fieldNumber: 993) } if _storage._yday != 0 { - try visitor.visitSingularInt32Field(value: _storage._yday, fieldNumber: 977) + try visitor.visitSingularInt32Field(value: _storage._yday, fieldNumber: 994) } } try unknownFields.traverse(visitor: &visitor) @@ -11830,6 +12034,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._anyExtensionField != rhs_storage._anyExtensionField {return false} if _storage._anyMessageExtension != rhs_storage._anyMessageExtension {return false} if _storage._anyMessageStorage != rhs_storage._anyMessageStorage {return false} + if _storage._anyTypeUrlnotRegistered != rhs_storage._anyTypeUrlnotRegistered {return false} if _storage._anyUnpackError != rhs_storage._anyUnpackError {return false} if _storage._api != rhs_storage._api {return false} if _storage._appended != rhs_storage._appended {return false} @@ -11856,10 +12061,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._begin != rhs_storage._begin {return false} if _storage._binary != rhs_storage._binary {return false} if _storage._binaryDecoder != rhs_storage._binaryDecoder {return false} + if _storage._binaryDecoding != rhs_storage._binaryDecoding {return false} if _storage._binaryDecodingError != rhs_storage._binaryDecodingError {return false} if _storage._binaryDecodingOptions != rhs_storage._binaryDecodingOptions {return false} if _storage._binaryDelimited != rhs_storage._binaryDelimited {return false} if _storage._binaryEncoder != rhs_storage._binaryEncoder {return false} + if _storage._binaryEncoding != rhs_storage._binaryEncoding {return false} if _storage._binaryEncodingError != rhs_storage._binaryEncodingError {return false} if _storage._binaryEncodingMessageSetSizeVisitor != rhs_storage._binaryEncodingMessageSetSizeVisitor {return false} if _storage._binaryEncodingMessageSetVisitor != rhs_storage._binaryEncodingMessageSetVisitor {return false} @@ -11868,6 +12075,8 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._binaryEncodingVisitor != rhs_storage._binaryEncodingVisitor {return false} if _storage._binaryOptions != rhs_storage._binaryOptions {return false} if _storage._binaryProtobufDelimitedMessages != rhs_storage._binaryProtobufDelimitedMessages {return false} + if _storage._binaryStreamDecoding != rhs_storage._binaryStreamDecoding {return false} + if _storage._binaryStreamDecodingError != rhs_storage._binaryStreamDecodingError {return false} if _storage._bitPattern != rhs_storage._bitPattern {return false} if _storage._body != rhs_storage._body {return false} if _storage._bool != rhs_storage._bool {return false} @@ -11981,6 +12190,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._clearVerification_p != rhs_storage._clearVerification_p {return false} if _storage._clearWeak_p != rhs_storage._clearWeak_p {return false} if _storage._clientStreaming != rhs_storage._clientStreaming {return false} + if _storage._code != rhs_storage._code {return false} if _storage._codePoint != rhs_storage._codePoint {return false} if _storage._codeUnits != rhs_storage._codeUnits {return false} if _storage._collection != rhs_storage._collection {return false} @@ -11988,12 +12198,14 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._comma != rhs_storage._comma {return false} if _storage._consumedBytes != rhs_storage._consumedBytes {return false} if _storage._contentsOf != rhs_storage._contentsOf {return false} + if _storage._copy != rhs_storage._copy {return false} if _storage._count != rhs_storage._count {return false} if _storage._countVarintsInBuffer != rhs_storage._countVarintsInBuffer {return false} if _storage._csharpNamespace != rhs_storage._csharpNamespace {return false} if _storage._ctype != rhs_storage._ctype {return false} if _storage._customCodable != rhs_storage._customCodable {return false} if _storage._customDebugStringConvertible != rhs_storage._customDebugStringConvertible {return false} + if _storage._customStringConvertible != rhs_storage._customStringConvertible {return false} if _storage._d != rhs_storage._d {return false} if _storage._data != rhs_storage._data {return false} if _storage._dataResult != rhs_storage._dataResult {return false} @@ -12173,6 +12385,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._fromHexDigit != rhs_storage._fromHexDigit {return false} if _storage._fullName != rhs_storage._fullName {return false} if _storage._func != rhs_storage._func {return false} + if _storage._function != rhs_storage._function {return false} if _storage._g != rhs_storage._g {return false} if _storage._generatedCodeInfo != rhs_storage._generatedCodeInfo {return false} if _storage._get != rhs_storage._get {return false} @@ -12373,6 +12586,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._jsondecodingError != rhs_storage._jsondecodingError {return false} if _storage._jsondecodingOptions != rhs_storage._jsondecodingOptions {return false} if _storage._jsonEncoder != rhs_storage._jsonEncoder {return false} + if _storage._jsonencoding != rhs_storage._jsonencoding {return false} if _storage._jsonencodingError != rhs_storage._jsonencodingError {return false} if _storage._jsonencodingOptions != rhs_storage._jsonencodingOptions {return false} if _storage._jsonencodingVisitor != rhs_storage._jsonencodingVisitor {return false} @@ -12403,6 +12617,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._lessThan != rhs_storage._lessThan {return false} if _storage._let != rhs_storage._let {return false} if _storage._lhs != rhs_storage._lhs {return false} + if _storage._line != rhs_storage._line {return false} if _storage._list != rhs_storage._list {return false} if _storage._listOfMessages != rhs_storage._listOfMessages {return false} if _storage._listValue != rhs_storage._listValue {return false} @@ -12414,6 +12629,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._major != rhs_storage._major {return false} if _storage._makeAsyncIterator != rhs_storage._makeAsyncIterator {return false} if _storage._makeIterator != rhs_storage._makeIterator {return false} + if _storage._malformedLength != rhs_storage._malformedLength {return false} if _storage._mapEntry != rhs_storage._mapEntry {return false} if _storage._mapKeyType != rhs_storage._mapKeyType {return false} if _storage._mapToMessages != rhs_storage._mapToMessages {return false} @@ -12464,6 +12680,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._nextVarInt != rhs_storage._nextVarInt {return false} if _storage._nil != rhs_storage._nil {return false} if _storage._nilLiteral != rhs_storage._nilLiteral {return false} + if _storage._noBytesAvailable != rhs_storage._noBytesAvailable {return false} if _storage._noStandardDescriptorAccessor != rhs_storage._noStandardDescriptorAccessor {return false} if _storage._nullValue != rhs_storage._nullValue {return false} if _storage._number != rhs_storage._number {return false} @@ -12621,6 +12838,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._sourceContext != rhs_storage._sourceContext {return false} if _storage._sourceEncoding != rhs_storage._sourceEncoding {return false} if _storage._sourceFile != rhs_storage._sourceFile {return false} + if _storage._sourceLocation != rhs_storage._sourceLocation {return false} if _storage._span != rhs_storage._span {return false} if _storage._split != rhs_storage._split {return false} if _storage._start != rhs_storage._start {return false} @@ -12648,6 +12866,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._swift != rhs_storage._swift {return false} if _storage._swiftPrefix != rhs_storage._swiftPrefix {return false} if _storage._swiftProtobufContiguousBytes != rhs_storage._swiftProtobufContiguousBytes {return false} + if _storage._swiftProtobufError != rhs_storage._swiftProtobufError {return false} if _storage._syntax != rhs_storage._syntax {return false} if _storage._t != rhs_storage._t {return false} if _storage._tag != rhs_storage._tag {return false} @@ -12668,6 +12887,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._timeIntervalSince1970 != rhs_storage._timeIntervalSince1970 {return false} if _storage._timeIntervalSinceReferenceDate != rhs_storage._timeIntervalSinceReferenceDate {return false} if _storage._timestamp != rhs_storage._timestamp {return false} + if _storage._tooLarge != rhs_storage._tooLarge {return false} if _storage._total != rhs_storage._total {return false} if _storage._totalArrayDepth != rhs_storage._totalArrayDepth {return false} if _storage._totalSize != rhs_storage._totalSize {return false} @@ -12700,6 +12920,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._unknownFields_p != rhs_storage._unknownFields_p {return false} if _storage._unknownStorage != rhs_storage._unknownStorage {return false} if _storage._unpackTo != rhs_storage._unpackTo {return false} + if _storage._unregisteredTypeURL != rhs_storage._unregisteredTypeURL {return false} if _storage._unsafeBufferPointer != rhs_storage._unsafeBufferPointer {return false} if _storage._unsafeMutablePointer != rhs_storage._unsafeMutablePointer {return false} if _storage._unsafeMutableRawBufferPointer != rhs_storage._unsafeMutableRawBufferPointer {return false} diff --git a/Tests/SwiftProtobufTests/generated_swift_names_messages.pb.swift b/Tests/SwiftProtobufTests/generated_swift_names_messages.pb.swift index 871fff23b..9f29280d9 100644 --- a/Tests/SwiftProtobufTests/generated_swift_names_messages.pb.swift +++ b/Tests/SwiftProtobufTests/generated_swift_names_messages.pb.swift @@ -175,18 +175,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct AnyUnpack: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var anyUnpack: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct AnyUnpackError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -2119,18 +2107,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct conflictingOneOf: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var conflictingOneOf: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct consumedBytes: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -3187,18 +3163,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct durationRange: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var durationRange: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct E: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -3823,18 +3787,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct failure: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var failure: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct falseMessage: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -3955,18 +3907,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct fieldMaskConversion: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var fieldMaskConversion: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct fieldName: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6415,18 +6355,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct illegalNull: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var illegalNull: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct index: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6607,30 +6535,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct internalError: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var internalError: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct internalExtensionError: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var internalExtensionError: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct InternalState: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6667,30 +6571,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct invalidArgument: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var invalidArgument: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct invalidUTF8: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var invalidUtf8: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct isA: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6871,18 +6751,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct JSONDecoding: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var jsondecoding: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct JSONDecodingError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -7243,18 +7111,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct leadingZero: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var leadingZero: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct length: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -7447,54 +7303,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct malformedAnyField: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedAnyField: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct malformedBool: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedBool: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct malformedDuration: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedDuration: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct malformedFieldMask: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedFieldMask: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct malformedLength: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -7507,90 +7315,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct malformedMap: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedMap: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct malformedNumber: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedNumber: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct malformedProtobuf: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedProtobuf: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct malformedString: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedString: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct malformedText: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedText: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct malformedTimestamp: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedTimestamp: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct malformedWellKnownTypeJSON: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedWellKnownTypeJson: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct mapEntry: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -7891,42 +7615,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct missingFieldNames: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var missingFieldNames: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct missingRequiredFields: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var missingRequiredFields: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct missingValue: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var missingValue: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct Mixin: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -8275,18 +7963,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct numberRange: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var numberRange: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct numberValue: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -9847,18 +9523,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct schemaMismatch: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var schemaMismatch: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct seconds: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10603,19 +10267,7 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct TextFormatDecoding: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var textFormatDecoding: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct textFormatDecodingError: Sendable { + struct TextFormatDecodingError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -10747,18 +10399,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct timestampRange: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var timestampRange: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct tooLarge: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10819,18 +10459,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct trailingGarbage: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var trailingGarbage: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct traverseMessage: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10855,18 +10483,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct truncated: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var truncated: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct tryMessage: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10915,18 +10531,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct typeMismatch: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var typeMismatch: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct typeName: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -11155,30 +10759,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct unknownField: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var unknownField: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct unknownFieldName: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var unknownFieldName: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct unknownFieldsMessage: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -11203,18 +10783,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct unknownStreamError: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var unknownStreamError: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct unpackTo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -11227,30 +10795,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct unquotedMapKey: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var unquotedMapKey: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct unrecognizedEnumValue: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var unrecognizedEnumValue: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct unregisteredTypeURL: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -11467,18 +11011,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct valueNumberNotFinite: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var valueNumberNotFinite: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct values: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -12837,38 +12369,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.anyTypeURLN } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyUnpack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".AnyUnpack" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "AnyUnpack"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.anyUnpack) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.anyUnpack != 0 { - try visitor.visitSingularInt32Field(value: self.anyUnpack, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyUnpack, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyUnpack) -> Bool { - if lhs.anyUnpack != rhs.anyUnpack {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyUnpackError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".AnyUnpackError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -18021,38 +17521,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.comma: Swif } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.conflictingOneOf: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".conflictingOneOf" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "conflictingOneOf"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.conflictingOneOf) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.conflictingOneOf != 0 { - try visitor.visitSingularInt32Field(value: self.conflictingOneOf, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.conflictingOneOf, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.conflictingOneOf) -> Bool { - if lhs.conflictingOneOf != rhs.conflictingOneOf {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.consumedBytes: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".consumedBytes" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -20869,38 +20337,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.Duration: S } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.durationRange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".durationRange" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "durationRange"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.durationRange) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.durationRange != 0 { - try visitor.visitSingularInt32Field(value: self.durationRange, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.durationRange, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.durationRange) -> Bool { - if lhs.durationRange != rhs.durationRange {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.E: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".E" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -22565,38 +22001,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.F: SwiftPro } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.failure: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".failure" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "failure"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.failure) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.failure != 0 { - try visitor.visitSingularInt32Field(value: self.failure, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.failure, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.failure) -> Bool { - if lhs.failure != rhs.failure {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.falseMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".false" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -22917,38 +22321,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.FieldMask: } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.fieldMaskConversion: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".fieldMaskConversion" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "fieldMaskConversion"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.fieldMaskConversion) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.fieldMaskConversion != 0 { - try visitor.visitSingularInt32Field(value: self.fieldMaskConversion, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.fieldMaskConversion, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.fieldMaskConversion) -> Bool { - if lhs.fieldMaskConversion != rhs.fieldMaskConversion {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.fieldName: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".fieldName" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -29477,38 +28849,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.ignoreUnkno } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.illegalNull: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".illegalNull" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "illegalNull"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.illegalNull) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.illegalNull != 0 { - try visitor.visitSingularInt32Field(value: self.illegalNull, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.illegalNull, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.illegalNull) -> Bool { - if lhs.illegalNull != rhs.illegalNull {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.index: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".index" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -29989,70 +29329,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.Internal: S } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".internalError" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "internalError"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.internalError) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.internalError != 0 { - try visitor.visitSingularInt32Field(value: self.internalError, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalError) -> Bool { - if lhs.internalError != rhs.internalError {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalExtensionError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".internalExtensionError" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "internalExtensionError"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.internalExtensionError) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.internalExtensionError != 0 { - try visitor.visitSingularInt32Field(value: self.internalExtensionError, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalExtensionError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalExtensionError) -> Bool { - if lhs.internalExtensionError != rhs.internalExtensionError {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.InternalState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".InternalState" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -30149,70 +29425,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.ints: Swift } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidArgument: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".invalidArgument" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "invalidArgument"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.invalidArgument) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.invalidArgument != 0 { - try visitor.visitSingularInt32Field(value: self.invalidArgument, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidArgument, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidArgument) -> Bool { - if lhs.invalidArgument != rhs.invalidArgument {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidUTF8: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".invalidUTF8" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "invalidUTF8"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.invalidUtf8) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.invalidUtf8 != 0 { - try visitor.visitSingularInt32Field(value: self.invalidUtf8, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidUTF8, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidUTF8) -> Bool { - if lhs.invalidUtf8 != rhs.invalidUtf8 {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.isA: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".isA" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -30693,38 +29905,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecoder } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".JSONDecoding" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "JSONDecoding"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.jsondecoding) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.jsondecoding != 0 { - try visitor.visitSingularInt32Field(value: self.jsondecoding, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecoding) -> Bool { - if lhs.jsondecoding != rhs.jsondecoding {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".JSONDecodingError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -31685,38 +30865,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.leadingDeta } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.leadingZero: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".leadingZero" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "leadingZero"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.leadingZero) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.leadingZero != 0 { - try visitor.visitSingularInt32Field(value: self.leadingZero, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.leadingZero, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.leadingZero) -> Bool { - if lhs.leadingZero != rhs.leadingZero {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.length: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".length" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -32229,134 +31377,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.makeIterato } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedAnyField: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedAnyField" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedAnyField"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedAnyField) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedAnyField != 0 { - try visitor.visitSingularInt32Field(value: self.malformedAnyField, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedAnyField, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedAnyField) -> Bool { - if lhs.malformedAnyField != rhs.malformedAnyField {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedBool: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedBool" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedBool"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedBool) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedBool != 0 { - try visitor.visitSingularInt32Field(value: self.malformedBool, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedBool, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedBool) -> Bool { - if lhs.malformedBool != rhs.malformedBool {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedDuration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedDuration" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedDuration"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedDuration) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedDuration != 0 { - try visitor.visitSingularInt32Field(value: self.malformedDuration, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedDuration, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedDuration) -> Bool { - if lhs.malformedDuration != rhs.malformedDuration {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedFieldMask: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedFieldMask" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedFieldMask"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedFieldMask) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedFieldMask != 0 { - try visitor.visitSingularInt32Field(value: self.malformedFieldMask, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedFieldMask, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedFieldMask) -> Bool { - if lhs.malformedFieldMask != rhs.malformedFieldMask {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedLength: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedLength" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -32389,230 +31409,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedLe } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedMap: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedMap" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedMap"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedMap) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedMap != 0 { - try visitor.visitSingularInt32Field(value: self.malformedMap, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedMap, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedMap) -> Bool { - if lhs.malformedMap != rhs.malformedMap {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedNumber: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedNumber" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedNumber"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedNumber) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedNumber != 0 { - try visitor.visitSingularInt32Field(value: self.malformedNumber, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedNumber, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedNumber) -> Bool { - if lhs.malformedNumber != rhs.malformedNumber {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedProtobuf: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedProtobuf" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedProtobuf"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedProtobuf) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedProtobuf != 0 { - try visitor.visitSingularInt32Field(value: self.malformedProtobuf, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedProtobuf, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedProtobuf) -> Bool { - if lhs.malformedProtobuf != rhs.malformedProtobuf {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedString: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedString" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedString"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedString) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedString != 0 { - try visitor.visitSingularInt32Field(value: self.malformedString, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedString, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedString) -> Bool { - if lhs.malformedString != rhs.malformedString {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedText: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedText" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedText"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedText) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedText != 0 { - try visitor.visitSingularInt32Field(value: self.malformedText, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedText, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedText) -> Bool { - if lhs.malformedText != rhs.malformedText {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedTimestamp: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedTimestamp" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedTimestamp"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedTimestamp) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedTimestamp != 0 { - try visitor.visitSingularInt32Field(value: self.malformedTimestamp, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedTimestamp, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedTimestamp) -> Bool { - if lhs.malformedTimestamp != rhs.malformedTimestamp {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedWellKnownTypeJSON: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedWellKnownTypeJSON" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedWellKnownTypeJSON"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedWellKnownTypeJson) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedWellKnownTypeJson != 0 { - try visitor.visitSingularInt32Field(value: self.malformedWellKnownTypeJson, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedWellKnownTypeJSON, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedWellKnownTypeJSON) -> Bool { - if lhs.malformedWellKnownTypeJson != rhs.malformedWellKnownTypeJson {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.mapEntry: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".mapEntry" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -33413,102 +32209,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.minor: Swif } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingFieldNames: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".missingFieldNames" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "missingFieldNames"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.missingFieldNames) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.missingFieldNames != 0 { - try visitor.visitSingularInt32Field(value: self.missingFieldNames, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingFieldNames, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingFieldNames) -> Bool { - if lhs.missingFieldNames != rhs.missingFieldNames {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingRequiredFields: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".missingRequiredFields" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "missingRequiredFields"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.missingRequiredFields) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.missingRequiredFields != 0 { - try visitor.visitSingularInt32Field(value: self.missingRequiredFields, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingRequiredFields, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingRequiredFields) -> Bool { - if lhs.missingRequiredFields != rhs.missingRequiredFields {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingValue: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".missingValue" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "missingValue"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.missingValue) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.missingValue != 0 { - try visitor.visitSingularInt32Field(value: self.missingValue, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingValue, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingValue) -> Bool { - if lhs.missingValue != rhs.missingValue {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.Mixin: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".Mixin" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -34437,38 +33137,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.number: Swi } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.numberRange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".numberRange" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "numberRange"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.numberRange) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.numberRange != 0 { - try visitor.visitSingularInt32Field(value: self.numberRange, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.numberRange, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.numberRange) -> Bool { - if lhs.numberRange != rhs.numberRange {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.numberValue: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".numberValue" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -38629,38 +37297,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.scanner: Sw } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.schemaMismatch: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".schemaMismatch" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "schemaMismatch"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.schemaMismatch) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.schemaMismatch != 0 { - try visitor.visitSingularInt32Field(value: self.schemaMismatch, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.schemaMismatch, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.schemaMismatch) -> Bool { - if lhs.schemaMismatch != rhs.schemaMismatch {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.seconds: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".seconds" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -40645,42 +39281,10 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatD } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".TextFormatDecoding" +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".TextFormatDecodingError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "TextFormatDecoding"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.textFormatDecoding) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.textFormatDecoding != 0 { - try visitor.visitSingularInt32Field(value: self.textFormatDecoding, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecoding) -> Bool { - if lhs.textFormatDecoding != rhs.textFormatDecoding {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.textFormatDecodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".textFormatDecodingError" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "textFormatDecodingError"), + 1: .same(proto: "TextFormatDecodingError"), ] mutating func decodeMessage(decoder: inout D) throws { @@ -40702,7 +39306,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.textFormatD try unknownFields.traverse(visitor: &visitor) } - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.textFormatDecodingError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.textFormatDecodingError) -> Bool { + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecodingError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecodingError) -> Bool { if lhs.textFormatDecodingError != rhs.textFormatDecodingError {return false} if lhs.unknownFields != rhs.unknownFields {return false} return true @@ -41029,38 +39633,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.Timestamp: } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.timestampRange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".timestampRange" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "timestampRange"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.timestampRange) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.timestampRange != 0 { - try visitor.visitSingularInt32Field(value: self.timestampRange, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.timestampRange, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.timestampRange) -> Bool { - if lhs.timestampRange != rhs.timestampRange {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.tooLarge: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".tooLarge" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -41221,38 +39793,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trailingCom } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trailingGarbage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".trailingGarbage" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "trailingGarbage"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.trailingGarbage) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.trailingGarbage != 0 { - try visitor.visitSingularInt32Field(value: self.trailingGarbage, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trailingGarbage, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trailingGarbage) -> Bool { - if lhs.trailingGarbage != rhs.trailingGarbage {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.traverseMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".traverse" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -41317,38 +39857,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trueMessage } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.truncated: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".truncated" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "truncated"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.truncated) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.truncated != 0 { - try visitor.visitSingularInt32Field(value: self.truncated, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.truncated, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.truncated) -> Bool { - if lhs.truncated != rhs.truncated {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.tryMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".try" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -41477,38 +39985,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TypeEnum: S } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.typeMismatch: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".typeMismatch" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "typeMismatch"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.typeMismatch) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.typeMismatch != 0 { - try visitor.visitSingularInt32Field(value: self.typeMismatch, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.typeMismatch, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.typeMismatch) -> Bool { - if lhs.typeMismatch != rhs.typeMismatch {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.typeName: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".typeName" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -42117,70 +40593,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknown: Sw } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownField: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unknownField" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "unknownField"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.unknownField) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.unknownField != 0 { - try visitor.visitSingularInt32Field(value: self.unknownField, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownField, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownField) -> Bool { - if lhs.unknownField != rhs.unknownField {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownFieldName: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unknownFieldName" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "unknownFieldName"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.unknownFieldName) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.unknownFieldName != 0 { - try visitor.visitSingularInt32Field(value: self.unknownFieldName, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownFieldName, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownFieldName) -> Bool { - if lhs.unknownFieldName != rhs.unknownFieldName {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownFieldsMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unknownFields" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -42245,38 +40657,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.UnknownStor } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownStreamError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unknownStreamError" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "unknownStreamError"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.unknownStreamError) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.unknownStreamError != 0 { - try visitor.visitSingularInt32Field(value: self.unknownStreamError, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownStreamError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownStreamError) -> Bool { - if lhs.unknownStreamError != rhs.unknownStreamError {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unpackTo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unpackTo" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -42309,70 +40689,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unpackTo: S } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unquotedMapKey: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unquotedMapKey" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "unquotedMapKey"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.unquotedMapKey) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.unquotedMapKey != 0 { - try visitor.visitSingularInt32Field(value: self.unquotedMapKey, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unquotedMapKey, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unquotedMapKey) -> Bool { - if lhs.unquotedMapKey != rhs.unquotedMapKey {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unrecognizedEnumValue: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unrecognizedEnumValue" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "unrecognizedEnumValue"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.unrecognizedEnumValue) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.unrecognizedEnumValue != 0 { - try visitor.visitSingularInt32Field(value: self.unrecognizedEnumValue, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unrecognizedEnumValue, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unrecognizedEnumValue) -> Bool { - if lhs.unrecognizedEnumValue != rhs.unrecognizedEnumValue {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unregisteredTypeURL: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unregisteredTypeURL" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -42949,38 +41265,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.valueField: } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.valueNumberNotFinite: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".valueNumberNotFinite" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "valueNumberNotFinite"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.valueNumberNotFinite) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.valueNumberNotFinite != 0 { - try visitor.visitSingularInt32Field(value: self.valueNumberNotFinite, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.valueNumberNotFinite, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.valueNumberNotFinite) -> Bool { - if lhs.valueNumberNotFinite != rhs.valueNumberNotFinite {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.values: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".values" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ From d8b0a9c2409477ad01f124baa5c0b1ad043298a0 Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Fri, 10 May 2024 11:18:37 +0100 Subject: [PATCH 15/19] Remove unneeded @testable import --- Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift b/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift index bd8656e53..e365ac04b 100644 --- a/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift +++ b/Tests/SwiftProtobufTests/Test_JSONDecodingOptions.swift @@ -14,7 +14,7 @@ import Foundation import XCTest -@testable import SwiftProtobuf +import SwiftProtobuf final class Test_JSONDecodingOptions: XCTestCase { From 0b656a75593cdc59f019804f0a47bce9651cdf79 Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Mon, 13 May 2024 16:56:26 +0100 Subject: [PATCH 16/19] Regenerate Reference --- .../generated_swift_names_enum_cases.pb.swift | 7813 +++++++++-------- .../generated_swift_names_enums.pb.swift | 1412 +-- .../generated_swift_names_fields.pb.swift | 6017 +++++++------ .../generated_swift_names_messages.pb.swift | 1726 +--- 4 files changed, 7077 insertions(+), 9891 deletions(-) diff --git a/Reference/SwiftProtobufTests/generated_swift_names_enum_cases.pb.swift b/Reference/SwiftProtobufTests/generated_swift_names_enum_cases.pb.swift index 2ffa3db86..a05747e62 100644 --- a/Reference/SwiftProtobufTests/generated_swift_names_enum_cases.pb.swift +++ b/Reference/SwiftProtobufTests/generated_swift_names_enum_cases.pb.swift @@ -38,972 +38,989 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, case anyExtensionField // = 9 case anyMessageExtension // = 10 case anyMessageStorage // = 11 - case anyUnpackError // = 12 - case api // = 13 - case appended // = 14 - case appendUintHex // = 15 - case appendUnknown // = 16 - case areAllInitialized // = 17 - case array // = 18 - case arrayDepth // = 19 - case arrayLiteral // = 20 - case arraySeparator // = 21 - case `as` // = 22 - case asciiOpenCurlyBracket // = 23 - case asciiZero // = 24 - case async // = 25 - case asyncIterator // = 26 - case asyncIteratorProtocol // = 27 - case asyncMessageSequence // = 28 - case available // = 29 - case b // = 30 - case base // = 31 - case base64Values // = 32 - case baseAddress // = 33 - case baseType // = 34 - case begin // = 35 - case binary // = 36 - case binaryDecoder // = 37 - case binaryDecodingError // = 38 - case binaryDecodingOptions // = 39 - case binaryDelimited // = 40 - case binaryEncoder // = 41 - case binaryEncodingError // = 42 - case binaryEncodingMessageSetSizeVisitor // = 43 - case binaryEncodingMessageSetVisitor // = 44 - case binaryEncodingOptions // = 45 - case binaryEncodingSizeVisitor // = 46 - case binaryEncodingVisitor // = 47 - case binaryOptions // = 48 - case binaryProtobufDelimitedMessages // = 49 - case bitPattern // = 50 - case body // = 51 - case bool // = 52 - case booleanLiteral // = 53 - case booleanLiteralType // = 54 - case boolValue // = 55 - case buffer // = 56 - case bytes // = 57 - case bytesInGroup // = 58 - case bytesNeeded // = 59 - case bytesRead // = 60 - case bytesValue // = 61 - case c // = 62 - case capitalizeNext // = 63 - case cardinality // = 64 - case caseIterable // = 65 - case ccEnableArenas // = 66 - case ccGenericServices // = 67 - case character // = 68 - case chars // = 69 - case chunk // = 70 - case `class` // = 71 - case clearAggregateValue // = 72 - case clearAllowAlias // = 73 - case clearBegin // = 74 - case clearCcEnableArenas // = 75 - case clearCcGenericServices // = 76 - case clearClientStreaming // = 77 - case clearCsharpNamespace // = 78 - case clearCtype // = 79 - case clearDebugRedact // = 80 - case clearDefaultValue // = 81 - case clearDeprecated // = 82 - case clearDeprecatedLegacyJsonFieldConflicts // = 83 - case clearDeprecationWarning // = 84 - case clearDoubleValue // = 85 - case clearEdition // = 86 - case clearEditionDeprecated // = 87 - case clearEditionIntroduced // = 88 - case clearEditionRemoved // = 89 - case clearEnd // = 90 - case clearEnumType // = 91 - case clearExtendee // = 92 - case clearExtensionValue // = 93 - case clearFeatures // = 94 - case clearFeatureSupport // = 95 - case clearFieldPresence // = 96 - case clearFixedFeatures // = 97 - case clearFullName // = 98 - case clearGoPackage // = 99 - case clearIdempotencyLevel // = 100 - case clearIdentifierValue // = 101 - case clearInputType // = 102 - case clearIsExtension // = 103 - case clearJavaGenerateEqualsAndHash // = 104 - case clearJavaGenericServices // = 105 - case clearJavaMultipleFiles // = 106 - case clearJavaOuterClassname // = 107 - case clearJavaPackage // = 108 - case clearJavaStringCheckUtf8 // = 109 - case clearJsonFormat // = 110 - case clearJsonName // = 111 - case clearJstype // = 112 - case clearLabel // = 113 - case clearLazy // = 114 - case clearLeadingComments // = 115 - case clearMapEntry // = 116 - case clearMaximumEdition // = 117 - case clearMessageEncoding // = 118 - case clearMessageSetWireFormat // = 119 - case clearMinimumEdition // = 120 - case clearName // = 121 - case clearNamePart // = 122 - case clearNegativeIntValue // = 123 - case clearNoStandardDescriptorAccessor // = 124 - case clearNumber // = 125 - case clearObjcClassPrefix // = 126 - case clearOneofIndex // = 127 - case clearOptimizeFor // = 128 - case clearOptions // = 129 - case clearOutputType // = 130 - case clearOverridableFeatures // = 131 - case clearPackage // = 132 - case clearPacked // = 133 - case clearPhpClassPrefix // = 134 - case clearPhpMetadataNamespace // = 135 - case clearPhpNamespace // = 136 - case clearPositiveIntValue // = 137 - case clearProto3Optional // = 138 - case clearPyGenericServices // = 139 - case clearRepeated // = 140 - case clearRepeatedFieldEncoding // = 141 - case clearReserved // = 142 - case clearRetention // = 143 - case clearRubyPackage // = 144 - case clearSemantic // = 145 - case clearServerStreaming // = 146 - case clearSourceCodeInfo // = 147 - case clearSourceContext // = 148 - case clearSourceFile // = 149 - case clearStart // = 150 - case clearStringValue // = 151 - case clearSwiftPrefix // = 152 - case clearSyntax // = 153 - case clearTrailingComments // = 154 - case clearType // = 155 - case clearTypeName // = 156 - case clearUnverifiedLazy // = 157 - case clearUtf8Validation // = 158 - case clearValue // = 159 - case clearVerification // = 160 - case clearWeak // = 161 - case clientStreaming // = 162 - case codePoint // = 163 - case codeUnits // = 164 - case collection // = 165 - case com // = 166 - case comma // = 167 - case consumedBytes // = 168 - case contentsOf // = 169 - case count // = 170 - case countVarintsInBuffer // = 171 - case csharpNamespace // = 172 - case ctype // = 173 - case customCodable // = 174 - case customDebugStringConvertible // = 175 - case d // = 176 - case data // = 177 - case dataResult // = 178 - case date // = 179 - case daySec // = 180 - case daysSinceEpoch // = 181 - case debugDescription_ // = 182 - case debugRedact // = 183 - case declaration // = 184 - case decoded // = 185 - case decodedFromJsonnull // = 186 - case decodeExtensionField // = 187 - case decodeExtensionFieldsAsMessageSet // = 188 - case decodeJson // = 189 - case decodeMapField // = 190 - case decodeMessage // = 191 - case decoder // = 192 - case decodeRepeated // = 193 - case decodeRepeatedBoolField // = 194 - case decodeRepeatedBytesField // = 195 - case decodeRepeatedDoubleField // = 196 - case decodeRepeatedEnumField // = 197 - case decodeRepeatedFixed32Field // = 198 - case decodeRepeatedFixed64Field // = 199 - case decodeRepeatedFloatField // = 200 - case decodeRepeatedGroupField // = 201 - case decodeRepeatedInt32Field // = 202 - case decodeRepeatedInt64Field // = 203 - case decodeRepeatedMessageField // = 204 - case decodeRepeatedSfixed32Field // = 205 - case decodeRepeatedSfixed64Field // = 206 - case decodeRepeatedSint32Field // = 207 - case decodeRepeatedSint64Field // = 208 - case decodeRepeatedStringField // = 209 - case decodeRepeatedUint32Field // = 210 - case decodeRepeatedUint64Field // = 211 - case decodeSingular // = 212 - case decodeSingularBoolField // = 213 - case decodeSingularBytesField // = 214 - case decodeSingularDoubleField // = 215 - case decodeSingularEnumField // = 216 - case decodeSingularFixed32Field // = 217 - case decodeSingularFixed64Field // = 218 - case decodeSingularFloatField // = 219 - case decodeSingularGroupField // = 220 - case decodeSingularInt32Field // = 221 - case decodeSingularInt64Field // = 222 - case decodeSingularMessageField // = 223 - case decodeSingularSfixed32Field // = 224 - case decodeSingularSfixed64Field // = 225 - case decodeSingularSint32Field // = 226 - case decodeSingularSint64Field // = 227 - case decodeSingularStringField // = 228 - case decodeSingularUint32Field // = 229 - case decodeSingularUint64Field // = 230 - case decodeTextFormat // = 231 - case defaultAnyTypeUrlprefix // = 232 - case defaults // = 233 - case defaultValue // = 234 - case dependency // = 235 - case deprecated // = 236 - case deprecatedLegacyJsonFieldConflicts // = 237 - case deprecationWarning // = 238 - case description_ // = 239 - case descriptorProto // = 240 - case dictionary // = 241 - case dictionaryLiteral // = 242 - case digit // = 243 - case digit0 // = 244 - case digit1 // = 245 - case digitCount // = 246 - case digits // = 247 - case digitValue // = 248 - case discardableResult // = 249 - case discardUnknownFields // = 250 - case double // = 251 - case doubleValue // = 252 - case duration // = 253 - case e // = 254 - case edition // = 255 - case editionDefault // = 256 - case editionDefaults // = 257 - case editionDeprecated // = 258 - case editionIntroduced // = 259 - case editionRemoved // = 260 - case element // = 261 - case elements // = 262 - case emitExtensionFieldName // = 263 - case emitFieldName // = 264 - case emitFieldNumber // = 265 - case empty // = 266 - case encodeAsBytes // = 267 - case encoded // = 268 - case encodedJsonstring // = 269 - case encodedSize // = 270 - case encodeField // = 271 - case encoder // = 272 - case end // = 273 - case endArray // = 274 - case endMessageField // = 275 - case endObject // = 276 - case endRegularField // = 277 - case `enum` // = 278 - case enumDescriptorProto // = 279 - case enumOptions // = 280 - case enumReservedRange // = 281 - case enumType // = 282 - case enumvalue // = 283 - case enumValueDescriptorProto // = 284 - case enumValueOptions // = 285 - case equatable // = 286 - case error // = 287 - case expressibleByArrayLiteral // = 288 - case expressibleByDictionaryLiteral // = 289 - case ext // = 290 - case extDecoder // = 291 - case extendedGraphemeClusterLiteral // = 292 - case extendedGraphemeClusterLiteralType // = 293 - case extendee // = 294 - case extensibleMessage // = 295 - case `extension` // = 296 - case extensionField // = 297 - case extensionFieldNumber // = 298 - case extensionFieldValueSet // = 299 - case extensionMap // = 300 - case extensionRange // = 301 - case extensionRangeOptions // = 302 - case extensions // = 303 - case extras // = 304 - case f // = 305 - case `false` // = 306 - case features // = 307 - case featureSet // = 308 - case featureSetDefaults // = 309 - case featureSetEditionDefault // = 310 - case featureSupport // = 311 - case field // = 312 - case fieldData // = 313 - case fieldDescriptorProto // = 314 - case fieldMask // = 315 - case fieldName // = 316 - case fieldNameCount // = 317 - case fieldNum // = 318 - case fieldNumber // = 319 - case fieldNumberForProto // = 320 - case fieldOptions // = 321 - case fieldPresence // = 322 - case fields // = 323 - case fieldSize // = 324 - case fieldTag // = 325 - case fieldType // = 326 - case file // = 327 - case fileDescriptorProto // = 328 - case fileDescriptorSet // = 329 - case fileName // = 330 - case fileOptions // = 331 - case filter // = 332 - case final // = 333 - case finiteOnly // = 334 - case first // = 335 - case firstItem // = 336 - case fixedFeatures // = 337 - case float // = 338 - case floatLiteral // = 339 - case floatLiteralType // = 340 - case floatValue // = 341 - case forMessageName // = 342 - case formUnion // = 343 - case forReadingFrom // = 344 - case forTypeURL // = 345 - case forwardParser // = 346 - case forWritingInto // = 347 - case from // = 348 - case fromAscii2 // = 349 - case fromAscii4 // = 350 - case fromByteOffset // = 351 - case fromHexDigit // = 352 - case fullName // = 353 - case `func` // = 354 - case g // = 355 - case generatedCodeInfo // = 356 - case get // = 357 - case getExtensionValue // = 358 - case googleapis // = 359 - case googleProtobufAny // = 360 - case googleProtobufApi // = 361 - case googleProtobufBoolValue // = 362 - case googleProtobufBytesValue // = 363 - case googleProtobufDescriptorProto // = 364 - case googleProtobufDoubleValue // = 365 - case googleProtobufDuration // = 366 - case googleProtobufEdition // = 367 - case googleProtobufEmpty // = 368 - case googleProtobufEnum // = 369 - case googleProtobufEnumDescriptorProto // = 370 - case googleProtobufEnumOptions // = 371 - case googleProtobufEnumValue // = 372 - case googleProtobufEnumValueDescriptorProto // = 373 - case googleProtobufEnumValueOptions // = 374 - case googleProtobufExtensionRangeOptions // = 375 - case googleProtobufFeatureSet // = 376 - case googleProtobufFeatureSetDefaults // = 377 - case googleProtobufField // = 378 - case googleProtobufFieldDescriptorProto // = 379 - case googleProtobufFieldMask // = 380 - case googleProtobufFieldOptions // = 381 - case googleProtobufFileDescriptorProto // = 382 - case googleProtobufFileDescriptorSet // = 383 - case googleProtobufFileOptions // = 384 - case googleProtobufFloatValue // = 385 - case googleProtobufGeneratedCodeInfo // = 386 - case googleProtobufInt32Value // = 387 - case googleProtobufInt64Value // = 388 - case googleProtobufListValue // = 389 - case googleProtobufMessageOptions // = 390 - case googleProtobufMethod // = 391 - case googleProtobufMethodDescriptorProto // = 392 - case googleProtobufMethodOptions // = 393 - case googleProtobufMixin // = 394 - case googleProtobufNullValue // = 395 - case googleProtobufOneofDescriptorProto // = 396 - case googleProtobufOneofOptions // = 397 - case googleProtobufOption // = 398 - case googleProtobufServiceDescriptorProto // = 399 - case googleProtobufServiceOptions // = 400 - case googleProtobufSourceCodeInfo // = 401 - case googleProtobufSourceContext // = 402 - case googleProtobufStringValue // = 403 - case googleProtobufStruct // = 404 - case googleProtobufSyntax // = 405 - case googleProtobufTimestamp // = 406 - case googleProtobufType // = 407 - case googleProtobufUint32Value // = 408 - case googleProtobufUint64Value // = 409 - case googleProtobufUninterpretedOption // = 410 - case googleProtobufValue // = 411 - case goPackage // = 412 - case group // = 413 - case groupFieldNumberStack // = 414 - case groupSize // = 415 - case hadOneofValue // = 416 - case handleConflictingOneOf // = 417 - case hasAggregateValue // = 418 - case hasAllowAlias // = 419 - case hasBegin // = 420 - case hasCcEnableArenas // = 421 - case hasCcGenericServices // = 422 - case hasClientStreaming // = 423 - case hasCsharpNamespace // = 424 - case hasCtype // = 425 - case hasDebugRedact // = 426 - case hasDefaultValue // = 427 - case hasDeprecated // = 428 - case hasDeprecatedLegacyJsonFieldConflicts // = 429 - case hasDeprecationWarning // = 430 - case hasDoubleValue // = 431 - case hasEdition // = 432 - case hasEditionDeprecated // = 433 - case hasEditionIntroduced // = 434 - case hasEditionRemoved // = 435 - case hasEnd // = 436 - case hasEnumType // = 437 - case hasExtendee // = 438 - case hasExtensionValue // = 439 - case hasFeatures // = 440 - case hasFeatureSupport // = 441 - case hasFieldPresence // = 442 - case hasFixedFeatures // = 443 - case hasFullName // = 444 - case hasGoPackage // = 445 - case hash // = 446 - case hashable // = 447 - case hasher // = 448 - case hashVisitor // = 449 - case hasIdempotencyLevel // = 450 - case hasIdentifierValue // = 451 - case hasInputType // = 452 - case hasIsExtension // = 453 - case hasJavaGenerateEqualsAndHash // = 454 - case hasJavaGenericServices // = 455 - case hasJavaMultipleFiles // = 456 - case hasJavaOuterClassname // = 457 - case hasJavaPackage // = 458 - case hasJavaStringCheckUtf8 // = 459 - case hasJsonFormat // = 460 - case hasJsonName // = 461 - case hasJstype // = 462 - case hasLabel // = 463 - case hasLazy // = 464 - case hasLeadingComments // = 465 - case hasMapEntry // = 466 - case hasMaximumEdition // = 467 - case hasMessageEncoding // = 468 - case hasMessageSetWireFormat // = 469 - case hasMinimumEdition // = 470 - case hasName // = 471 - case hasNamePart // = 472 - case hasNegativeIntValue // = 473 - case hasNoStandardDescriptorAccessor // = 474 - case hasNumber // = 475 - case hasObjcClassPrefix // = 476 - case hasOneofIndex // = 477 - case hasOptimizeFor // = 478 - case hasOptions // = 479 - case hasOutputType // = 480 - case hasOverridableFeatures // = 481 - case hasPackage // = 482 - case hasPacked // = 483 - case hasPhpClassPrefix // = 484 - case hasPhpMetadataNamespace // = 485 - case hasPhpNamespace // = 486 - case hasPositiveIntValue // = 487 - case hasProto3Optional // = 488 - case hasPyGenericServices // = 489 - case hasRepeated // = 490 - case hasRepeatedFieldEncoding // = 491 - case hasReserved // = 492 - case hasRetention // = 493 - case hasRubyPackage // = 494 - case hasSemantic // = 495 - case hasServerStreaming // = 496 - case hasSourceCodeInfo // = 497 - case hasSourceContext // = 498 - case hasSourceFile // = 499 - case hasStart // = 500 - case hasStringValue // = 501 - case hasSwiftPrefix // = 502 - case hasSyntax // = 503 - case hasTrailingComments // = 504 - case hasType // = 505 - case hasTypeName // = 506 - case hasUnverifiedLazy // = 507 - case hasUtf8Validation // = 508 - case hasValue // = 509 - case hasVerification // = 510 - case hasWeak // = 511 - case hour // = 512 - case i // = 513 - case idempotencyLevel // = 514 - case identifierValue // = 515 - case `if` // = 516 - case ignoreUnknownExtensionFields // = 517 - case ignoreUnknownFields // = 518 - case index // = 519 - case init_ // = 520 - case `inout` // = 521 - case inputType // = 522 - case insert // = 523 - case int // = 524 - case int32 // = 525 - case int32Value // = 526 - case int64 // = 527 - case int64Value // = 528 - case int8 // = 529 - case integerLiteral // = 530 - case integerLiteralType // = 531 - case intern // = 532 - case `internal` // = 533 - case internalState // = 534 - case into // = 535 - case ints // = 536 - case isA // = 537 - case isEqual // = 538 - case isEqualTo // = 539 - case isExtension // = 540 - case isInitialized // = 541 - case isNegative // = 542 - case itemTagsEncodedSize // = 543 - case iterator // = 544 - case javaGenerateEqualsAndHash // = 545 - case javaGenericServices // = 546 - case javaMultipleFiles // = 547 - case javaOuterClassname // = 548 - case javaPackage // = 549 - case javaStringCheckUtf8 // = 550 - case jsondecoder // = 551 - case jsondecodingError // = 552 - case jsondecodingOptions // = 553 - case jsonEncoder // = 554 - case jsonencodingError // = 555 - case jsonencodingOptions // = 556 - case jsonencodingVisitor // = 557 - case jsonFormat // = 558 - case jsonmapEncodingVisitor // = 559 - case jsonName // = 560 - case jsonPath // = 561 - case jsonPaths // = 562 - case jsonscanner // = 563 - case jsonString // = 564 - case jsonText // = 565 - case jsonUtf8Bytes // = 566 - case jsonUtf8Data // = 567 - case jstype // = 568 - case k // = 569 - case kChunkSize // = 570 - case key // = 571 - case keyField // = 572 - case keyFieldOpt // = 573 - case keyType // = 574 - case kind // = 575 - case l // = 576 - case label // = 577 - case lazy // = 578 - case leadingComments // = 579 - case leadingDetachedComments // = 580 - case length // = 581 - case lessThan // = 582 - case `let` // = 583 - case lhs // = 584 - case list // = 585 - case listOfMessages // = 586 - case listValue // = 587 - case littleEndian // = 588 - case load // = 589 - case localHasher // = 590 - case location // = 591 - case m // = 592 - case major // = 593 - case makeAsyncIterator // = 594 - case makeIterator // = 595 - case mapEntry // = 596 - case mapKeyType // = 597 - case mapToMessages // = 598 - case mapValueType // = 599 - case mapVisitor // = 600 - case maximumEdition // = 601 - case mdayStart // = 602 - case merge // = 603 - case message // = 604 - case messageDepthLimit // = 605 - case messageEncoding // = 606 - case messageExtension // = 607 - case messageImplementationBase // = 608 - case messageOptions // = 609 - case messageSet // = 610 - case messageSetWireFormat // = 611 - case messageSize // = 612 - case messageType // = 613 - case method // = 614 - case methodDescriptorProto // = 615 - case methodOptions // = 616 - case methods // = 617 - case min // = 618 - case minimumEdition // = 619 - case minor // = 620 - case mixin // = 621 - case mixins // = 622 - case modifier // = 623 - case modify // = 624 - case month // = 625 - case msgExtension // = 626 - case mutating // = 627 - case n // = 628 - case name // = 629 - case nameDescription // = 630 - case nameMap // = 631 - case namePart // = 632 - case names // = 633 - case nanos // = 634 - case negativeIntValue // = 635 - case nestedType // = 636 - case newL // = 637 - case newList // = 638 - case newValue // = 639 - case next // = 640 - case nextByte // = 641 - case nextFieldNumber // = 642 - case nextVarInt // = 643 - case `nil` // = 644 - case nilLiteral // = 645 - case noStandardDescriptorAccessor // = 646 - case nullValue // = 647 - case number // = 648 - case numberValue // = 649 - case objcClassPrefix // = 650 - case of // = 651 - case oneofDecl // = 652 - case oneofDescriptorProto // = 653 - case oneofIndex // = 654 - case oneofOptions // = 655 - case oneofs // = 656 - case oneOfKind // = 657 - case optimizeFor // = 658 - case optimizeMode // = 659 - case option // = 660 - case optionalEnumExtensionField // = 661 - case optionalExtensionField // = 662 - case optionalGroupExtensionField // = 663 - case optionalMessageExtensionField // = 664 - case optionRetention // = 665 - case options // = 666 - case optionTargetType // = 667 - case other // = 668 - case others // = 669 - case out // = 670 - case outputType // = 671 - case overridableFeatures // = 672 - case p // = 673 - case package // = 674 - case packed // = 675 - case packedEnumExtensionField // = 676 - case packedExtensionField // = 677 - case padding // = 678 - case parent // = 679 - case parse // = 680 - case path // = 681 - case paths // = 682 - case payload // = 683 - case payloadSize // = 684 - case phpClassPrefix // = 685 - case phpMetadataNamespace // = 686 - case phpNamespace // = 687 - case pos // = 688 - case positiveIntValue // = 689 - case prefix // = 690 - case preserveProtoFieldNames // = 691 - case preTraverse // = 692 - case printUnknownFields // = 693 - case proto2 // = 694 - case proto3DefaultValue // = 695 - case proto3Optional // = 696 - case protobufApiversionCheck // = 697 - case protobufApiversion3 // = 698 - case protobufBool // = 699 - case protobufBytes // = 700 - case protobufDouble // = 701 - case protobufEnumMap // = 702 - case protobufExtension // = 703 - case protobufFixed32 // = 704 - case protobufFixed64 // = 705 - case protobufFloat // = 706 - case protobufInt32 // = 707 - case protobufInt64 // = 708 - case protobufMap // = 709 - case protobufMessageMap // = 710 - case protobufSfixed32 // = 711 - case protobufSfixed64 // = 712 - case protobufSint32 // = 713 - case protobufSint64 // = 714 - case protobufString // = 715 - case protobufUint32 // = 716 - case protobufUint64 // = 717 - case protobufExtensionFieldValues // = 718 - case protobufFieldNumber // = 719 - case protobufGeneratedIsEqualTo // = 720 - case protobufNameMap // = 721 - case protobufNewField // = 722 - case protobufPackage // = 723 - case `protocol` // = 724 - case protoFieldName // = 725 - case protoMessageName // = 726 - case protoNameProviding // = 727 - case protoPaths // = 728 - case `public` // = 729 - case publicDependency // = 730 - case putBoolValue // = 731 - case putBytesValue // = 732 - case putDoubleValue // = 733 - case putEnumValue // = 734 - case putFixedUint32 // = 735 - case putFixedUint64 // = 736 - case putFloatValue // = 737 - case putInt64 // = 738 - case putStringValue // = 739 - case putUint64 // = 740 - case putUint64Hex // = 741 - case putVarInt // = 742 - case putZigZagVarInt // = 743 - case pyGenericServices // = 744 - case r // = 745 - case rawChars // = 746 - case rawRepresentable // = 747 - case rawValue_ // = 748 - case read4HexDigits // = 749 - case readBytes // = 750 - case register // = 751 - case repeated // = 752 - case repeatedEnumExtensionField // = 753 - case repeatedExtensionField // = 754 - case repeatedFieldEncoding // = 755 - case repeatedGroupExtensionField // = 756 - case repeatedMessageExtensionField // = 757 - case repeating // = 758 - case requestStreaming // = 759 - case requestTypeURL // = 760 - case requiredSize // = 761 - case responseStreaming // = 762 - case responseTypeURL // = 763 - case result // = 764 - case retention // = 765 - case `rethrows` // = 766 - case `return` // = 767 - case returnType // = 768 - case revision // = 769 - case rhs // = 770 - case root // = 771 - case rubyPackage // = 772 - case s // = 773 - case sawBackslash // = 774 - case sawSection4Characters // = 775 - case sawSection5Characters // = 776 - case scan // = 777 - case scanner // = 778 - case seconds // = 779 - case self_ // = 780 - case semantic // = 781 - case sendable // = 782 - case separator // = 783 - case serialize // = 784 - case serializedBytes // = 785 - case serializedData // = 786 - case serializedSize // = 787 - case serverStreaming // = 788 - case service // = 789 - case serviceDescriptorProto // = 790 - case serviceOptions // = 791 - case set // = 792 - case setExtensionValue // = 793 - case shift // = 794 - case simpleExtensionMap // = 795 - case size // = 796 - case sizer // = 797 - case source // = 798 - case sourceCodeInfo // = 799 - case sourceContext // = 800 - case sourceEncoding // = 801 - case sourceFile // = 802 - case span // = 803 - case split // = 804 - case start // = 805 - case startArray // = 806 - case startArrayObject // = 807 - case startField // = 808 - case startIndex // = 809 - case startMessageField // = 810 - case startObject // = 811 - case startRegularField // = 812 - case state // = 813 - case `static` // = 814 - case staticString // = 815 - case storage // = 816 - case string // = 817 - case stringLiteral // = 818 - case stringLiteralType // = 819 - case stringResult // = 820 - case stringValue // = 821 - case `struct` // = 822 - case structValue // = 823 - case subDecoder // = 824 - case `subscript` // = 825 - case subVisitor // = 826 - case swift // = 827 - case swiftPrefix // = 828 - case swiftProtobufContiguousBytes // = 829 - case syntax // = 830 - case t // = 831 - case tag // = 832 - case targets // = 833 - case terminator // = 834 - case testDecoder // = 835 - case text // = 836 - case textDecoder // = 837 - case textFormatDecoder // = 838 - case textFormatDecodingError // = 839 - case textFormatDecodingOptions // = 840 - case textFormatEncodingOptions // = 841 - case textFormatEncodingVisitor // = 842 - case textFormatString // = 843 - case throwOrIgnore // = 844 - case `throws` // = 845 - case timeInterval // = 846 - case timeIntervalSince1970 // = 847 - case timeIntervalSinceReferenceDate // = 848 - case timestamp // = 849 - case total // = 850 - case totalArrayDepth // = 851 - case totalSize // = 852 - case trailingComments // = 853 - case traverse // = 854 - case `true` // = 855 - case `try` // = 856 - case type // = 857 - case `typealias` // = 858 - case typeEnum // = 859 - case typeName // = 860 - case typePrefix // = 861 - case typeStart // = 862 - case typeUnknown // = 863 - case typeURL // = 864 - case uint32 // = 865 - case uint32Value // = 866 - case uint64 // = 867 - case uint64Value // = 868 - case uint8 // = 869 - case unchecked // = 870 - case unicodeScalarLiteral // = 871 - case unicodeScalarLiteralType // = 872 - case unicodeScalars // = 873 - case unicodeScalarView // = 874 - case uninterpretedOption // = 875 - case union // = 876 - case uniqueStorage // = 877 - case unknown // = 878 - case unknownFields // = 879 - case unknownStorage // = 880 - case unpackTo // = 881 - case unsafeBufferPointer // = 882 - case unsafeMutablePointer // = 883 - case unsafeMutableRawBufferPointer // = 884 - case unsafeRawBufferPointer // = 885 - case unsafeRawPointer // = 886 - case unverifiedLazy // = 887 - case updatedOptions // = 888 - case url // = 889 - case useDeterministicOrdering // = 890 - case utf8 // = 891 - case utf8Ptr // = 892 - case utf8ToDouble // = 893 - case utf8Validation // = 894 - case utf8View // = 895 - case v // = 896 - case value // = 897 - case valueField // = 898 - case values // = 899 - case valueType // = 900 - case `var` // = 901 - case verification // = 902 - case verificationState // = 903 - case version // = 904 - case versionString // = 905 - case visitExtensionFields // = 906 - case visitExtensionFieldsAsMessageSet // = 907 - case visitMapField // = 908 - case visitor // = 909 - case visitPacked // = 910 - case visitPackedBoolField // = 911 - case visitPackedDoubleField // = 912 - case visitPackedEnumField // = 913 - case visitPackedFixed32Field // = 914 - case visitPackedFixed64Field // = 915 - case visitPackedFloatField // = 916 - case visitPackedInt32Field // = 917 - case visitPackedInt64Field // = 918 - case visitPackedSfixed32Field // = 919 - case visitPackedSfixed64Field // = 920 - case visitPackedSint32Field // = 921 - case visitPackedSint64Field // = 922 - case visitPackedUint32Field // = 923 - case visitPackedUint64Field // = 924 - case visitRepeated // = 925 - case visitRepeatedBoolField // = 926 - case visitRepeatedBytesField // = 927 - case visitRepeatedDoubleField // = 928 - case visitRepeatedEnumField // = 929 - case visitRepeatedFixed32Field // = 930 - case visitRepeatedFixed64Field // = 931 - case visitRepeatedFloatField // = 932 - case visitRepeatedGroupField // = 933 - case visitRepeatedInt32Field // = 934 - case visitRepeatedInt64Field // = 935 - case visitRepeatedMessageField // = 936 - case visitRepeatedSfixed32Field // = 937 - case visitRepeatedSfixed64Field // = 938 - case visitRepeatedSint32Field // = 939 - case visitRepeatedSint64Field // = 940 - case visitRepeatedStringField // = 941 - case visitRepeatedUint32Field // = 942 - case visitRepeatedUint64Field // = 943 - case visitSingular // = 944 - case visitSingularBoolField // = 945 - case visitSingularBytesField // = 946 - case visitSingularDoubleField // = 947 - case visitSingularEnumField // = 948 - case visitSingularFixed32Field // = 949 - case visitSingularFixed64Field // = 950 - case visitSingularFloatField // = 951 - case visitSingularGroupField // = 952 - case visitSingularInt32Field // = 953 - case visitSingularInt64Field // = 954 - case visitSingularMessageField // = 955 - case visitSingularSfixed32Field // = 956 - case visitSingularSfixed64Field // = 957 - case visitSingularSint32Field // = 958 - case visitSingularSint64Field // = 959 - case visitSingularStringField // = 960 - case visitSingularUint32Field // = 961 - case visitSingularUint64Field // = 962 - case visitUnknown // = 963 - case wasDecoded // = 964 - case weak // = 965 - case weakDependency // = 966 - case `where` // = 967 - case wireFormat // = 968 - case with // = 969 - case withUnsafeBytes // = 970 - case withUnsafeMutableBytes // = 971 - case work // = 972 - case wrapped // = 973 - case wrappedType // = 974 - case wrappedValue // = 975 - case written // = 976 - case yday // = 977 + case anyTypeUrlnotRegistered // = 12 + case anyUnpackError // = 13 + case api // = 14 + case appended // = 15 + case appendUintHex // = 16 + case appendUnknown // = 17 + case areAllInitialized // = 18 + case array // = 19 + case arrayDepth // = 20 + case arrayLiteral // = 21 + case arraySeparator // = 22 + case `as` // = 23 + case asciiOpenCurlyBracket // = 24 + case asciiZero // = 25 + case async // = 26 + case asyncIterator // = 27 + case asyncIteratorProtocol // = 28 + case asyncMessageSequence // = 29 + case available // = 30 + case b // = 31 + case base // = 32 + case base64Values // = 33 + case baseAddress // = 34 + case baseType // = 35 + case begin // = 36 + case binary // = 37 + case binaryDecoder // = 38 + case binaryDecoding // = 39 + case binaryDecodingError // = 40 + case binaryDecodingOptions // = 41 + case binaryDelimited // = 42 + case binaryEncoder // = 43 + case binaryEncoding // = 44 + case binaryEncodingError // = 45 + case binaryEncodingMessageSetSizeVisitor // = 46 + case binaryEncodingMessageSetVisitor // = 47 + case binaryEncodingOptions // = 48 + case binaryEncodingSizeVisitor // = 49 + case binaryEncodingVisitor // = 50 + case binaryOptions // = 51 + case binaryProtobufDelimitedMessages // = 52 + case binaryStreamDecoding // = 53 + case binaryStreamDecodingError // = 54 + case bitPattern // = 55 + case body // = 56 + case bool // = 57 + case booleanLiteral // = 58 + case booleanLiteralType // = 59 + case boolValue // = 60 + case buffer // = 61 + case bytes // = 62 + case bytesInGroup // = 63 + case bytesNeeded // = 64 + case bytesRead // = 65 + case bytesValue // = 66 + case c // = 67 + case capitalizeNext // = 68 + case cardinality // = 69 + case caseIterable // = 70 + case ccEnableArenas // = 71 + case ccGenericServices // = 72 + case character // = 73 + case chars // = 74 + case chunk // = 75 + case `class` // = 76 + case clearAggregateValue // = 77 + case clearAllowAlias // = 78 + case clearBegin // = 79 + case clearCcEnableArenas // = 80 + case clearCcGenericServices // = 81 + case clearClientStreaming // = 82 + case clearCsharpNamespace // = 83 + case clearCtype // = 84 + case clearDebugRedact // = 85 + case clearDefaultValue // = 86 + case clearDeprecated // = 87 + case clearDeprecatedLegacyJsonFieldConflicts // = 88 + case clearDeprecationWarning // = 89 + case clearDoubleValue // = 90 + case clearEdition // = 91 + case clearEditionDeprecated // = 92 + case clearEditionIntroduced // = 93 + case clearEditionRemoved // = 94 + case clearEnd // = 95 + case clearEnumType // = 96 + case clearExtendee // = 97 + case clearExtensionValue // = 98 + case clearFeatures // = 99 + case clearFeatureSupport // = 100 + case clearFieldPresence // = 101 + case clearFixedFeatures // = 102 + case clearFullName // = 103 + case clearGoPackage // = 104 + case clearIdempotencyLevel // = 105 + case clearIdentifierValue // = 106 + case clearInputType // = 107 + case clearIsExtension // = 108 + case clearJavaGenerateEqualsAndHash // = 109 + case clearJavaGenericServices // = 110 + case clearJavaMultipleFiles // = 111 + case clearJavaOuterClassname // = 112 + case clearJavaPackage // = 113 + case clearJavaStringCheckUtf8 // = 114 + case clearJsonFormat // = 115 + case clearJsonName // = 116 + case clearJstype // = 117 + case clearLabel // = 118 + case clearLazy // = 119 + case clearLeadingComments // = 120 + case clearMapEntry // = 121 + case clearMaximumEdition // = 122 + case clearMessageEncoding // = 123 + case clearMessageSetWireFormat // = 124 + case clearMinimumEdition // = 125 + case clearName // = 126 + case clearNamePart // = 127 + case clearNegativeIntValue // = 128 + case clearNoStandardDescriptorAccessor // = 129 + case clearNumber // = 130 + case clearObjcClassPrefix // = 131 + case clearOneofIndex // = 132 + case clearOptimizeFor // = 133 + case clearOptions // = 134 + case clearOutputType // = 135 + case clearOverridableFeatures // = 136 + case clearPackage // = 137 + case clearPacked // = 138 + case clearPhpClassPrefix // = 139 + case clearPhpMetadataNamespace // = 140 + case clearPhpNamespace // = 141 + case clearPositiveIntValue // = 142 + case clearProto3Optional // = 143 + case clearPyGenericServices // = 144 + case clearRepeated // = 145 + case clearRepeatedFieldEncoding // = 146 + case clearReserved // = 147 + case clearRetention // = 148 + case clearRubyPackage // = 149 + case clearSemantic // = 150 + case clearServerStreaming // = 151 + case clearSourceCodeInfo // = 152 + case clearSourceContext // = 153 + case clearSourceFile // = 154 + case clearStart // = 155 + case clearStringValue // = 156 + case clearSwiftPrefix // = 157 + case clearSyntax // = 158 + case clearTrailingComments // = 159 + case clearType // = 160 + case clearTypeName // = 161 + case clearUnverifiedLazy // = 162 + case clearUtf8Validation // = 163 + case clearValue // = 164 + case clearVerification // = 165 + case clearWeak // = 166 + case clientStreaming // = 167 + case code // = 168 + case codePoint // = 169 + case codeUnits // = 170 + case collection // = 171 + case com // = 172 + case comma // = 173 + case consumedBytes // = 174 + case contentsOf // = 175 + case copy // = 176 + case count // = 177 + case countVarintsInBuffer // = 178 + case csharpNamespace // = 179 + case ctype // = 180 + case customCodable // = 181 + case customDebugStringConvertible // = 182 + case customStringConvertible // = 183 + case d // = 184 + case data // = 185 + case dataResult // = 186 + case date // = 187 + case daySec // = 188 + case daysSinceEpoch // = 189 + case debugDescription_ // = 190 + case debugRedact // = 191 + case declaration // = 192 + case decoded // = 193 + case decodedFromJsonnull // = 194 + case decodeExtensionField // = 195 + case decodeExtensionFieldsAsMessageSet // = 196 + case decodeJson // = 197 + case decodeMapField // = 198 + case decodeMessage // = 199 + case decoder // = 200 + case decodeRepeated // = 201 + case decodeRepeatedBoolField // = 202 + case decodeRepeatedBytesField // = 203 + case decodeRepeatedDoubleField // = 204 + case decodeRepeatedEnumField // = 205 + case decodeRepeatedFixed32Field // = 206 + case decodeRepeatedFixed64Field // = 207 + case decodeRepeatedFloatField // = 208 + case decodeRepeatedGroupField // = 209 + case decodeRepeatedInt32Field // = 210 + case decodeRepeatedInt64Field // = 211 + case decodeRepeatedMessageField // = 212 + case decodeRepeatedSfixed32Field // = 213 + case decodeRepeatedSfixed64Field // = 214 + case decodeRepeatedSint32Field // = 215 + case decodeRepeatedSint64Field // = 216 + case decodeRepeatedStringField // = 217 + case decodeRepeatedUint32Field // = 218 + case decodeRepeatedUint64Field // = 219 + case decodeSingular // = 220 + case decodeSingularBoolField // = 221 + case decodeSingularBytesField // = 222 + case decodeSingularDoubleField // = 223 + case decodeSingularEnumField // = 224 + case decodeSingularFixed32Field // = 225 + case decodeSingularFixed64Field // = 226 + case decodeSingularFloatField // = 227 + case decodeSingularGroupField // = 228 + case decodeSingularInt32Field // = 229 + case decodeSingularInt64Field // = 230 + case decodeSingularMessageField // = 231 + case decodeSingularSfixed32Field // = 232 + case decodeSingularSfixed64Field // = 233 + case decodeSingularSint32Field // = 234 + case decodeSingularSint64Field // = 235 + case decodeSingularStringField // = 236 + case decodeSingularUint32Field // = 237 + case decodeSingularUint64Field // = 238 + case decodeTextFormat // = 239 + case defaultAnyTypeUrlprefix // = 240 + case defaults // = 241 + case defaultValue // = 242 + case dependency // = 243 + case deprecated // = 244 + case deprecatedLegacyJsonFieldConflicts // = 245 + case deprecationWarning // = 246 + case description_ // = 247 + case descriptorProto // = 248 + case dictionary // = 249 + case dictionaryLiteral // = 250 + case digit // = 251 + case digit0 // = 252 + case digit1 // = 253 + case digitCount // = 254 + case digits // = 255 + case digitValue // = 256 + case discardableResult // = 257 + case discardUnknownFields // = 258 + case double // = 259 + case doubleValue // = 260 + case duration // = 261 + case e // = 262 + case edition // = 263 + case editionDefault // = 264 + case editionDefaults // = 265 + case editionDeprecated // = 266 + case editionIntroduced // = 267 + case editionRemoved // = 268 + case element // = 269 + case elements // = 270 + case emitExtensionFieldName // = 271 + case emitFieldName // = 272 + case emitFieldNumber // = 273 + case empty // = 274 + case encodeAsBytes // = 275 + case encoded // = 276 + case encodedJsonstring // = 277 + case encodedSize // = 278 + case encodeField // = 279 + case encoder // = 280 + case end // = 281 + case endArray // = 282 + case endMessageField // = 283 + case endObject // = 284 + case endRegularField // = 285 + case `enum` // = 286 + case enumDescriptorProto // = 287 + case enumOptions // = 288 + case enumReservedRange // = 289 + case enumType // = 290 + case enumvalue // = 291 + case enumValueDescriptorProto // = 292 + case enumValueOptions // = 293 + case equatable // = 294 + case error // = 295 + case expressibleByArrayLiteral // = 296 + case expressibleByDictionaryLiteral // = 297 + case ext // = 298 + case extDecoder // = 299 + case extendedGraphemeClusterLiteral // = 300 + case extendedGraphemeClusterLiteralType // = 301 + case extendee // = 302 + case extensibleMessage // = 303 + case `extension` // = 304 + case extensionField // = 305 + case extensionFieldNumber // = 306 + case extensionFieldValueSet // = 307 + case extensionMap // = 308 + case extensionRange // = 309 + case extensionRangeOptions // = 310 + case extensions // = 311 + case extras // = 312 + case f // = 313 + case `false` // = 314 + case features // = 315 + case featureSet // = 316 + case featureSetDefaults // = 317 + case featureSetEditionDefault // = 318 + case featureSupport // = 319 + case field // = 320 + case fieldData // = 321 + case fieldDescriptorProto // = 322 + case fieldMask // = 323 + case fieldName // = 324 + case fieldNameCount // = 325 + case fieldNum // = 326 + case fieldNumber // = 327 + case fieldNumberForProto // = 328 + case fieldOptions // = 329 + case fieldPresence // = 330 + case fields // = 331 + case fieldSize // = 332 + case fieldTag // = 333 + case fieldType // = 334 + case file // = 335 + case fileDescriptorProto // = 336 + case fileDescriptorSet // = 337 + case fileName // = 338 + case fileOptions // = 339 + case filter // = 340 + case final // = 341 + case finiteOnly // = 342 + case first // = 343 + case firstItem // = 344 + case fixedFeatures // = 345 + case float // = 346 + case floatLiteral // = 347 + case floatLiteralType // = 348 + case floatValue // = 349 + case forMessageName // = 350 + case formUnion // = 351 + case forReadingFrom // = 352 + case forTypeURL // = 353 + case forwardParser // = 354 + case forWritingInto // = 355 + case from // = 356 + case fromAscii2 // = 357 + case fromAscii4 // = 358 + case fromByteOffset // = 359 + case fromHexDigit // = 360 + case fullName // = 361 + case `func` // = 362 + case function // = 363 + case g // = 364 + case generatedCodeInfo // = 365 + case get // = 366 + case getExtensionValue // = 367 + case googleapis // = 368 + case googleProtobufAny // = 369 + case googleProtobufApi // = 370 + case googleProtobufBoolValue // = 371 + case googleProtobufBytesValue // = 372 + case googleProtobufDescriptorProto // = 373 + case googleProtobufDoubleValue // = 374 + case googleProtobufDuration // = 375 + case googleProtobufEdition // = 376 + case googleProtobufEmpty // = 377 + case googleProtobufEnum // = 378 + case googleProtobufEnumDescriptorProto // = 379 + case googleProtobufEnumOptions // = 380 + case googleProtobufEnumValue // = 381 + case googleProtobufEnumValueDescriptorProto // = 382 + case googleProtobufEnumValueOptions // = 383 + case googleProtobufExtensionRangeOptions // = 384 + case googleProtobufFeatureSet // = 385 + case googleProtobufFeatureSetDefaults // = 386 + case googleProtobufField // = 387 + case googleProtobufFieldDescriptorProto // = 388 + case googleProtobufFieldMask // = 389 + case googleProtobufFieldOptions // = 390 + case googleProtobufFileDescriptorProto // = 391 + case googleProtobufFileDescriptorSet // = 392 + case googleProtobufFileOptions // = 393 + case googleProtobufFloatValue // = 394 + case googleProtobufGeneratedCodeInfo // = 395 + case googleProtobufInt32Value // = 396 + case googleProtobufInt64Value // = 397 + case googleProtobufListValue // = 398 + case googleProtobufMessageOptions // = 399 + case googleProtobufMethod // = 400 + case googleProtobufMethodDescriptorProto // = 401 + case googleProtobufMethodOptions // = 402 + case googleProtobufMixin // = 403 + case googleProtobufNullValue // = 404 + case googleProtobufOneofDescriptorProto // = 405 + case googleProtobufOneofOptions // = 406 + case googleProtobufOption // = 407 + case googleProtobufServiceDescriptorProto // = 408 + case googleProtobufServiceOptions // = 409 + case googleProtobufSourceCodeInfo // = 410 + case googleProtobufSourceContext // = 411 + case googleProtobufStringValue // = 412 + case googleProtobufStruct // = 413 + case googleProtobufSyntax // = 414 + case googleProtobufTimestamp // = 415 + case googleProtobufType // = 416 + case googleProtobufUint32Value // = 417 + case googleProtobufUint64Value // = 418 + case googleProtobufUninterpretedOption // = 419 + case googleProtobufValue // = 420 + case goPackage // = 421 + case group // = 422 + case groupFieldNumberStack // = 423 + case groupSize // = 424 + case hadOneofValue // = 425 + case handleConflictingOneOf // = 426 + case hasAggregateValue // = 427 + case hasAllowAlias // = 428 + case hasBegin // = 429 + case hasCcEnableArenas // = 430 + case hasCcGenericServices // = 431 + case hasClientStreaming // = 432 + case hasCsharpNamespace // = 433 + case hasCtype // = 434 + case hasDebugRedact // = 435 + case hasDefaultValue // = 436 + case hasDeprecated // = 437 + case hasDeprecatedLegacyJsonFieldConflicts // = 438 + case hasDeprecationWarning // = 439 + case hasDoubleValue // = 440 + case hasEdition // = 441 + case hasEditionDeprecated // = 442 + case hasEditionIntroduced // = 443 + case hasEditionRemoved // = 444 + case hasEnd // = 445 + case hasEnumType // = 446 + case hasExtendee // = 447 + case hasExtensionValue // = 448 + case hasFeatures // = 449 + case hasFeatureSupport // = 450 + case hasFieldPresence // = 451 + case hasFixedFeatures // = 452 + case hasFullName // = 453 + case hasGoPackage // = 454 + case hash // = 455 + case hashable // = 456 + case hasher // = 457 + case hashVisitor // = 458 + case hasIdempotencyLevel // = 459 + case hasIdentifierValue // = 460 + case hasInputType // = 461 + case hasIsExtension // = 462 + case hasJavaGenerateEqualsAndHash // = 463 + case hasJavaGenericServices // = 464 + case hasJavaMultipleFiles // = 465 + case hasJavaOuterClassname // = 466 + case hasJavaPackage // = 467 + case hasJavaStringCheckUtf8 // = 468 + case hasJsonFormat // = 469 + case hasJsonName // = 470 + case hasJstype // = 471 + case hasLabel // = 472 + case hasLazy // = 473 + case hasLeadingComments // = 474 + case hasMapEntry // = 475 + case hasMaximumEdition // = 476 + case hasMessageEncoding // = 477 + case hasMessageSetWireFormat // = 478 + case hasMinimumEdition // = 479 + case hasName // = 480 + case hasNamePart // = 481 + case hasNegativeIntValue // = 482 + case hasNoStandardDescriptorAccessor // = 483 + case hasNumber // = 484 + case hasObjcClassPrefix // = 485 + case hasOneofIndex // = 486 + case hasOptimizeFor // = 487 + case hasOptions // = 488 + case hasOutputType // = 489 + case hasOverridableFeatures // = 490 + case hasPackage // = 491 + case hasPacked // = 492 + case hasPhpClassPrefix // = 493 + case hasPhpMetadataNamespace // = 494 + case hasPhpNamespace // = 495 + case hasPositiveIntValue // = 496 + case hasProto3Optional // = 497 + case hasPyGenericServices // = 498 + case hasRepeated // = 499 + case hasRepeatedFieldEncoding // = 500 + case hasReserved // = 501 + case hasRetention // = 502 + case hasRubyPackage // = 503 + case hasSemantic // = 504 + case hasServerStreaming // = 505 + case hasSourceCodeInfo // = 506 + case hasSourceContext // = 507 + case hasSourceFile // = 508 + case hasStart // = 509 + case hasStringValue // = 510 + case hasSwiftPrefix // = 511 + case hasSyntax // = 512 + case hasTrailingComments // = 513 + case hasType // = 514 + case hasTypeName // = 515 + case hasUnverifiedLazy // = 516 + case hasUtf8Validation // = 517 + case hasValue // = 518 + case hasVerification // = 519 + case hasWeak // = 520 + case hour // = 521 + case i // = 522 + case idempotencyLevel // = 523 + case identifierValue // = 524 + case `if` // = 525 + case ignoreUnknownExtensionFields // = 526 + case ignoreUnknownFields // = 527 + case index // = 528 + case init_ // = 529 + case `inout` // = 530 + case inputType // = 531 + case insert // = 532 + case int // = 533 + case int32 // = 534 + case int32Value // = 535 + case int64 // = 536 + case int64Value // = 537 + case int8 // = 538 + case integerLiteral // = 539 + case integerLiteralType // = 540 + case intern // = 541 + case `internal` // = 542 + case internalState // = 543 + case into // = 544 + case ints // = 545 + case isA // = 546 + case isEqual // = 547 + case isEqualTo // = 548 + case isExtension // = 549 + case isInitialized // = 550 + case isNegative // = 551 + case itemTagsEncodedSize // = 552 + case iterator // = 553 + case javaGenerateEqualsAndHash // = 554 + case javaGenericServices // = 555 + case javaMultipleFiles // = 556 + case javaOuterClassname // = 557 + case javaPackage // = 558 + case javaStringCheckUtf8 // = 559 + case jsondecoder // = 560 + case jsondecodingError // = 561 + case jsondecodingOptions // = 562 + case jsonEncoder // = 563 + case jsonencoding // = 564 + case jsonencodingError // = 565 + case jsonencodingOptions // = 566 + case jsonencodingVisitor // = 567 + case jsonFormat // = 568 + case jsonmapEncodingVisitor // = 569 + case jsonName // = 570 + case jsonPath // = 571 + case jsonPaths // = 572 + case jsonscanner // = 573 + case jsonString // = 574 + case jsonText // = 575 + case jsonUtf8Bytes // = 576 + case jsonUtf8Data // = 577 + case jstype // = 578 + case k // = 579 + case kChunkSize // = 580 + case key // = 581 + case keyField // = 582 + case keyFieldOpt // = 583 + case keyType // = 584 + case kind // = 585 + case l // = 586 + case label // = 587 + case lazy // = 588 + case leadingComments // = 589 + case leadingDetachedComments // = 590 + case length // = 591 + case lessThan // = 592 + case `let` // = 593 + case lhs // = 594 + case line // = 595 + case list // = 596 + case listOfMessages // = 597 + case listValue // = 598 + case littleEndian // = 599 + case load // = 600 + case localHasher // = 601 + case location // = 602 + case m // = 603 + case major // = 604 + case makeAsyncIterator // = 605 + case makeIterator // = 606 + case malformedLength // = 607 + case mapEntry // = 608 + case mapKeyType // = 609 + case mapToMessages // = 610 + case mapValueType // = 611 + case mapVisitor // = 612 + case maximumEdition // = 613 + case mdayStart // = 614 + case merge // = 615 + case message // = 616 + case messageDepthLimit // = 617 + case messageEncoding // = 618 + case messageExtension // = 619 + case messageImplementationBase // = 620 + case messageOptions // = 621 + case messageSet // = 622 + case messageSetWireFormat // = 623 + case messageSize // = 624 + case messageType // = 625 + case method // = 626 + case methodDescriptorProto // = 627 + case methodOptions // = 628 + case methods // = 629 + case min // = 630 + case minimumEdition // = 631 + case minor // = 632 + case mixin // = 633 + case mixins // = 634 + case modifier // = 635 + case modify // = 636 + case month // = 637 + case msgExtension // = 638 + case mutating // = 639 + case n // = 640 + case name // = 641 + case nameDescription // = 642 + case nameMap // = 643 + case namePart // = 644 + case names // = 645 + case nanos // = 646 + case negativeIntValue // = 647 + case nestedType // = 648 + case newL // = 649 + case newList // = 650 + case newValue // = 651 + case next // = 652 + case nextByte // = 653 + case nextFieldNumber // = 654 + case nextVarInt // = 655 + case `nil` // = 656 + case nilLiteral // = 657 + case noBytesAvailable // = 658 + case noStandardDescriptorAccessor // = 659 + case nullValue // = 660 + case number // = 661 + case numberValue // = 662 + case objcClassPrefix // = 663 + case of // = 664 + case oneofDecl // = 665 + case oneofDescriptorProto // = 666 + case oneofIndex // = 667 + case oneofOptions // = 668 + case oneofs // = 669 + case oneOfKind // = 670 + case optimizeFor // = 671 + case optimizeMode // = 672 + case option // = 673 + case optionalEnumExtensionField // = 674 + case optionalExtensionField // = 675 + case optionalGroupExtensionField // = 676 + case optionalMessageExtensionField // = 677 + case optionRetention // = 678 + case options // = 679 + case optionTargetType // = 680 + case other // = 681 + case others // = 682 + case out // = 683 + case outputType // = 684 + case overridableFeatures // = 685 + case p // = 686 + case package // = 687 + case packed // = 688 + case packedEnumExtensionField // = 689 + case packedExtensionField // = 690 + case padding // = 691 + case parent // = 692 + case parse // = 693 + case path // = 694 + case paths // = 695 + case payload // = 696 + case payloadSize // = 697 + case phpClassPrefix // = 698 + case phpMetadataNamespace // = 699 + case phpNamespace // = 700 + case pos // = 701 + case positiveIntValue // = 702 + case prefix // = 703 + case preserveProtoFieldNames // = 704 + case preTraverse // = 705 + case printUnknownFields // = 706 + case proto2 // = 707 + case proto3DefaultValue // = 708 + case proto3Optional // = 709 + case protobufApiversionCheck // = 710 + case protobufApiversion3 // = 711 + case protobufBool // = 712 + case protobufBytes // = 713 + case protobufDouble // = 714 + case protobufEnumMap // = 715 + case protobufExtension // = 716 + case protobufFixed32 // = 717 + case protobufFixed64 // = 718 + case protobufFloat // = 719 + case protobufInt32 // = 720 + case protobufInt64 // = 721 + case protobufMap // = 722 + case protobufMessageMap // = 723 + case protobufSfixed32 // = 724 + case protobufSfixed64 // = 725 + case protobufSint32 // = 726 + case protobufSint64 // = 727 + case protobufString // = 728 + case protobufUint32 // = 729 + case protobufUint64 // = 730 + case protobufExtensionFieldValues // = 731 + case protobufFieldNumber // = 732 + case protobufGeneratedIsEqualTo // = 733 + case protobufNameMap // = 734 + case protobufNewField // = 735 + case protobufPackage // = 736 + case `protocol` // = 737 + case protoFieldName // = 738 + case protoMessageName // = 739 + case protoNameProviding // = 740 + case protoPaths // = 741 + case `public` // = 742 + case publicDependency // = 743 + case putBoolValue // = 744 + case putBytesValue // = 745 + case putDoubleValue // = 746 + case putEnumValue // = 747 + case putFixedUint32 // = 748 + case putFixedUint64 // = 749 + case putFloatValue // = 750 + case putInt64 // = 751 + case putStringValue // = 752 + case putUint64 // = 753 + case putUint64Hex // = 754 + case putVarInt // = 755 + case putZigZagVarInt // = 756 + case pyGenericServices // = 757 + case r // = 758 + case rawChars // = 759 + case rawRepresentable // = 760 + case rawValue_ // = 761 + case read4HexDigits // = 762 + case readBytes // = 763 + case register // = 764 + case repeated // = 765 + case repeatedEnumExtensionField // = 766 + case repeatedExtensionField // = 767 + case repeatedFieldEncoding // = 768 + case repeatedGroupExtensionField // = 769 + case repeatedMessageExtensionField // = 770 + case repeating // = 771 + case requestStreaming // = 772 + case requestTypeURL // = 773 + case requiredSize // = 774 + case responseStreaming // = 775 + case responseTypeURL // = 776 + case result // = 777 + case retention // = 778 + case `rethrows` // = 779 + case `return` // = 780 + case returnType // = 781 + case revision // = 782 + case rhs // = 783 + case root // = 784 + case rubyPackage // = 785 + case s // = 786 + case sawBackslash // = 787 + case sawSection4Characters // = 788 + case sawSection5Characters // = 789 + case scan // = 790 + case scanner // = 791 + case seconds // = 792 + case self_ // = 793 + case semantic // = 794 + case sendable // = 795 + case separator // = 796 + case serialize // = 797 + case serializedBytes // = 798 + case serializedData // = 799 + case serializedSize // = 800 + case serverStreaming // = 801 + case service // = 802 + case serviceDescriptorProto // = 803 + case serviceOptions // = 804 + case set // = 805 + case setExtensionValue // = 806 + case shift // = 807 + case simpleExtensionMap // = 808 + case size // = 809 + case sizer // = 810 + case source // = 811 + case sourceCodeInfo // = 812 + case sourceContext // = 813 + case sourceEncoding // = 814 + case sourceFile // = 815 + case sourceLocation // = 816 + case span // = 817 + case split // = 818 + case start // = 819 + case startArray // = 820 + case startArrayObject // = 821 + case startField // = 822 + case startIndex // = 823 + case startMessageField // = 824 + case startObject // = 825 + case startRegularField // = 826 + case state // = 827 + case `static` // = 828 + case staticString // = 829 + case storage // = 830 + case string // = 831 + case stringLiteral // = 832 + case stringLiteralType // = 833 + case stringResult // = 834 + case stringValue // = 835 + case `struct` // = 836 + case structValue // = 837 + case subDecoder // = 838 + case `subscript` // = 839 + case subVisitor // = 840 + case swift // = 841 + case swiftPrefix // = 842 + case swiftProtobufContiguousBytes // = 843 + case swiftProtobufError // = 844 + case syntax // = 845 + case t // = 846 + case tag // = 847 + case targets // = 848 + case terminator // = 849 + case testDecoder // = 850 + case text // = 851 + case textDecoder // = 852 + case textFormatDecoder // = 853 + case textFormatDecodingError // = 854 + case textFormatDecodingOptions // = 855 + case textFormatEncodingOptions // = 856 + case textFormatEncodingVisitor // = 857 + case textFormatString // = 858 + case throwOrIgnore // = 859 + case `throws` // = 860 + case timeInterval // = 861 + case timeIntervalSince1970 // = 862 + case timeIntervalSinceReferenceDate // = 863 + case timestamp // = 864 + case tooLarge // = 865 + case total // = 866 + case totalArrayDepth // = 867 + case totalSize // = 868 + case trailingComments // = 869 + case traverse // = 870 + case `true` // = 871 + case `try` // = 872 + case type // = 873 + case `typealias` // = 874 + case typeEnum // = 875 + case typeName // = 876 + case typePrefix // = 877 + case typeStart // = 878 + case typeUnknown // = 879 + case typeURL // = 880 + case uint32 // = 881 + case uint32Value // = 882 + case uint64 // = 883 + case uint64Value // = 884 + case uint8 // = 885 + case unchecked // = 886 + case unicodeScalarLiteral // = 887 + case unicodeScalarLiteralType // = 888 + case unicodeScalars // = 889 + case unicodeScalarView // = 890 + case uninterpretedOption // = 891 + case union // = 892 + case uniqueStorage // = 893 + case unknown // = 894 + case unknownFields // = 895 + case unknownStorage // = 896 + case unpackTo // = 897 + case unregisteredTypeURL // = 898 + case unsafeBufferPointer // = 899 + case unsafeMutablePointer // = 900 + case unsafeMutableRawBufferPointer // = 901 + case unsafeRawBufferPointer // = 902 + case unsafeRawPointer // = 903 + case unverifiedLazy // = 904 + case updatedOptions // = 905 + case url // = 906 + case useDeterministicOrdering // = 907 + case utf8 // = 908 + case utf8Ptr // = 909 + case utf8ToDouble // = 910 + case utf8Validation // = 911 + case utf8View // = 912 + case v // = 913 + case value // = 914 + case valueField // = 915 + case values // = 916 + case valueType // = 917 + case `var` // = 918 + case verification // = 919 + case verificationState // = 920 + case version // = 921 + case versionString // = 922 + case visitExtensionFields // = 923 + case visitExtensionFieldsAsMessageSet // = 924 + case visitMapField // = 925 + case visitor // = 926 + case visitPacked // = 927 + case visitPackedBoolField // = 928 + case visitPackedDoubleField // = 929 + case visitPackedEnumField // = 930 + case visitPackedFixed32Field // = 931 + case visitPackedFixed64Field // = 932 + case visitPackedFloatField // = 933 + case visitPackedInt32Field // = 934 + case visitPackedInt64Field // = 935 + case visitPackedSfixed32Field // = 936 + case visitPackedSfixed64Field // = 937 + case visitPackedSint32Field // = 938 + case visitPackedSint64Field // = 939 + case visitPackedUint32Field // = 940 + case visitPackedUint64Field // = 941 + case visitRepeated // = 942 + case visitRepeatedBoolField // = 943 + case visitRepeatedBytesField // = 944 + case visitRepeatedDoubleField // = 945 + case visitRepeatedEnumField // = 946 + case visitRepeatedFixed32Field // = 947 + case visitRepeatedFixed64Field // = 948 + case visitRepeatedFloatField // = 949 + case visitRepeatedGroupField // = 950 + case visitRepeatedInt32Field // = 951 + case visitRepeatedInt64Field // = 952 + case visitRepeatedMessageField // = 953 + case visitRepeatedSfixed32Field // = 954 + case visitRepeatedSfixed64Field // = 955 + case visitRepeatedSint32Field // = 956 + case visitRepeatedSint64Field // = 957 + case visitRepeatedStringField // = 958 + case visitRepeatedUint32Field // = 959 + case visitRepeatedUint64Field // = 960 + case visitSingular // = 961 + case visitSingularBoolField // = 962 + case visitSingularBytesField // = 963 + case visitSingularDoubleField // = 964 + case visitSingularEnumField // = 965 + case visitSingularFixed32Field // = 966 + case visitSingularFixed64Field // = 967 + case visitSingularFloatField // = 968 + case visitSingularGroupField // = 969 + case visitSingularInt32Field // = 970 + case visitSingularInt64Field // = 971 + case visitSingularMessageField // = 972 + case visitSingularSfixed32Field // = 973 + case visitSingularSfixed64Field // = 974 + case visitSingularSint32Field // = 975 + case visitSingularSint64Field // = 976 + case visitSingularStringField // = 977 + case visitSingularUint32Field // = 978 + case visitSingularUint64Field // = 979 + case visitUnknown // = 980 + case wasDecoded // = 981 + case weak // = 982 + case weakDependency // = 983 + case `where` // = 984 + case wireFormat // = 985 + case with // = 986 + case withUnsafeBytes // = 987 + case withUnsafeMutableBytes // = 988 + case work // = 989 + case wrapped // = 990 + case wrappedType // = 991 + case wrappedValue // = 992 + case written // = 993 + case yday // = 994 case UNRECOGNIZED(Int) init() { @@ -1024,972 +1041,989 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, case 9: self = .anyExtensionField case 10: self = .anyMessageExtension case 11: self = .anyMessageStorage - case 12: self = .anyUnpackError - case 13: self = .api - case 14: self = .appended - case 15: self = .appendUintHex - case 16: self = .appendUnknown - case 17: self = .areAllInitialized - case 18: self = .array - case 19: self = .arrayDepth - case 20: self = .arrayLiteral - case 21: self = .arraySeparator - case 22: self = .as - case 23: self = .asciiOpenCurlyBracket - case 24: self = .asciiZero - case 25: self = .async - case 26: self = .asyncIterator - case 27: self = .asyncIteratorProtocol - case 28: self = .asyncMessageSequence - case 29: self = .available - case 30: self = .b - case 31: self = .base - case 32: self = .base64Values - case 33: self = .baseAddress - case 34: self = .baseType - case 35: self = .begin - case 36: self = .binary - case 37: self = .binaryDecoder - case 38: self = .binaryDecodingError - case 39: self = .binaryDecodingOptions - case 40: self = .binaryDelimited - case 41: self = .binaryEncoder - case 42: self = .binaryEncodingError - case 43: self = .binaryEncodingMessageSetSizeVisitor - case 44: self = .binaryEncodingMessageSetVisitor - case 45: self = .binaryEncodingOptions - case 46: self = .binaryEncodingSizeVisitor - case 47: self = .binaryEncodingVisitor - case 48: self = .binaryOptions - case 49: self = .binaryProtobufDelimitedMessages - case 50: self = .bitPattern - case 51: self = .body - case 52: self = .bool - case 53: self = .booleanLiteral - case 54: self = .booleanLiteralType - case 55: self = .boolValue - case 56: self = .buffer - case 57: self = .bytes - case 58: self = .bytesInGroup - case 59: self = .bytesNeeded - case 60: self = .bytesRead - case 61: self = .bytesValue - case 62: self = .c - case 63: self = .capitalizeNext - case 64: self = .cardinality - case 65: self = .caseIterable - case 66: self = .ccEnableArenas - case 67: self = .ccGenericServices - case 68: self = .character - case 69: self = .chars - case 70: self = .chunk - case 71: self = .class - case 72: self = .clearAggregateValue - case 73: self = .clearAllowAlias - case 74: self = .clearBegin - case 75: self = .clearCcEnableArenas - case 76: self = .clearCcGenericServices - case 77: self = .clearClientStreaming - case 78: self = .clearCsharpNamespace - case 79: self = .clearCtype - case 80: self = .clearDebugRedact - case 81: self = .clearDefaultValue - case 82: self = .clearDeprecated - case 83: self = .clearDeprecatedLegacyJsonFieldConflicts - case 84: self = .clearDeprecationWarning - case 85: self = .clearDoubleValue - case 86: self = .clearEdition - case 87: self = .clearEditionDeprecated - case 88: self = .clearEditionIntroduced - case 89: self = .clearEditionRemoved - case 90: self = .clearEnd - case 91: self = .clearEnumType - case 92: self = .clearExtendee - case 93: self = .clearExtensionValue - case 94: self = .clearFeatures - case 95: self = .clearFeatureSupport - case 96: self = .clearFieldPresence - case 97: self = .clearFixedFeatures - case 98: self = .clearFullName - case 99: self = .clearGoPackage - case 100: self = .clearIdempotencyLevel - case 101: self = .clearIdentifierValue - case 102: self = .clearInputType - case 103: self = .clearIsExtension - case 104: self = .clearJavaGenerateEqualsAndHash - case 105: self = .clearJavaGenericServices - case 106: self = .clearJavaMultipleFiles - case 107: self = .clearJavaOuterClassname - case 108: self = .clearJavaPackage - case 109: self = .clearJavaStringCheckUtf8 - case 110: self = .clearJsonFormat - case 111: self = .clearJsonName - case 112: self = .clearJstype - case 113: self = .clearLabel - case 114: self = .clearLazy - case 115: self = .clearLeadingComments - case 116: self = .clearMapEntry - case 117: self = .clearMaximumEdition - case 118: self = .clearMessageEncoding - case 119: self = .clearMessageSetWireFormat - case 120: self = .clearMinimumEdition - case 121: self = .clearName - case 122: self = .clearNamePart - case 123: self = .clearNegativeIntValue - case 124: self = .clearNoStandardDescriptorAccessor - case 125: self = .clearNumber - case 126: self = .clearObjcClassPrefix - case 127: self = .clearOneofIndex - case 128: self = .clearOptimizeFor - case 129: self = .clearOptions - case 130: self = .clearOutputType - case 131: self = .clearOverridableFeatures - case 132: self = .clearPackage - case 133: self = .clearPacked - case 134: self = .clearPhpClassPrefix - case 135: self = .clearPhpMetadataNamespace - case 136: self = .clearPhpNamespace - case 137: self = .clearPositiveIntValue - case 138: self = .clearProto3Optional - case 139: self = .clearPyGenericServices - case 140: self = .clearRepeated - case 141: self = .clearRepeatedFieldEncoding - case 142: self = .clearReserved - case 143: self = .clearRetention - case 144: self = .clearRubyPackage - case 145: self = .clearSemantic - case 146: self = .clearServerStreaming - case 147: self = .clearSourceCodeInfo - case 148: self = .clearSourceContext - case 149: self = .clearSourceFile - case 150: self = .clearStart - case 151: self = .clearStringValue - case 152: self = .clearSwiftPrefix - case 153: self = .clearSyntax - case 154: self = .clearTrailingComments - case 155: self = .clearType - case 156: self = .clearTypeName - case 157: self = .clearUnverifiedLazy - case 158: self = .clearUtf8Validation - case 159: self = .clearValue - case 160: self = .clearVerification - case 161: self = .clearWeak - case 162: self = .clientStreaming - case 163: self = .codePoint - case 164: self = .codeUnits - case 165: self = .collection - case 166: self = .com - case 167: self = .comma - case 168: self = .consumedBytes - case 169: self = .contentsOf - case 170: self = .count - case 171: self = .countVarintsInBuffer - case 172: self = .csharpNamespace - case 173: self = .ctype - case 174: self = .customCodable - case 175: self = .customDebugStringConvertible - case 176: self = .d - case 177: self = .data - case 178: self = .dataResult - case 179: self = .date - case 180: self = .daySec - case 181: self = .daysSinceEpoch - case 182: self = .debugDescription_ - case 183: self = .debugRedact - case 184: self = .declaration - case 185: self = .decoded - case 186: self = .decodedFromJsonnull - case 187: self = .decodeExtensionField - case 188: self = .decodeExtensionFieldsAsMessageSet - case 189: self = .decodeJson - case 190: self = .decodeMapField - case 191: self = .decodeMessage - case 192: self = .decoder - case 193: self = .decodeRepeated - case 194: self = .decodeRepeatedBoolField - case 195: self = .decodeRepeatedBytesField - case 196: self = .decodeRepeatedDoubleField - case 197: self = .decodeRepeatedEnumField - case 198: self = .decodeRepeatedFixed32Field - case 199: self = .decodeRepeatedFixed64Field - case 200: self = .decodeRepeatedFloatField - case 201: self = .decodeRepeatedGroupField - case 202: self = .decodeRepeatedInt32Field - case 203: self = .decodeRepeatedInt64Field - case 204: self = .decodeRepeatedMessageField - case 205: self = .decodeRepeatedSfixed32Field - case 206: self = .decodeRepeatedSfixed64Field - case 207: self = .decodeRepeatedSint32Field - case 208: self = .decodeRepeatedSint64Field - case 209: self = .decodeRepeatedStringField - case 210: self = .decodeRepeatedUint32Field - case 211: self = .decodeRepeatedUint64Field - case 212: self = .decodeSingular - case 213: self = .decodeSingularBoolField - case 214: self = .decodeSingularBytesField - case 215: self = .decodeSingularDoubleField - case 216: self = .decodeSingularEnumField - case 217: self = .decodeSingularFixed32Field - case 218: self = .decodeSingularFixed64Field - case 219: self = .decodeSingularFloatField - case 220: self = .decodeSingularGroupField - case 221: self = .decodeSingularInt32Field - case 222: self = .decodeSingularInt64Field - case 223: self = .decodeSingularMessageField - case 224: self = .decodeSingularSfixed32Field - case 225: self = .decodeSingularSfixed64Field - case 226: self = .decodeSingularSint32Field - case 227: self = .decodeSingularSint64Field - case 228: self = .decodeSingularStringField - case 229: self = .decodeSingularUint32Field - case 230: self = .decodeSingularUint64Field - case 231: self = .decodeTextFormat - case 232: self = .defaultAnyTypeUrlprefix - case 233: self = .defaults - case 234: self = .defaultValue - case 235: self = .dependency - case 236: self = .deprecated - case 237: self = .deprecatedLegacyJsonFieldConflicts - case 238: self = .deprecationWarning - case 239: self = .description_ - case 240: self = .descriptorProto - case 241: self = .dictionary - case 242: self = .dictionaryLiteral - case 243: self = .digit - case 244: self = .digit0 - case 245: self = .digit1 - case 246: self = .digitCount - case 247: self = .digits - case 248: self = .digitValue - case 249: self = .discardableResult - case 250: self = .discardUnknownFields - case 251: self = .double - case 252: self = .doubleValue - case 253: self = .duration - case 254: self = .e - case 255: self = .edition - case 256: self = .editionDefault - case 257: self = .editionDefaults - case 258: self = .editionDeprecated - case 259: self = .editionIntroduced - case 260: self = .editionRemoved - case 261: self = .element - case 262: self = .elements - case 263: self = .emitExtensionFieldName - case 264: self = .emitFieldName - case 265: self = .emitFieldNumber - case 266: self = .empty - case 267: self = .encodeAsBytes - case 268: self = .encoded - case 269: self = .encodedJsonstring - case 270: self = .encodedSize - case 271: self = .encodeField - case 272: self = .encoder - case 273: self = .end - case 274: self = .endArray - case 275: self = .endMessageField - case 276: self = .endObject - case 277: self = .endRegularField - case 278: self = .enum - case 279: self = .enumDescriptorProto - case 280: self = .enumOptions - case 281: self = .enumReservedRange - case 282: self = .enumType - case 283: self = .enumvalue - case 284: self = .enumValueDescriptorProto - case 285: self = .enumValueOptions - case 286: self = .equatable - case 287: self = .error - case 288: self = .expressibleByArrayLiteral - case 289: self = .expressibleByDictionaryLiteral - case 290: self = .ext - case 291: self = .extDecoder - case 292: self = .extendedGraphemeClusterLiteral - case 293: self = .extendedGraphemeClusterLiteralType - case 294: self = .extendee - case 295: self = .extensibleMessage - case 296: self = .extension - case 297: self = .extensionField - case 298: self = .extensionFieldNumber - case 299: self = .extensionFieldValueSet - case 300: self = .extensionMap - case 301: self = .extensionRange - case 302: self = .extensionRangeOptions - case 303: self = .extensions - case 304: self = .extras - case 305: self = .f - case 306: self = .false - case 307: self = .features - case 308: self = .featureSet - case 309: self = .featureSetDefaults - case 310: self = .featureSetEditionDefault - case 311: self = .featureSupport - case 312: self = .field - case 313: self = .fieldData - case 314: self = .fieldDescriptorProto - case 315: self = .fieldMask - case 316: self = .fieldName - case 317: self = .fieldNameCount - case 318: self = .fieldNum - case 319: self = .fieldNumber - case 320: self = .fieldNumberForProto - case 321: self = .fieldOptions - case 322: self = .fieldPresence - case 323: self = .fields - case 324: self = .fieldSize - case 325: self = .fieldTag - case 326: self = .fieldType - case 327: self = .file - case 328: self = .fileDescriptorProto - case 329: self = .fileDescriptorSet - case 330: self = .fileName - case 331: self = .fileOptions - case 332: self = .filter - case 333: self = .final - case 334: self = .finiteOnly - case 335: self = .first - case 336: self = .firstItem - case 337: self = .fixedFeatures - case 338: self = .float - case 339: self = .floatLiteral - case 340: self = .floatLiteralType - case 341: self = .floatValue - case 342: self = .forMessageName - case 343: self = .formUnion - case 344: self = .forReadingFrom - case 345: self = .forTypeURL - case 346: self = .forwardParser - case 347: self = .forWritingInto - case 348: self = .from - case 349: self = .fromAscii2 - case 350: self = .fromAscii4 - case 351: self = .fromByteOffset - case 352: self = .fromHexDigit - case 353: self = .fullName - case 354: self = .func - case 355: self = .g - case 356: self = .generatedCodeInfo - case 357: self = .get - case 358: self = .getExtensionValue - case 359: self = .googleapis - case 360: self = .googleProtobufAny - case 361: self = .googleProtobufApi - case 362: self = .googleProtobufBoolValue - case 363: self = .googleProtobufBytesValue - case 364: self = .googleProtobufDescriptorProto - case 365: self = .googleProtobufDoubleValue - case 366: self = .googleProtobufDuration - case 367: self = .googleProtobufEdition - case 368: self = .googleProtobufEmpty - case 369: self = .googleProtobufEnum - case 370: self = .googleProtobufEnumDescriptorProto - case 371: self = .googleProtobufEnumOptions - case 372: self = .googleProtobufEnumValue - case 373: self = .googleProtobufEnumValueDescriptorProto - case 374: self = .googleProtobufEnumValueOptions - case 375: self = .googleProtobufExtensionRangeOptions - case 376: self = .googleProtobufFeatureSet - case 377: self = .googleProtobufFeatureSetDefaults - case 378: self = .googleProtobufField - case 379: self = .googleProtobufFieldDescriptorProto - case 380: self = .googleProtobufFieldMask - case 381: self = .googleProtobufFieldOptions - case 382: self = .googleProtobufFileDescriptorProto - case 383: self = .googleProtobufFileDescriptorSet - case 384: self = .googleProtobufFileOptions - case 385: self = .googleProtobufFloatValue - case 386: self = .googleProtobufGeneratedCodeInfo - case 387: self = .googleProtobufInt32Value - case 388: self = .googleProtobufInt64Value - case 389: self = .googleProtobufListValue - case 390: self = .googleProtobufMessageOptions - case 391: self = .googleProtobufMethod - case 392: self = .googleProtobufMethodDescriptorProto - case 393: self = .googleProtobufMethodOptions - case 394: self = .googleProtobufMixin - case 395: self = .googleProtobufNullValue - case 396: self = .googleProtobufOneofDescriptorProto - case 397: self = .googleProtobufOneofOptions - case 398: self = .googleProtobufOption - case 399: self = .googleProtobufServiceDescriptorProto - case 400: self = .googleProtobufServiceOptions - case 401: self = .googleProtobufSourceCodeInfo - case 402: self = .googleProtobufSourceContext - case 403: self = .googleProtobufStringValue - case 404: self = .googleProtobufStruct - case 405: self = .googleProtobufSyntax - case 406: self = .googleProtobufTimestamp - case 407: self = .googleProtobufType - case 408: self = .googleProtobufUint32Value - case 409: self = .googleProtobufUint64Value - case 410: self = .googleProtobufUninterpretedOption - case 411: self = .googleProtobufValue - case 412: self = .goPackage - case 413: self = .group - case 414: self = .groupFieldNumberStack - case 415: self = .groupSize - case 416: self = .hadOneofValue - case 417: self = .handleConflictingOneOf - case 418: self = .hasAggregateValue - case 419: self = .hasAllowAlias - case 420: self = .hasBegin - case 421: self = .hasCcEnableArenas - case 422: self = .hasCcGenericServices - case 423: self = .hasClientStreaming - case 424: self = .hasCsharpNamespace - case 425: self = .hasCtype - case 426: self = .hasDebugRedact - case 427: self = .hasDefaultValue - case 428: self = .hasDeprecated - case 429: self = .hasDeprecatedLegacyJsonFieldConflicts - case 430: self = .hasDeprecationWarning - case 431: self = .hasDoubleValue - case 432: self = .hasEdition - case 433: self = .hasEditionDeprecated - case 434: self = .hasEditionIntroduced - case 435: self = .hasEditionRemoved - case 436: self = .hasEnd - case 437: self = .hasEnumType - case 438: self = .hasExtendee - case 439: self = .hasExtensionValue - case 440: self = .hasFeatures - case 441: self = .hasFeatureSupport - case 442: self = .hasFieldPresence - case 443: self = .hasFixedFeatures - case 444: self = .hasFullName - case 445: self = .hasGoPackage - case 446: self = .hash - case 447: self = .hashable - case 448: self = .hasher - case 449: self = .hashVisitor - case 450: self = .hasIdempotencyLevel - case 451: self = .hasIdentifierValue - case 452: self = .hasInputType - case 453: self = .hasIsExtension - case 454: self = .hasJavaGenerateEqualsAndHash - case 455: self = .hasJavaGenericServices - case 456: self = .hasJavaMultipleFiles - case 457: self = .hasJavaOuterClassname - case 458: self = .hasJavaPackage - case 459: self = .hasJavaStringCheckUtf8 - case 460: self = .hasJsonFormat - case 461: self = .hasJsonName - case 462: self = .hasJstype - case 463: self = .hasLabel - case 464: self = .hasLazy - case 465: self = .hasLeadingComments - case 466: self = .hasMapEntry - case 467: self = .hasMaximumEdition - case 468: self = .hasMessageEncoding - case 469: self = .hasMessageSetWireFormat - case 470: self = .hasMinimumEdition - case 471: self = .hasName - case 472: self = .hasNamePart - case 473: self = .hasNegativeIntValue - case 474: self = .hasNoStandardDescriptorAccessor - case 475: self = .hasNumber - case 476: self = .hasObjcClassPrefix - case 477: self = .hasOneofIndex - case 478: self = .hasOptimizeFor - case 479: self = .hasOptions - case 480: self = .hasOutputType - case 481: self = .hasOverridableFeatures - case 482: self = .hasPackage - case 483: self = .hasPacked - case 484: self = .hasPhpClassPrefix - case 485: self = .hasPhpMetadataNamespace - case 486: self = .hasPhpNamespace - case 487: self = .hasPositiveIntValue - case 488: self = .hasProto3Optional - case 489: self = .hasPyGenericServices - case 490: self = .hasRepeated - case 491: self = .hasRepeatedFieldEncoding - case 492: self = .hasReserved - case 493: self = .hasRetention - case 494: self = .hasRubyPackage - case 495: self = .hasSemantic - case 496: self = .hasServerStreaming - case 497: self = .hasSourceCodeInfo - case 498: self = .hasSourceContext - case 499: self = .hasSourceFile - case 500: self = .hasStart - case 501: self = .hasStringValue - case 502: self = .hasSwiftPrefix - case 503: self = .hasSyntax - case 504: self = .hasTrailingComments - case 505: self = .hasType - case 506: self = .hasTypeName - case 507: self = .hasUnverifiedLazy - case 508: self = .hasUtf8Validation - case 509: self = .hasValue - case 510: self = .hasVerification - case 511: self = .hasWeak - case 512: self = .hour - case 513: self = .i - case 514: self = .idempotencyLevel - case 515: self = .identifierValue - case 516: self = .if - case 517: self = .ignoreUnknownExtensionFields - case 518: self = .ignoreUnknownFields - case 519: self = .index - case 520: self = .init_ - case 521: self = .inout - case 522: self = .inputType - case 523: self = .insert - case 524: self = .int - case 525: self = .int32 - case 526: self = .int32Value - case 527: self = .int64 - case 528: self = .int64Value - case 529: self = .int8 - case 530: self = .integerLiteral - case 531: self = .integerLiteralType - case 532: self = .intern - case 533: self = .internal - case 534: self = .internalState - case 535: self = .into - case 536: self = .ints - case 537: self = .isA - case 538: self = .isEqual - case 539: self = .isEqualTo - case 540: self = .isExtension - case 541: self = .isInitialized - case 542: self = .isNegative - case 543: self = .itemTagsEncodedSize - case 544: self = .iterator - case 545: self = .javaGenerateEqualsAndHash - case 546: self = .javaGenericServices - case 547: self = .javaMultipleFiles - case 548: self = .javaOuterClassname - case 549: self = .javaPackage - case 550: self = .javaStringCheckUtf8 - case 551: self = .jsondecoder - case 552: self = .jsondecodingError - case 553: self = .jsondecodingOptions - case 554: self = .jsonEncoder - case 555: self = .jsonencodingError - case 556: self = .jsonencodingOptions - case 557: self = .jsonencodingVisitor - case 558: self = .jsonFormat - case 559: self = .jsonmapEncodingVisitor - case 560: self = .jsonName - case 561: self = .jsonPath - case 562: self = .jsonPaths - case 563: self = .jsonscanner - case 564: self = .jsonString - case 565: self = .jsonText - case 566: self = .jsonUtf8Bytes - case 567: self = .jsonUtf8Data - case 568: self = .jstype - case 569: self = .k - case 570: self = .kChunkSize - case 571: self = .key - case 572: self = .keyField - case 573: self = .keyFieldOpt - case 574: self = .keyType - case 575: self = .kind - case 576: self = .l - case 577: self = .label - case 578: self = .lazy - case 579: self = .leadingComments - case 580: self = .leadingDetachedComments - case 581: self = .length - case 582: self = .lessThan - case 583: self = .let - case 584: self = .lhs - case 585: self = .list - case 586: self = .listOfMessages - case 587: self = .listValue - case 588: self = .littleEndian - case 589: self = .load - case 590: self = .localHasher - case 591: self = .location - case 592: self = .m - case 593: self = .major - case 594: self = .makeAsyncIterator - case 595: self = .makeIterator - case 596: self = .mapEntry - case 597: self = .mapKeyType - case 598: self = .mapToMessages - case 599: self = .mapValueType - case 600: self = .mapVisitor - case 601: self = .maximumEdition - case 602: self = .mdayStart - case 603: self = .merge - case 604: self = .message - case 605: self = .messageDepthLimit - case 606: self = .messageEncoding - case 607: self = .messageExtension - case 608: self = .messageImplementationBase - case 609: self = .messageOptions - case 610: self = .messageSet - case 611: self = .messageSetWireFormat - case 612: self = .messageSize - case 613: self = .messageType - case 614: self = .method - case 615: self = .methodDescriptorProto - case 616: self = .methodOptions - case 617: self = .methods - case 618: self = .min - case 619: self = .minimumEdition - case 620: self = .minor - case 621: self = .mixin - case 622: self = .mixins - case 623: self = .modifier - case 624: self = .modify - case 625: self = .month - case 626: self = .msgExtension - case 627: self = .mutating - case 628: self = .n - case 629: self = .name - case 630: self = .nameDescription - case 631: self = .nameMap - case 632: self = .namePart - case 633: self = .names - case 634: self = .nanos - case 635: self = .negativeIntValue - case 636: self = .nestedType - case 637: self = .newL - case 638: self = .newList - case 639: self = .newValue - case 640: self = .next - case 641: self = .nextByte - case 642: self = .nextFieldNumber - case 643: self = .nextVarInt - case 644: self = .nil - case 645: self = .nilLiteral - case 646: self = .noStandardDescriptorAccessor - case 647: self = .nullValue - case 648: self = .number - case 649: self = .numberValue - case 650: self = .objcClassPrefix - case 651: self = .of - case 652: self = .oneofDecl - case 653: self = .oneofDescriptorProto - case 654: self = .oneofIndex - case 655: self = .oneofOptions - case 656: self = .oneofs - case 657: self = .oneOfKind - case 658: self = .optimizeFor - case 659: self = .optimizeMode - case 660: self = .option - case 661: self = .optionalEnumExtensionField - case 662: self = .optionalExtensionField - case 663: self = .optionalGroupExtensionField - case 664: self = .optionalMessageExtensionField - case 665: self = .optionRetention - case 666: self = .options - case 667: self = .optionTargetType - case 668: self = .other - case 669: self = .others - case 670: self = .out - case 671: self = .outputType - case 672: self = .overridableFeatures - case 673: self = .p - case 674: self = .package - case 675: self = .packed - case 676: self = .packedEnumExtensionField - case 677: self = .packedExtensionField - case 678: self = .padding - case 679: self = .parent - case 680: self = .parse - case 681: self = .path - case 682: self = .paths - case 683: self = .payload - case 684: self = .payloadSize - case 685: self = .phpClassPrefix - case 686: self = .phpMetadataNamespace - case 687: self = .phpNamespace - case 688: self = .pos - case 689: self = .positiveIntValue - case 690: self = .prefix - case 691: self = .preserveProtoFieldNames - case 692: self = .preTraverse - case 693: self = .printUnknownFields - case 694: self = .proto2 - case 695: self = .proto3DefaultValue - case 696: self = .proto3Optional - case 697: self = .protobufApiversionCheck - case 698: self = .protobufApiversion3 - case 699: self = .protobufBool - case 700: self = .protobufBytes - case 701: self = .protobufDouble - case 702: self = .protobufEnumMap - case 703: self = .protobufExtension - case 704: self = .protobufFixed32 - case 705: self = .protobufFixed64 - case 706: self = .protobufFloat - case 707: self = .protobufInt32 - case 708: self = .protobufInt64 - case 709: self = .protobufMap - case 710: self = .protobufMessageMap - case 711: self = .protobufSfixed32 - case 712: self = .protobufSfixed64 - case 713: self = .protobufSint32 - case 714: self = .protobufSint64 - case 715: self = .protobufString - case 716: self = .protobufUint32 - case 717: self = .protobufUint64 - case 718: self = .protobufExtensionFieldValues - case 719: self = .protobufFieldNumber - case 720: self = .protobufGeneratedIsEqualTo - case 721: self = .protobufNameMap - case 722: self = .protobufNewField - case 723: self = .protobufPackage - case 724: self = .protocol - case 725: self = .protoFieldName - case 726: self = .protoMessageName - case 727: self = .protoNameProviding - case 728: self = .protoPaths - case 729: self = .public - case 730: self = .publicDependency - case 731: self = .putBoolValue - case 732: self = .putBytesValue - case 733: self = .putDoubleValue - case 734: self = .putEnumValue - case 735: self = .putFixedUint32 - case 736: self = .putFixedUint64 - case 737: self = .putFloatValue - case 738: self = .putInt64 - case 739: self = .putStringValue - case 740: self = .putUint64 - case 741: self = .putUint64Hex - case 742: self = .putVarInt - case 743: self = .putZigZagVarInt - case 744: self = .pyGenericServices - case 745: self = .r - case 746: self = .rawChars - case 747: self = .rawRepresentable - case 748: self = .rawValue_ - case 749: self = .read4HexDigits - case 750: self = .readBytes - case 751: self = .register - case 752: self = .repeated - case 753: self = .repeatedEnumExtensionField - case 754: self = .repeatedExtensionField - case 755: self = .repeatedFieldEncoding - case 756: self = .repeatedGroupExtensionField - case 757: self = .repeatedMessageExtensionField - case 758: self = .repeating - case 759: self = .requestStreaming - case 760: self = .requestTypeURL - case 761: self = .requiredSize - case 762: self = .responseStreaming - case 763: self = .responseTypeURL - case 764: self = .result - case 765: self = .retention - case 766: self = .rethrows - case 767: self = .return - case 768: self = .returnType - case 769: self = .revision - case 770: self = .rhs - case 771: self = .root - case 772: self = .rubyPackage - case 773: self = .s - case 774: self = .sawBackslash - case 775: self = .sawSection4Characters - case 776: self = .sawSection5Characters - case 777: self = .scan - case 778: self = .scanner - case 779: self = .seconds - case 780: self = .self_ - case 781: self = .semantic - case 782: self = .sendable - case 783: self = .separator - case 784: self = .serialize - case 785: self = .serializedBytes - case 786: self = .serializedData - case 787: self = .serializedSize - case 788: self = .serverStreaming - case 789: self = .service - case 790: self = .serviceDescriptorProto - case 791: self = .serviceOptions - case 792: self = .set - case 793: self = .setExtensionValue - case 794: self = .shift - case 795: self = .simpleExtensionMap - case 796: self = .size - case 797: self = .sizer - case 798: self = .source - case 799: self = .sourceCodeInfo - case 800: self = .sourceContext - case 801: self = .sourceEncoding - case 802: self = .sourceFile - case 803: self = .span - case 804: self = .split - case 805: self = .start - case 806: self = .startArray - case 807: self = .startArrayObject - case 808: self = .startField - case 809: self = .startIndex - case 810: self = .startMessageField - case 811: self = .startObject - case 812: self = .startRegularField - case 813: self = .state - case 814: self = .static - case 815: self = .staticString - case 816: self = .storage - case 817: self = .string - case 818: self = .stringLiteral - case 819: self = .stringLiteralType - case 820: self = .stringResult - case 821: self = .stringValue - case 822: self = .struct - case 823: self = .structValue - case 824: self = .subDecoder - case 825: self = .subscript - case 826: self = .subVisitor - case 827: self = .swift - case 828: self = .swiftPrefix - case 829: self = .swiftProtobufContiguousBytes - case 830: self = .syntax - case 831: self = .t - case 832: self = .tag - case 833: self = .targets - case 834: self = .terminator - case 835: self = .testDecoder - case 836: self = .text - case 837: self = .textDecoder - case 838: self = .textFormatDecoder - case 839: self = .textFormatDecodingError - case 840: self = .textFormatDecodingOptions - case 841: self = .textFormatEncodingOptions - case 842: self = .textFormatEncodingVisitor - case 843: self = .textFormatString - case 844: self = .throwOrIgnore - case 845: self = .throws - case 846: self = .timeInterval - case 847: self = .timeIntervalSince1970 - case 848: self = .timeIntervalSinceReferenceDate - case 849: self = .timestamp - case 850: self = .total - case 851: self = .totalArrayDepth - case 852: self = .totalSize - case 853: self = .trailingComments - case 854: self = .traverse - case 855: self = .true - case 856: self = .try - case 857: self = .type - case 858: self = .typealias - case 859: self = .typeEnum - case 860: self = .typeName - case 861: self = .typePrefix - case 862: self = .typeStart - case 863: self = .typeUnknown - case 864: self = .typeURL - case 865: self = .uint32 - case 866: self = .uint32Value - case 867: self = .uint64 - case 868: self = .uint64Value - case 869: self = .uint8 - case 870: self = .unchecked - case 871: self = .unicodeScalarLiteral - case 872: self = .unicodeScalarLiteralType - case 873: self = .unicodeScalars - case 874: self = .unicodeScalarView - case 875: self = .uninterpretedOption - case 876: self = .union - case 877: self = .uniqueStorage - case 878: self = .unknown - case 879: self = .unknownFields - case 880: self = .unknownStorage - case 881: self = .unpackTo - case 882: self = .unsafeBufferPointer - case 883: self = .unsafeMutablePointer - case 884: self = .unsafeMutableRawBufferPointer - case 885: self = .unsafeRawBufferPointer - case 886: self = .unsafeRawPointer - case 887: self = .unverifiedLazy - case 888: self = .updatedOptions - case 889: self = .url - case 890: self = .useDeterministicOrdering - case 891: self = .utf8 - case 892: self = .utf8Ptr - case 893: self = .utf8ToDouble - case 894: self = .utf8Validation - case 895: self = .utf8View - case 896: self = .v - case 897: self = .value - case 898: self = .valueField - case 899: self = .values - case 900: self = .valueType - case 901: self = .var - case 902: self = .verification - case 903: self = .verificationState - case 904: self = .version - case 905: self = .versionString - case 906: self = .visitExtensionFields - case 907: self = .visitExtensionFieldsAsMessageSet - case 908: self = .visitMapField - case 909: self = .visitor - case 910: self = .visitPacked - case 911: self = .visitPackedBoolField - case 912: self = .visitPackedDoubleField - case 913: self = .visitPackedEnumField - case 914: self = .visitPackedFixed32Field - case 915: self = .visitPackedFixed64Field - case 916: self = .visitPackedFloatField - case 917: self = .visitPackedInt32Field - case 918: self = .visitPackedInt64Field - case 919: self = .visitPackedSfixed32Field - case 920: self = .visitPackedSfixed64Field - case 921: self = .visitPackedSint32Field - case 922: self = .visitPackedSint64Field - case 923: self = .visitPackedUint32Field - case 924: self = .visitPackedUint64Field - case 925: self = .visitRepeated - case 926: self = .visitRepeatedBoolField - case 927: self = .visitRepeatedBytesField - case 928: self = .visitRepeatedDoubleField - case 929: self = .visitRepeatedEnumField - case 930: self = .visitRepeatedFixed32Field - case 931: self = .visitRepeatedFixed64Field - case 932: self = .visitRepeatedFloatField - case 933: self = .visitRepeatedGroupField - case 934: self = .visitRepeatedInt32Field - case 935: self = .visitRepeatedInt64Field - case 936: self = .visitRepeatedMessageField - case 937: self = .visitRepeatedSfixed32Field - case 938: self = .visitRepeatedSfixed64Field - case 939: self = .visitRepeatedSint32Field - case 940: self = .visitRepeatedSint64Field - case 941: self = .visitRepeatedStringField - case 942: self = .visitRepeatedUint32Field - case 943: self = .visitRepeatedUint64Field - case 944: self = .visitSingular - case 945: self = .visitSingularBoolField - case 946: self = .visitSingularBytesField - case 947: self = .visitSingularDoubleField - case 948: self = .visitSingularEnumField - case 949: self = .visitSingularFixed32Field - case 950: self = .visitSingularFixed64Field - case 951: self = .visitSingularFloatField - case 952: self = .visitSingularGroupField - case 953: self = .visitSingularInt32Field - case 954: self = .visitSingularInt64Field - case 955: self = .visitSingularMessageField - case 956: self = .visitSingularSfixed32Field - case 957: self = .visitSingularSfixed64Field - case 958: self = .visitSingularSint32Field - case 959: self = .visitSingularSint64Field - case 960: self = .visitSingularStringField - case 961: self = .visitSingularUint32Field - case 962: self = .visitSingularUint64Field - case 963: self = .visitUnknown - case 964: self = .wasDecoded - case 965: self = .weak - case 966: self = .weakDependency - case 967: self = .where - case 968: self = .wireFormat - case 969: self = .with - case 970: self = .withUnsafeBytes - case 971: self = .withUnsafeMutableBytes - case 972: self = .work - case 973: self = .wrapped - case 974: self = .wrappedType - case 975: self = .wrappedValue - case 976: self = .written - case 977: self = .yday + case 12: self = .anyTypeUrlnotRegistered + case 13: self = .anyUnpackError + case 14: self = .api + case 15: self = .appended + case 16: self = .appendUintHex + case 17: self = .appendUnknown + case 18: self = .areAllInitialized + case 19: self = .array + case 20: self = .arrayDepth + case 21: self = .arrayLiteral + case 22: self = .arraySeparator + case 23: self = .as + case 24: self = .asciiOpenCurlyBracket + case 25: self = .asciiZero + case 26: self = .async + case 27: self = .asyncIterator + case 28: self = .asyncIteratorProtocol + case 29: self = .asyncMessageSequence + case 30: self = .available + case 31: self = .b + case 32: self = .base + case 33: self = .base64Values + case 34: self = .baseAddress + case 35: self = .baseType + case 36: self = .begin + case 37: self = .binary + case 38: self = .binaryDecoder + case 39: self = .binaryDecoding + case 40: self = .binaryDecodingError + case 41: self = .binaryDecodingOptions + case 42: self = .binaryDelimited + case 43: self = .binaryEncoder + case 44: self = .binaryEncoding + case 45: self = .binaryEncodingError + case 46: self = .binaryEncodingMessageSetSizeVisitor + case 47: self = .binaryEncodingMessageSetVisitor + case 48: self = .binaryEncodingOptions + case 49: self = .binaryEncodingSizeVisitor + case 50: self = .binaryEncodingVisitor + case 51: self = .binaryOptions + case 52: self = .binaryProtobufDelimitedMessages + case 53: self = .binaryStreamDecoding + case 54: self = .binaryStreamDecodingError + case 55: self = .bitPattern + case 56: self = .body + case 57: self = .bool + case 58: self = .booleanLiteral + case 59: self = .booleanLiteralType + case 60: self = .boolValue + case 61: self = .buffer + case 62: self = .bytes + case 63: self = .bytesInGroup + case 64: self = .bytesNeeded + case 65: self = .bytesRead + case 66: self = .bytesValue + case 67: self = .c + case 68: self = .capitalizeNext + case 69: self = .cardinality + case 70: self = .caseIterable + case 71: self = .ccEnableArenas + case 72: self = .ccGenericServices + case 73: self = .character + case 74: self = .chars + case 75: self = .chunk + case 76: self = .class + case 77: self = .clearAggregateValue + case 78: self = .clearAllowAlias + case 79: self = .clearBegin + case 80: self = .clearCcEnableArenas + case 81: self = .clearCcGenericServices + case 82: self = .clearClientStreaming + case 83: self = .clearCsharpNamespace + case 84: self = .clearCtype + case 85: self = .clearDebugRedact + case 86: self = .clearDefaultValue + case 87: self = .clearDeprecated + case 88: self = .clearDeprecatedLegacyJsonFieldConflicts + case 89: self = .clearDeprecationWarning + case 90: self = .clearDoubleValue + case 91: self = .clearEdition + case 92: self = .clearEditionDeprecated + case 93: self = .clearEditionIntroduced + case 94: self = .clearEditionRemoved + case 95: self = .clearEnd + case 96: self = .clearEnumType + case 97: self = .clearExtendee + case 98: self = .clearExtensionValue + case 99: self = .clearFeatures + case 100: self = .clearFeatureSupport + case 101: self = .clearFieldPresence + case 102: self = .clearFixedFeatures + case 103: self = .clearFullName + case 104: self = .clearGoPackage + case 105: self = .clearIdempotencyLevel + case 106: self = .clearIdentifierValue + case 107: self = .clearInputType + case 108: self = .clearIsExtension + case 109: self = .clearJavaGenerateEqualsAndHash + case 110: self = .clearJavaGenericServices + case 111: self = .clearJavaMultipleFiles + case 112: self = .clearJavaOuterClassname + case 113: self = .clearJavaPackage + case 114: self = .clearJavaStringCheckUtf8 + case 115: self = .clearJsonFormat + case 116: self = .clearJsonName + case 117: self = .clearJstype + case 118: self = .clearLabel + case 119: self = .clearLazy + case 120: self = .clearLeadingComments + case 121: self = .clearMapEntry + case 122: self = .clearMaximumEdition + case 123: self = .clearMessageEncoding + case 124: self = .clearMessageSetWireFormat + case 125: self = .clearMinimumEdition + case 126: self = .clearName + case 127: self = .clearNamePart + case 128: self = .clearNegativeIntValue + case 129: self = .clearNoStandardDescriptorAccessor + case 130: self = .clearNumber + case 131: self = .clearObjcClassPrefix + case 132: self = .clearOneofIndex + case 133: self = .clearOptimizeFor + case 134: self = .clearOptions + case 135: self = .clearOutputType + case 136: self = .clearOverridableFeatures + case 137: self = .clearPackage + case 138: self = .clearPacked + case 139: self = .clearPhpClassPrefix + case 140: self = .clearPhpMetadataNamespace + case 141: self = .clearPhpNamespace + case 142: self = .clearPositiveIntValue + case 143: self = .clearProto3Optional + case 144: self = .clearPyGenericServices + case 145: self = .clearRepeated + case 146: self = .clearRepeatedFieldEncoding + case 147: self = .clearReserved + case 148: self = .clearRetention + case 149: self = .clearRubyPackage + case 150: self = .clearSemantic + case 151: self = .clearServerStreaming + case 152: self = .clearSourceCodeInfo + case 153: self = .clearSourceContext + case 154: self = .clearSourceFile + case 155: self = .clearStart + case 156: self = .clearStringValue + case 157: self = .clearSwiftPrefix + case 158: self = .clearSyntax + case 159: self = .clearTrailingComments + case 160: self = .clearType + case 161: self = .clearTypeName + case 162: self = .clearUnverifiedLazy + case 163: self = .clearUtf8Validation + case 164: self = .clearValue + case 165: self = .clearVerification + case 166: self = .clearWeak + case 167: self = .clientStreaming + case 168: self = .code + case 169: self = .codePoint + case 170: self = .codeUnits + case 171: self = .collection + case 172: self = .com + case 173: self = .comma + case 174: self = .consumedBytes + case 175: self = .contentsOf + case 176: self = .copy + case 177: self = .count + case 178: self = .countVarintsInBuffer + case 179: self = .csharpNamespace + case 180: self = .ctype + case 181: self = .customCodable + case 182: self = .customDebugStringConvertible + case 183: self = .customStringConvertible + case 184: self = .d + case 185: self = .data + case 186: self = .dataResult + case 187: self = .date + case 188: self = .daySec + case 189: self = .daysSinceEpoch + case 190: self = .debugDescription_ + case 191: self = .debugRedact + case 192: self = .declaration + case 193: self = .decoded + case 194: self = .decodedFromJsonnull + case 195: self = .decodeExtensionField + case 196: self = .decodeExtensionFieldsAsMessageSet + case 197: self = .decodeJson + case 198: self = .decodeMapField + case 199: self = .decodeMessage + case 200: self = .decoder + case 201: self = .decodeRepeated + case 202: self = .decodeRepeatedBoolField + case 203: self = .decodeRepeatedBytesField + case 204: self = .decodeRepeatedDoubleField + case 205: self = .decodeRepeatedEnumField + case 206: self = .decodeRepeatedFixed32Field + case 207: self = .decodeRepeatedFixed64Field + case 208: self = .decodeRepeatedFloatField + case 209: self = .decodeRepeatedGroupField + case 210: self = .decodeRepeatedInt32Field + case 211: self = .decodeRepeatedInt64Field + case 212: self = .decodeRepeatedMessageField + case 213: self = .decodeRepeatedSfixed32Field + case 214: self = .decodeRepeatedSfixed64Field + case 215: self = .decodeRepeatedSint32Field + case 216: self = .decodeRepeatedSint64Field + case 217: self = .decodeRepeatedStringField + case 218: self = .decodeRepeatedUint32Field + case 219: self = .decodeRepeatedUint64Field + case 220: self = .decodeSingular + case 221: self = .decodeSingularBoolField + case 222: self = .decodeSingularBytesField + case 223: self = .decodeSingularDoubleField + case 224: self = .decodeSingularEnumField + case 225: self = .decodeSingularFixed32Field + case 226: self = .decodeSingularFixed64Field + case 227: self = .decodeSingularFloatField + case 228: self = .decodeSingularGroupField + case 229: self = .decodeSingularInt32Field + case 230: self = .decodeSingularInt64Field + case 231: self = .decodeSingularMessageField + case 232: self = .decodeSingularSfixed32Field + case 233: self = .decodeSingularSfixed64Field + case 234: self = .decodeSingularSint32Field + case 235: self = .decodeSingularSint64Field + case 236: self = .decodeSingularStringField + case 237: self = .decodeSingularUint32Field + case 238: self = .decodeSingularUint64Field + case 239: self = .decodeTextFormat + case 240: self = .defaultAnyTypeUrlprefix + case 241: self = .defaults + case 242: self = .defaultValue + case 243: self = .dependency + case 244: self = .deprecated + case 245: self = .deprecatedLegacyJsonFieldConflicts + case 246: self = .deprecationWarning + case 247: self = .description_ + case 248: self = .descriptorProto + case 249: self = .dictionary + case 250: self = .dictionaryLiteral + case 251: self = .digit + case 252: self = .digit0 + case 253: self = .digit1 + case 254: self = .digitCount + case 255: self = .digits + case 256: self = .digitValue + case 257: self = .discardableResult + case 258: self = .discardUnknownFields + case 259: self = .double + case 260: self = .doubleValue + case 261: self = .duration + case 262: self = .e + case 263: self = .edition + case 264: self = .editionDefault + case 265: self = .editionDefaults + case 266: self = .editionDeprecated + case 267: self = .editionIntroduced + case 268: self = .editionRemoved + case 269: self = .element + case 270: self = .elements + case 271: self = .emitExtensionFieldName + case 272: self = .emitFieldName + case 273: self = .emitFieldNumber + case 274: self = .empty + case 275: self = .encodeAsBytes + case 276: self = .encoded + case 277: self = .encodedJsonstring + case 278: self = .encodedSize + case 279: self = .encodeField + case 280: self = .encoder + case 281: self = .end + case 282: self = .endArray + case 283: self = .endMessageField + case 284: self = .endObject + case 285: self = .endRegularField + case 286: self = .enum + case 287: self = .enumDescriptorProto + case 288: self = .enumOptions + case 289: self = .enumReservedRange + case 290: self = .enumType + case 291: self = .enumvalue + case 292: self = .enumValueDescriptorProto + case 293: self = .enumValueOptions + case 294: self = .equatable + case 295: self = .error + case 296: self = .expressibleByArrayLiteral + case 297: self = .expressibleByDictionaryLiteral + case 298: self = .ext + case 299: self = .extDecoder + case 300: self = .extendedGraphemeClusterLiteral + case 301: self = .extendedGraphemeClusterLiteralType + case 302: self = .extendee + case 303: self = .extensibleMessage + case 304: self = .extension + case 305: self = .extensionField + case 306: self = .extensionFieldNumber + case 307: self = .extensionFieldValueSet + case 308: self = .extensionMap + case 309: self = .extensionRange + case 310: self = .extensionRangeOptions + case 311: self = .extensions + case 312: self = .extras + case 313: self = .f + case 314: self = .false + case 315: self = .features + case 316: self = .featureSet + case 317: self = .featureSetDefaults + case 318: self = .featureSetEditionDefault + case 319: self = .featureSupport + case 320: self = .field + case 321: self = .fieldData + case 322: self = .fieldDescriptorProto + case 323: self = .fieldMask + case 324: self = .fieldName + case 325: self = .fieldNameCount + case 326: self = .fieldNum + case 327: self = .fieldNumber + case 328: self = .fieldNumberForProto + case 329: self = .fieldOptions + case 330: self = .fieldPresence + case 331: self = .fields + case 332: self = .fieldSize + case 333: self = .fieldTag + case 334: self = .fieldType + case 335: self = .file + case 336: self = .fileDescriptorProto + case 337: self = .fileDescriptorSet + case 338: self = .fileName + case 339: self = .fileOptions + case 340: self = .filter + case 341: self = .final + case 342: self = .finiteOnly + case 343: self = .first + case 344: self = .firstItem + case 345: self = .fixedFeatures + case 346: self = .float + case 347: self = .floatLiteral + case 348: self = .floatLiteralType + case 349: self = .floatValue + case 350: self = .forMessageName + case 351: self = .formUnion + case 352: self = .forReadingFrom + case 353: self = .forTypeURL + case 354: self = .forwardParser + case 355: self = .forWritingInto + case 356: self = .from + case 357: self = .fromAscii2 + case 358: self = .fromAscii4 + case 359: self = .fromByteOffset + case 360: self = .fromHexDigit + case 361: self = .fullName + case 362: self = .func + case 363: self = .function + case 364: self = .g + case 365: self = .generatedCodeInfo + case 366: self = .get + case 367: self = .getExtensionValue + case 368: self = .googleapis + case 369: self = .googleProtobufAny + case 370: self = .googleProtobufApi + case 371: self = .googleProtobufBoolValue + case 372: self = .googleProtobufBytesValue + case 373: self = .googleProtobufDescriptorProto + case 374: self = .googleProtobufDoubleValue + case 375: self = .googleProtobufDuration + case 376: self = .googleProtobufEdition + case 377: self = .googleProtobufEmpty + case 378: self = .googleProtobufEnum + case 379: self = .googleProtobufEnumDescriptorProto + case 380: self = .googleProtobufEnumOptions + case 381: self = .googleProtobufEnumValue + case 382: self = .googleProtobufEnumValueDescriptorProto + case 383: self = .googleProtobufEnumValueOptions + case 384: self = .googleProtobufExtensionRangeOptions + case 385: self = .googleProtobufFeatureSet + case 386: self = .googleProtobufFeatureSetDefaults + case 387: self = .googleProtobufField + case 388: self = .googleProtobufFieldDescriptorProto + case 389: self = .googleProtobufFieldMask + case 390: self = .googleProtobufFieldOptions + case 391: self = .googleProtobufFileDescriptorProto + case 392: self = .googleProtobufFileDescriptorSet + case 393: self = .googleProtobufFileOptions + case 394: self = .googleProtobufFloatValue + case 395: self = .googleProtobufGeneratedCodeInfo + case 396: self = .googleProtobufInt32Value + case 397: self = .googleProtobufInt64Value + case 398: self = .googleProtobufListValue + case 399: self = .googleProtobufMessageOptions + case 400: self = .googleProtobufMethod + case 401: self = .googleProtobufMethodDescriptorProto + case 402: self = .googleProtobufMethodOptions + case 403: self = .googleProtobufMixin + case 404: self = .googleProtobufNullValue + case 405: self = .googleProtobufOneofDescriptorProto + case 406: self = .googleProtobufOneofOptions + case 407: self = .googleProtobufOption + case 408: self = .googleProtobufServiceDescriptorProto + case 409: self = .googleProtobufServiceOptions + case 410: self = .googleProtobufSourceCodeInfo + case 411: self = .googleProtobufSourceContext + case 412: self = .googleProtobufStringValue + case 413: self = .googleProtobufStruct + case 414: self = .googleProtobufSyntax + case 415: self = .googleProtobufTimestamp + case 416: self = .googleProtobufType + case 417: self = .googleProtobufUint32Value + case 418: self = .googleProtobufUint64Value + case 419: self = .googleProtobufUninterpretedOption + case 420: self = .googleProtobufValue + case 421: self = .goPackage + case 422: self = .group + case 423: self = .groupFieldNumberStack + case 424: self = .groupSize + case 425: self = .hadOneofValue + case 426: self = .handleConflictingOneOf + case 427: self = .hasAggregateValue + case 428: self = .hasAllowAlias + case 429: self = .hasBegin + case 430: self = .hasCcEnableArenas + case 431: self = .hasCcGenericServices + case 432: self = .hasClientStreaming + case 433: self = .hasCsharpNamespace + case 434: self = .hasCtype + case 435: self = .hasDebugRedact + case 436: self = .hasDefaultValue + case 437: self = .hasDeprecated + case 438: self = .hasDeprecatedLegacyJsonFieldConflicts + case 439: self = .hasDeprecationWarning + case 440: self = .hasDoubleValue + case 441: self = .hasEdition + case 442: self = .hasEditionDeprecated + case 443: self = .hasEditionIntroduced + case 444: self = .hasEditionRemoved + case 445: self = .hasEnd + case 446: self = .hasEnumType + case 447: self = .hasExtendee + case 448: self = .hasExtensionValue + case 449: self = .hasFeatures + case 450: self = .hasFeatureSupport + case 451: self = .hasFieldPresence + case 452: self = .hasFixedFeatures + case 453: self = .hasFullName + case 454: self = .hasGoPackage + case 455: self = .hash + case 456: self = .hashable + case 457: self = .hasher + case 458: self = .hashVisitor + case 459: self = .hasIdempotencyLevel + case 460: self = .hasIdentifierValue + case 461: self = .hasInputType + case 462: self = .hasIsExtension + case 463: self = .hasJavaGenerateEqualsAndHash + case 464: self = .hasJavaGenericServices + case 465: self = .hasJavaMultipleFiles + case 466: self = .hasJavaOuterClassname + case 467: self = .hasJavaPackage + case 468: self = .hasJavaStringCheckUtf8 + case 469: self = .hasJsonFormat + case 470: self = .hasJsonName + case 471: self = .hasJstype + case 472: self = .hasLabel + case 473: self = .hasLazy + case 474: self = .hasLeadingComments + case 475: self = .hasMapEntry + case 476: self = .hasMaximumEdition + case 477: self = .hasMessageEncoding + case 478: self = .hasMessageSetWireFormat + case 479: self = .hasMinimumEdition + case 480: self = .hasName + case 481: self = .hasNamePart + case 482: self = .hasNegativeIntValue + case 483: self = .hasNoStandardDescriptorAccessor + case 484: self = .hasNumber + case 485: self = .hasObjcClassPrefix + case 486: self = .hasOneofIndex + case 487: self = .hasOptimizeFor + case 488: self = .hasOptions + case 489: self = .hasOutputType + case 490: self = .hasOverridableFeatures + case 491: self = .hasPackage + case 492: self = .hasPacked + case 493: self = .hasPhpClassPrefix + case 494: self = .hasPhpMetadataNamespace + case 495: self = .hasPhpNamespace + case 496: self = .hasPositiveIntValue + case 497: self = .hasProto3Optional + case 498: self = .hasPyGenericServices + case 499: self = .hasRepeated + case 500: self = .hasRepeatedFieldEncoding + case 501: self = .hasReserved + case 502: self = .hasRetention + case 503: self = .hasRubyPackage + case 504: self = .hasSemantic + case 505: self = .hasServerStreaming + case 506: self = .hasSourceCodeInfo + case 507: self = .hasSourceContext + case 508: self = .hasSourceFile + case 509: self = .hasStart + case 510: self = .hasStringValue + case 511: self = .hasSwiftPrefix + case 512: self = .hasSyntax + case 513: self = .hasTrailingComments + case 514: self = .hasType + case 515: self = .hasTypeName + case 516: self = .hasUnverifiedLazy + case 517: self = .hasUtf8Validation + case 518: self = .hasValue + case 519: self = .hasVerification + case 520: self = .hasWeak + case 521: self = .hour + case 522: self = .i + case 523: self = .idempotencyLevel + case 524: self = .identifierValue + case 525: self = .if + case 526: self = .ignoreUnknownExtensionFields + case 527: self = .ignoreUnknownFields + case 528: self = .index + case 529: self = .init_ + case 530: self = .inout + case 531: self = .inputType + case 532: self = .insert + case 533: self = .int + case 534: self = .int32 + case 535: self = .int32Value + case 536: self = .int64 + case 537: self = .int64Value + case 538: self = .int8 + case 539: self = .integerLiteral + case 540: self = .integerLiteralType + case 541: self = .intern + case 542: self = .internal + case 543: self = .internalState + case 544: self = .into + case 545: self = .ints + case 546: self = .isA + case 547: self = .isEqual + case 548: self = .isEqualTo + case 549: self = .isExtension + case 550: self = .isInitialized + case 551: self = .isNegative + case 552: self = .itemTagsEncodedSize + case 553: self = .iterator + case 554: self = .javaGenerateEqualsAndHash + case 555: self = .javaGenericServices + case 556: self = .javaMultipleFiles + case 557: self = .javaOuterClassname + case 558: self = .javaPackage + case 559: self = .javaStringCheckUtf8 + case 560: self = .jsondecoder + case 561: self = .jsondecodingError + case 562: self = .jsondecodingOptions + case 563: self = .jsonEncoder + case 564: self = .jsonencoding + case 565: self = .jsonencodingError + case 566: self = .jsonencodingOptions + case 567: self = .jsonencodingVisitor + case 568: self = .jsonFormat + case 569: self = .jsonmapEncodingVisitor + case 570: self = .jsonName + case 571: self = .jsonPath + case 572: self = .jsonPaths + case 573: self = .jsonscanner + case 574: self = .jsonString + case 575: self = .jsonText + case 576: self = .jsonUtf8Bytes + case 577: self = .jsonUtf8Data + case 578: self = .jstype + case 579: self = .k + case 580: self = .kChunkSize + case 581: self = .key + case 582: self = .keyField + case 583: self = .keyFieldOpt + case 584: self = .keyType + case 585: self = .kind + case 586: self = .l + case 587: self = .label + case 588: self = .lazy + case 589: self = .leadingComments + case 590: self = .leadingDetachedComments + case 591: self = .length + case 592: self = .lessThan + case 593: self = .let + case 594: self = .lhs + case 595: self = .line + case 596: self = .list + case 597: self = .listOfMessages + case 598: self = .listValue + case 599: self = .littleEndian + case 600: self = .load + case 601: self = .localHasher + case 602: self = .location + case 603: self = .m + case 604: self = .major + case 605: self = .makeAsyncIterator + case 606: self = .makeIterator + case 607: self = .malformedLength + case 608: self = .mapEntry + case 609: self = .mapKeyType + case 610: self = .mapToMessages + case 611: self = .mapValueType + case 612: self = .mapVisitor + case 613: self = .maximumEdition + case 614: self = .mdayStart + case 615: self = .merge + case 616: self = .message + case 617: self = .messageDepthLimit + case 618: self = .messageEncoding + case 619: self = .messageExtension + case 620: self = .messageImplementationBase + case 621: self = .messageOptions + case 622: self = .messageSet + case 623: self = .messageSetWireFormat + case 624: self = .messageSize + case 625: self = .messageType + case 626: self = .method + case 627: self = .methodDescriptorProto + case 628: self = .methodOptions + case 629: self = .methods + case 630: self = .min + case 631: self = .minimumEdition + case 632: self = .minor + case 633: self = .mixin + case 634: self = .mixins + case 635: self = .modifier + case 636: self = .modify + case 637: self = .month + case 638: self = .msgExtension + case 639: self = .mutating + case 640: self = .n + case 641: self = .name + case 642: self = .nameDescription + case 643: self = .nameMap + case 644: self = .namePart + case 645: self = .names + case 646: self = .nanos + case 647: self = .negativeIntValue + case 648: self = .nestedType + case 649: self = .newL + case 650: self = .newList + case 651: self = .newValue + case 652: self = .next + case 653: self = .nextByte + case 654: self = .nextFieldNumber + case 655: self = .nextVarInt + case 656: self = .nil + case 657: self = .nilLiteral + case 658: self = .noBytesAvailable + case 659: self = .noStandardDescriptorAccessor + case 660: self = .nullValue + case 661: self = .number + case 662: self = .numberValue + case 663: self = .objcClassPrefix + case 664: self = .of + case 665: self = .oneofDecl + case 666: self = .oneofDescriptorProto + case 667: self = .oneofIndex + case 668: self = .oneofOptions + case 669: self = .oneofs + case 670: self = .oneOfKind + case 671: self = .optimizeFor + case 672: self = .optimizeMode + case 673: self = .option + case 674: self = .optionalEnumExtensionField + case 675: self = .optionalExtensionField + case 676: self = .optionalGroupExtensionField + case 677: self = .optionalMessageExtensionField + case 678: self = .optionRetention + case 679: self = .options + case 680: self = .optionTargetType + case 681: self = .other + case 682: self = .others + case 683: self = .out + case 684: self = .outputType + case 685: self = .overridableFeatures + case 686: self = .p + case 687: self = .package + case 688: self = .packed + case 689: self = .packedEnumExtensionField + case 690: self = .packedExtensionField + case 691: self = .padding + case 692: self = .parent + case 693: self = .parse + case 694: self = .path + case 695: self = .paths + case 696: self = .payload + case 697: self = .payloadSize + case 698: self = .phpClassPrefix + case 699: self = .phpMetadataNamespace + case 700: self = .phpNamespace + case 701: self = .pos + case 702: self = .positiveIntValue + case 703: self = .prefix + case 704: self = .preserveProtoFieldNames + case 705: self = .preTraverse + case 706: self = .printUnknownFields + case 707: self = .proto2 + case 708: self = .proto3DefaultValue + case 709: self = .proto3Optional + case 710: self = .protobufApiversionCheck + case 711: self = .protobufApiversion3 + case 712: self = .protobufBool + case 713: self = .protobufBytes + case 714: self = .protobufDouble + case 715: self = .protobufEnumMap + case 716: self = .protobufExtension + case 717: self = .protobufFixed32 + case 718: self = .protobufFixed64 + case 719: self = .protobufFloat + case 720: self = .protobufInt32 + case 721: self = .protobufInt64 + case 722: self = .protobufMap + case 723: self = .protobufMessageMap + case 724: self = .protobufSfixed32 + case 725: self = .protobufSfixed64 + case 726: self = .protobufSint32 + case 727: self = .protobufSint64 + case 728: self = .protobufString + case 729: self = .protobufUint32 + case 730: self = .protobufUint64 + case 731: self = .protobufExtensionFieldValues + case 732: self = .protobufFieldNumber + case 733: self = .protobufGeneratedIsEqualTo + case 734: self = .protobufNameMap + case 735: self = .protobufNewField + case 736: self = .protobufPackage + case 737: self = .protocol + case 738: self = .protoFieldName + case 739: self = .protoMessageName + case 740: self = .protoNameProviding + case 741: self = .protoPaths + case 742: self = .public + case 743: self = .publicDependency + case 744: self = .putBoolValue + case 745: self = .putBytesValue + case 746: self = .putDoubleValue + case 747: self = .putEnumValue + case 748: self = .putFixedUint32 + case 749: self = .putFixedUint64 + case 750: self = .putFloatValue + case 751: self = .putInt64 + case 752: self = .putStringValue + case 753: self = .putUint64 + case 754: self = .putUint64Hex + case 755: self = .putVarInt + case 756: self = .putZigZagVarInt + case 757: self = .pyGenericServices + case 758: self = .r + case 759: self = .rawChars + case 760: self = .rawRepresentable + case 761: self = .rawValue_ + case 762: self = .read4HexDigits + case 763: self = .readBytes + case 764: self = .register + case 765: self = .repeated + case 766: self = .repeatedEnumExtensionField + case 767: self = .repeatedExtensionField + case 768: self = .repeatedFieldEncoding + case 769: self = .repeatedGroupExtensionField + case 770: self = .repeatedMessageExtensionField + case 771: self = .repeating + case 772: self = .requestStreaming + case 773: self = .requestTypeURL + case 774: self = .requiredSize + case 775: self = .responseStreaming + case 776: self = .responseTypeURL + case 777: self = .result + case 778: self = .retention + case 779: self = .rethrows + case 780: self = .return + case 781: self = .returnType + case 782: self = .revision + case 783: self = .rhs + case 784: self = .root + case 785: self = .rubyPackage + case 786: self = .s + case 787: self = .sawBackslash + case 788: self = .sawSection4Characters + case 789: self = .sawSection5Characters + case 790: self = .scan + case 791: self = .scanner + case 792: self = .seconds + case 793: self = .self_ + case 794: self = .semantic + case 795: self = .sendable + case 796: self = .separator + case 797: self = .serialize + case 798: self = .serializedBytes + case 799: self = .serializedData + case 800: self = .serializedSize + case 801: self = .serverStreaming + case 802: self = .service + case 803: self = .serviceDescriptorProto + case 804: self = .serviceOptions + case 805: self = .set + case 806: self = .setExtensionValue + case 807: self = .shift + case 808: self = .simpleExtensionMap + case 809: self = .size + case 810: self = .sizer + case 811: self = .source + case 812: self = .sourceCodeInfo + case 813: self = .sourceContext + case 814: self = .sourceEncoding + case 815: self = .sourceFile + case 816: self = .sourceLocation + case 817: self = .span + case 818: self = .split + case 819: self = .start + case 820: self = .startArray + case 821: self = .startArrayObject + case 822: self = .startField + case 823: self = .startIndex + case 824: self = .startMessageField + case 825: self = .startObject + case 826: self = .startRegularField + case 827: self = .state + case 828: self = .static + case 829: self = .staticString + case 830: self = .storage + case 831: self = .string + case 832: self = .stringLiteral + case 833: self = .stringLiteralType + case 834: self = .stringResult + case 835: self = .stringValue + case 836: self = .struct + case 837: self = .structValue + case 838: self = .subDecoder + case 839: self = .subscript + case 840: self = .subVisitor + case 841: self = .swift + case 842: self = .swiftPrefix + case 843: self = .swiftProtobufContiguousBytes + case 844: self = .swiftProtobufError + case 845: self = .syntax + case 846: self = .t + case 847: self = .tag + case 848: self = .targets + case 849: self = .terminator + case 850: self = .testDecoder + case 851: self = .text + case 852: self = .textDecoder + case 853: self = .textFormatDecoder + case 854: self = .textFormatDecodingError + case 855: self = .textFormatDecodingOptions + case 856: self = .textFormatEncodingOptions + case 857: self = .textFormatEncodingVisitor + case 858: self = .textFormatString + case 859: self = .throwOrIgnore + case 860: self = .throws + case 861: self = .timeInterval + case 862: self = .timeIntervalSince1970 + case 863: self = .timeIntervalSinceReferenceDate + case 864: self = .timestamp + case 865: self = .tooLarge + case 866: self = .total + case 867: self = .totalArrayDepth + case 868: self = .totalSize + case 869: self = .trailingComments + case 870: self = .traverse + case 871: self = .true + case 872: self = .try + case 873: self = .type + case 874: self = .typealias + case 875: self = .typeEnum + case 876: self = .typeName + case 877: self = .typePrefix + case 878: self = .typeStart + case 879: self = .typeUnknown + case 880: self = .typeURL + case 881: self = .uint32 + case 882: self = .uint32Value + case 883: self = .uint64 + case 884: self = .uint64Value + case 885: self = .uint8 + case 886: self = .unchecked + case 887: self = .unicodeScalarLiteral + case 888: self = .unicodeScalarLiteralType + case 889: self = .unicodeScalars + case 890: self = .unicodeScalarView + case 891: self = .uninterpretedOption + case 892: self = .union + case 893: self = .uniqueStorage + case 894: self = .unknown + case 895: self = .unknownFields + case 896: self = .unknownStorage + case 897: self = .unpackTo + case 898: self = .unregisteredTypeURL + case 899: self = .unsafeBufferPointer + case 900: self = .unsafeMutablePointer + case 901: self = .unsafeMutableRawBufferPointer + case 902: self = .unsafeRawBufferPointer + case 903: self = .unsafeRawPointer + case 904: self = .unverifiedLazy + case 905: self = .updatedOptions + case 906: self = .url + case 907: self = .useDeterministicOrdering + case 908: self = .utf8 + case 909: self = .utf8Ptr + case 910: self = .utf8ToDouble + case 911: self = .utf8Validation + case 912: self = .utf8View + case 913: self = .v + case 914: self = .value + case 915: self = .valueField + case 916: self = .values + case 917: self = .valueType + case 918: self = .var + case 919: self = .verification + case 920: self = .verificationState + case 921: self = .version + case 922: self = .versionString + case 923: self = .visitExtensionFields + case 924: self = .visitExtensionFieldsAsMessageSet + case 925: self = .visitMapField + case 926: self = .visitor + case 927: self = .visitPacked + case 928: self = .visitPackedBoolField + case 929: self = .visitPackedDoubleField + case 930: self = .visitPackedEnumField + case 931: self = .visitPackedFixed32Field + case 932: self = .visitPackedFixed64Field + case 933: self = .visitPackedFloatField + case 934: self = .visitPackedInt32Field + case 935: self = .visitPackedInt64Field + case 936: self = .visitPackedSfixed32Field + case 937: self = .visitPackedSfixed64Field + case 938: self = .visitPackedSint32Field + case 939: self = .visitPackedSint64Field + case 940: self = .visitPackedUint32Field + case 941: self = .visitPackedUint64Field + case 942: self = .visitRepeated + case 943: self = .visitRepeatedBoolField + case 944: self = .visitRepeatedBytesField + case 945: self = .visitRepeatedDoubleField + case 946: self = .visitRepeatedEnumField + case 947: self = .visitRepeatedFixed32Field + case 948: self = .visitRepeatedFixed64Field + case 949: self = .visitRepeatedFloatField + case 950: self = .visitRepeatedGroupField + case 951: self = .visitRepeatedInt32Field + case 952: self = .visitRepeatedInt64Field + case 953: self = .visitRepeatedMessageField + case 954: self = .visitRepeatedSfixed32Field + case 955: self = .visitRepeatedSfixed64Field + case 956: self = .visitRepeatedSint32Field + case 957: self = .visitRepeatedSint64Field + case 958: self = .visitRepeatedStringField + case 959: self = .visitRepeatedUint32Field + case 960: self = .visitRepeatedUint64Field + case 961: self = .visitSingular + case 962: self = .visitSingularBoolField + case 963: self = .visitSingularBytesField + case 964: self = .visitSingularDoubleField + case 965: self = .visitSingularEnumField + case 966: self = .visitSingularFixed32Field + case 967: self = .visitSingularFixed64Field + case 968: self = .visitSingularFloatField + case 969: self = .visitSingularGroupField + case 970: self = .visitSingularInt32Field + case 971: self = .visitSingularInt64Field + case 972: self = .visitSingularMessageField + case 973: self = .visitSingularSfixed32Field + case 974: self = .visitSingularSfixed64Field + case 975: self = .visitSingularSint32Field + case 976: self = .visitSingularSint64Field + case 977: self = .visitSingularStringField + case 978: self = .visitSingularUint32Field + case 979: self = .visitSingularUint64Field + case 980: self = .visitUnknown + case 981: self = .wasDecoded + case 982: self = .weak + case 983: self = .weakDependency + case 984: self = .where + case 985: self = .wireFormat + case 986: self = .with + case 987: self = .withUnsafeBytes + case 988: self = .withUnsafeMutableBytes + case 989: self = .work + case 990: self = .wrapped + case 991: self = .wrappedType + case 992: self = .wrappedValue + case 993: self = .written + case 994: self = .yday default: self = .UNRECOGNIZED(rawValue) } } @@ -2008,975 +2042,992 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, case .anyExtensionField: return 9 case .anyMessageExtension: return 10 case .anyMessageStorage: return 11 - case .anyUnpackError: return 12 - case .api: return 13 - case .appended: return 14 - case .appendUintHex: return 15 - case .appendUnknown: return 16 - case .areAllInitialized: return 17 - case .array: return 18 - case .arrayDepth: return 19 - case .arrayLiteral: return 20 - case .arraySeparator: return 21 - case .as: return 22 - case .asciiOpenCurlyBracket: return 23 - case .asciiZero: return 24 - case .async: return 25 - case .asyncIterator: return 26 - case .asyncIteratorProtocol: return 27 - case .asyncMessageSequence: return 28 - case .available: return 29 - case .b: return 30 - case .base: return 31 - case .base64Values: return 32 - case .baseAddress: return 33 - case .baseType: return 34 - case .begin: return 35 - case .binary: return 36 - case .binaryDecoder: return 37 - case .binaryDecodingError: return 38 - case .binaryDecodingOptions: return 39 - case .binaryDelimited: return 40 - case .binaryEncoder: return 41 - case .binaryEncodingError: return 42 - case .binaryEncodingMessageSetSizeVisitor: return 43 - case .binaryEncodingMessageSetVisitor: return 44 - case .binaryEncodingOptions: return 45 - case .binaryEncodingSizeVisitor: return 46 - case .binaryEncodingVisitor: return 47 - case .binaryOptions: return 48 - case .binaryProtobufDelimitedMessages: return 49 - case .bitPattern: return 50 - case .body: return 51 - case .bool: return 52 - case .booleanLiteral: return 53 - case .booleanLiteralType: return 54 - case .boolValue: return 55 - case .buffer: return 56 - case .bytes: return 57 - case .bytesInGroup: return 58 - case .bytesNeeded: return 59 - case .bytesRead: return 60 - case .bytesValue: return 61 - case .c: return 62 - case .capitalizeNext: return 63 - case .cardinality: return 64 - case .caseIterable: return 65 - case .ccEnableArenas: return 66 - case .ccGenericServices: return 67 - case .character: return 68 - case .chars: return 69 - case .chunk: return 70 - case .class: return 71 - case .clearAggregateValue: return 72 - case .clearAllowAlias: return 73 - case .clearBegin: return 74 - case .clearCcEnableArenas: return 75 - case .clearCcGenericServices: return 76 - case .clearClientStreaming: return 77 - case .clearCsharpNamespace: return 78 - case .clearCtype: return 79 - case .clearDebugRedact: return 80 - case .clearDefaultValue: return 81 - case .clearDeprecated: return 82 - case .clearDeprecatedLegacyJsonFieldConflicts: return 83 - case .clearDeprecationWarning: return 84 - case .clearDoubleValue: return 85 - case .clearEdition: return 86 - case .clearEditionDeprecated: return 87 - case .clearEditionIntroduced: return 88 - case .clearEditionRemoved: return 89 - case .clearEnd: return 90 - case .clearEnumType: return 91 - case .clearExtendee: return 92 - case .clearExtensionValue: return 93 - case .clearFeatures: return 94 - case .clearFeatureSupport: return 95 - case .clearFieldPresence: return 96 - case .clearFixedFeatures: return 97 - case .clearFullName: return 98 - case .clearGoPackage: return 99 - case .clearIdempotencyLevel: return 100 - case .clearIdentifierValue: return 101 - case .clearInputType: return 102 - case .clearIsExtension: return 103 - case .clearJavaGenerateEqualsAndHash: return 104 - case .clearJavaGenericServices: return 105 - case .clearJavaMultipleFiles: return 106 - case .clearJavaOuterClassname: return 107 - case .clearJavaPackage: return 108 - case .clearJavaStringCheckUtf8: return 109 - case .clearJsonFormat: return 110 - case .clearJsonName: return 111 - case .clearJstype: return 112 - case .clearLabel: return 113 - case .clearLazy: return 114 - case .clearLeadingComments: return 115 - case .clearMapEntry: return 116 - case .clearMaximumEdition: return 117 - case .clearMessageEncoding: return 118 - case .clearMessageSetWireFormat: return 119 - case .clearMinimumEdition: return 120 - case .clearName: return 121 - case .clearNamePart: return 122 - case .clearNegativeIntValue: return 123 - case .clearNoStandardDescriptorAccessor: return 124 - case .clearNumber: return 125 - case .clearObjcClassPrefix: return 126 - case .clearOneofIndex: return 127 - case .clearOptimizeFor: return 128 - case .clearOptions: return 129 - case .clearOutputType: return 130 - case .clearOverridableFeatures: return 131 - case .clearPackage: return 132 - case .clearPacked: return 133 - case .clearPhpClassPrefix: return 134 - case .clearPhpMetadataNamespace: return 135 - case .clearPhpNamespace: return 136 - case .clearPositiveIntValue: return 137 - case .clearProto3Optional: return 138 - case .clearPyGenericServices: return 139 - case .clearRepeated: return 140 - case .clearRepeatedFieldEncoding: return 141 - case .clearReserved: return 142 - case .clearRetention: return 143 - case .clearRubyPackage: return 144 - case .clearSemantic: return 145 - case .clearServerStreaming: return 146 - case .clearSourceCodeInfo: return 147 - case .clearSourceContext: return 148 - case .clearSourceFile: return 149 - case .clearStart: return 150 - case .clearStringValue: return 151 - case .clearSwiftPrefix: return 152 - case .clearSyntax: return 153 - case .clearTrailingComments: return 154 - case .clearType: return 155 - case .clearTypeName: return 156 - case .clearUnverifiedLazy: return 157 - case .clearUtf8Validation: return 158 - case .clearValue: return 159 - case .clearVerification: return 160 - case .clearWeak: return 161 - case .clientStreaming: return 162 - case .codePoint: return 163 - case .codeUnits: return 164 - case .collection: return 165 - case .com: return 166 - case .comma: return 167 - case .consumedBytes: return 168 - case .contentsOf: return 169 - case .count: return 170 - case .countVarintsInBuffer: return 171 - case .csharpNamespace: return 172 - case .ctype: return 173 - case .customCodable: return 174 - case .customDebugStringConvertible: return 175 - case .d: return 176 - case .data: return 177 - case .dataResult: return 178 - case .date: return 179 - case .daySec: return 180 - case .daysSinceEpoch: return 181 - case .debugDescription_: return 182 - case .debugRedact: return 183 - case .declaration: return 184 - case .decoded: return 185 - case .decodedFromJsonnull: return 186 - case .decodeExtensionField: return 187 - case .decodeExtensionFieldsAsMessageSet: return 188 - case .decodeJson: return 189 - case .decodeMapField: return 190 - case .decodeMessage: return 191 - case .decoder: return 192 - case .decodeRepeated: return 193 - case .decodeRepeatedBoolField: return 194 - case .decodeRepeatedBytesField: return 195 - case .decodeRepeatedDoubleField: return 196 - case .decodeRepeatedEnumField: return 197 - case .decodeRepeatedFixed32Field: return 198 - case .decodeRepeatedFixed64Field: return 199 - case .decodeRepeatedFloatField: return 200 - case .decodeRepeatedGroupField: return 201 - case .decodeRepeatedInt32Field: return 202 - case .decodeRepeatedInt64Field: return 203 - case .decodeRepeatedMessageField: return 204 - case .decodeRepeatedSfixed32Field: return 205 - case .decodeRepeatedSfixed64Field: return 206 - case .decodeRepeatedSint32Field: return 207 - case .decodeRepeatedSint64Field: return 208 - case .decodeRepeatedStringField: return 209 - case .decodeRepeatedUint32Field: return 210 - case .decodeRepeatedUint64Field: return 211 - case .decodeSingular: return 212 - case .decodeSingularBoolField: return 213 - case .decodeSingularBytesField: return 214 - case .decodeSingularDoubleField: return 215 - case .decodeSingularEnumField: return 216 - case .decodeSingularFixed32Field: return 217 - case .decodeSingularFixed64Field: return 218 - case .decodeSingularFloatField: return 219 - case .decodeSingularGroupField: return 220 - case .decodeSingularInt32Field: return 221 - case .decodeSingularInt64Field: return 222 - case .decodeSingularMessageField: return 223 - case .decodeSingularSfixed32Field: return 224 - case .decodeSingularSfixed64Field: return 225 - case .decodeSingularSint32Field: return 226 - case .decodeSingularSint64Field: return 227 - case .decodeSingularStringField: return 228 - case .decodeSingularUint32Field: return 229 - case .decodeSingularUint64Field: return 230 - case .decodeTextFormat: return 231 - case .defaultAnyTypeUrlprefix: return 232 - case .defaults: return 233 - case .defaultValue: return 234 - case .dependency: return 235 - case .deprecated: return 236 - case .deprecatedLegacyJsonFieldConflicts: return 237 - case .deprecationWarning: return 238 - case .description_: return 239 - case .descriptorProto: return 240 - case .dictionary: return 241 - case .dictionaryLiteral: return 242 - case .digit: return 243 - case .digit0: return 244 - case .digit1: return 245 - case .digitCount: return 246 - case .digits: return 247 - case .digitValue: return 248 - case .discardableResult: return 249 - case .discardUnknownFields: return 250 - case .double: return 251 - case .doubleValue: return 252 - case .duration: return 253 - case .e: return 254 - case .edition: return 255 - case .editionDefault: return 256 - case .editionDefaults: return 257 - case .editionDeprecated: return 258 - case .editionIntroduced: return 259 - case .editionRemoved: return 260 - case .element: return 261 - case .elements: return 262 - case .emitExtensionFieldName: return 263 - case .emitFieldName: return 264 - case .emitFieldNumber: return 265 - case .empty: return 266 - case .encodeAsBytes: return 267 - case .encoded: return 268 - case .encodedJsonstring: return 269 - case .encodedSize: return 270 - case .encodeField: return 271 - case .encoder: return 272 - case .end: return 273 - case .endArray: return 274 - case .endMessageField: return 275 - case .endObject: return 276 - case .endRegularField: return 277 - case .enum: return 278 - case .enumDescriptorProto: return 279 - case .enumOptions: return 280 - case .enumReservedRange: return 281 - case .enumType: return 282 - case .enumvalue: return 283 - case .enumValueDescriptorProto: return 284 - case .enumValueOptions: return 285 - case .equatable: return 286 - case .error: return 287 - case .expressibleByArrayLiteral: return 288 - case .expressibleByDictionaryLiteral: return 289 - case .ext: return 290 - case .extDecoder: return 291 - case .extendedGraphemeClusterLiteral: return 292 - case .extendedGraphemeClusterLiteralType: return 293 - case .extendee: return 294 - case .extensibleMessage: return 295 - case .extension: return 296 - case .extensionField: return 297 - case .extensionFieldNumber: return 298 - case .extensionFieldValueSet: return 299 - case .extensionMap: return 300 - case .extensionRange: return 301 - case .extensionRangeOptions: return 302 - case .extensions: return 303 - case .extras: return 304 - case .f: return 305 - case .false: return 306 - case .features: return 307 - case .featureSet: return 308 - case .featureSetDefaults: return 309 - case .featureSetEditionDefault: return 310 - case .featureSupport: return 311 - case .field: return 312 - case .fieldData: return 313 - case .fieldDescriptorProto: return 314 - case .fieldMask: return 315 - case .fieldName: return 316 - case .fieldNameCount: return 317 - case .fieldNum: return 318 - case .fieldNumber: return 319 - case .fieldNumberForProto: return 320 - case .fieldOptions: return 321 - case .fieldPresence: return 322 - case .fields: return 323 - case .fieldSize: return 324 - case .fieldTag: return 325 - case .fieldType: return 326 - case .file: return 327 - case .fileDescriptorProto: return 328 - case .fileDescriptorSet: return 329 - case .fileName: return 330 - case .fileOptions: return 331 - case .filter: return 332 - case .final: return 333 - case .finiteOnly: return 334 - case .first: return 335 - case .firstItem: return 336 - case .fixedFeatures: return 337 - case .float: return 338 - case .floatLiteral: return 339 - case .floatLiteralType: return 340 - case .floatValue: return 341 - case .forMessageName: return 342 - case .formUnion: return 343 - case .forReadingFrom: return 344 - case .forTypeURL: return 345 - case .forwardParser: return 346 - case .forWritingInto: return 347 - case .from: return 348 - case .fromAscii2: return 349 - case .fromAscii4: return 350 - case .fromByteOffset: return 351 - case .fromHexDigit: return 352 - case .fullName: return 353 - case .func: return 354 - case .g: return 355 - case .generatedCodeInfo: return 356 - case .get: return 357 - case .getExtensionValue: return 358 - case .googleapis: return 359 - case .googleProtobufAny: return 360 - case .googleProtobufApi: return 361 - case .googleProtobufBoolValue: return 362 - case .googleProtobufBytesValue: return 363 - case .googleProtobufDescriptorProto: return 364 - case .googleProtobufDoubleValue: return 365 - case .googleProtobufDuration: return 366 - case .googleProtobufEdition: return 367 - case .googleProtobufEmpty: return 368 - case .googleProtobufEnum: return 369 - case .googleProtobufEnumDescriptorProto: return 370 - case .googleProtobufEnumOptions: return 371 - case .googleProtobufEnumValue: return 372 - case .googleProtobufEnumValueDescriptorProto: return 373 - case .googleProtobufEnumValueOptions: return 374 - case .googleProtobufExtensionRangeOptions: return 375 - case .googleProtobufFeatureSet: return 376 - case .googleProtobufFeatureSetDefaults: return 377 - case .googleProtobufField: return 378 - case .googleProtobufFieldDescriptorProto: return 379 - case .googleProtobufFieldMask: return 380 - case .googleProtobufFieldOptions: return 381 - case .googleProtobufFileDescriptorProto: return 382 - case .googleProtobufFileDescriptorSet: return 383 - case .googleProtobufFileOptions: return 384 - case .googleProtobufFloatValue: return 385 - case .googleProtobufGeneratedCodeInfo: return 386 - case .googleProtobufInt32Value: return 387 - case .googleProtobufInt64Value: return 388 - case .googleProtobufListValue: return 389 - case .googleProtobufMessageOptions: return 390 - case .googleProtobufMethod: return 391 - case .googleProtobufMethodDescriptorProto: return 392 - case .googleProtobufMethodOptions: return 393 - case .googleProtobufMixin: return 394 - case .googleProtobufNullValue: return 395 - case .googleProtobufOneofDescriptorProto: return 396 - case .googleProtobufOneofOptions: return 397 - case .googleProtobufOption: return 398 - case .googleProtobufServiceDescriptorProto: return 399 - case .googleProtobufServiceOptions: return 400 - case .googleProtobufSourceCodeInfo: return 401 - case .googleProtobufSourceContext: return 402 - case .googleProtobufStringValue: return 403 - case .googleProtobufStruct: return 404 - case .googleProtobufSyntax: return 405 - case .googleProtobufTimestamp: return 406 - case .googleProtobufType: return 407 - case .googleProtobufUint32Value: return 408 - case .googleProtobufUint64Value: return 409 - case .googleProtobufUninterpretedOption: return 410 - case .googleProtobufValue: return 411 - case .goPackage: return 412 - case .group: return 413 - case .groupFieldNumberStack: return 414 - case .groupSize: return 415 - case .hadOneofValue: return 416 - case .handleConflictingOneOf: return 417 - case .hasAggregateValue: return 418 - case .hasAllowAlias: return 419 - case .hasBegin: return 420 - case .hasCcEnableArenas: return 421 - case .hasCcGenericServices: return 422 - case .hasClientStreaming: return 423 - case .hasCsharpNamespace: return 424 - case .hasCtype: return 425 - case .hasDebugRedact: return 426 - case .hasDefaultValue: return 427 - case .hasDeprecated: return 428 - case .hasDeprecatedLegacyJsonFieldConflicts: return 429 - case .hasDeprecationWarning: return 430 - case .hasDoubleValue: return 431 - case .hasEdition: return 432 - case .hasEditionDeprecated: return 433 - case .hasEditionIntroduced: return 434 - case .hasEditionRemoved: return 435 - case .hasEnd: return 436 - case .hasEnumType: return 437 - case .hasExtendee: return 438 - case .hasExtensionValue: return 439 - case .hasFeatures: return 440 - case .hasFeatureSupport: return 441 - case .hasFieldPresence: return 442 - case .hasFixedFeatures: return 443 - case .hasFullName: return 444 - case .hasGoPackage: return 445 - case .hash: return 446 - case .hashable: return 447 - case .hasher: return 448 - case .hashVisitor: return 449 - case .hasIdempotencyLevel: return 450 - case .hasIdentifierValue: return 451 - case .hasInputType: return 452 - case .hasIsExtension: return 453 - case .hasJavaGenerateEqualsAndHash: return 454 - case .hasJavaGenericServices: return 455 - case .hasJavaMultipleFiles: return 456 - case .hasJavaOuterClassname: return 457 - case .hasJavaPackage: return 458 - case .hasJavaStringCheckUtf8: return 459 - case .hasJsonFormat: return 460 - case .hasJsonName: return 461 - case .hasJstype: return 462 - case .hasLabel: return 463 - case .hasLazy: return 464 - case .hasLeadingComments: return 465 - case .hasMapEntry: return 466 - case .hasMaximumEdition: return 467 - case .hasMessageEncoding: return 468 - case .hasMessageSetWireFormat: return 469 - case .hasMinimumEdition: return 470 - case .hasName: return 471 - case .hasNamePart: return 472 - case .hasNegativeIntValue: return 473 - case .hasNoStandardDescriptorAccessor: return 474 - case .hasNumber: return 475 - case .hasObjcClassPrefix: return 476 - case .hasOneofIndex: return 477 - case .hasOptimizeFor: return 478 - case .hasOptions: return 479 - case .hasOutputType: return 480 - case .hasOverridableFeatures: return 481 - case .hasPackage: return 482 - case .hasPacked: return 483 - case .hasPhpClassPrefix: return 484 - case .hasPhpMetadataNamespace: return 485 - case .hasPhpNamespace: return 486 - case .hasPositiveIntValue: return 487 - case .hasProto3Optional: return 488 - case .hasPyGenericServices: return 489 - case .hasRepeated: return 490 - case .hasRepeatedFieldEncoding: return 491 - case .hasReserved: return 492 - case .hasRetention: return 493 - case .hasRubyPackage: return 494 - case .hasSemantic: return 495 - case .hasServerStreaming: return 496 - case .hasSourceCodeInfo: return 497 - case .hasSourceContext: return 498 - case .hasSourceFile: return 499 + case .anyTypeUrlnotRegistered: return 12 + case .anyUnpackError: return 13 + case .api: return 14 + case .appended: return 15 + case .appendUintHex: return 16 + case .appendUnknown: return 17 + case .areAllInitialized: return 18 + case .array: return 19 + case .arrayDepth: return 20 + case .arrayLiteral: return 21 + case .arraySeparator: return 22 + case .as: return 23 + case .asciiOpenCurlyBracket: return 24 + case .asciiZero: return 25 + case .async: return 26 + case .asyncIterator: return 27 + case .asyncIteratorProtocol: return 28 + case .asyncMessageSequence: return 29 + case .available: return 30 + case .b: return 31 + case .base: return 32 + case .base64Values: return 33 + case .baseAddress: return 34 + case .baseType: return 35 + case .begin: return 36 + case .binary: return 37 + case .binaryDecoder: return 38 + case .binaryDecoding: return 39 + case .binaryDecodingError: return 40 + case .binaryDecodingOptions: return 41 + case .binaryDelimited: return 42 + case .binaryEncoder: return 43 + case .binaryEncoding: return 44 + case .binaryEncodingError: return 45 + case .binaryEncodingMessageSetSizeVisitor: return 46 + case .binaryEncodingMessageSetVisitor: return 47 + case .binaryEncodingOptions: return 48 + case .binaryEncodingSizeVisitor: return 49 + case .binaryEncodingVisitor: return 50 + case .binaryOptions: return 51 + case .binaryProtobufDelimitedMessages: return 52 + case .binaryStreamDecoding: return 53 + case .binaryStreamDecodingError: return 54 + case .bitPattern: return 55 + case .body: return 56 + case .bool: return 57 + case .booleanLiteral: return 58 + case .booleanLiteralType: return 59 + case .boolValue: return 60 + case .buffer: return 61 + case .bytes: return 62 + case .bytesInGroup: return 63 + case .bytesNeeded: return 64 + case .bytesRead: return 65 + case .bytesValue: return 66 + case .c: return 67 + case .capitalizeNext: return 68 + case .cardinality: return 69 + case .caseIterable: return 70 + case .ccEnableArenas: return 71 + case .ccGenericServices: return 72 + case .character: return 73 + case .chars: return 74 + case .chunk: return 75 + case .class: return 76 + case .clearAggregateValue: return 77 + case .clearAllowAlias: return 78 + case .clearBegin: return 79 + case .clearCcEnableArenas: return 80 + case .clearCcGenericServices: return 81 + case .clearClientStreaming: return 82 + case .clearCsharpNamespace: return 83 + case .clearCtype: return 84 + case .clearDebugRedact: return 85 + case .clearDefaultValue: return 86 + case .clearDeprecated: return 87 + case .clearDeprecatedLegacyJsonFieldConflicts: return 88 + case .clearDeprecationWarning: return 89 + case .clearDoubleValue: return 90 + case .clearEdition: return 91 + case .clearEditionDeprecated: return 92 + case .clearEditionIntroduced: return 93 + case .clearEditionRemoved: return 94 + case .clearEnd: return 95 + case .clearEnumType: return 96 + case .clearExtendee: return 97 + case .clearExtensionValue: return 98 + case .clearFeatures: return 99 + case .clearFeatureSupport: return 100 + case .clearFieldPresence: return 101 + case .clearFixedFeatures: return 102 + case .clearFullName: return 103 + case .clearGoPackage: return 104 + case .clearIdempotencyLevel: return 105 + case .clearIdentifierValue: return 106 + case .clearInputType: return 107 + case .clearIsExtension: return 108 + case .clearJavaGenerateEqualsAndHash: return 109 + case .clearJavaGenericServices: return 110 + case .clearJavaMultipleFiles: return 111 + case .clearJavaOuterClassname: return 112 + case .clearJavaPackage: return 113 + case .clearJavaStringCheckUtf8: return 114 + case .clearJsonFormat: return 115 + case .clearJsonName: return 116 + case .clearJstype: return 117 + case .clearLabel: return 118 + case .clearLazy: return 119 + case .clearLeadingComments: return 120 + case .clearMapEntry: return 121 + case .clearMaximumEdition: return 122 + case .clearMessageEncoding: return 123 + case .clearMessageSetWireFormat: return 124 + case .clearMinimumEdition: return 125 + case .clearName: return 126 + case .clearNamePart: return 127 + case .clearNegativeIntValue: return 128 + case .clearNoStandardDescriptorAccessor: return 129 + case .clearNumber: return 130 + case .clearObjcClassPrefix: return 131 + case .clearOneofIndex: return 132 + case .clearOptimizeFor: return 133 + case .clearOptions: return 134 + case .clearOutputType: return 135 + case .clearOverridableFeatures: return 136 + case .clearPackage: return 137 + case .clearPacked: return 138 + case .clearPhpClassPrefix: return 139 + case .clearPhpMetadataNamespace: return 140 + case .clearPhpNamespace: return 141 + case .clearPositiveIntValue: return 142 + case .clearProto3Optional: return 143 + case .clearPyGenericServices: return 144 + case .clearRepeated: return 145 + case .clearRepeatedFieldEncoding: return 146 + case .clearReserved: return 147 + case .clearRetention: return 148 + case .clearRubyPackage: return 149 + case .clearSemantic: return 150 + case .clearServerStreaming: return 151 + case .clearSourceCodeInfo: return 152 + case .clearSourceContext: return 153 + case .clearSourceFile: return 154 + case .clearStart: return 155 + case .clearStringValue: return 156 + case .clearSwiftPrefix: return 157 + case .clearSyntax: return 158 + case .clearTrailingComments: return 159 + case .clearType: return 160 + case .clearTypeName: return 161 + case .clearUnverifiedLazy: return 162 + case .clearUtf8Validation: return 163 + case .clearValue: return 164 + case .clearVerification: return 165 + case .clearWeak: return 166 + case .clientStreaming: return 167 + case .code: return 168 + case .codePoint: return 169 + case .codeUnits: return 170 + case .collection: return 171 + case .com: return 172 + case .comma: return 173 + case .consumedBytes: return 174 + case .contentsOf: return 175 + case .copy: return 176 + case .count: return 177 + case .countVarintsInBuffer: return 178 + case .csharpNamespace: return 179 + case .ctype: return 180 + case .customCodable: return 181 + case .customDebugStringConvertible: return 182 + case .customStringConvertible: return 183 + case .d: return 184 + case .data: return 185 + case .dataResult: return 186 + case .date: return 187 + case .daySec: return 188 + case .daysSinceEpoch: return 189 + case .debugDescription_: return 190 + case .debugRedact: return 191 + case .declaration: return 192 + case .decoded: return 193 + case .decodedFromJsonnull: return 194 + case .decodeExtensionField: return 195 + case .decodeExtensionFieldsAsMessageSet: return 196 + case .decodeJson: return 197 + case .decodeMapField: return 198 + case .decodeMessage: return 199 + case .decoder: return 200 + case .decodeRepeated: return 201 + case .decodeRepeatedBoolField: return 202 + case .decodeRepeatedBytesField: return 203 + case .decodeRepeatedDoubleField: return 204 + case .decodeRepeatedEnumField: return 205 + case .decodeRepeatedFixed32Field: return 206 + case .decodeRepeatedFixed64Field: return 207 + case .decodeRepeatedFloatField: return 208 + case .decodeRepeatedGroupField: return 209 + case .decodeRepeatedInt32Field: return 210 + case .decodeRepeatedInt64Field: return 211 + case .decodeRepeatedMessageField: return 212 + case .decodeRepeatedSfixed32Field: return 213 + case .decodeRepeatedSfixed64Field: return 214 + case .decodeRepeatedSint32Field: return 215 + case .decodeRepeatedSint64Field: return 216 + case .decodeRepeatedStringField: return 217 + case .decodeRepeatedUint32Field: return 218 + case .decodeRepeatedUint64Field: return 219 + case .decodeSingular: return 220 + case .decodeSingularBoolField: return 221 + case .decodeSingularBytesField: return 222 + case .decodeSingularDoubleField: return 223 + case .decodeSingularEnumField: return 224 + case .decodeSingularFixed32Field: return 225 + case .decodeSingularFixed64Field: return 226 + case .decodeSingularFloatField: return 227 + case .decodeSingularGroupField: return 228 + case .decodeSingularInt32Field: return 229 + case .decodeSingularInt64Field: return 230 + case .decodeSingularMessageField: return 231 + case .decodeSingularSfixed32Field: return 232 + case .decodeSingularSfixed64Field: return 233 + case .decodeSingularSint32Field: return 234 + case .decodeSingularSint64Field: return 235 + case .decodeSingularStringField: return 236 + case .decodeSingularUint32Field: return 237 + case .decodeSingularUint64Field: return 238 + case .decodeTextFormat: return 239 + case .defaultAnyTypeUrlprefix: return 240 + case .defaults: return 241 + case .defaultValue: return 242 + case .dependency: return 243 + case .deprecated: return 244 + case .deprecatedLegacyJsonFieldConflicts: return 245 + case .deprecationWarning: return 246 + case .description_: return 247 + case .descriptorProto: return 248 + case .dictionary: return 249 + case .dictionaryLiteral: return 250 + case .digit: return 251 + case .digit0: return 252 + case .digit1: return 253 + case .digitCount: return 254 + case .digits: return 255 + case .digitValue: return 256 + case .discardableResult: return 257 + case .discardUnknownFields: return 258 + case .double: return 259 + case .doubleValue: return 260 + case .duration: return 261 + case .e: return 262 + case .edition: return 263 + case .editionDefault: return 264 + case .editionDefaults: return 265 + case .editionDeprecated: return 266 + case .editionIntroduced: return 267 + case .editionRemoved: return 268 + case .element: return 269 + case .elements: return 270 + case .emitExtensionFieldName: return 271 + case .emitFieldName: return 272 + case .emitFieldNumber: return 273 + case .empty: return 274 + case .encodeAsBytes: return 275 + case .encoded: return 276 + case .encodedJsonstring: return 277 + case .encodedSize: return 278 + case .encodeField: return 279 + case .encoder: return 280 + case .end: return 281 + case .endArray: return 282 + case .endMessageField: return 283 + case .endObject: return 284 + case .endRegularField: return 285 + case .enum: return 286 + case .enumDescriptorProto: return 287 + case .enumOptions: return 288 + case .enumReservedRange: return 289 + case .enumType: return 290 + case .enumvalue: return 291 + case .enumValueDescriptorProto: return 292 + case .enumValueOptions: return 293 + case .equatable: return 294 + case .error: return 295 + case .expressibleByArrayLiteral: return 296 + case .expressibleByDictionaryLiteral: return 297 + case .ext: return 298 + case .extDecoder: return 299 + case .extendedGraphemeClusterLiteral: return 300 + case .extendedGraphemeClusterLiteralType: return 301 + case .extendee: return 302 + case .extensibleMessage: return 303 + case .extension: return 304 + case .extensionField: return 305 + case .extensionFieldNumber: return 306 + case .extensionFieldValueSet: return 307 + case .extensionMap: return 308 + case .extensionRange: return 309 + case .extensionRangeOptions: return 310 + case .extensions: return 311 + case .extras: return 312 + case .f: return 313 + case .false: return 314 + case .features: return 315 + case .featureSet: return 316 + case .featureSetDefaults: return 317 + case .featureSetEditionDefault: return 318 + case .featureSupport: return 319 + case .field: return 320 + case .fieldData: return 321 + case .fieldDescriptorProto: return 322 + case .fieldMask: return 323 + case .fieldName: return 324 + case .fieldNameCount: return 325 + case .fieldNum: return 326 + case .fieldNumber: return 327 + case .fieldNumberForProto: return 328 + case .fieldOptions: return 329 + case .fieldPresence: return 330 + case .fields: return 331 + case .fieldSize: return 332 + case .fieldTag: return 333 + case .fieldType: return 334 + case .file: return 335 + case .fileDescriptorProto: return 336 + case .fileDescriptorSet: return 337 + case .fileName: return 338 + case .fileOptions: return 339 + case .filter: return 340 + case .final: return 341 + case .finiteOnly: return 342 + case .first: return 343 + case .firstItem: return 344 + case .fixedFeatures: return 345 + case .float: return 346 + case .floatLiteral: return 347 + case .floatLiteralType: return 348 + case .floatValue: return 349 + case .forMessageName: return 350 + case .formUnion: return 351 + case .forReadingFrom: return 352 + case .forTypeURL: return 353 + case .forwardParser: return 354 + case .forWritingInto: return 355 + case .from: return 356 + case .fromAscii2: return 357 + case .fromAscii4: return 358 + case .fromByteOffset: return 359 + case .fromHexDigit: return 360 + case .fullName: return 361 + case .func: return 362 + case .function: return 363 + case .g: return 364 + case .generatedCodeInfo: return 365 + case .get: return 366 + case .getExtensionValue: return 367 + case .googleapis: return 368 + case .googleProtobufAny: return 369 + case .googleProtobufApi: return 370 + case .googleProtobufBoolValue: return 371 + case .googleProtobufBytesValue: return 372 + case .googleProtobufDescriptorProto: return 373 + case .googleProtobufDoubleValue: return 374 + case .googleProtobufDuration: return 375 + case .googleProtobufEdition: return 376 + case .googleProtobufEmpty: return 377 + case .googleProtobufEnum: return 378 + case .googleProtobufEnumDescriptorProto: return 379 + case .googleProtobufEnumOptions: return 380 + case .googleProtobufEnumValue: return 381 + case .googleProtobufEnumValueDescriptorProto: return 382 + case .googleProtobufEnumValueOptions: return 383 + case .googleProtobufExtensionRangeOptions: return 384 + case .googleProtobufFeatureSet: return 385 + case .googleProtobufFeatureSetDefaults: return 386 + case .googleProtobufField: return 387 + case .googleProtobufFieldDescriptorProto: return 388 + case .googleProtobufFieldMask: return 389 + case .googleProtobufFieldOptions: return 390 + case .googleProtobufFileDescriptorProto: return 391 + case .googleProtobufFileDescriptorSet: return 392 + case .googleProtobufFileOptions: return 393 + case .googleProtobufFloatValue: return 394 + case .googleProtobufGeneratedCodeInfo: return 395 + case .googleProtobufInt32Value: return 396 + case .googleProtobufInt64Value: return 397 + case .googleProtobufListValue: return 398 + case .googleProtobufMessageOptions: return 399 + case .googleProtobufMethod: return 400 + case .googleProtobufMethodDescriptorProto: return 401 + case .googleProtobufMethodOptions: return 402 + case .googleProtobufMixin: return 403 + case .googleProtobufNullValue: return 404 + case .googleProtobufOneofDescriptorProto: return 405 + case .googleProtobufOneofOptions: return 406 + case .googleProtobufOption: return 407 + case .googleProtobufServiceDescriptorProto: return 408 + case .googleProtobufServiceOptions: return 409 + case .googleProtobufSourceCodeInfo: return 410 + case .googleProtobufSourceContext: return 411 + case .googleProtobufStringValue: return 412 + case .googleProtobufStruct: return 413 + case .googleProtobufSyntax: return 414 + case .googleProtobufTimestamp: return 415 + case .googleProtobufType: return 416 + case .googleProtobufUint32Value: return 417 + case .googleProtobufUint64Value: return 418 + case .googleProtobufUninterpretedOption: return 419 + case .googleProtobufValue: return 420 + case .goPackage: return 421 + case .group: return 422 + case .groupFieldNumberStack: return 423 + case .groupSize: return 424 + case .hadOneofValue: return 425 + case .handleConflictingOneOf: return 426 + case .hasAggregateValue: return 427 + case .hasAllowAlias: return 428 + case .hasBegin: return 429 + case .hasCcEnableArenas: return 430 + case .hasCcGenericServices: return 431 + case .hasClientStreaming: return 432 + case .hasCsharpNamespace: return 433 + case .hasCtype: return 434 + case .hasDebugRedact: return 435 + case .hasDefaultValue: return 436 + case .hasDeprecated: return 437 + case .hasDeprecatedLegacyJsonFieldConflicts: return 438 + case .hasDeprecationWarning: return 439 + case .hasDoubleValue: return 440 + case .hasEdition: return 441 + case .hasEditionDeprecated: return 442 + case .hasEditionIntroduced: return 443 + case .hasEditionRemoved: return 444 + case .hasEnd: return 445 + case .hasEnumType: return 446 + case .hasExtendee: return 447 + case .hasExtensionValue: return 448 + case .hasFeatures: return 449 + case .hasFeatureSupport: return 450 + case .hasFieldPresence: return 451 + case .hasFixedFeatures: return 452 + case .hasFullName: return 453 + case .hasGoPackage: return 454 + case .hash: return 455 + case .hashable: return 456 + case .hasher: return 457 + case .hashVisitor: return 458 + case .hasIdempotencyLevel: return 459 + case .hasIdentifierValue: return 460 + case .hasInputType: return 461 + case .hasIsExtension: return 462 + case .hasJavaGenerateEqualsAndHash: return 463 + case .hasJavaGenericServices: return 464 + case .hasJavaMultipleFiles: return 465 + case .hasJavaOuterClassname: return 466 + case .hasJavaPackage: return 467 + case .hasJavaStringCheckUtf8: return 468 + case .hasJsonFormat: return 469 + case .hasJsonName: return 470 + case .hasJstype: return 471 + case .hasLabel: return 472 + case .hasLazy: return 473 + case .hasLeadingComments: return 474 + case .hasMapEntry: return 475 + case .hasMaximumEdition: return 476 + case .hasMessageEncoding: return 477 + case .hasMessageSetWireFormat: return 478 + case .hasMinimumEdition: return 479 + case .hasName: return 480 + case .hasNamePart: return 481 + case .hasNegativeIntValue: return 482 + case .hasNoStandardDescriptorAccessor: return 483 + case .hasNumber: return 484 + case .hasObjcClassPrefix: return 485 + case .hasOneofIndex: return 486 + case .hasOptimizeFor: return 487 + case .hasOptions: return 488 + case .hasOutputType: return 489 + case .hasOverridableFeatures: return 490 + case .hasPackage: return 491 + case .hasPacked: return 492 + case .hasPhpClassPrefix: return 493 + case .hasPhpMetadataNamespace: return 494 + case .hasPhpNamespace: return 495 + case .hasPositiveIntValue: return 496 + case .hasProto3Optional: return 497 + case .hasPyGenericServices: return 498 + case .hasRepeated: return 499 default: break } switch self { - case .hasStart: return 500 - case .hasStringValue: return 501 - case .hasSwiftPrefix: return 502 - case .hasSyntax: return 503 - case .hasTrailingComments: return 504 - case .hasType: return 505 - case .hasTypeName: return 506 - case .hasUnverifiedLazy: return 507 - case .hasUtf8Validation: return 508 - case .hasValue: return 509 - case .hasVerification: return 510 - case .hasWeak: return 511 - case .hour: return 512 - case .i: return 513 - case .idempotencyLevel: return 514 - case .identifierValue: return 515 - case .if: return 516 - case .ignoreUnknownExtensionFields: return 517 - case .ignoreUnknownFields: return 518 - case .index: return 519 - case .init_: return 520 - case .inout: return 521 - case .inputType: return 522 - case .insert: return 523 - case .int: return 524 - case .int32: return 525 - case .int32Value: return 526 - case .int64: return 527 - case .int64Value: return 528 - case .int8: return 529 - case .integerLiteral: return 530 - case .integerLiteralType: return 531 - case .intern: return 532 - case .internal: return 533 - case .internalState: return 534 - case .into: return 535 - case .ints: return 536 - case .isA: return 537 - case .isEqual: return 538 - case .isEqualTo: return 539 - case .isExtension: return 540 - case .isInitialized: return 541 - case .isNegative: return 542 - case .itemTagsEncodedSize: return 543 - case .iterator: return 544 - case .javaGenerateEqualsAndHash: return 545 - case .javaGenericServices: return 546 - case .javaMultipleFiles: return 547 - case .javaOuterClassname: return 548 - case .javaPackage: return 549 - case .javaStringCheckUtf8: return 550 - case .jsondecoder: return 551 - case .jsondecodingError: return 552 - case .jsondecodingOptions: return 553 - case .jsonEncoder: return 554 - case .jsonencodingError: return 555 - case .jsonencodingOptions: return 556 - case .jsonencodingVisitor: return 557 - case .jsonFormat: return 558 - case .jsonmapEncodingVisitor: return 559 - case .jsonName: return 560 - case .jsonPath: return 561 - case .jsonPaths: return 562 - case .jsonscanner: return 563 - case .jsonString: return 564 - case .jsonText: return 565 - case .jsonUtf8Bytes: return 566 - case .jsonUtf8Data: return 567 - case .jstype: return 568 - case .k: return 569 - case .kChunkSize: return 570 - case .key: return 571 - case .keyField: return 572 - case .keyFieldOpt: return 573 - case .keyType: return 574 - case .kind: return 575 - case .l: return 576 - case .label: return 577 - case .lazy: return 578 - case .leadingComments: return 579 - case .leadingDetachedComments: return 580 - case .length: return 581 - case .lessThan: return 582 - case .let: return 583 - case .lhs: return 584 - case .list: return 585 - case .listOfMessages: return 586 - case .listValue: return 587 - case .littleEndian: return 588 - case .load: return 589 - case .localHasher: return 590 - case .location: return 591 - case .m: return 592 - case .major: return 593 - case .makeAsyncIterator: return 594 - case .makeIterator: return 595 - case .mapEntry: return 596 - case .mapKeyType: return 597 - case .mapToMessages: return 598 - case .mapValueType: return 599 - case .mapVisitor: return 600 - case .maximumEdition: return 601 - case .mdayStart: return 602 - case .merge: return 603 - case .message: return 604 - case .messageDepthLimit: return 605 - case .messageEncoding: return 606 - case .messageExtension: return 607 - case .messageImplementationBase: return 608 - case .messageOptions: return 609 - case .messageSet: return 610 - case .messageSetWireFormat: return 611 - case .messageSize: return 612 - case .messageType: return 613 - case .method: return 614 - case .methodDescriptorProto: return 615 - case .methodOptions: return 616 - case .methods: return 617 - case .min: return 618 - case .minimumEdition: return 619 - case .minor: return 620 - case .mixin: return 621 - case .mixins: return 622 - case .modifier: return 623 - case .modify: return 624 - case .month: return 625 - case .msgExtension: return 626 - case .mutating: return 627 - case .n: return 628 - case .name: return 629 - case .nameDescription: return 630 - case .nameMap: return 631 - case .namePart: return 632 - case .names: return 633 - case .nanos: return 634 - case .negativeIntValue: return 635 - case .nestedType: return 636 - case .newL: return 637 - case .newList: return 638 - case .newValue: return 639 - case .next: return 640 - case .nextByte: return 641 - case .nextFieldNumber: return 642 - case .nextVarInt: return 643 - case .nil: return 644 - case .nilLiteral: return 645 - case .noStandardDescriptorAccessor: return 646 - case .nullValue: return 647 - case .number: return 648 - case .numberValue: return 649 - case .objcClassPrefix: return 650 - case .of: return 651 - case .oneofDecl: return 652 - case .oneofDescriptorProto: return 653 - case .oneofIndex: return 654 - case .oneofOptions: return 655 - case .oneofs: return 656 - case .oneOfKind: return 657 - case .optimizeFor: return 658 - case .optimizeMode: return 659 - case .option: return 660 - case .optionalEnumExtensionField: return 661 - case .optionalExtensionField: return 662 - case .optionalGroupExtensionField: return 663 - case .optionalMessageExtensionField: return 664 - case .optionRetention: return 665 - case .options: return 666 - case .optionTargetType: return 667 - case .other: return 668 - case .others: return 669 - case .out: return 670 - case .outputType: return 671 - case .overridableFeatures: return 672 - case .p: return 673 - case .package: return 674 - case .packed: return 675 - case .packedEnumExtensionField: return 676 - case .packedExtensionField: return 677 - case .padding: return 678 - case .parent: return 679 - case .parse: return 680 - case .path: return 681 - case .paths: return 682 - case .payload: return 683 - case .payloadSize: return 684 - case .phpClassPrefix: return 685 - case .phpMetadataNamespace: return 686 - case .phpNamespace: return 687 - case .pos: return 688 - case .positiveIntValue: return 689 - case .prefix: return 690 - case .preserveProtoFieldNames: return 691 - case .preTraverse: return 692 - case .printUnknownFields: return 693 - case .proto2: return 694 - case .proto3DefaultValue: return 695 - case .proto3Optional: return 696 - case .protobufApiversionCheck: return 697 - case .protobufApiversion3: return 698 - case .protobufBool: return 699 - case .protobufBytes: return 700 - case .protobufDouble: return 701 - case .protobufEnumMap: return 702 - case .protobufExtension: return 703 - case .protobufFixed32: return 704 - case .protobufFixed64: return 705 - case .protobufFloat: return 706 - case .protobufInt32: return 707 - case .protobufInt64: return 708 - case .protobufMap: return 709 - case .protobufMessageMap: return 710 - case .protobufSfixed32: return 711 - case .protobufSfixed64: return 712 - case .protobufSint32: return 713 - case .protobufSint64: return 714 - case .protobufString: return 715 - case .protobufUint32: return 716 - case .protobufUint64: return 717 - case .protobufExtensionFieldValues: return 718 - case .protobufFieldNumber: return 719 - case .protobufGeneratedIsEqualTo: return 720 - case .protobufNameMap: return 721 - case .protobufNewField: return 722 - case .protobufPackage: return 723 - case .protocol: return 724 - case .protoFieldName: return 725 - case .protoMessageName: return 726 - case .protoNameProviding: return 727 - case .protoPaths: return 728 - case .public: return 729 - case .publicDependency: return 730 - case .putBoolValue: return 731 - case .putBytesValue: return 732 - case .putDoubleValue: return 733 - case .putEnumValue: return 734 - case .putFixedUint32: return 735 - case .putFixedUint64: return 736 - case .putFloatValue: return 737 - case .putInt64: return 738 - case .putStringValue: return 739 - case .putUint64: return 740 - case .putUint64Hex: return 741 - case .putVarInt: return 742 - case .putZigZagVarInt: return 743 - case .pyGenericServices: return 744 - case .r: return 745 - case .rawChars: return 746 - case .rawRepresentable: return 747 - case .rawValue_: return 748 - case .read4HexDigits: return 749 - case .readBytes: return 750 - case .register: return 751 - case .repeated: return 752 - case .repeatedEnumExtensionField: return 753 - case .repeatedExtensionField: return 754 - case .repeatedFieldEncoding: return 755 - case .repeatedGroupExtensionField: return 756 - case .repeatedMessageExtensionField: return 757 - case .repeating: return 758 - case .requestStreaming: return 759 - case .requestTypeURL: return 760 - case .requiredSize: return 761 - case .responseStreaming: return 762 - case .responseTypeURL: return 763 - case .result: return 764 - case .retention: return 765 - case .rethrows: return 766 - case .return: return 767 - case .returnType: return 768 - case .revision: return 769 - case .rhs: return 770 - case .root: return 771 - case .rubyPackage: return 772 - case .s: return 773 - case .sawBackslash: return 774 - case .sawSection4Characters: return 775 - case .sawSection5Characters: return 776 - case .scan: return 777 - case .scanner: return 778 - case .seconds: return 779 - case .self_: return 780 - case .semantic: return 781 - case .sendable: return 782 - case .separator: return 783 - case .serialize: return 784 - case .serializedBytes: return 785 - case .serializedData: return 786 - case .serializedSize: return 787 - case .serverStreaming: return 788 - case .service: return 789 - case .serviceDescriptorProto: return 790 - case .serviceOptions: return 791 - case .set: return 792 - case .setExtensionValue: return 793 - case .shift: return 794 - case .simpleExtensionMap: return 795 - case .size: return 796 - case .sizer: return 797 - case .source: return 798 - case .sourceCodeInfo: return 799 - case .sourceContext: return 800 - case .sourceEncoding: return 801 - case .sourceFile: return 802 - case .span: return 803 - case .split: return 804 - case .start: return 805 - case .startArray: return 806 - case .startArrayObject: return 807 - case .startField: return 808 - case .startIndex: return 809 - case .startMessageField: return 810 - case .startObject: return 811 - case .startRegularField: return 812 - case .state: return 813 - case .static: return 814 - case .staticString: return 815 - case .storage: return 816 - case .string: return 817 - case .stringLiteral: return 818 - case .stringLiteralType: return 819 - case .stringResult: return 820 - case .stringValue: return 821 - case .struct: return 822 - case .structValue: return 823 - case .subDecoder: return 824 - case .subscript: return 825 - case .subVisitor: return 826 - case .swift: return 827 - case .swiftPrefix: return 828 - case .swiftProtobufContiguousBytes: return 829 - case .syntax: return 830 - case .t: return 831 - case .tag: return 832 - case .targets: return 833 - case .terminator: return 834 - case .testDecoder: return 835 - case .text: return 836 - case .textDecoder: return 837 - case .textFormatDecoder: return 838 - case .textFormatDecodingError: return 839 - case .textFormatDecodingOptions: return 840 - case .textFormatEncodingOptions: return 841 - case .textFormatEncodingVisitor: return 842 - case .textFormatString: return 843 - case .throwOrIgnore: return 844 - case .throws: return 845 - case .timeInterval: return 846 - case .timeIntervalSince1970: return 847 - case .timeIntervalSinceReferenceDate: return 848 - case .timestamp: return 849 - case .total: return 850 - case .totalArrayDepth: return 851 - case .totalSize: return 852 - case .trailingComments: return 853 - case .traverse: return 854 - case .true: return 855 - case .try: return 856 - case .type: return 857 - case .typealias: return 858 - case .typeEnum: return 859 - case .typeName: return 860 - case .typePrefix: return 861 - case .typeStart: return 862 - case .typeUnknown: return 863 - case .typeURL: return 864 - case .uint32: return 865 - case .uint32Value: return 866 - case .uint64: return 867 - case .uint64Value: return 868 - case .uint8: return 869 - case .unchecked: return 870 - case .unicodeScalarLiteral: return 871 - case .unicodeScalarLiteralType: return 872 - case .unicodeScalars: return 873 - case .unicodeScalarView: return 874 - case .uninterpretedOption: return 875 - case .union: return 876 - case .uniqueStorage: return 877 - case .unknown: return 878 - case .unknownFields: return 879 - case .unknownStorage: return 880 - case .unpackTo: return 881 - case .unsafeBufferPointer: return 882 - case .unsafeMutablePointer: return 883 - case .unsafeMutableRawBufferPointer: return 884 - case .unsafeRawBufferPointer: return 885 - case .unsafeRawPointer: return 886 - case .unverifiedLazy: return 887 - case .updatedOptions: return 888 - case .url: return 889 - case .useDeterministicOrdering: return 890 - case .utf8: return 891 - case .utf8Ptr: return 892 - case .utf8ToDouble: return 893 - case .utf8Validation: return 894 - case .utf8View: return 895 - case .v: return 896 - case .value: return 897 - case .valueField: return 898 - case .values: return 899 - case .valueType: return 900 - case .var: return 901 - case .verification: return 902 - case .verificationState: return 903 - case .version: return 904 - case .versionString: return 905 - case .visitExtensionFields: return 906 - case .visitExtensionFieldsAsMessageSet: return 907 - case .visitMapField: return 908 - case .visitor: return 909 - case .visitPacked: return 910 - case .visitPackedBoolField: return 911 - case .visitPackedDoubleField: return 912 - case .visitPackedEnumField: return 913 - case .visitPackedFixed32Field: return 914 - case .visitPackedFixed64Field: return 915 - case .visitPackedFloatField: return 916 - case .visitPackedInt32Field: return 917 - case .visitPackedInt64Field: return 918 - case .visitPackedSfixed32Field: return 919 - case .visitPackedSfixed64Field: return 920 - case .visitPackedSint32Field: return 921 - case .visitPackedSint64Field: return 922 - case .visitPackedUint32Field: return 923 - case .visitPackedUint64Field: return 924 - case .visitRepeated: return 925 - case .visitRepeatedBoolField: return 926 - case .visitRepeatedBytesField: return 927 - case .visitRepeatedDoubleField: return 928 - case .visitRepeatedEnumField: return 929 - case .visitRepeatedFixed32Field: return 930 - case .visitRepeatedFixed64Field: return 931 - case .visitRepeatedFloatField: return 932 - case .visitRepeatedGroupField: return 933 - case .visitRepeatedInt32Field: return 934 - case .visitRepeatedInt64Field: return 935 - case .visitRepeatedMessageField: return 936 - case .visitRepeatedSfixed32Field: return 937 - case .visitRepeatedSfixed64Field: return 938 - case .visitRepeatedSint32Field: return 939 - case .visitRepeatedSint64Field: return 940 - case .visitRepeatedStringField: return 941 - case .visitRepeatedUint32Field: return 942 - case .visitRepeatedUint64Field: return 943 - case .visitSingular: return 944 - case .visitSingularBoolField: return 945 - case .visitSingularBytesField: return 946 - case .visitSingularDoubleField: return 947 - case .visitSingularEnumField: return 948 - case .visitSingularFixed32Field: return 949 - case .visitSingularFixed64Field: return 950 - case .visitSingularFloatField: return 951 - case .visitSingularGroupField: return 952 - case .visitSingularInt32Field: return 953 - case .visitSingularInt64Field: return 954 - case .visitSingularMessageField: return 955 - case .visitSingularSfixed32Field: return 956 - case .visitSingularSfixed64Field: return 957 - case .visitSingularSint32Field: return 958 - case .visitSingularSint64Field: return 959 - case .visitSingularStringField: return 960 - case .visitSingularUint32Field: return 961 - case .visitSingularUint64Field: return 962 - case .visitUnknown: return 963 - case .wasDecoded: return 964 - case .weak: return 965 - case .weakDependency: return 966 - case .where: return 967 - case .wireFormat: return 968 - case .with: return 969 - case .withUnsafeBytes: return 970 - case .withUnsafeMutableBytes: return 971 - case .work: return 972 - case .wrapped: return 973 - case .wrappedType: return 974 - case .wrappedValue: return 975 - case .written: return 976 - case .yday: return 977 + case .hasRepeatedFieldEncoding: return 500 + case .hasReserved: return 501 + case .hasRetention: return 502 + case .hasRubyPackage: return 503 + case .hasSemantic: return 504 + case .hasServerStreaming: return 505 + case .hasSourceCodeInfo: return 506 + case .hasSourceContext: return 507 + case .hasSourceFile: return 508 + case .hasStart: return 509 + case .hasStringValue: return 510 + case .hasSwiftPrefix: return 511 + case .hasSyntax: return 512 + case .hasTrailingComments: return 513 + case .hasType: return 514 + case .hasTypeName: return 515 + case .hasUnverifiedLazy: return 516 + case .hasUtf8Validation: return 517 + case .hasValue: return 518 + case .hasVerification: return 519 + case .hasWeak: return 520 + case .hour: return 521 + case .i: return 522 + case .idempotencyLevel: return 523 + case .identifierValue: return 524 + case .if: return 525 + case .ignoreUnknownExtensionFields: return 526 + case .ignoreUnknownFields: return 527 + case .index: return 528 + case .init_: return 529 + case .inout: return 530 + case .inputType: return 531 + case .insert: return 532 + case .int: return 533 + case .int32: return 534 + case .int32Value: return 535 + case .int64: return 536 + case .int64Value: return 537 + case .int8: return 538 + case .integerLiteral: return 539 + case .integerLiteralType: return 540 + case .intern: return 541 + case .internal: return 542 + case .internalState: return 543 + case .into: return 544 + case .ints: return 545 + case .isA: return 546 + case .isEqual: return 547 + case .isEqualTo: return 548 + case .isExtension: return 549 + case .isInitialized: return 550 + case .isNegative: return 551 + case .itemTagsEncodedSize: return 552 + case .iterator: return 553 + case .javaGenerateEqualsAndHash: return 554 + case .javaGenericServices: return 555 + case .javaMultipleFiles: return 556 + case .javaOuterClassname: return 557 + case .javaPackage: return 558 + case .javaStringCheckUtf8: return 559 + case .jsondecoder: return 560 + case .jsondecodingError: return 561 + case .jsondecodingOptions: return 562 + case .jsonEncoder: return 563 + case .jsonencoding: return 564 + case .jsonencodingError: return 565 + case .jsonencodingOptions: return 566 + case .jsonencodingVisitor: return 567 + case .jsonFormat: return 568 + case .jsonmapEncodingVisitor: return 569 + case .jsonName: return 570 + case .jsonPath: return 571 + case .jsonPaths: return 572 + case .jsonscanner: return 573 + case .jsonString: return 574 + case .jsonText: return 575 + case .jsonUtf8Bytes: return 576 + case .jsonUtf8Data: return 577 + case .jstype: return 578 + case .k: return 579 + case .kChunkSize: return 580 + case .key: return 581 + case .keyField: return 582 + case .keyFieldOpt: return 583 + case .keyType: return 584 + case .kind: return 585 + case .l: return 586 + case .label: return 587 + case .lazy: return 588 + case .leadingComments: return 589 + case .leadingDetachedComments: return 590 + case .length: return 591 + case .lessThan: return 592 + case .let: return 593 + case .lhs: return 594 + case .line: return 595 + case .list: return 596 + case .listOfMessages: return 597 + case .listValue: return 598 + case .littleEndian: return 599 + case .load: return 600 + case .localHasher: return 601 + case .location: return 602 + case .m: return 603 + case .major: return 604 + case .makeAsyncIterator: return 605 + case .makeIterator: return 606 + case .malformedLength: return 607 + case .mapEntry: return 608 + case .mapKeyType: return 609 + case .mapToMessages: return 610 + case .mapValueType: return 611 + case .mapVisitor: return 612 + case .maximumEdition: return 613 + case .mdayStart: return 614 + case .merge: return 615 + case .message: return 616 + case .messageDepthLimit: return 617 + case .messageEncoding: return 618 + case .messageExtension: return 619 + case .messageImplementationBase: return 620 + case .messageOptions: return 621 + case .messageSet: return 622 + case .messageSetWireFormat: return 623 + case .messageSize: return 624 + case .messageType: return 625 + case .method: return 626 + case .methodDescriptorProto: return 627 + case .methodOptions: return 628 + case .methods: return 629 + case .min: return 630 + case .minimumEdition: return 631 + case .minor: return 632 + case .mixin: return 633 + case .mixins: return 634 + case .modifier: return 635 + case .modify: return 636 + case .month: return 637 + case .msgExtension: return 638 + case .mutating: return 639 + case .n: return 640 + case .name: return 641 + case .nameDescription: return 642 + case .nameMap: return 643 + case .namePart: return 644 + case .names: return 645 + case .nanos: return 646 + case .negativeIntValue: return 647 + case .nestedType: return 648 + case .newL: return 649 + case .newList: return 650 + case .newValue: return 651 + case .next: return 652 + case .nextByte: return 653 + case .nextFieldNumber: return 654 + case .nextVarInt: return 655 + case .nil: return 656 + case .nilLiteral: return 657 + case .noBytesAvailable: return 658 + case .noStandardDescriptorAccessor: return 659 + case .nullValue: return 660 + case .number: return 661 + case .numberValue: return 662 + case .objcClassPrefix: return 663 + case .of: return 664 + case .oneofDecl: return 665 + case .oneofDescriptorProto: return 666 + case .oneofIndex: return 667 + case .oneofOptions: return 668 + case .oneofs: return 669 + case .oneOfKind: return 670 + case .optimizeFor: return 671 + case .optimizeMode: return 672 + case .option: return 673 + case .optionalEnumExtensionField: return 674 + case .optionalExtensionField: return 675 + case .optionalGroupExtensionField: return 676 + case .optionalMessageExtensionField: return 677 + case .optionRetention: return 678 + case .options: return 679 + case .optionTargetType: return 680 + case .other: return 681 + case .others: return 682 + case .out: return 683 + case .outputType: return 684 + case .overridableFeatures: return 685 + case .p: return 686 + case .package: return 687 + case .packed: return 688 + case .packedEnumExtensionField: return 689 + case .packedExtensionField: return 690 + case .padding: return 691 + case .parent: return 692 + case .parse: return 693 + case .path: return 694 + case .paths: return 695 + case .payload: return 696 + case .payloadSize: return 697 + case .phpClassPrefix: return 698 + case .phpMetadataNamespace: return 699 + case .phpNamespace: return 700 + case .pos: return 701 + case .positiveIntValue: return 702 + case .prefix: return 703 + case .preserveProtoFieldNames: return 704 + case .preTraverse: return 705 + case .printUnknownFields: return 706 + case .proto2: return 707 + case .proto3DefaultValue: return 708 + case .proto3Optional: return 709 + case .protobufApiversionCheck: return 710 + case .protobufApiversion3: return 711 + case .protobufBool: return 712 + case .protobufBytes: return 713 + case .protobufDouble: return 714 + case .protobufEnumMap: return 715 + case .protobufExtension: return 716 + case .protobufFixed32: return 717 + case .protobufFixed64: return 718 + case .protobufFloat: return 719 + case .protobufInt32: return 720 + case .protobufInt64: return 721 + case .protobufMap: return 722 + case .protobufMessageMap: return 723 + case .protobufSfixed32: return 724 + case .protobufSfixed64: return 725 + case .protobufSint32: return 726 + case .protobufSint64: return 727 + case .protobufString: return 728 + case .protobufUint32: return 729 + case .protobufUint64: return 730 + case .protobufExtensionFieldValues: return 731 + case .protobufFieldNumber: return 732 + case .protobufGeneratedIsEqualTo: return 733 + case .protobufNameMap: return 734 + case .protobufNewField: return 735 + case .protobufPackage: return 736 + case .protocol: return 737 + case .protoFieldName: return 738 + case .protoMessageName: return 739 + case .protoNameProviding: return 740 + case .protoPaths: return 741 + case .public: return 742 + case .publicDependency: return 743 + case .putBoolValue: return 744 + case .putBytesValue: return 745 + case .putDoubleValue: return 746 + case .putEnumValue: return 747 + case .putFixedUint32: return 748 + case .putFixedUint64: return 749 + case .putFloatValue: return 750 + case .putInt64: return 751 + case .putStringValue: return 752 + case .putUint64: return 753 + case .putUint64Hex: return 754 + case .putVarInt: return 755 + case .putZigZagVarInt: return 756 + case .pyGenericServices: return 757 + case .r: return 758 + case .rawChars: return 759 + case .rawRepresentable: return 760 + case .rawValue_: return 761 + case .read4HexDigits: return 762 + case .readBytes: return 763 + case .register: return 764 + case .repeated: return 765 + case .repeatedEnumExtensionField: return 766 + case .repeatedExtensionField: return 767 + case .repeatedFieldEncoding: return 768 + case .repeatedGroupExtensionField: return 769 + case .repeatedMessageExtensionField: return 770 + case .repeating: return 771 + case .requestStreaming: return 772 + case .requestTypeURL: return 773 + case .requiredSize: return 774 + case .responseStreaming: return 775 + case .responseTypeURL: return 776 + case .result: return 777 + case .retention: return 778 + case .rethrows: return 779 + case .return: return 780 + case .returnType: return 781 + case .revision: return 782 + case .rhs: return 783 + case .root: return 784 + case .rubyPackage: return 785 + case .s: return 786 + case .sawBackslash: return 787 + case .sawSection4Characters: return 788 + case .sawSection5Characters: return 789 + case .scan: return 790 + case .scanner: return 791 + case .seconds: return 792 + case .self_: return 793 + case .semantic: return 794 + case .sendable: return 795 + case .separator: return 796 + case .serialize: return 797 + case .serializedBytes: return 798 + case .serializedData: return 799 + case .serializedSize: return 800 + case .serverStreaming: return 801 + case .service: return 802 + case .serviceDescriptorProto: return 803 + case .serviceOptions: return 804 + case .set: return 805 + case .setExtensionValue: return 806 + case .shift: return 807 + case .simpleExtensionMap: return 808 + case .size: return 809 + case .sizer: return 810 + case .source: return 811 + case .sourceCodeInfo: return 812 + case .sourceContext: return 813 + case .sourceEncoding: return 814 + case .sourceFile: return 815 + case .sourceLocation: return 816 + case .span: return 817 + case .split: return 818 + case .start: return 819 + case .startArray: return 820 + case .startArrayObject: return 821 + case .startField: return 822 + case .startIndex: return 823 + case .startMessageField: return 824 + case .startObject: return 825 + case .startRegularField: return 826 + case .state: return 827 + case .static: return 828 + case .staticString: return 829 + case .storage: return 830 + case .string: return 831 + case .stringLiteral: return 832 + case .stringLiteralType: return 833 + case .stringResult: return 834 + case .stringValue: return 835 + case .struct: return 836 + case .structValue: return 837 + case .subDecoder: return 838 + case .subscript: return 839 + case .subVisitor: return 840 + case .swift: return 841 + case .swiftPrefix: return 842 + case .swiftProtobufContiguousBytes: return 843 + case .swiftProtobufError: return 844 + case .syntax: return 845 + case .t: return 846 + case .tag: return 847 + case .targets: return 848 + case .terminator: return 849 + case .testDecoder: return 850 + case .text: return 851 + case .textDecoder: return 852 + case .textFormatDecoder: return 853 + case .textFormatDecodingError: return 854 + case .textFormatDecodingOptions: return 855 + case .textFormatEncodingOptions: return 856 + case .textFormatEncodingVisitor: return 857 + case .textFormatString: return 858 + case .throwOrIgnore: return 859 + case .throws: return 860 + case .timeInterval: return 861 + case .timeIntervalSince1970: return 862 + case .timeIntervalSinceReferenceDate: return 863 + case .timestamp: return 864 + case .tooLarge: return 865 + case .total: return 866 + case .totalArrayDepth: return 867 + case .totalSize: return 868 + case .trailingComments: return 869 + case .traverse: return 870 + case .true: return 871 + case .try: return 872 + case .type: return 873 + case .typealias: return 874 + case .typeEnum: return 875 + case .typeName: return 876 + case .typePrefix: return 877 + case .typeStart: return 878 + case .typeUnknown: return 879 + case .typeURL: return 880 + case .uint32: return 881 + case .uint32Value: return 882 + case .uint64: return 883 + case .uint64Value: return 884 + case .uint8: return 885 + case .unchecked: return 886 + case .unicodeScalarLiteral: return 887 + case .unicodeScalarLiteralType: return 888 + case .unicodeScalars: return 889 + case .unicodeScalarView: return 890 + case .uninterpretedOption: return 891 + case .union: return 892 + case .uniqueStorage: return 893 + case .unknown: return 894 + case .unknownFields: return 895 + case .unknownStorage: return 896 + case .unpackTo: return 897 + case .unregisteredTypeURL: return 898 + case .unsafeBufferPointer: return 899 + case .unsafeMutablePointer: return 900 + case .unsafeMutableRawBufferPointer: return 901 + case .unsafeRawBufferPointer: return 902 + case .unsafeRawPointer: return 903 + case .unverifiedLazy: return 904 + case .updatedOptions: return 905 + case .url: return 906 + case .useDeterministicOrdering: return 907 + case .utf8: return 908 + case .utf8Ptr: return 909 + case .utf8ToDouble: return 910 + case .utf8Validation: return 911 + case .utf8View: return 912 + case .v: return 913 + case .value: return 914 + case .valueField: return 915 + case .values: return 916 + case .valueType: return 917 + case .var: return 918 + case .verification: return 919 + case .verificationState: return 920 + case .version: return 921 + case .versionString: return 922 + case .visitExtensionFields: return 923 + case .visitExtensionFieldsAsMessageSet: return 924 + case .visitMapField: return 925 + case .visitor: return 926 + case .visitPacked: return 927 + case .visitPackedBoolField: return 928 + case .visitPackedDoubleField: return 929 + case .visitPackedEnumField: return 930 + case .visitPackedFixed32Field: return 931 + case .visitPackedFixed64Field: return 932 + case .visitPackedFloatField: return 933 + case .visitPackedInt32Field: return 934 + case .visitPackedInt64Field: return 935 + case .visitPackedSfixed32Field: return 936 + case .visitPackedSfixed64Field: return 937 + case .visitPackedSint32Field: return 938 + case .visitPackedSint64Field: return 939 + case .visitPackedUint32Field: return 940 + case .visitPackedUint64Field: return 941 + case .visitRepeated: return 942 + case .visitRepeatedBoolField: return 943 + case .visitRepeatedBytesField: return 944 + case .visitRepeatedDoubleField: return 945 + case .visitRepeatedEnumField: return 946 + case .visitRepeatedFixed32Field: return 947 + case .visitRepeatedFixed64Field: return 948 + case .visitRepeatedFloatField: return 949 + case .visitRepeatedGroupField: return 950 + case .visitRepeatedInt32Field: return 951 + case .visitRepeatedInt64Field: return 952 + case .visitRepeatedMessageField: return 953 + case .visitRepeatedSfixed32Field: return 954 + case .visitRepeatedSfixed64Field: return 955 + case .visitRepeatedSint32Field: return 956 + case .visitRepeatedSint64Field: return 957 + case .visitRepeatedStringField: return 958 + case .visitRepeatedUint32Field: return 959 + case .visitRepeatedUint64Field: return 960 + case .visitSingular: return 961 + case .visitSingularBoolField: return 962 + case .visitSingularBytesField: return 963 + case .visitSingularDoubleField: return 964 + case .visitSingularEnumField: return 965 + case .visitSingularFixed32Field: return 966 + case .visitSingularFixed64Field: return 967 + case .visitSingularFloatField: return 968 + case .visitSingularGroupField: return 969 + case .visitSingularInt32Field: return 970 + case .visitSingularInt64Field: return 971 + case .visitSingularMessageField: return 972 + case .visitSingularSfixed32Field: return 973 + case .visitSingularSfixed64Field: return 974 + case .visitSingularSint32Field: return 975 + case .visitSingularSint64Field: return 976 + case .visitSingularStringField: return 977 + case .visitSingularUint32Field: return 978 + case .visitSingularUint64Field: return 979 + case .visitUnknown: return 980 + case .wasDecoded: return 981 + case .weak: return 982 + case .weakDependency: return 983 + case .where: return 984 + case .wireFormat: return 985 + case .with: return 986 + case .withUnsafeBytes: return 987 + case .withUnsafeMutableBytes: return 988 + case .work: return 989 + case .wrapped: return 990 + case .wrappedType: return 991 + case .wrappedValue: return 992 + case .written: return 993 + case .yday: return 994 case .UNRECOGNIZED(let i): return i default: break } @@ -3000,6 +3051,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .anyExtensionField, .anyMessageExtension, .anyMessageStorage, + .anyTypeUrlnotRegistered, .anyUnpackError, .api, .appended, @@ -3026,10 +3078,12 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .begin, .binary, .binaryDecoder, + .binaryDecoding, .binaryDecodingError, .binaryDecodingOptions, .binaryDelimited, .binaryEncoder, + .binaryEncoding, .binaryEncodingError, .binaryEncodingMessageSetSizeVisitor, .binaryEncodingMessageSetVisitor, @@ -3038,6 +3092,8 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .binaryEncodingVisitor, .binaryOptions, .binaryProtobufDelimitedMessages, + .binaryStreamDecoding, + .binaryStreamDecodingError, .bitPattern, .body, .bool, @@ -3151,6 +3207,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .clearVerification, .clearWeak, .clientStreaming, + .code, .codePoint, .codeUnits, .collection, @@ -3158,12 +3215,14 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .comma, .consumedBytes, .contentsOf, + .copy, .count, .countVarintsInBuffer, .csharpNamespace, .ctype, .customCodable, .customDebugStringConvertible, + .customStringConvertible, .d, .data, .dataResult, @@ -3343,6 +3402,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .fromHexDigit, .fullName, .func, + .function, .g, .generatedCodeInfo, .get, @@ -3543,6 +3603,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .jsondecodingError, .jsondecodingOptions, .jsonEncoder, + .jsonencoding, .jsonencodingError, .jsonencodingOptions, .jsonencodingVisitor, @@ -3573,6 +3634,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .lessThan, .let, .lhs, + .line, .list, .listOfMessages, .listValue, @@ -3584,6 +3646,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .major, .makeAsyncIterator, .makeIterator, + .malformedLength, .mapEntry, .mapKeyType, .mapToMessages, @@ -3634,6 +3697,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .nextVarInt, .nil, .nilLiteral, + .noBytesAvailable, .noStandardDescriptorAccessor, .nullValue, .number, @@ -3791,6 +3855,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .sourceContext, .sourceEncoding, .sourceFile, + .sourceLocation, .span, .split, .start, @@ -3818,6 +3883,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .swift, .swiftPrefix, .swiftProtobufContiguousBytes, + .swiftProtobufError, .syntax, .t, .tag, @@ -3838,6 +3904,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .timeIntervalSince1970, .timeIntervalSinceReferenceDate, .timestamp, + .tooLarge, .total, .totalArrayDepth, .totalSize, @@ -3870,6 +3937,7 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .unknownFields, .unknownStorage, .unpackTo, + .unregisteredTypeURL, .unsafeBufferPointer, .unsafeMutablePointer, .unsafeMutableRawBufferPointer, @@ -3986,971 +4054,988 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf. 9: .same(proto: "AnyExtensionField"), 10: .same(proto: "AnyMessageExtension"), 11: .same(proto: "AnyMessageStorage"), - 12: .same(proto: "AnyUnpackError"), - 13: .same(proto: "Api"), - 14: .same(proto: "appended"), - 15: .same(proto: "appendUIntHex"), - 16: .same(proto: "appendUnknown"), - 17: .same(proto: "areAllInitialized"), - 18: .same(proto: "Array"), - 19: .same(proto: "arrayDepth"), - 20: .same(proto: "arrayLiteral"), - 21: .same(proto: "arraySeparator"), - 22: .same(proto: "as"), - 23: .same(proto: "asciiOpenCurlyBracket"), - 24: .same(proto: "asciiZero"), - 25: .same(proto: "async"), - 26: .same(proto: "AsyncIterator"), - 27: .same(proto: "AsyncIteratorProtocol"), - 28: .same(proto: "AsyncMessageSequence"), - 29: .same(proto: "available"), - 30: .same(proto: "b"), - 31: .same(proto: "Base"), - 32: .same(proto: "base64Values"), - 33: .same(proto: "baseAddress"), - 34: .same(proto: "BaseType"), - 35: .same(proto: "begin"), - 36: .same(proto: "binary"), - 37: .same(proto: "BinaryDecoder"), - 38: .same(proto: "BinaryDecodingError"), - 39: .same(proto: "BinaryDecodingOptions"), - 40: .same(proto: "BinaryDelimited"), - 41: .same(proto: "BinaryEncoder"), - 42: .same(proto: "BinaryEncodingError"), - 43: .same(proto: "BinaryEncodingMessageSetSizeVisitor"), - 44: .same(proto: "BinaryEncodingMessageSetVisitor"), - 45: .same(proto: "BinaryEncodingOptions"), - 46: .same(proto: "BinaryEncodingSizeVisitor"), - 47: .same(proto: "BinaryEncodingVisitor"), - 48: .same(proto: "binaryOptions"), - 49: .same(proto: "binaryProtobufDelimitedMessages"), - 50: .same(proto: "bitPattern"), - 51: .same(proto: "body"), - 52: .same(proto: "Bool"), - 53: .same(proto: "booleanLiteral"), - 54: .same(proto: "BooleanLiteralType"), - 55: .same(proto: "boolValue"), - 56: .same(proto: "buffer"), - 57: .same(proto: "bytes"), - 58: .same(proto: "bytesInGroup"), - 59: .same(proto: "bytesNeeded"), - 60: .same(proto: "bytesRead"), - 61: .same(proto: "BytesValue"), - 62: .same(proto: "c"), - 63: .same(proto: "capitalizeNext"), - 64: .same(proto: "cardinality"), - 65: .same(proto: "CaseIterable"), - 66: .same(proto: "ccEnableArenas"), - 67: .same(proto: "ccGenericServices"), - 68: .same(proto: "Character"), - 69: .same(proto: "chars"), - 70: .same(proto: "chunk"), - 71: .same(proto: "class"), - 72: .same(proto: "clearAggregateValue"), - 73: .same(proto: "clearAllowAlias"), - 74: .same(proto: "clearBegin"), - 75: .same(proto: "clearCcEnableArenas"), - 76: .same(proto: "clearCcGenericServices"), - 77: .same(proto: "clearClientStreaming"), - 78: .same(proto: "clearCsharpNamespace"), - 79: .same(proto: "clearCtype"), - 80: .same(proto: "clearDebugRedact"), - 81: .same(proto: "clearDefaultValue"), - 82: .same(proto: "clearDeprecated"), - 83: .same(proto: "clearDeprecatedLegacyJsonFieldConflicts"), - 84: .same(proto: "clearDeprecationWarning"), - 85: .same(proto: "clearDoubleValue"), - 86: .same(proto: "clearEdition"), - 87: .same(proto: "clearEditionDeprecated"), - 88: .same(proto: "clearEditionIntroduced"), - 89: .same(proto: "clearEditionRemoved"), - 90: .same(proto: "clearEnd"), - 91: .same(proto: "clearEnumType"), - 92: .same(proto: "clearExtendee"), - 93: .same(proto: "clearExtensionValue"), - 94: .same(proto: "clearFeatures"), - 95: .same(proto: "clearFeatureSupport"), - 96: .same(proto: "clearFieldPresence"), - 97: .same(proto: "clearFixedFeatures"), - 98: .same(proto: "clearFullName"), - 99: .same(proto: "clearGoPackage"), - 100: .same(proto: "clearIdempotencyLevel"), - 101: .same(proto: "clearIdentifierValue"), - 102: .same(proto: "clearInputType"), - 103: .same(proto: "clearIsExtension"), - 104: .same(proto: "clearJavaGenerateEqualsAndHash"), - 105: .same(proto: "clearJavaGenericServices"), - 106: .same(proto: "clearJavaMultipleFiles"), - 107: .same(proto: "clearJavaOuterClassname"), - 108: .same(proto: "clearJavaPackage"), - 109: .same(proto: "clearJavaStringCheckUtf8"), - 110: .same(proto: "clearJsonFormat"), - 111: .same(proto: "clearJsonName"), - 112: .same(proto: "clearJstype"), - 113: .same(proto: "clearLabel"), - 114: .same(proto: "clearLazy"), - 115: .same(proto: "clearLeadingComments"), - 116: .same(proto: "clearMapEntry"), - 117: .same(proto: "clearMaximumEdition"), - 118: .same(proto: "clearMessageEncoding"), - 119: .same(proto: "clearMessageSetWireFormat"), - 120: .same(proto: "clearMinimumEdition"), - 121: .same(proto: "clearName"), - 122: .same(proto: "clearNamePart"), - 123: .same(proto: "clearNegativeIntValue"), - 124: .same(proto: "clearNoStandardDescriptorAccessor"), - 125: .same(proto: "clearNumber"), - 126: .same(proto: "clearObjcClassPrefix"), - 127: .same(proto: "clearOneofIndex"), - 128: .same(proto: "clearOptimizeFor"), - 129: .same(proto: "clearOptions"), - 130: .same(proto: "clearOutputType"), - 131: .same(proto: "clearOverridableFeatures"), - 132: .same(proto: "clearPackage"), - 133: .same(proto: "clearPacked"), - 134: .same(proto: "clearPhpClassPrefix"), - 135: .same(proto: "clearPhpMetadataNamespace"), - 136: .same(proto: "clearPhpNamespace"), - 137: .same(proto: "clearPositiveIntValue"), - 138: .same(proto: "clearProto3Optional"), - 139: .same(proto: "clearPyGenericServices"), - 140: .same(proto: "clearRepeated"), - 141: .same(proto: "clearRepeatedFieldEncoding"), - 142: .same(proto: "clearReserved"), - 143: .same(proto: "clearRetention"), - 144: .same(proto: "clearRubyPackage"), - 145: .same(proto: "clearSemantic"), - 146: .same(proto: "clearServerStreaming"), - 147: .same(proto: "clearSourceCodeInfo"), - 148: .same(proto: "clearSourceContext"), - 149: .same(proto: "clearSourceFile"), - 150: .same(proto: "clearStart"), - 151: .same(proto: "clearStringValue"), - 152: .same(proto: "clearSwiftPrefix"), - 153: .same(proto: "clearSyntax"), - 154: .same(proto: "clearTrailingComments"), - 155: .same(proto: "clearType"), - 156: .same(proto: "clearTypeName"), - 157: .same(proto: "clearUnverifiedLazy"), - 158: .same(proto: "clearUtf8Validation"), - 159: .same(proto: "clearValue"), - 160: .same(proto: "clearVerification"), - 161: .same(proto: "clearWeak"), - 162: .same(proto: "clientStreaming"), - 163: .same(proto: "codePoint"), - 164: .same(proto: "codeUnits"), - 165: .same(proto: "Collection"), - 166: .same(proto: "com"), - 167: .same(proto: "comma"), - 168: .same(proto: "consumedBytes"), - 169: .same(proto: "contentsOf"), - 170: .same(proto: "count"), - 171: .same(proto: "countVarintsInBuffer"), - 172: .same(proto: "csharpNamespace"), - 173: .same(proto: "ctype"), - 174: .same(proto: "customCodable"), - 175: .same(proto: "CustomDebugStringConvertible"), - 176: .same(proto: "d"), - 177: .same(proto: "Data"), - 178: .same(proto: "dataResult"), - 179: .same(proto: "date"), - 180: .same(proto: "daySec"), - 181: .same(proto: "daysSinceEpoch"), - 182: .same(proto: "debugDescription"), - 183: .same(proto: "debugRedact"), - 184: .same(proto: "declaration"), - 185: .same(proto: "decoded"), - 186: .same(proto: "decodedFromJSONNull"), - 187: .same(proto: "decodeExtensionField"), - 188: .same(proto: "decodeExtensionFieldsAsMessageSet"), - 189: .same(proto: "decodeJSON"), - 190: .same(proto: "decodeMapField"), - 191: .same(proto: "decodeMessage"), - 192: .same(proto: "decoder"), - 193: .same(proto: "decodeRepeated"), - 194: .same(proto: "decodeRepeatedBoolField"), - 195: .same(proto: "decodeRepeatedBytesField"), - 196: .same(proto: "decodeRepeatedDoubleField"), - 197: .same(proto: "decodeRepeatedEnumField"), - 198: .same(proto: "decodeRepeatedFixed32Field"), - 199: .same(proto: "decodeRepeatedFixed64Field"), - 200: .same(proto: "decodeRepeatedFloatField"), - 201: .same(proto: "decodeRepeatedGroupField"), - 202: .same(proto: "decodeRepeatedInt32Field"), - 203: .same(proto: "decodeRepeatedInt64Field"), - 204: .same(proto: "decodeRepeatedMessageField"), - 205: .same(proto: "decodeRepeatedSFixed32Field"), - 206: .same(proto: "decodeRepeatedSFixed64Field"), - 207: .same(proto: "decodeRepeatedSInt32Field"), - 208: .same(proto: "decodeRepeatedSInt64Field"), - 209: .same(proto: "decodeRepeatedStringField"), - 210: .same(proto: "decodeRepeatedUInt32Field"), - 211: .same(proto: "decodeRepeatedUInt64Field"), - 212: .same(proto: "decodeSingular"), - 213: .same(proto: "decodeSingularBoolField"), - 214: .same(proto: "decodeSingularBytesField"), - 215: .same(proto: "decodeSingularDoubleField"), - 216: .same(proto: "decodeSingularEnumField"), - 217: .same(proto: "decodeSingularFixed32Field"), - 218: .same(proto: "decodeSingularFixed64Field"), - 219: .same(proto: "decodeSingularFloatField"), - 220: .same(proto: "decodeSingularGroupField"), - 221: .same(proto: "decodeSingularInt32Field"), - 222: .same(proto: "decodeSingularInt64Field"), - 223: .same(proto: "decodeSingularMessageField"), - 224: .same(proto: "decodeSingularSFixed32Field"), - 225: .same(proto: "decodeSingularSFixed64Field"), - 226: .same(proto: "decodeSingularSInt32Field"), - 227: .same(proto: "decodeSingularSInt64Field"), - 228: .same(proto: "decodeSingularStringField"), - 229: .same(proto: "decodeSingularUInt32Field"), - 230: .same(proto: "decodeSingularUInt64Field"), - 231: .same(proto: "decodeTextFormat"), - 232: .same(proto: "defaultAnyTypeURLPrefix"), - 233: .same(proto: "defaults"), - 234: .same(proto: "defaultValue"), - 235: .same(proto: "dependency"), - 236: .same(proto: "deprecated"), - 237: .same(proto: "deprecatedLegacyJsonFieldConflicts"), - 238: .same(proto: "deprecationWarning"), - 239: .same(proto: "description"), - 240: .same(proto: "DescriptorProto"), - 241: .same(proto: "Dictionary"), - 242: .same(proto: "dictionaryLiteral"), - 243: .same(proto: "digit"), - 244: .same(proto: "digit0"), - 245: .same(proto: "digit1"), - 246: .same(proto: "digitCount"), - 247: .same(proto: "digits"), - 248: .same(proto: "digitValue"), - 249: .same(proto: "discardableResult"), - 250: .same(proto: "discardUnknownFields"), - 251: .same(proto: "Double"), - 252: .same(proto: "doubleValue"), - 253: .same(proto: "Duration"), - 254: .same(proto: "E"), - 255: .same(proto: "edition"), - 256: .same(proto: "EditionDefault"), - 257: .same(proto: "editionDefaults"), - 258: .same(proto: "editionDeprecated"), - 259: .same(proto: "editionIntroduced"), - 260: .same(proto: "editionRemoved"), - 261: .same(proto: "Element"), - 262: .same(proto: "elements"), - 263: .same(proto: "emitExtensionFieldName"), - 264: .same(proto: "emitFieldName"), - 265: .same(proto: "emitFieldNumber"), - 266: .same(proto: "Empty"), - 267: .same(proto: "encodeAsBytes"), - 268: .same(proto: "encoded"), - 269: .same(proto: "encodedJSONString"), - 270: .same(proto: "encodedSize"), - 271: .same(proto: "encodeField"), - 272: .same(proto: "encoder"), - 273: .same(proto: "end"), - 274: .same(proto: "endArray"), - 275: .same(proto: "endMessageField"), - 276: .same(proto: "endObject"), - 277: .same(proto: "endRegularField"), - 278: .same(proto: "enum"), - 279: .same(proto: "EnumDescriptorProto"), - 280: .same(proto: "EnumOptions"), - 281: .same(proto: "EnumReservedRange"), - 282: .same(proto: "enumType"), - 283: .same(proto: "enumvalue"), - 284: .same(proto: "EnumValueDescriptorProto"), - 285: .same(proto: "EnumValueOptions"), - 286: .same(proto: "Equatable"), - 287: .same(proto: "Error"), - 288: .same(proto: "ExpressibleByArrayLiteral"), - 289: .same(proto: "ExpressibleByDictionaryLiteral"), - 290: .same(proto: "ext"), - 291: .same(proto: "extDecoder"), - 292: .same(proto: "extendedGraphemeClusterLiteral"), - 293: .same(proto: "ExtendedGraphemeClusterLiteralType"), - 294: .same(proto: "extendee"), - 295: .same(proto: "ExtensibleMessage"), - 296: .same(proto: "extension"), - 297: .same(proto: "ExtensionField"), - 298: .same(proto: "extensionFieldNumber"), - 299: .same(proto: "ExtensionFieldValueSet"), - 300: .same(proto: "ExtensionMap"), - 301: .same(proto: "extensionRange"), - 302: .same(proto: "ExtensionRangeOptions"), - 303: .same(proto: "extensions"), - 304: .same(proto: "extras"), - 305: .same(proto: "F"), - 306: .same(proto: "false"), - 307: .same(proto: "features"), - 308: .same(proto: "FeatureSet"), - 309: .same(proto: "FeatureSetDefaults"), - 310: .same(proto: "FeatureSetEditionDefault"), - 311: .same(proto: "featureSupport"), - 312: .same(proto: "field"), - 313: .same(proto: "fieldData"), - 314: .same(proto: "FieldDescriptorProto"), - 315: .same(proto: "FieldMask"), - 316: .same(proto: "fieldName"), - 317: .same(proto: "fieldNameCount"), - 318: .same(proto: "fieldNum"), - 319: .same(proto: "fieldNumber"), - 320: .same(proto: "fieldNumberForProto"), - 321: .same(proto: "FieldOptions"), - 322: .same(proto: "fieldPresence"), - 323: .same(proto: "fields"), - 324: .same(proto: "fieldSize"), - 325: .same(proto: "FieldTag"), - 326: .same(proto: "fieldType"), - 327: .same(proto: "file"), - 328: .same(proto: "FileDescriptorProto"), - 329: .same(proto: "FileDescriptorSet"), - 330: .same(proto: "fileName"), - 331: .same(proto: "FileOptions"), - 332: .same(proto: "filter"), - 333: .same(proto: "final"), - 334: .same(proto: "finiteOnly"), - 335: .same(proto: "first"), - 336: .same(proto: "firstItem"), - 337: .same(proto: "fixedFeatures"), - 338: .same(proto: "Float"), - 339: .same(proto: "floatLiteral"), - 340: .same(proto: "FloatLiteralType"), - 341: .same(proto: "FloatValue"), - 342: .same(proto: "forMessageName"), - 343: .same(proto: "formUnion"), - 344: .same(proto: "forReadingFrom"), - 345: .same(proto: "forTypeURL"), - 346: .same(proto: "ForwardParser"), - 347: .same(proto: "forWritingInto"), - 348: .same(proto: "from"), - 349: .same(proto: "fromAscii2"), - 350: .same(proto: "fromAscii4"), - 351: .same(proto: "fromByteOffset"), - 352: .same(proto: "fromHexDigit"), - 353: .same(proto: "fullName"), - 354: .same(proto: "func"), - 355: .same(proto: "G"), - 356: .same(proto: "GeneratedCodeInfo"), - 357: .same(proto: "get"), - 358: .same(proto: "getExtensionValue"), - 359: .same(proto: "googleapis"), - 360: .same(proto: "Google_Protobuf_Any"), - 361: .same(proto: "Google_Protobuf_Api"), - 362: .same(proto: "Google_Protobuf_BoolValue"), - 363: .same(proto: "Google_Protobuf_BytesValue"), - 364: .same(proto: "Google_Protobuf_DescriptorProto"), - 365: .same(proto: "Google_Protobuf_DoubleValue"), - 366: .same(proto: "Google_Protobuf_Duration"), - 367: .same(proto: "Google_Protobuf_Edition"), - 368: .same(proto: "Google_Protobuf_Empty"), - 369: .same(proto: "Google_Protobuf_Enum"), - 370: .same(proto: "Google_Protobuf_EnumDescriptorProto"), - 371: .same(proto: "Google_Protobuf_EnumOptions"), - 372: .same(proto: "Google_Protobuf_EnumValue"), - 373: .same(proto: "Google_Protobuf_EnumValueDescriptorProto"), - 374: .same(proto: "Google_Protobuf_EnumValueOptions"), - 375: .same(proto: "Google_Protobuf_ExtensionRangeOptions"), - 376: .same(proto: "Google_Protobuf_FeatureSet"), - 377: .same(proto: "Google_Protobuf_FeatureSetDefaults"), - 378: .same(proto: "Google_Protobuf_Field"), - 379: .same(proto: "Google_Protobuf_FieldDescriptorProto"), - 380: .same(proto: "Google_Protobuf_FieldMask"), - 381: .same(proto: "Google_Protobuf_FieldOptions"), - 382: .same(proto: "Google_Protobuf_FileDescriptorProto"), - 383: .same(proto: "Google_Protobuf_FileDescriptorSet"), - 384: .same(proto: "Google_Protobuf_FileOptions"), - 385: .same(proto: "Google_Protobuf_FloatValue"), - 386: .same(proto: "Google_Protobuf_GeneratedCodeInfo"), - 387: .same(proto: "Google_Protobuf_Int32Value"), - 388: .same(proto: "Google_Protobuf_Int64Value"), - 389: .same(proto: "Google_Protobuf_ListValue"), - 390: .same(proto: "Google_Protobuf_MessageOptions"), - 391: .same(proto: "Google_Protobuf_Method"), - 392: .same(proto: "Google_Protobuf_MethodDescriptorProto"), - 393: .same(proto: "Google_Protobuf_MethodOptions"), - 394: .same(proto: "Google_Protobuf_Mixin"), - 395: .same(proto: "Google_Protobuf_NullValue"), - 396: .same(proto: "Google_Protobuf_OneofDescriptorProto"), - 397: .same(proto: "Google_Protobuf_OneofOptions"), - 398: .same(proto: "Google_Protobuf_Option"), - 399: .same(proto: "Google_Protobuf_ServiceDescriptorProto"), - 400: .same(proto: "Google_Protobuf_ServiceOptions"), - 401: .same(proto: "Google_Protobuf_SourceCodeInfo"), - 402: .same(proto: "Google_Protobuf_SourceContext"), - 403: .same(proto: "Google_Protobuf_StringValue"), - 404: .same(proto: "Google_Protobuf_Struct"), - 405: .same(proto: "Google_Protobuf_Syntax"), - 406: .same(proto: "Google_Protobuf_Timestamp"), - 407: .same(proto: "Google_Protobuf_Type"), - 408: .same(proto: "Google_Protobuf_UInt32Value"), - 409: .same(proto: "Google_Protobuf_UInt64Value"), - 410: .same(proto: "Google_Protobuf_UninterpretedOption"), - 411: .same(proto: "Google_Protobuf_Value"), - 412: .same(proto: "goPackage"), - 413: .same(proto: "group"), - 414: .same(proto: "groupFieldNumberStack"), - 415: .same(proto: "groupSize"), - 416: .same(proto: "hadOneofValue"), - 417: .same(proto: "handleConflictingOneOf"), - 418: .same(proto: "hasAggregateValue"), - 419: .same(proto: "hasAllowAlias"), - 420: .same(proto: "hasBegin"), - 421: .same(proto: "hasCcEnableArenas"), - 422: .same(proto: "hasCcGenericServices"), - 423: .same(proto: "hasClientStreaming"), - 424: .same(proto: "hasCsharpNamespace"), - 425: .same(proto: "hasCtype"), - 426: .same(proto: "hasDebugRedact"), - 427: .same(proto: "hasDefaultValue"), - 428: .same(proto: "hasDeprecated"), - 429: .same(proto: "hasDeprecatedLegacyJsonFieldConflicts"), - 430: .same(proto: "hasDeprecationWarning"), - 431: .same(proto: "hasDoubleValue"), - 432: .same(proto: "hasEdition"), - 433: .same(proto: "hasEditionDeprecated"), - 434: .same(proto: "hasEditionIntroduced"), - 435: .same(proto: "hasEditionRemoved"), - 436: .same(proto: "hasEnd"), - 437: .same(proto: "hasEnumType"), - 438: .same(proto: "hasExtendee"), - 439: .same(proto: "hasExtensionValue"), - 440: .same(proto: "hasFeatures"), - 441: .same(proto: "hasFeatureSupport"), - 442: .same(proto: "hasFieldPresence"), - 443: .same(proto: "hasFixedFeatures"), - 444: .same(proto: "hasFullName"), - 445: .same(proto: "hasGoPackage"), - 446: .same(proto: "hash"), - 447: .same(proto: "Hashable"), - 448: .same(proto: "hasher"), - 449: .same(proto: "HashVisitor"), - 450: .same(proto: "hasIdempotencyLevel"), - 451: .same(proto: "hasIdentifierValue"), - 452: .same(proto: "hasInputType"), - 453: .same(proto: "hasIsExtension"), - 454: .same(proto: "hasJavaGenerateEqualsAndHash"), - 455: .same(proto: "hasJavaGenericServices"), - 456: .same(proto: "hasJavaMultipleFiles"), - 457: .same(proto: "hasJavaOuterClassname"), - 458: .same(proto: "hasJavaPackage"), - 459: .same(proto: "hasJavaStringCheckUtf8"), - 460: .same(proto: "hasJsonFormat"), - 461: .same(proto: "hasJsonName"), - 462: .same(proto: "hasJstype"), - 463: .same(proto: "hasLabel"), - 464: .same(proto: "hasLazy"), - 465: .same(proto: "hasLeadingComments"), - 466: .same(proto: "hasMapEntry"), - 467: .same(proto: "hasMaximumEdition"), - 468: .same(proto: "hasMessageEncoding"), - 469: .same(proto: "hasMessageSetWireFormat"), - 470: .same(proto: "hasMinimumEdition"), - 471: .same(proto: "hasName"), - 472: .same(proto: "hasNamePart"), - 473: .same(proto: "hasNegativeIntValue"), - 474: .same(proto: "hasNoStandardDescriptorAccessor"), - 475: .same(proto: "hasNumber"), - 476: .same(proto: "hasObjcClassPrefix"), - 477: .same(proto: "hasOneofIndex"), - 478: .same(proto: "hasOptimizeFor"), - 479: .same(proto: "hasOptions"), - 480: .same(proto: "hasOutputType"), - 481: .same(proto: "hasOverridableFeatures"), - 482: .same(proto: "hasPackage"), - 483: .same(proto: "hasPacked"), - 484: .same(proto: "hasPhpClassPrefix"), - 485: .same(proto: "hasPhpMetadataNamespace"), - 486: .same(proto: "hasPhpNamespace"), - 487: .same(proto: "hasPositiveIntValue"), - 488: .same(proto: "hasProto3Optional"), - 489: .same(proto: "hasPyGenericServices"), - 490: .same(proto: "hasRepeated"), - 491: .same(proto: "hasRepeatedFieldEncoding"), - 492: .same(proto: "hasReserved"), - 493: .same(proto: "hasRetention"), - 494: .same(proto: "hasRubyPackage"), - 495: .same(proto: "hasSemantic"), - 496: .same(proto: "hasServerStreaming"), - 497: .same(proto: "hasSourceCodeInfo"), - 498: .same(proto: "hasSourceContext"), - 499: .same(proto: "hasSourceFile"), - 500: .same(proto: "hasStart"), - 501: .same(proto: "hasStringValue"), - 502: .same(proto: "hasSwiftPrefix"), - 503: .same(proto: "hasSyntax"), - 504: .same(proto: "hasTrailingComments"), - 505: .same(proto: "hasType"), - 506: .same(proto: "hasTypeName"), - 507: .same(proto: "hasUnverifiedLazy"), - 508: .same(proto: "hasUtf8Validation"), - 509: .same(proto: "hasValue"), - 510: .same(proto: "hasVerification"), - 511: .same(proto: "hasWeak"), - 512: .same(proto: "hour"), - 513: .same(proto: "i"), - 514: .same(proto: "idempotencyLevel"), - 515: .same(proto: "identifierValue"), - 516: .same(proto: "if"), - 517: .same(proto: "ignoreUnknownExtensionFields"), - 518: .same(proto: "ignoreUnknownFields"), - 519: .same(proto: "index"), - 520: .same(proto: "init"), - 521: .same(proto: "inout"), - 522: .same(proto: "inputType"), - 523: .same(proto: "insert"), - 524: .same(proto: "Int"), - 525: .same(proto: "Int32"), - 526: .same(proto: "Int32Value"), - 527: .same(proto: "Int64"), - 528: .same(proto: "Int64Value"), - 529: .same(proto: "Int8"), - 530: .same(proto: "integerLiteral"), - 531: .same(proto: "IntegerLiteralType"), - 532: .same(proto: "intern"), - 533: .same(proto: "Internal"), - 534: .same(proto: "InternalState"), - 535: .same(proto: "into"), - 536: .same(proto: "ints"), - 537: .same(proto: "isA"), - 538: .same(proto: "isEqual"), - 539: .same(proto: "isEqualTo"), - 540: .same(proto: "isExtension"), - 541: .same(proto: "isInitialized"), - 542: .same(proto: "isNegative"), - 543: .same(proto: "itemTagsEncodedSize"), - 544: .same(proto: "iterator"), - 545: .same(proto: "javaGenerateEqualsAndHash"), - 546: .same(proto: "javaGenericServices"), - 547: .same(proto: "javaMultipleFiles"), - 548: .same(proto: "javaOuterClassname"), - 549: .same(proto: "javaPackage"), - 550: .same(proto: "javaStringCheckUtf8"), - 551: .same(proto: "JSONDecoder"), - 552: .same(proto: "JSONDecodingError"), - 553: .same(proto: "JSONDecodingOptions"), - 554: .same(proto: "jsonEncoder"), - 555: .same(proto: "JSONEncodingError"), - 556: .same(proto: "JSONEncodingOptions"), - 557: .same(proto: "JSONEncodingVisitor"), - 558: .same(proto: "jsonFormat"), - 559: .same(proto: "JSONMapEncodingVisitor"), - 560: .same(proto: "jsonName"), - 561: .same(proto: "jsonPath"), - 562: .same(proto: "jsonPaths"), - 563: .same(proto: "JSONScanner"), - 564: .same(proto: "jsonString"), - 565: .same(proto: "jsonText"), - 566: .same(proto: "jsonUTF8Bytes"), - 567: .same(proto: "jsonUTF8Data"), - 568: .same(proto: "jstype"), - 569: .same(proto: "k"), - 570: .same(proto: "kChunkSize"), - 571: .same(proto: "Key"), - 572: .same(proto: "keyField"), - 573: .same(proto: "keyFieldOpt"), - 574: .same(proto: "KeyType"), - 575: .same(proto: "kind"), - 576: .same(proto: "l"), - 577: .same(proto: "label"), - 578: .same(proto: "lazy"), - 579: .same(proto: "leadingComments"), - 580: .same(proto: "leadingDetachedComments"), - 581: .same(proto: "length"), - 582: .same(proto: "lessThan"), - 583: .same(proto: "let"), - 584: .same(proto: "lhs"), - 585: .same(proto: "list"), - 586: .same(proto: "listOfMessages"), - 587: .same(proto: "listValue"), - 588: .same(proto: "littleEndian"), - 589: .same(proto: "load"), - 590: .same(proto: "localHasher"), - 591: .same(proto: "location"), - 592: .same(proto: "M"), - 593: .same(proto: "major"), - 594: .same(proto: "makeAsyncIterator"), - 595: .same(proto: "makeIterator"), - 596: .same(proto: "mapEntry"), - 597: .same(proto: "MapKeyType"), - 598: .same(proto: "mapToMessages"), - 599: .same(proto: "MapValueType"), - 600: .same(proto: "mapVisitor"), - 601: .same(proto: "maximumEdition"), - 602: .same(proto: "mdayStart"), - 603: .same(proto: "merge"), - 604: .same(proto: "message"), - 605: .same(proto: "messageDepthLimit"), - 606: .same(proto: "messageEncoding"), - 607: .same(proto: "MessageExtension"), - 608: .same(proto: "MessageImplementationBase"), - 609: .same(proto: "MessageOptions"), - 610: .same(proto: "MessageSet"), - 611: .same(proto: "messageSetWireFormat"), - 612: .same(proto: "messageSize"), - 613: .same(proto: "messageType"), - 614: .same(proto: "Method"), - 615: .same(proto: "MethodDescriptorProto"), - 616: .same(proto: "MethodOptions"), - 617: .same(proto: "methods"), - 618: .same(proto: "min"), - 619: .same(proto: "minimumEdition"), - 620: .same(proto: "minor"), - 621: .same(proto: "Mixin"), - 622: .same(proto: "mixins"), - 623: .same(proto: "modifier"), - 624: .same(proto: "modify"), - 625: .same(proto: "month"), - 626: .same(proto: "msgExtension"), - 627: .same(proto: "mutating"), - 628: .same(proto: "n"), - 629: .same(proto: "name"), - 630: .same(proto: "NameDescription"), - 631: .same(proto: "NameMap"), - 632: .same(proto: "NamePart"), - 633: .same(proto: "names"), - 634: .same(proto: "nanos"), - 635: .same(proto: "negativeIntValue"), - 636: .same(proto: "nestedType"), - 637: .same(proto: "newL"), - 638: .same(proto: "newList"), - 639: .same(proto: "newValue"), - 640: .same(proto: "next"), - 641: .same(proto: "nextByte"), - 642: .same(proto: "nextFieldNumber"), - 643: .same(proto: "nextVarInt"), - 644: .same(proto: "nil"), - 645: .same(proto: "nilLiteral"), - 646: .same(proto: "noStandardDescriptorAccessor"), - 647: .same(proto: "nullValue"), - 648: .same(proto: "number"), - 649: .same(proto: "numberValue"), - 650: .same(proto: "objcClassPrefix"), - 651: .same(proto: "of"), - 652: .same(proto: "oneofDecl"), - 653: .same(proto: "OneofDescriptorProto"), - 654: .same(proto: "oneofIndex"), - 655: .same(proto: "OneofOptions"), - 656: .same(proto: "oneofs"), - 657: .same(proto: "OneOf_Kind"), - 658: .same(proto: "optimizeFor"), - 659: .same(proto: "OptimizeMode"), - 660: .same(proto: "Option"), - 661: .same(proto: "OptionalEnumExtensionField"), - 662: .same(proto: "OptionalExtensionField"), - 663: .same(proto: "OptionalGroupExtensionField"), - 664: .same(proto: "OptionalMessageExtensionField"), - 665: .same(proto: "OptionRetention"), - 666: .same(proto: "options"), - 667: .same(proto: "OptionTargetType"), - 668: .same(proto: "other"), - 669: .same(proto: "others"), - 670: .same(proto: "out"), - 671: .same(proto: "outputType"), - 672: .same(proto: "overridableFeatures"), - 673: .same(proto: "p"), - 674: .same(proto: "package"), - 675: .same(proto: "packed"), - 676: .same(proto: "PackedEnumExtensionField"), - 677: .same(proto: "PackedExtensionField"), - 678: .same(proto: "padding"), - 679: .same(proto: "parent"), - 680: .same(proto: "parse"), - 681: .same(proto: "path"), - 682: .same(proto: "paths"), - 683: .same(proto: "payload"), - 684: .same(proto: "payloadSize"), - 685: .same(proto: "phpClassPrefix"), - 686: .same(proto: "phpMetadataNamespace"), - 687: .same(proto: "phpNamespace"), - 688: .same(proto: "pos"), - 689: .same(proto: "positiveIntValue"), - 690: .same(proto: "prefix"), - 691: .same(proto: "preserveProtoFieldNames"), - 692: .same(proto: "preTraverse"), - 693: .same(proto: "printUnknownFields"), - 694: .same(proto: "proto2"), - 695: .same(proto: "proto3DefaultValue"), - 696: .same(proto: "proto3Optional"), - 697: .same(proto: "ProtobufAPIVersionCheck"), - 698: .same(proto: "ProtobufAPIVersion_3"), - 699: .same(proto: "ProtobufBool"), - 700: .same(proto: "ProtobufBytes"), - 701: .same(proto: "ProtobufDouble"), - 702: .same(proto: "ProtobufEnumMap"), - 703: .same(proto: "protobufExtension"), - 704: .same(proto: "ProtobufFixed32"), - 705: .same(proto: "ProtobufFixed64"), - 706: .same(proto: "ProtobufFloat"), - 707: .same(proto: "ProtobufInt32"), - 708: .same(proto: "ProtobufInt64"), - 709: .same(proto: "ProtobufMap"), - 710: .same(proto: "ProtobufMessageMap"), - 711: .same(proto: "ProtobufSFixed32"), - 712: .same(proto: "ProtobufSFixed64"), - 713: .same(proto: "ProtobufSInt32"), - 714: .same(proto: "ProtobufSInt64"), - 715: .same(proto: "ProtobufString"), - 716: .same(proto: "ProtobufUInt32"), - 717: .same(proto: "ProtobufUInt64"), - 718: .same(proto: "protobuf_extensionFieldValues"), - 719: .same(proto: "protobuf_fieldNumber"), - 720: .same(proto: "protobuf_generated_isEqualTo"), - 721: .same(proto: "protobuf_nameMap"), - 722: .same(proto: "protobuf_newField"), - 723: .same(proto: "protobuf_package"), - 724: .same(proto: "protocol"), - 725: .same(proto: "protoFieldName"), - 726: .same(proto: "protoMessageName"), - 727: .same(proto: "ProtoNameProviding"), - 728: .same(proto: "protoPaths"), - 729: .same(proto: "public"), - 730: .same(proto: "publicDependency"), - 731: .same(proto: "putBoolValue"), - 732: .same(proto: "putBytesValue"), - 733: .same(proto: "putDoubleValue"), - 734: .same(proto: "putEnumValue"), - 735: .same(proto: "putFixedUInt32"), - 736: .same(proto: "putFixedUInt64"), - 737: .same(proto: "putFloatValue"), - 738: .same(proto: "putInt64"), - 739: .same(proto: "putStringValue"), - 740: .same(proto: "putUInt64"), - 741: .same(proto: "putUInt64Hex"), - 742: .same(proto: "putVarInt"), - 743: .same(proto: "putZigZagVarInt"), - 744: .same(proto: "pyGenericServices"), - 745: .same(proto: "R"), - 746: .same(proto: "rawChars"), - 747: .same(proto: "RawRepresentable"), - 748: .same(proto: "RawValue"), - 749: .same(proto: "read4HexDigits"), - 750: .same(proto: "readBytes"), - 751: .same(proto: "register"), - 752: .same(proto: "repeated"), - 753: .same(proto: "RepeatedEnumExtensionField"), - 754: .same(proto: "RepeatedExtensionField"), - 755: .same(proto: "repeatedFieldEncoding"), - 756: .same(proto: "RepeatedGroupExtensionField"), - 757: .same(proto: "RepeatedMessageExtensionField"), - 758: .same(proto: "repeating"), - 759: .same(proto: "requestStreaming"), - 760: .same(proto: "requestTypeURL"), - 761: .same(proto: "requiredSize"), - 762: .same(proto: "responseStreaming"), - 763: .same(proto: "responseTypeURL"), - 764: .same(proto: "result"), - 765: .same(proto: "retention"), - 766: .same(proto: "rethrows"), - 767: .same(proto: "return"), - 768: .same(proto: "ReturnType"), - 769: .same(proto: "revision"), - 770: .same(proto: "rhs"), - 771: .same(proto: "root"), - 772: .same(proto: "rubyPackage"), - 773: .same(proto: "s"), - 774: .same(proto: "sawBackslash"), - 775: .same(proto: "sawSection4Characters"), - 776: .same(proto: "sawSection5Characters"), - 777: .same(proto: "scan"), - 778: .same(proto: "scanner"), - 779: .same(proto: "seconds"), - 780: .same(proto: "self"), - 781: .same(proto: "semantic"), - 782: .same(proto: "Sendable"), - 783: .same(proto: "separator"), - 784: .same(proto: "serialize"), - 785: .same(proto: "serializedBytes"), - 786: .same(proto: "serializedData"), - 787: .same(proto: "serializedSize"), - 788: .same(proto: "serverStreaming"), - 789: .same(proto: "service"), - 790: .same(proto: "ServiceDescriptorProto"), - 791: .same(proto: "ServiceOptions"), - 792: .same(proto: "set"), - 793: .same(proto: "setExtensionValue"), - 794: .same(proto: "shift"), - 795: .same(proto: "SimpleExtensionMap"), - 796: .same(proto: "size"), - 797: .same(proto: "sizer"), - 798: .same(proto: "source"), - 799: .same(proto: "sourceCodeInfo"), - 800: .same(proto: "sourceContext"), - 801: .same(proto: "sourceEncoding"), - 802: .same(proto: "sourceFile"), - 803: .same(proto: "span"), - 804: .same(proto: "split"), - 805: .same(proto: "start"), - 806: .same(proto: "startArray"), - 807: .same(proto: "startArrayObject"), - 808: .same(proto: "startField"), - 809: .same(proto: "startIndex"), - 810: .same(proto: "startMessageField"), - 811: .same(proto: "startObject"), - 812: .same(proto: "startRegularField"), - 813: .same(proto: "state"), - 814: .same(proto: "static"), - 815: .same(proto: "StaticString"), - 816: .same(proto: "storage"), - 817: .same(proto: "String"), - 818: .same(proto: "stringLiteral"), - 819: .same(proto: "StringLiteralType"), - 820: .same(proto: "stringResult"), - 821: .same(proto: "stringValue"), - 822: .same(proto: "struct"), - 823: .same(proto: "structValue"), - 824: .same(proto: "subDecoder"), - 825: .same(proto: "subscript"), - 826: .same(proto: "subVisitor"), - 827: .same(proto: "Swift"), - 828: .same(proto: "swiftPrefix"), - 829: .same(proto: "SwiftProtobufContiguousBytes"), - 830: .same(proto: "syntax"), - 831: .same(proto: "T"), - 832: .same(proto: "tag"), - 833: .same(proto: "targets"), - 834: .same(proto: "terminator"), - 835: .same(proto: "testDecoder"), - 836: .same(proto: "text"), - 837: .same(proto: "textDecoder"), - 838: .same(proto: "TextFormatDecoder"), - 839: .same(proto: "TextFormatDecodingError"), - 840: .same(proto: "TextFormatDecodingOptions"), - 841: .same(proto: "TextFormatEncodingOptions"), - 842: .same(proto: "TextFormatEncodingVisitor"), - 843: .same(proto: "textFormatString"), - 844: .same(proto: "throwOrIgnore"), - 845: .same(proto: "throws"), - 846: .same(proto: "timeInterval"), - 847: .same(proto: "timeIntervalSince1970"), - 848: .same(proto: "timeIntervalSinceReferenceDate"), - 849: .same(proto: "Timestamp"), - 850: .same(proto: "total"), - 851: .same(proto: "totalArrayDepth"), - 852: .same(proto: "totalSize"), - 853: .same(proto: "trailingComments"), - 854: .same(proto: "traverse"), - 855: .same(proto: "true"), - 856: .same(proto: "try"), - 857: .same(proto: "type"), - 858: .same(proto: "typealias"), - 859: .same(proto: "TypeEnum"), - 860: .same(proto: "typeName"), - 861: .same(proto: "typePrefix"), - 862: .same(proto: "typeStart"), - 863: .same(proto: "typeUnknown"), - 864: .same(proto: "typeURL"), - 865: .same(proto: "UInt32"), - 866: .same(proto: "UInt32Value"), - 867: .same(proto: "UInt64"), - 868: .same(proto: "UInt64Value"), - 869: .same(proto: "UInt8"), - 870: .same(proto: "unchecked"), - 871: .same(proto: "unicodeScalarLiteral"), - 872: .same(proto: "UnicodeScalarLiteralType"), - 873: .same(proto: "unicodeScalars"), - 874: .same(proto: "UnicodeScalarView"), - 875: .same(proto: "uninterpretedOption"), - 876: .same(proto: "union"), - 877: .same(proto: "uniqueStorage"), - 878: .same(proto: "unknown"), - 879: .same(proto: "unknownFields"), - 880: .same(proto: "UnknownStorage"), - 881: .same(proto: "unpackTo"), - 882: .same(proto: "UnsafeBufferPointer"), - 883: .same(proto: "UnsafeMutablePointer"), - 884: .same(proto: "UnsafeMutableRawBufferPointer"), - 885: .same(proto: "UnsafeRawBufferPointer"), - 886: .same(proto: "UnsafeRawPointer"), - 887: .same(proto: "unverifiedLazy"), - 888: .same(proto: "updatedOptions"), - 889: .same(proto: "url"), - 890: .same(proto: "useDeterministicOrdering"), - 891: .same(proto: "utf8"), - 892: .same(proto: "utf8Ptr"), - 893: .same(proto: "utf8ToDouble"), - 894: .same(proto: "utf8Validation"), - 895: .same(proto: "UTF8View"), - 896: .same(proto: "v"), - 897: .same(proto: "value"), - 898: .same(proto: "valueField"), - 899: .same(proto: "values"), - 900: .same(proto: "ValueType"), - 901: .same(proto: "var"), - 902: .same(proto: "verification"), - 903: .same(proto: "VerificationState"), - 904: .same(proto: "Version"), - 905: .same(proto: "versionString"), - 906: .same(proto: "visitExtensionFields"), - 907: .same(proto: "visitExtensionFieldsAsMessageSet"), - 908: .same(proto: "visitMapField"), - 909: .same(proto: "visitor"), - 910: .same(proto: "visitPacked"), - 911: .same(proto: "visitPackedBoolField"), - 912: .same(proto: "visitPackedDoubleField"), - 913: .same(proto: "visitPackedEnumField"), - 914: .same(proto: "visitPackedFixed32Field"), - 915: .same(proto: "visitPackedFixed64Field"), - 916: .same(proto: "visitPackedFloatField"), - 917: .same(proto: "visitPackedInt32Field"), - 918: .same(proto: "visitPackedInt64Field"), - 919: .same(proto: "visitPackedSFixed32Field"), - 920: .same(proto: "visitPackedSFixed64Field"), - 921: .same(proto: "visitPackedSInt32Field"), - 922: .same(proto: "visitPackedSInt64Field"), - 923: .same(proto: "visitPackedUInt32Field"), - 924: .same(proto: "visitPackedUInt64Field"), - 925: .same(proto: "visitRepeated"), - 926: .same(proto: "visitRepeatedBoolField"), - 927: .same(proto: "visitRepeatedBytesField"), - 928: .same(proto: "visitRepeatedDoubleField"), - 929: .same(proto: "visitRepeatedEnumField"), - 930: .same(proto: "visitRepeatedFixed32Field"), - 931: .same(proto: "visitRepeatedFixed64Field"), - 932: .same(proto: "visitRepeatedFloatField"), - 933: .same(proto: "visitRepeatedGroupField"), - 934: .same(proto: "visitRepeatedInt32Field"), - 935: .same(proto: "visitRepeatedInt64Field"), - 936: .same(proto: "visitRepeatedMessageField"), - 937: .same(proto: "visitRepeatedSFixed32Field"), - 938: .same(proto: "visitRepeatedSFixed64Field"), - 939: .same(proto: "visitRepeatedSInt32Field"), - 940: .same(proto: "visitRepeatedSInt64Field"), - 941: .same(proto: "visitRepeatedStringField"), - 942: .same(proto: "visitRepeatedUInt32Field"), - 943: .same(proto: "visitRepeatedUInt64Field"), - 944: .same(proto: "visitSingular"), - 945: .same(proto: "visitSingularBoolField"), - 946: .same(proto: "visitSingularBytesField"), - 947: .same(proto: "visitSingularDoubleField"), - 948: .same(proto: "visitSingularEnumField"), - 949: .same(proto: "visitSingularFixed32Field"), - 950: .same(proto: "visitSingularFixed64Field"), - 951: .same(proto: "visitSingularFloatField"), - 952: .same(proto: "visitSingularGroupField"), - 953: .same(proto: "visitSingularInt32Field"), - 954: .same(proto: "visitSingularInt64Field"), - 955: .same(proto: "visitSingularMessageField"), - 956: .same(proto: "visitSingularSFixed32Field"), - 957: .same(proto: "visitSingularSFixed64Field"), - 958: .same(proto: "visitSingularSInt32Field"), - 959: .same(proto: "visitSingularSInt64Field"), - 960: .same(proto: "visitSingularStringField"), - 961: .same(proto: "visitSingularUInt32Field"), - 962: .same(proto: "visitSingularUInt64Field"), - 963: .same(proto: "visitUnknown"), - 964: .same(proto: "wasDecoded"), - 965: .same(proto: "weak"), - 966: .same(proto: "weakDependency"), - 967: .same(proto: "where"), - 968: .same(proto: "wireFormat"), - 969: .same(proto: "with"), - 970: .same(proto: "withUnsafeBytes"), - 971: .same(proto: "withUnsafeMutableBytes"), - 972: .same(proto: "work"), - 973: .same(proto: "Wrapped"), - 974: .same(proto: "WrappedType"), - 975: .same(proto: "wrappedValue"), - 976: .same(proto: "written"), - 977: .same(proto: "yday"), + 12: .same(proto: "anyTypeURLNotRegistered"), + 13: .same(proto: "AnyUnpackError"), + 14: .same(proto: "Api"), + 15: .same(proto: "appended"), + 16: .same(proto: "appendUIntHex"), + 17: .same(proto: "appendUnknown"), + 18: .same(proto: "areAllInitialized"), + 19: .same(proto: "Array"), + 20: .same(proto: "arrayDepth"), + 21: .same(proto: "arrayLiteral"), + 22: .same(proto: "arraySeparator"), + 23: .same(proto: "as"), + 24: .same(proto: "asciiOpenCurlyBracket"), + 25: .same(proto: "asciiZero"), + 26: .same(proto: "async"), + 27: .same(proto: "AsyncIterator"), + 28: .same(proto: "AsyncIteratorProtocol"), + 29: .same(proto: "AsyncMessageSequence"), + 30: .same(proto: "available"), + 31: .same(proto: "b"), + 32: .same(proto: "Base"), + 33: .same(proto: "base64Values"), + 34: .same(proto: "baseAddress"), + 35: .same(proto: "BaseType"), + 36: .same(proto: "begin"), + 37: .same(proto: "binary"), + 38: .same(proto: "BinaryDecoder"), + 39: .same(proto: "BinaryDecoding"), + 40: .same(proto: "BinaryDecodingError"), + 41: .same(proto: "BinaryDecodingOptions"), + 42: .same(proto: "BinaryDelimited"), + 43: .same(proto: "BinaryEncoder"), + 44: .same(proto: "BinaryEncoding"), + 45: .same(proto: "BinaryEncodingError"), + 46: .same(proto: "BinaryEncodingMessageSetSizeVisitor"), + 47: .same(proto: "BinaryEncodingMessageSetVisitor"), + 48: .same(proto: "BinaryEncodingOptions"), + 49: .same(proto: "BinaryEncodingSizeVisitor"), + 50: .same(proto: "BinaryEncodingVisitor"), + 51: .same(proto: "binaryOptions"), + 52: .same(proto: "binaryProtobufDelimitedMessages"), + 53: .same(proto: "BinaryStreamDecoding"), + 54: .same(proto: "binaryStreamDecodingError"), + 55: .same(proto: "bitPattern"), + 56: .same(proto: "body"), + 57: .same(proto: "Bool"), + 58: .same(proto: "booleanLiteral"), + 59: .same(proto: "BooleanLiteralType"), + 60: .same(proto: "boolValue"), + 61: .same(proto: "buffer"), + 62: .same(proto: "bytes"), + 63: .same(proto: "bytesInGroup"), + 64: .same(proto: "bytesNeeded"), + 65: .same(proto: "bytesRead"), + 66: .same(proto: "BytesValue"), + 67: .same(proto: "c"), + 68: .same(proto: "capitalizeNext"), + 69: .same(proto: "cardinality"), + 70: .same(proto: "CaseIterable"), + 71: .same(proto: "ccEnableArenas"), + 72: .same(proto: "ccGenericServices"), + 73: .same(proto: "Character"), + 74: .same(proto: "chars"), + 75: .same(proto: "chunk"), + 76: .same(proto: "class"), + 77: .same(proto: "clearAggregateValue"), + 78: .same(proto: "clearAllowAlias"), + 79: .same(proto: "clearBegin"), + 80: .same(proto: "clearCcEnableArenas"), + 81: .same(proto: "clearCcGenericServices"), + 82: .same(proto: "clearClientStreaming"), + 83: .same(proto: "clearCsharpNamespace"), + 84: .same(proto: "clearCtype"), + 85: .same(proto: "clearDebugRedact"), + 86: .same(proto: "clearDefaultValue"), + 87: .same(proto: "clearDeprecated"), + 88: .same(proto: "clearDeprecatedLegacyJsonFieldConflicts"), + 89: .same(proto: "clearDeprecationWarning"), + 90: .same(proto: "clearDoubleValue"), + 91: .same(proto: "clearEdition"), + 92: .same(proto: "clearEditionDeprecated"), + 93: .same(proto: "clearEditionIntroduced"), + 94: .same(proto: "clearEditionRemoved"), + 95: .same(proto: "clearEnd"), + 96: .same(proto: "clearEnumType"), + 97: .same(proto: "clearExtendee"), + 98: .same(proto: "clearExtensionValue"), + 99: .same(proto: "clearFeatures"), + 100: .same(proto: "clearFeatureSupport"), + 101: .same(proto: "clearFieldPresence"), + 102: .same(proto: "clearFixedFeatures"), + 103: .same(proto: "clearFullName"), + 104: .same(proto: "clearGoPackage"), + 105: .same(proto: "clearIdempotencyLevel"), + 106: .same(proto: "clearIdentifierValue"), + 107: .same(proto: "clearInputType"), + 108: .same(proto: "clearIsExtension"), + 109: .same(proto: "clearJavaGenerateEqualsAndHash"), + 110: .same(proto: "clearJavaGenericServices"), + 111: .same(proto: "clearJavaMultipleFiles"), + 112: .same(proto: "clearJavaOuterClassname"), + 113: .same(proto: "clearJavaPackage"), + 114: .same(proto: "clearJavaStringCheckUtf8"), + 115: .same(proto: "clearJsonFormat"), + 116: .same(proto: "clearJsonName"), + 117: .same(proto: "clearJstype"), + 118: .same(proto: "clearLabel"), + 119: .same(proto: "clearLazy"), + 120: .same(proto: "clearLeadingComments"), + 121: .same(proto: "clearMapEntry"), + 122: .same(proto: "clearMaximumEdition"), + 123: .same(proto: "clearMessageEncoding"), + 124: .same(proto: "clearMessageSetWireFormat"), + 125: .same(proto: "clearMinimumEdition"), + 126: .same(proto: "clearName"), + 127: .same(proto: "clearNamePart"), + 128: .same(proto: "clearNegativeIntValue"), + 129: .same(proto: "clearNoStandardDescriptorAccessor"), + 130: .same(proto: "clearNumber"), + 131: .same(proto: "clearObjcClassPrefix"), + 132: .same(proto: "clearOneofIndex"), + 133: .same(proto: "clearOptimizeFor"), + 134: .same(proto: "clearOptions"), + 135: .same(proto: "clearOutputType"), + 136: .same(proto: "clearOverridableFeatures"), + 137: .same(proto: "clearPackage"), + 138: .same(proto: "clearPacked"), + 139: .same(proto: "clearPhpClassPrefix"), + 140: .same(proto: "clearPhpMetadataNamespace"), + 141: .same(proto: "clearPhpNamespace"), + 142: .same(proto: "clearPositiveIntValue"), + 143: .same(proto: "clearProto3Optional"), + 144: .same(proto: "clearPyGenericServices"), + 145: .same(proto: "clearRepeated"), + 146: .same(proto: "clearRepeatedFieldEncoding"), + 147: .same(proto: "clearReserved"), + 148: .same(proto: "clearRetention"), + 149: .same(proto: "clearRubyPackage"), + 150: .same(proto: "clearSemantic"), + 151: .same(proto: "clearServerStreaming"), + 152: .same(proto: "clearSourceCodeInfo"), + 153: .same(proto: "clearSourceContext"), + 154: .same(proto: "clearSourceFile"), + 155: .same(proto: "clearStart"), + 156: .same(proto: "clearStringValue"), + 157: .same(proto: "clearSwiftPrefix"), + 158: .same(proto: "clearSyntax"), + 159: .same(proto: "clearTrailingComments"), + 160: .same(proto: "clearType"), + 161: .same(proto: "clearTypeName"), + 162: .same(proto: "clearUnverifiedLazy"), + 163: .same(proto: "clearUtf8Validation"), + 164: .same(proto: "clearValue"), + 165: .same(proto: "clearVerification"), + 166: .same(proto: "clearWeak"), + 167: .same(proto: "clientStreaming"), + 168: .same(proto: "code"), + 169: .same(proto: "codePoint"), + 170: .same(proto: "codeUnits"), + 171: .same(proto: "Collection"), + 172: .same(proto: "com"), + 173: .same(proto: "comma"), + 174: .same(proto: "consumedBytes"), + 175: .same(proto: "contentsOf"), + 176: .same(proto: "copy"), + 177: .same(proto: "count"), + 178: .same(proto: "countVarintsInBuffer"), + 179: .same(proto: "csharpNamespace"), + 180: .same(proto: "ctype"), + 181: .same(proto: "customCodable"), + 182: .same(proto: "CustomDebugStringConvertible"), + 183: .same(proto: "CustomStringConvertible"), + 184: .same(proto: "d"), + 185: .same(proto: "Data"), + 186: .same(proto: "dataResult"), + 187: .same(proto: "date"), + 188: .same(proto: "daySec"), + 189: .same(proto: "daysSinceEpoch"), + 190: .same(proto: "debugDescription"), + 191: .same(proto: "debugRedact"), + 192: .same(proto: "declaration"), + 193: .same(proto: "decoded"), + 194: .same(proto: "decodedFromJSONNull"), + 195: .same(proto: "decodeExtensionField"), + 196: .same(proto: "decodeExtensionFieldsAsMessageSet"), + 197: .same(proto: "decodeJSON"), + 198: .same(proto: "decodeMapField"), + 199: .same(proto: "decodeMessage"), + 200: .same(proto: "decoder"), + 201: .same(proto: "decodeRepeated"), + 202: .same(proto: "decodeRepeatedBoolField"), + 203: .same(proto: "decodeRepeatedBytesField"), + 204: .same(proto: "decodeRepeatedDoubleField"), + 205: .same(proto: "decodeRepeatedEnumField"), + 206: .same(proto: "decodeRepeatedFixed32Field"), + 207: .same(proto: "decodeRepeatedFixed64Field"), + 208: .same(proto: "decodeRepeatedFloatField"), + 209: .same(proto: "decodeRepeatedGroupField"), + 210: .same(proto: "decodeRepeatedInt32Field"), + 211: .same(proto: "decodeRepeatedInt64Field"), + 212: .same(proto: "decodeRepeatedMessageField"), + 213: .same(proto: "decodeRepeatedSFixed32Field"), + 214: .same(proto: "decodeRepeatedSFixed64Field"), + 215: .same(proto: "decodeRepeatedSInt32Field"), + 216: .same(proto: "decodeRepeatedSInt64Field"), + 217: .same(proto: "decodeRepeatedStringField"), + 218: .same(proto: "decodeRepeatedUInt32Field"), + 219: .same(proto: "decodeRepeatedUInt64Field"), + 220: .same(proto: "decodeSingular"), + 221: .same(proto: "decodeSingularBoolField"), + 222: .same(proto: "decodeSingularBytesField"), + 223: .same(proto: "decodeSingularDoubleField"), + 224: .same(proto: "decodeSingularEnumField"), + 225: .same(proto: "decodeSingularFixed32Field"), + 226: .same(proto: "decodeSingularFixed64Field"), + 227: .same(proto: "decodeSingularFloatField"), + 228: .same(proto: "decodeSingularGroupField"), + 229: .same(proto: "decodeSingularInt32Field"), + 230: .same(proto: "decodeSingularInt64Field"), + 231: .same(proto: "decodeSingularMessageField"), + 232: .same(proto: "decodeSingularSFixed32Field"), + 233: .same(proto: "decodeSingularSFixed64Field"), + 234: .same(proto: "decodeSingularSInt32Field"), + 235: .same(proto: "decodeSingularSInt64Field"), + 236: .same(proto: "decodeSingularStringField"), + 237: .same(proto: "decodeSingularUInt32Field"), + 238: .same(proto: "decodeSingularUInt64Field"), + 239: .same(proto: "decodeTextFormat"), + 240: .same(proto: "defaultAnyTypeURLPrefix"), + 241: .same(proto: "defaults"), + 242: .same(proto: "defaultValue"), + 243: .same(proto: "dependency"), + 244: .same(proto: "deprecated"), + 245: .same(proto: "deprecatedLegacyJsonFieldConflicts"), + 246: .same(proto: "deprecationWarning"), + 247: .same(proto: "description"), + 248: .same(proto: "DescriptorProto"), + 249: .same(proto: "Dictionary"), + 250: .same(proto: "dictionaryLiteral"), + 251: .same(proto: "digit"), + 252: .same(proto: "digit0"), + 253: .same(proto: "digit1"), + 254: .same(proto: "digitCount"), + 255: .same(proto: "digits"), + 256: .same(proto: "digitValue"), + 257: .same(proto: "discardableResult"), + 258: .same(proto: "discardUnknownFields"), + 259: .same(proto: "Double"), + 260: .same(proto: "doubleValue"), + 261: .same(proto: "Duration"), + 262: .same(proto: "E"), + 263: .same(proto: "edition"), + 264: .same(proto: "EditionDefault"), + 265: .same(proto: "editionDefaults"), + 266: .same(proto: "editionDeprecated"), + 267: .same(proto: "editionIntroduced"), + 268: .same(proto: "editionRemoved"), + 269: .same(proto: "Element"), + 270: .same(proto: "elements"), + 271: .same(proto: "emitExtensionFieldName"), + 272: .same(proto: "emitFieldName"), + 273: .same(proto: "emitFieldNumber"), + 274: .same(proto: "Empty"), + 275: .same(proto: "encodeAsBytes"), + 276: .same(proto: "encoded"), + 277: .same(proto: "encodedJSONString"), + 278: .same(proto: "encodedSize"), + 279: .same(proto: "encodeField"), + 280: .same(proto: "encoder"), + 281: .same(proto: "end"), + 282: .same(proto: "endArray"), + 283: .same(proto: "endMessageField"), + 284: .same(proto: "endObject"), + 285: .same(proto: "endRegularField"), + 286: .same(proto: "enum"), + 287: .same(proto: "EnumDescriptorProto"), + 288: .same(proto: "EnumOptions"), + 289: .same(proto: "EnumReservedRange"), + 290: .same(proto: "enumType"), + 291: .same(proto: "enumvalue"), + 292: .same(proto: "EnumValueDescriptorProto"), + 293: .same(proto: "EnumValueOptions"), + 294: .same(proto: "Equatable"), + 295: .same(proto: "Error"), + 296: .same(proto: "ExpressibleByArrayLiteral"), + 297: .same(proto: "ExpressibleByDictionaryLiteral"), + 298: .same(proto: "ext"), + 299: .same(proto: "extDecoder"), + 300: .same(proto: "extendedGraphemeClusterLiteral"), + 301: .same(proto: "ExtendedGraphemeClusterLiteralType"), + 302: .same(proto: "extendee"), + 303: .same(proto: "ExtensibleMessage"), + 304: .same(proto: "extension"), + 305: .same(proto: "ExtensionField"), + 306: .same(proto: "extensionFieldNumber"), + 307: .same(proto: "ExtensionFieldValueSet"), + 308: .same(proto: "ExtensionMap"), + 309: .same(proto: "extensionRange"), + 310: .same(proto: "ExtensionRangeOptions"), + 311: .same(proto: "extensions"), + 312: .same(proto: "extras"), + 313: .same(proto: "F"), + 314: .same(proto: "false"), + 315: .same(proto: "features"), + 316: .same(proto: "FeatureSet"), + 317: .same(proto: "FeatureSetDefaults"), + 318: .same(proto: "FeatureSetEditionDefault"), + 319: .same(proto: "featureSupport"), + 320: .same(proto: "field"), + 321: .same(proto: "fieldData"), + 322: .same(proto: "FieldDescriptorProto"), + 323: .same(proto: "FieldMask"), + 324: .same(proto: "fieldName"), + 325: .same(proto: "fieldNameCount"), + 326: .same(proto: "fieldNum"), + 327: .same(proto: "fieldNumber"), + 328: .same(proto: "fieldNumberForProto"), + 329: .same(proto: "FieldOptions"), + 330: .same(proto: "fieldPresence"), + 331: .same(proto: "fields"), + 332: .same(proto: "fieldSize"), + 333: .same(proto: "FieldTag"), + 334: .same(proto: "fieldType"), + 335: .same(proto: "file"), + 336: .same(proto: "FileDescriptorProto"), + 337: .same(proto: "FileDescriptorSet"), + 338: .same(proto: "fileName"), + 339: .same(proto: "FileOptions"), + 340: .same(proto: "filter"), + 341: .same(proto: "final"), + 342: .same(proto: "finiteOnly"), + 343: .same(proto: "first"), + 344: .same(proto: "firstItem"), + 345: .same(proto: "fixedFeatures"), + 346: .same(proto: "Float"), + 347: .same(proto: "floatLiteral"), + 348: .same(proto: "FloatLiteralType"), + 349: .same(proto: "FloatValue"), + 350: .same(proto: "forMessageName"), + 351: .same(proto: "formUnion"), + 352: .same(proto: "forReadingFrom"), + 353: .same(proto: "forTypeURL"), + 354: .same(proto: "ForwardParser"), + 355: .same(proto: "forWritingInto"), + 356: .same(proto: "from"), + 357: .same(proto: "fromAscii2"), + 358: .same(proto: "fromAscii4"), + 359: .same(proto: "fromByteOffset"), + 360: .same(proto: "fromHexDigit"), + 361: .same(proto: "fullName"), + 362: .same(proto: "func"), + 363: .same(proto: "function"), + 364: .same(proto: "G"), + 365: .same(proto: "GeneratedCodeInfo"), + 366: .same(proto: "get"), + 367: .same(proto: "getExtensionValue"), + 368: .same(proto: "googleapis"), + 369: .same(proto: "Google_Protobuf_Any"), + 370: .same(proto: "Google_Protobuf_Api"), + 371: .same(proto: "Google_Protobuf_BoolValue"), + 372: .same(proto: "Google_Protobuf_BytesValue"), + 373: .same(proto: "Google_Protobuf_DescriptorProto"), + 374: .same(proto: "Google_Protobuf_DoubleValue"), + 375: .same(proto: "Google_Protobuf_Duration"), + 376: .same(proto: "Google_Protobuf_Edition"), + 377: .same(proto: "Google_Protobuf_Empty"), + 378: .same(proto: "Google_Protobuf_Enum"), + 379: .same(proto: "Google_Protobuf_EnumDescriptorProto"), + 380: .same(proto: "Google_Protobuf_EnumOptions"), + 381: .same(proto: "Google_Protobuf_EnumValue"), + 382: .same(proto: "Google_Protobuf_EnumValueDescriptorProto"), + 383: .same(proto: "Google_Protobuf_EnumValueOptions"), + 384: .same(proto: "Google_Protobuf_ExtensionRangeOptions"), + 385: .same(proto: "Google_Protobuf_FeatureSet"), + 386: .same(proto: "Google_Protobuf_FeatureSetDefaults"), + 387: .same(proto: "Google_Protobuf_Field"), + 388: .same(proto: "Google_Protobuf_FieldDescriptorProto"), + 389: .same(proto: "Google_Protobuf_FieldMask"), + 390: .same(proto: "Google_Protobuf_FieldOptions"), + 391: .same(proto: "Google_Protobuf_FileDescriptorProto"), + 392: .same(proto: "Google_Protobuf_FileDescriptorSet"), + 393: .same(proto: "Google_Protobuf_FileOptions"), + 394: .same(proto: "Google_Protobuf_FloatValue"), + 395: .same(proto: "Google_Protobuf_GeneratedCodeInfo"), + 396: .same(proto: "Google_Protobuf_Int32Value"), + 397: .same(proto: "Google_Protobuf_Int64Value"), + 398: .same(proto: "Google_Protobuf_ListValue"), + 399: .same(proto: "Google_Protobuf_MessageOptions"), + 400: .same(proto: "Google_Protobuf_Method"), + 401: .same(proto: "Google_Protobuf_MethodDescriptorProto"), + 402: .same(proto: "Google_Protobuf_MethodOptions"), + 403: .same(proto: "Google_Protobuf_Mixin"), + 404: .same(proto: "Google_Protobuf_NullValue"), + 405: .same(proto: "Google_Protobuf_OneofDescriptorProto"), + 406: .same(proto: "Google_Protobuf_OneofOptions"), + 407: .same(proto: "Google_Protobuf_Option"), + 408: .same(proto: "Google_Protobuf_ServiceDescriptorProto"), + 409: .same(proto: "Google_Protobuf_ServiceOptions"), + 410: .same(proto: "Google_Protobuf_SourceCodeInfo"), + 411: .same(proto: "Google_Protobuf_SourceContext"), + 412: .same(proto: "Google_Protobuf_StringValue"), + 413: .same(proto: "Google_Protobuf_Struct"), + 414: .same(proto: "Google_Protobuf_Syntax"), + 415: .same(proto: "Google_Protobuf_Timestamp"), + 416: .same(proto: "Google_Protobuf_Type"), + 417: .same(proto: "Google_Protobuf_UInt32Value"), + 418: .same(proto: "Google_Protobuf_UInt64Value"), + 419: .same(proto: "Google_Protobuf_UninterpretedOption"), + 420: .same(proto: "Google_Protobuf_Value"), + 421: .same(proto: "goPackage"), + 422: .same(proto: "group"), + 423: .same(proto: "groupFieldNumberStack"), + 424: .same(proto: "groupSize"), + 425: .same(proto: "hadOneofValue"), + 426: .same(proto: "handleConflictingOneOf"), + 427: .same(proto: "hasAggregateValue"), + 428: .same(proto: "hasAllowAlias"), + 429: .same(proto: "hasBegin"), + 430: .same(proto: "hasCcEnableArenas"), + 431: .same(proto: "hasCcGenericServices"), + 432: .same(proto: "hasClientStreaming"), + 433: .same(proto: "hasCsharpNamespace"), + 434: .same(proto: "hasCtype"), + 435: .same(proto: "hasDebugRedact"), + 436: .same(proto: "hasDefaultValue"), + 437: .same(proto: "hasDeprecated"), + 438: .same(proto: "hasDeprecatedLegacyJsonFieldConflicts"), + 439: .same(proto: "hasDeprecationWarning"), + 440: .same(proto: "hasDoubleValue"), + 441: .same(proto: "hasEdition"), + 442: .same(proto: "hasEditionDeprecated"), + 443: .same(proto: "hasEditionIntroduced"), + 444: .same(proto: "hasEditionRemoved"), + 445: .same(proto: "hasEnd"), + 446: .same(proto: "hasEnumType"), + 447: .same(proto: "hasExtendee"), + 448: .same(proto: "hasExtensionValue"), + 449: .same(proto: "hasFeatures"), + 450: .same(proto: "hasFeatureSupport"), + 451: .same(proto: "hasFieldPresence"), + 452: .same(proto: "hasFixedFeatures"), + 453: .same(proto: "hasFullName"), + 454: .same(proto: "hasGoPackage"), + 455: .same(proto: "hash"), + 456: .same(proto: "Hashable"), + 457: .same(proto: "hasher"), + 458: .same(proto: "HashVisitor"), + 459: .same(proto: "hasIdempotencyLevel"), + 460: .same(proto: "hasIdentifierValue"), + 461: .same(proto: "hasInputType"), + 462: .same(proto: "hasIsExtension"), + 463: .same(proto: "hasJavaGenerateEqualsAndHash"), + 464: .same(proto: "hasJavaGenericServices"), + 465: .same(proto: "hasJavaMultipleFiles"), + 466: .same(proto: "hasJavaOuterClassname"), + 467: .same(proto: "hasJavaPackage"), + 468: .same(proto: "hasJavaStringCheckUtf8"), + 469: .same(proto: "hasJsonFormat"), + 470: .same(proto: "hasJsonName"), + 471: .same(proto: "hasJstype"), + 472: .same(proto: "hasLabel"), + 473: .same(proto: "hasLazy"), + 474: .same(proto: "hasLeadingComments"), + 475: .same(proto: "hasMapEntry"), + 476: .same(proto: "hasMaximumEdition"), + 477: .same(proto: "hasMessageEncoding"), + 478: .same(proto: "hasMessageSetWireFormat"), + 479: .same(proto: "hasMinimumEdition"), + 480: .same(proto: "hasName"), + 481: .same(proto: "hasNamePart"), + 482: .same(proto: "hasNegativeIntValue"), + 483: .same(proto: "hasNoStandardDescriptorAccessor"), + 484: .same(proto: "hasNumber"), + 485: .same(proto: "hasObjcClassPrefix"), + 486: .same(proto: "hasOneofIndex"), + 487: .same(proto: "hasOptimizeFor"), + 488: .same(proto: "hasOptions"), + 489: .same(proto: "hasOutputType"), + 490: .same(proto: "hasOverridableFeatures"), + 491: .same(proto: "hasPackage"), + 492: .same(proto: "hasPacked"), + 493: .same(proto: "hasPhpClassPrefix"), + 494: .same(proto: "hasPhpMetadataNamespace"), + 495: .same(proto: "hasPhpNamespace"), + 496: .same(proto: "hasPositiveIntValue"), + 497: .same(proto: "hasProto3Optional"), + 498: .same(proto: "hasPyGenericServices"), + 499: .same(proto: "hasRepeated"), + 500: .same(proto: "hasRepeatedFieldEncoding"), + 501: .same(proto: "hasReserved"), + 502: .same(proto: "hasRetention"), + 503: .same(proto: "hasRubyPackage"), + 504: .same(proto: "hasSemantic"), + 505: .same(proto: "hasServerStreaming"), + 506: .same(proto: "hasSourceCodeInfo"), + 507: .same(proto: "hasSourceContext"), + 508: .same(proto: "hasSourceFile"), + 509: .same(proto: "hasStart"), + 510: .same(proto: "hasStringValue"), + 511: .same(proto: "hasSwiftPrefix"), + 512: .same(proto: "hasSyntax"), + 513: .same(proto: "hasTrailingComments"), + 514: .same(proto: "hasType"), + 515: .same(proto: "hasTypeName"), + 516: .same(proto: "hasUnverifiedLazy"), + 517: .same(proto: "hasUtf8Validation"), + 518: .same(proto: "hasValue"), + 519: .same(proto: "hasVerification"), + 520: .same(proto: "hasWeak"), + 521: .same(proto: "hour"), + 522: .same(proto: "i"), + 523: .same(proto: "idempotencyLevel"), + 524: .same(proto: "identifierValue"), + 525: .same(proto: "if"), + 526: .same(proto: "ignoreUnknownExtensionFields"), + 527: .same(proto: "ignoreUnknownFields"), + 528: .same(proto: "index"), + 529: .same(proto: "init"), + 530: .same(proto: "inout"), + 531: .same(proto: "inputType"), + 532: .same(proto: "insert"), + 533: .same(proto: "Int"), + 534: .same(proto: "Int32"), + 535: .same(proto: "Int32Value"), + 536: .same(proto: "Int64"), + 537: .same(proto: "Int64Value"), + 538: .same(proto: "Int8"), + 539: .same(proto: "integerLiteral"), + 540: .same(proto: "IntegerLiteralType"), + 541: .same(proto: "intern"), + 542: .same(proto: "Internal"), + 543: .same(proto: "InternalState"), + 544: .same(proto: "into"), + 545: .same(proto: "ints"), + 546: .same(proto: "isA"), + 547: .same(proto: "isEqual"), + 548: .same(proto: "isEqualTo"), + 549: .same(proto: "isExtension"), + 550: .same(proto: "isInitialized"), + 551: .same(proto: "isNegative"), + 552: .same(proto: "itemTagsEncodedSize"), + 553: .same(proto: "iterator"), + 554: .same(proto: "javaGenerateEqualsAndHash"), + 555: .same(proto: "javaGenericServices"), + 556: .same(proto: "javaMultipleFiles"), + 557: .same(proto: "javaOuterClassname"), + 558: .same(proto: "javaPackage"), + 559: .same(proto: "javaStringCheckUtf8"), + 560: .same(proto: "JSONDecoder"), + 561: .same(proto: "JSONDecodingError"), + 562: .same(proto: "JSONDecodingOptions"), + 563: .same(proto: "jsonEncoder"), + 564: .same(proto: "JSONEncoding"), + 565: .same(proto: "JSONEncodingError"), + 566: .same(proto: "JSONEncodingOptions"), + 567: .same(proto: "JSONEncodingVisitor"), + 568: .same(proto: "jsonFormat"), + 569: .same(proto: "JSONMapEncodingVisitor"), + 570: .same(proto: "jsonName"), + 571: .same(proto: "jsonPath"), + 572: .same(proto: "jsonPaths"), + 573: .same(proto: "JSONScanner"), + 574: .same(proto: "jsonString"), + 575: .same(proto: "jsonText"), + 576: .same(proto: "jsonUTF8Bytes"), + 577: .same(proto: "jsonUTF8Data"), + 578: .same(proto: "jstype"), + 579: .same(proto: "k"), + 580: .same(proto: "kChunkSize"), + 581: .same(proto: "Key"), + 582: .same(proto: "keyField"), + 583: .same(proto: "keyFieldOpt"), + 584: .same(proto: "KeyType"), + 585: .same(proto: "kind"), + 586: .same(proto: "l"), + 587: .same(proto: "label"), + 588: .same(proto: "lazy"), + 589: .same(proto: "leadingComments"), + 590: .same(proto: "leadingDetachedComments"), + 591: .same(proto: "length"), + 592: .same(proto: "lessThan"), + 593: .same(proto: "let"), + 594: .same(proto: "lhs"), + 595: .same(proto: "line"), + 596: .same(proto: "list"), + 597: .same(proto: "listOfMessages"), + 598: .same(proto: "listValue"), + 599: .same(proto: "littleEndian"), + 600: .same(proto: "load"), + 601: .same(proto: "localHasher"), + 602: .same(proto: "location"), + 603: .same(proto: "M"), + 604: .same(proto: "major"), + 605: .same(proto: "makeAsyncIterator"), + 606: .same(proto: "makeIterator"), + 607: .same(proto: "malformedLength"), + 608: .same(proto: "mapEntry"), + 609: .same(proto: "MapKeyType"), + 610: .same(proto: "mapToMessages"), + 611: .same(proto: "MapValueType"), + 612: .same(proto: "mapVisitor"), + 613: .same(proto: "maximumEdition"), + 614: .same(proto: "mdayStart"), + 615: .same(proto: "merge"), + 616: .same(proto: "message"), + 617: .same(proto: "messageDepthLimit"), + 618: .same(proto: "messageEncoding"), + 619: .same(proto: "MessageExtension"), + 620: .same(proto: "MessageImplementationBase"), + 621: .same(proto: "MessageOptions"), + 622: .same(proto: "MessageSet"), + 623: .same(proto: "messageSetWireFormat"), + 624: .same(proto: "messageSize"), + 625: .same(proto: "messageType"), + 626: .same(proto: "Method"), + 627: .same(proto: "MethodDescriptorProto"), + 628: .same(proto: "MethodOptions"), + 629: .same(proto: "methods"), + 630: .same(proto: "min"), + 631: .same(proto: "minimumEdition"), + 632: .same(proto: "minor"), + 633: .same(proto: "Mixin"), + 634: .same(proto: "mixins"), + 635: .same(proto: "modifier"), + 636: .same(proto: "modify"), + 637: .same(proto: "month"), + 638: .same(proto: "msgExtension"), + 639: .same(proto: "mutating"), + 640: .same(proto: "n"), + 641: .same(proto: "name"), + 642: .same(proto: "NameDescription"), + 643: .same(proto: "NameMap"), + 644: .same(proto: "NamePart"), + 645: .same(proto: "names"), + 646: .same(proto: "nanos"), + 647: .same(proto: "negativeIntValue"), + 648: .same(proto: "nestedType"), + 649: .same(proto: "newL"), + 650: .same(proto: "newList"), + 651: .same(proto: "newValue"), + 652: .same(proto: "next"), + 653: .same(proto: "nextByte"), + 654: .same(proto: "nextFieldNumber"), + 655: .same(proto: "nextVarInt"), + 656: .same(proto: "nil"), + 657: .same(proto: "nilLiteral"), + 658: .same(proto: "noBytesAvailable"), + 659: .same(proto: "noStandardDescriptorAccessor"), + 660: .same(proto: "nullValue"), + 661: .same(proto: "number"), + 662: .same(proto: "numberValue"), + 663: .same(proto: "objcClassPrefix"), + 664: .same(proto: "of"), + 665: .same(proto: "oneofDecl"), + 666: .same(proto: "OneofDescriptorProto"), + 667: .same(proto: "oneofIndex"), + 668: .same(proto: "OneofOptions"), + 669: .same(proto: "oneofs"), + 670: .same(proto: "OneOf_Kind"), + 671: .same(proto: "optimizeFor"), + 672: .same(proto: "OptimizeMode"), + 673: .same(proto: "Option"), + 674: .same(proto: "OptionalEnumExtensionField"), + 675: .same(proto: "OptionalExtensionField"), + 676: .same(proto: "OptionalGroupExtensionField"), + 677: .same(proto: "OptionalMessageExtensionField"), + 678: .same(proto: "OptionRetention"), + 679: .same(proto: "options"), + 680: .same(proto: "OptionTargetType"), + 681: .same(proto: "other"), + 682: .same(proto: "others"), + 683: .same(proto: "out"), + 684: .same(proto: "outputType"), + 685: .same(proto: "overridableFeatures"), + 686: .same(proto: "p"), + 687: .same(proto: "package"), + 688: .same(proto: "packed"), + 689: .same(proto: "PackedEnumExtensionField"), + 690: .same(proto: "PackedExtensionField"), + 691: .same(proto: "padding"), + 692: .same(proto: "parent"), + 693: .same(proto: "parse"), + 694: .same(proto: "path"), + 695: .same(proto: "paths"), + 696: .same(proto: "payload"), + 697: .same(proto: "payloadSize"), + 698: .same(proto: "phpClassPrefix"), + 699: .same(proto: "phpMetadataNamespace"), + 700: .same(proto: "phpNamespace"), + 701: .same(proto: "pos"), + 702: .same(proto: "positiveIntValue"), + 703: .same(proto: "prefix"), + 704: .same(proto: "preserveProtoFieldNames"), + 705: .same(proto: "preTraverse"), + 706: .same(proto: "printUnknownFields"), + 707: .same(proto: "proto2"), + 708: .same(proto: "proto3DefaultValue"), + 709: .same(proto: "proto3Optional"), + 710: .same(proto: "ProtobufAPIVersionCheck"), + 711: .same(proto: "ProtobufAPIVersion_3"), + 712: .same(proto: "ProtobufBool"), + 713: .same(proto: "ProtobufBytes"), + 714: .same(proto: "ProtobufDouble"), + 715: .same(proto: "ProtobufEnumMap"), + 716: .same(proto: "protobufExtension"), + 717: .same(proto: "ProtobufFixed32"), + 718: .same(proto: "ProtobufFixed64"), + 719: .same(proto: "ProtobufFloat"), + 720: .same(proto: "ProtobufInt32"), + 721: .same(proto: "ProtobufInt64"), + 722: .same(proto: "ProtobufMap"), + 723: .same(proto: "ProtobufMessageMap"), + 724: .same(proto: "ProtobufSFixed32"), + 725: .same(proto: "ProtobufSFixed64"), + 726: .same(proto: "ProtobufSInt32"), + 727: .same(proto: "ProtobufSInt64"), + 728: .same(proto: "ProtobufString"), + 729: .same(proto: "ProtobufUInt32"), + 730: .same(proto: "ProtobufUInt64"), + 731: .same(proto: "protobuf_extensionFieldValues"), + 732: .same(proto: "protobuf_fieldNumber"), + 733: .same(proto: "protobuf_generated_isEqualTo"), + 734: .same(proto: "protobuf_nameMap"), + 735: .same(proto: "protobuf_newField"), + 736: .same(proto: "protobuf_package"), + 737: .same(proto: "protocol"), + 738: .same(proto: "protoFieldName"), + 739: .same(proto: "protoMessageName"), + 740: .same(proto: "ProtoNameProviding"), + 741: .same(proto: "protoPaths"), + 742: .same(proto: "public"), + 743: .same(proto: "publicDependency"), + 744: .same(proto: "putBoolValue"), + 745: .same(proto: "putBytesValue"), + 746: .same(proto: "putDoubleValue"), + 747: .same(proto: "putEnumValue"), + 748: .same(proto: "putFixedUInt32"), + 749: .same(proto: "putFixedUInt64"), + 750: .same(proto: "putFloatValue"), + 751: .same(proto: "putInt64"), + 752: .same(proto: "putStringValue"), + 753: .same(proto: "putUInt64"), + 754: .same(proto: "putUInt64Hex"), + 755: .same(proto: "putVarInt"), + 756: .same(proto: "putZigZagVarInt"), + 757: .same(proto: "pyGenericServices"), + 758: .same(proto: "R"), + 759: .same(proto: "rawChars"), + 760: .same(proto: "RawRepresentable"), + 761: .same(proto: "RawValue"), + 762: .same(proto: "read4HexDigits"), + 763: .same(proto: "readBytes"), + 764: .same(proto: "register"), + 765: .same(proto: "repeated"), + 766: .same(proto: "RepeatedEnumExtensionField"), + 767: .same(proto: "RepeatedExtensionField"), + 768: .same(proto: "repeatedFieldEncoding"), + 769: .same(proto: "RepeatedGroupExtensionField"), + 770: .same(proto: "RepeatedMessageExtensionField"), + 771: .same(proto: "repeating"), + 772: .same(proto: "requestStreaming"), + 773: .same(proto: "requestTypeURL"), + 774: .same(proto: "requiredSize"), + 775: .same(proto: "responseStreaming"), + 776: .same(proto: "responseTypeURL"), + 777: .same(proto: "result"), + 778: .same(proto: "retention"), + 779: .same(proto: "rethrows"), + 780: .same(proto: "return"), + 781: .same(proto: "ReturnType"), + 782: .same(proto: "revision"), + 783: .same(proto: "rhs"), + 784: .same(proto: "root"), + 785: .same(proto: "rubyPackage"), + 786: .same(proto: "s"), + 787: .same(proto: "sawBackslash"), + 788: .same(proto: "sawSection4Characters"), + 789: .same(proto: "sawSection5Characters"), + 790: .same(proto: "scan"), + 791: .same(proto: "scanner"), + 792: .same(proto: "seconds"), + 793: .same(proto: "self"), + 794: .same(proto: "semantic"), + 795: .same(proto: "Sendable"), + 796: .same(proto: "separator"), + 797: .same(proto: "serialize"), + 798: .same(proto: "serializedBytes"), + 799: .same(proto: "serializedData"), + 800: .same(proto: "serializedSize"), + 801: .same(proto: "serverStreaming"), + 802: .same(proto: "service"), + 803: .same(proto: "ServiceDescriptorProto"), + 804: .same(proto: "ServiceOptions"), + 805: .same(proto: "set"), + 806: .same(proto: "setExtensionValue"), + 807: .same(proto: "shift"), + 808: .same(proto: "SimpleExtensionMap"), + 809: .same(proto: "size"), + 810: .same(proto: "sizer"), + 811: .same(proto: "source"), + 812: .same(proto: "sourceCodeInfo"), + 813: .same(proto: "sourceContext"), + 814: .same(proto: "sourceEncoding"), + 815: .same(proto: "sourceFile"), + 816: .same(proto: "SourceLocation"), + 817: .same(proto: "span"), + 818: .same(proto: "split"), + 819: .same(proto: "start"), + 820: .same(proto: "startArray"), + 821: .same(proto: "startArrayObject"), + 822: .same(proto: "startField"), + 823: .same(proto: "startIndex"), + 824: .same(proto: "startMessageField"), + 825: .same(proto: "startObject"), + 826: .same(proto: "startRegularField"), + 827: .same(proto: "state"), + 828: .same(proto: "static"), + 829: .same(proto: "StaticString"), + 830: .same(proto: "storage"), + 831: .same(proto: "String"), + 832: .same(proto: "stringLiteral"), + 833: .same(proto: "StringLiteralType"), + 834: .same(proto: "stringResult"), + 835: .same(proto: "stringValue"), + 836: .same(proto: "struct"), + 837: .same(proto: "structValue"), + 838: .same(proto: "subDecoder"), + 839: .same(proto: "subscript"), + 840: .same(proto: "subVisitor"), + 841: .same(proto: "Swift"), + 842: .same(proto: "swiftPrefix"), + 843: .same(proto: "SwiftProtobufContiguousBytes"), + 844: .same(proto: "SwiftProtobufError"), + 845: .same(proto: "syntax"), + 846: .same(proto: "T"), + 847: .same(proto: "tag"), + 848: .same(proto: "targets"), + 849: .same(proto: "terminator"), + 850: .same(proto: "testDecoder"), + 851: .same(proto: "text"), + 852: .same(proto: "textDecoder"), + 853: .same(proto: "TextFormatDecoder"), + 854: .same(proto: "TextFormatDecodingError"), + 855: .same(proto: "TextFormatDecodingOptions"), + 856: .same(proto: "TextFormatEncodingOptions"), + 857: .same(proto: "TextFormatEncodingVisitor"), + 858: .same(proto: "textFormatString"), + 859: .same(proto: "throwOrIgnore"), + 860: .same(proto: "throws"), + 861: .same(proto: "timeInterval"), + 862: .same(proto: "timeIntervalSince1970"), + 863: .same(proto: "timeIntervalSinceReferenceDate"), + 864: .same(proto: "Timestamp"), + 865: .same(proto: "tooLarge"), + 866: .same(proto: "total"), + 867: .same(proto: "totalArrayDepth"), + 868: .same(proto: "totalSize"), + 869: .same(proto: "trailingComments"), + 870: .same(proto: "traverse"), + 871: .same(proto: "true"), + 872: .same(proto: "try"), + 873: .same(proto: "type"), + 874: .same(proto: "typealias"), + 875: .same(proto: "TypeEnum"), + 876: .same(proto: "typeName"), + 877: .same(proto: "typePrefix"), + 878: .same(proto: "typeStart"), + 879: .same(proto: "typeUnknown"), + 880: .same(proto: "typeURL"), + 881: .same(proto: "UInt32"), + 882: .same(proto: "UInt32Value"), + 883: .same(proto: "UInt64"), + 884: .same(proto: "UInt64Value"), + 885: .same(proto: "UInt8"), + 886: .same(proto: "unchecked"), + 887: .same(proto: "unicodeScalarLiteral"), + 888: .same(proto: "UnicodeScalarLiteralType"), + 889: .same(proto: "unicodeScalars"), + 890: .same(proto: "UnicodeScalarView"), + 891: .same(proto: "uninterpretedOption"), + 892: .same(proto: "union"), + 893: .same(proto: "uniqueStorage"), + 894: .same(proto: "unknown"), + 895: .same(proto: "unknownFields"), + 896: .same(proto: "UnknownStorage"), + 897: .same(proto: "unpackTo"), + 898: .same(proto: "unregisteredTypeURL"), + 899: .same(proto: "UnsafeBufferPointer"), + 900: .same(proto: "UnsafeMutablePointer"), + 901: .same(proto: "UnsafeMutableRawBufferPointer"), + 902: .same(proto: "UnsafeRawBufferPointer"), + 903: .same(proto: "UnsafeRawPointer"), + 904: .same(proto: "unverifiedLazy"), + 905: .same(proto: "updatedOptions"), + 906: .same(proto: "url"), + 907: .same(proto: "useDeterministicOrdering"), + 908: .same(proto: "utf8"), + 909: .same(proto: "utf8Ptr"), + 910: .same(proto: "utf8ToDouble"), + 911: .same(proto: "utf8Validation"), + 912: .same(proto: "UTF8View"), + 913: .same(proto: "v"), + 914: .same(proto: "value"), + 915: .same(proto: "valueField"), + 916: .same(proto: "values"), + 917: .same(proto: "ValueType"), + 918: .same(proto: "var"), + 919: .same(proto: "verification"), + 920: .same(proto: "VerificationState"), + 921: .same(proto: "Version"), + 922: .same(proto: "versionString"), + 923: .same(proto: "visitExtensionFields"), + 924: .same(proto: "visitExtensionFieldsAsMessageSet"), + 925: .same(proto: "visitMapField"), + 926: .same(proto: "visitor"), + 927: .same(proto: "visitPacked"), + 928: .same(proto: "visitPackedBoolField"), + 929: .same(proto: "visitPackedDoubleField"), + 930: .same(proto: "visitPackedEnumField"), + 931: .same(proto: "visitPackedFixed32Field"), + 932: .same(proto: "visitPackedFixed64Field"), + 933: .same(proto: "visitPackedFloatField"), + 934: .same(proto: "visitPackedInt32Field"), + 935: .same(proto: "visitPackedInt64Field"), + 936: .same(proto: "visitPackedSFixed32Field"), + 937: .same(proto: "visitPackedSFixed64Field"), + 938: .same(proto: "visitPackedSInt32Field"), + 939: .same(proto: "visitPackedSInt64Field"), + 940: .same(proto: "visitPackedUInt32Field"), + 941: .same(proto: "visitPackedUInt64Field"), + 942: .same(proto: "visitRepeated"), + 943: .same(proto: "visitRepeatedBoolField"), + 944: .same(proto: "visitRepeatedBytesField"), + 945: .same(proto: "visitRepeatedDoubleField"), + 946: .same(proto: "visitRepeatedEnumField"), + 947: .same(proto: "visitRepeatedFixed32Field"), + 948: .same(proto: "visitRepeatedFixed64Field"), + 949: .same(proto: "visitRepeatedFloatField"), + 950: .same(proto: "visitRepeatedGroupField"), + 951: .same(proto: "visitRepeatedInt32Field"), + 952: .same(proto: "visitRepeatedInt64Field"), + 953: .same(proto: "visitRepeatedMessageField"), + 954: .same(proto: "visitRepeatedSFixed32Field"), + 955: .same(proto: "visitRepeatedSFixed64Field"), + 956: .same(proto: "visitRepeatedSInt32Field"), + 957: .same(proto: "visitRepeatedSInt64Field"), + 958: .same(proto: "visitRepeatedStringField"), + 959: .same(proto: "visitRepeatedUInt32Field"), + 960: .same(proto: "visitRepeatedUInt64Field"), + 961: .same(proto: "visitSingular"), + 962: .same(proto: "visitSingularBoolField"), + 963: .same(proto: "visitSingularBytesField"), + 964: .same(proto: "visitSingularDoubleField"), + 965: .same(proto: "visitSingularEnumField"), + 966: .same(proto: "visitSingularFixed32Field"), + 967: .same(proto: "visitSingularFixed64Field"), + 968: .same(proto: "visitSingularFloatField"), + 969: .same(proto: "visitSingularGroupField"), + 970: .same(proto: "visitSingularInt32Field"), + 971: .same(proto: "visitSingularInt64Field"), + 972: .same(proto: "visitSingularMessageField"), + 973: .same(proto: "visitSingularSFixed32Field"), + 974: .same(proto: "visitSingularSFixed64Field"), + 975: .same(proto: "visitSingularSInt32Field"), + 976: .same(proto: "visitSingularSInt64Field"), + 977: .same(proto: "visitSingularStringField"), + 978: .same(proto: "visitSingularUInt32Field"), + 979: .same(proto: "visitSingularUInt64Field"), + 980: .same(proto: "visitUnknown"), + 981: .same(proto: "wasDecoded"), + 982: .same(proto: "weak"), + 983: .same(proto: "weakDependency"), + 984: .same(proto: "where"), + 985: .same(proto: "wireFormat"), + 986: .same(proto: "with"), + 987: .same(proto: "withUnsafeBytes"), + 988: .same(proto: "withUnsafeMutableBytes"), + 989: .same(proto: "work"), + 990: .same(proto: "Wrapped"), + 991: .same(proto: "WrappedType"), + 992: .same(proto: "wrappedValue"), + 993: .same(proto: "written"), + 994: .same(proto: "yday"), ] } diff --git a/Reference/SwiftProtobufTests/generated_swift_names_enums.pb.swift b/Reference/SwiftProtobufTests/generated_swift_names_enums.pb.swift index d9bf96fff..1f663d208 100644 --- a/Reference/SwiftProtobufTests/generated_swift_names_enums.pb.swift +++ b/Reference/SwiftProtobufTests/generated_swift_names_enums.pb.swift @@ -391,36 +391,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum AnyUnpack: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneAnyUnpack // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneAnyUnpack - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneAnyUnpack - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneAnyUnpack: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.AnyUnpack] = [ - .noneAnyUnpack, - ] - - } - enum AnyUnpackError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneAnyUnpackError // = 0 @@ -5251,36 +5221,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum conflictingOneOf: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneConflictingOneOf // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneConflictingOneOf - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneConflictingOneOf - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneConflictingOneOf: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.conflictingOneOf] = [ - .noneConflictingOneOf, - ] - - } - enum consumedBytes: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneConsumedBytes // = 0 @@ -7921,36 +7861,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum durationRange: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneDurationRange // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneDurationRange - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneDurationRange - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneDurationRange: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.durationRange] = [ - .noneDurationRange, - ] - - } - enum E: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneE // = 0 @@ -9511,36 +9421,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum failure: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneFailure // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneFailure - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneFailure - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneFailure: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.failure] = [ - .noneFailure, - ] - - } - enum falseEnum: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneFalse // = 0 @@ -9841,36 +9721,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum fieldMaskConversion: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneFieldMaskConversion // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneFieldMaskConversion - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneFieldMaskConversion - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneFieldMaskConversion: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.fieldMaskConversion] = [ - .noneFieldMaskConversion, - ] - - } - enum fieldName: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneFieldName // = 0 @@ -15991,36 +15841,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum illegalNull: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneIllegalNull // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneIllegalNull - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneIllegalNull - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneIllegalNull: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.illegalNull] = [ - .noneIllegalNull, - ] - - } - enum index: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneIndex // = 0 @@ -16471,66 +16291,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum internalError: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneInternalError // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneInternalError - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneInternalError - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneInternalError: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.internalError] = [ - .noneInternalError, - ] - - } - - enum internalExtensionError: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneInternalExtensionError // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneInternalExtensionError - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneInternalExtensionError - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneInternalExtensionError: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.internalExtensionError] = [ - .noneInternalExtensionError, - ] - - } - enum InternalState: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneInternalState // = 0 @@ -16621,66 +16381,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum invalidArgument: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneInvalidArgument // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneInvalidArgument - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneInvalidArgument - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneInvalidArgument: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.invalidArgument] = [ - .noneInvalidArgument, - ] - - } - - enum invalidUTF8: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneInvalidUtf8 // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneInvalidUtf8 - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneInvalidUtf8 - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneInvalidUtf8: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.invalidUTF8] = [ - .noneInvalidUtf8, - ] - - } - enum isA: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneIsA // = 0 @@ -17131,36 +16831,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum JSONDecoding: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneJsondecoding // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneJsondecoding - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneJsondecoding - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneJsondecoding: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONDecoding] = [ - .noneJsondecoding, - ] - - } - enum JSONDecodingError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneJsondecodingError // = 0 @@ -18061,36 +17731,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum leadingZero: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneLeadingZero // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneLeadingZero - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneLeadingZero - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneLeadingZero: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.leadingZero] = [ - .noneLeadingZero, - ] - - } - enum length: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneLength // = 0 @@ -18571,126 +18211,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum malformedAnyField: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedAnyField // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedAnyField - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedAnyField - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedAnyField: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedAnyField] = [ - .noneMalformedAnyField, - ] - - } - - enum malformedBool: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedBool // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedBool - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedBool - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedBool: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedBool] = [ - .noneMalformedBool, - ] - - } - - enum malformedDuration: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedDuration // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedDuration - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedDuration - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedDuration: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedDuration] = [ - .noneMalformedDuration, - ] - - } - - enum malformedFieldMask: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedFieldMask // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedFieldMask - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedFieldMask - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedFieldMask: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedFieldMask] = [ - .noneMalformedFieldMask, - ] - - } - enum malformedLength: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneMalformedLength // = 0 @@ -18721,216 +18241,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum malformedMap: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedMap // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedMap - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedMap - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedMap: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedMap] = [ - .noneMalformedMap, - ] - - } - - enum malformedNumber: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedNumber // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedNumber - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedNumber - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedNumber: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedNumber] = [ - .noneMalformedNumber, - ] - - } - - enum malformedProtobuf: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedProtobuf // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedProtobuf - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedProtobuf - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedProtobuf: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedProtobuf] = [ - .noneMalformedProtobuf, - ] - - } - - enum malformedString: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedString // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedString - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedString - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedString: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedString] = [ - .noneMalformedString, - ] - - } - - enum malformedText: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedText // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedText - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedText - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedText: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedText] = [ - .noneMalformedText, - ] - - } - - enum malformedTimestamp: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedTimestamp // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedTimestamp - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedTimestamp - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedTimestamp: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedTimestamp] = [ - .noneMalformedTimestamp, - ] - - } - - enum malformedWellKnownTypeJSON: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMalformedWellKnownTypeJson // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMalformedWellKnownTypeJson - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMalformedWellKnownTypeJson - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMalformedWellKnownTypeJson: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedWellKnownTypeJSON] = [ - .noneMalformedWellKnownTypeJson, - ] - - } - enum mapEntry: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneMapEntry // = 0 @@ -19681,96 +18991,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum missingFieldNames: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMissingFieldNames // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMissingFieldNames - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMissingFieldNames - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMissingFieldNames: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingFieldNames] = [ - .noneMissingFieldNames, - ] - - } - - enum missingRequiredFields: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMissingRequiredFields // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMissingRequiredFields - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMissingRequiredFields - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMissingRequiredFields: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingRequiredFields] = [ - .noneMissingRequiredFields, - ] - - } - - enum missingValue: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneMissingValue // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneMissingValue - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneMissingValue - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneMissingValue: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingValue] = [ - .noneMissingValue, - ] - - } - enum Mixin: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneMixin // = 0 @@ -20641,36 +19861,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum numberRange: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneNumberRange // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneNumberRange - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneNumberRange - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneNumberRange: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.numberRange] = [ - .noneNumberRange, - ] - - } - enum numberValue: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneNumberValue // = 0 @@ -24571,36 +23761,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum schemaMismatch: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneSchemaMismatch // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneSchemaMismatch - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneSchemaMismatch - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneSchemaMismatch: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.schemaMismatch] = [ - .noneSchemaMismatch, - ] - - } - enum seconds: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneSeconds // = 0 @@ -26461,37 +25621,7 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum TextFormatDecoding: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneTextFormatDecoding // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneTextFormatDecoding - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneTextFormatDecoding - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneTextFormatDecoding: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDecoding] = [ - .noneTextFormatDecoding, - ] - - } - - enum textFormatDecodingError: SwiftProtobuf.Enum, Swift.CaseIterable { + enum TextFormatDecodingError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTextFormatDecodingError // = 0 case UNRECOGNIZED(Int) @@ -26515,7 +25645,7 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.textFormatDecodingError] = [ + static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDecodingError] = [ .noneTextFormatDecodingError, ] @@ -26821,36 +25951,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum timestampRange: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneTimestampRange // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneTimestampRange - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneTimestampRange - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneTimestampRange: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.timestampRange] = [ - .noneTimestampRange, - ] - - } - enum tooLarge: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTooLarge // = 0 @@ -27001,36 +26101,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum trailingGarbage: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneTrailingGarbage // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneTrailingGarbage - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneTrailingGarbage - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneTrailingGarbage: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.trailingGarbage] = [ - .noneTrailingGarbage, - ] - - } - enum traverseEnum: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTraverse // = 0 @@ -27091,36 +26161,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum truncated: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneTruncated // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneTruncated - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneTruncated - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneTruncated: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.truncated] = [ - .noneTruncated, - ] - - } - enum tryEnum: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTry // = 0 @@ -27241,36 +26281,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum typeMismatch: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneTypeMismatch // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneTypeMismatch - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneTypeMismatch - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneTypeMismatch: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.typeMismatch] = [ - .noneTypeMismatch, - ] - - } - enum typeName: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneTypeName // = 0 @@ -27841,66 +26851,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum unknownField: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneUnknownField // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneUnknownField - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneUnknownField - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneUnknownField: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownField] = [ - .noneUnknownField, - ] - - } - - enum unknownFieldName: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneUnknownFieldName // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneUnknownFieldName - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneUnknownFieldName - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneUnknownFieldName: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownFieldName] = [ - .noneUnknownFieldName, - ] - - } - enum unknownFieldsEnum: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneUnknownFields // = 0 @@ -27961,36 +26911,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum unknownStreamError: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneUnknownStreamError // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneUnknownStreamError - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneUnknownStreamError - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneUnknownStreamError: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownStreamError] = [ - .noneUnknownStreamError, - ] - - } - enum unpackTo: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneUnpackTo // = 0 @@ -28021,66 +26941,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum unquotedMapKey: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneUnquotedMapKey // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneUnquotedMapKey - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneUnquotedMapKey - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneUnquotedMapKey: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unquotedMapKey] = [ - .noneUnquotedMapKey, - ] - - } - - enum unrecognizedEnumValue: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneUnrecognizedEnumValue // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneUnrecognizedEnumValue - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneUnrecognizedEnumValue - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneUnrecognizedEnumValue: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unrecognizedEnumValue] = [ - .noneUnrecognizedEnumValue, - ] - - } - enum unregisteredTypeURL: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneUnregisteredTypeURL // = 0 @@ -28621,36 +27481,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum valueNumberNotFinite: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneValueNumberNotFinite // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneValueNumberNotFinite - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneValueNumberNotFinite - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneValueNumberNotFinite: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.valueNumberNotFinite] = [ - .noneValueNumberNotFinite, - ] - - } - enum values: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneValues // = 0 @@ -31119,12 +29949,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.anyTypeURLNotR ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.AnyUnpack: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_AnyUnpack"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.AnyUnpackError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_AnyUnpackError"), @@ -32091,12 +30915,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.comma: SwiftPr ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.conflictingOneOf: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_conflictingOneOf"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.consumedBytes: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_consumedBytes"), @@ -32625,12 +31443,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.Duration: Swif ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.durationRange: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_durationRange"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.E: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_E"), @@ -32943,12 +31755,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.F: SwiftProtob ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.failure: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_failure"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.falseEnum: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_false"), @@ -33009,12 +31815,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.FieldMask: Swi ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.fieldMaskConversion: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_fieldMaskConversion"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.fieldName: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_fieldName"), @@ -34239,12 +33039,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.ignoreUnknownF ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.illegalNull: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_illegalNull"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.index: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_index"), @@ -34335,18 +33129,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.Internal: Swif ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.internalError: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_internalError"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.internalExtensionError: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_internalExtensionError"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.InternalState: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_InternalState"), @@ -34365,18 +33147,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.ints: SwiftPro ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.invalidArgument: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_invalidArgument"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.invalidUTF8: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_invalidUTF8"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.isA: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_isA"), @@ -34467,12 +33237,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONDecoder: S ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONDecoding: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_JSONDecoding"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONDecodingError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_JSONDecodingError"), @@ -34653,12 +33417,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.leadingDetache ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.leadingZero: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_leadingZero"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.length: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_length"), @@ -34755,78 +33513,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.makeIterator: ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedAnyField: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedAnyField"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedBool: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedBool"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedDuration: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedDuration"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedFieldMask: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedFieldMask"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedLength: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_malformedLength"), ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedMap: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedMap"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedNumber: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedNumber"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedProtobuf: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedProtobuf"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedString: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedString"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedText: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedText"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedTimestamp: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedTimestamp"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.malformedWellKnownTypeJSON: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_malformedWellKnownTypeJSON"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.mapEntry: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_mapEntry"), @@ -34977,24 +33669,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.minor: SwiftPr ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingFieldNames: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_missingFieldNames"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingRequiredFields: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_missingRequiredFields"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.missingValue: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_missingValue"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.Mixin: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_Mixin"), @@ -35169,12 +33843,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.number: SwiftP ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.numberRange: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_numberRange"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.numberValue: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_numberValue"), @@ -35955,12 +34623,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.scanner: Swift ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.schemaMismatch: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_schemaMismatch"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.seconds: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_seconds"), @@ -36333,15 +34995,9 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDeco ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDecoding: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_TextFormatDecoding"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.textFormatDecodingError: SwiftProtobuf._ProtoNameProviding { +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TextFormatDecodingError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_textFormatDecodingError"), + 0: .same(proto: "NONE_TextFormatDecodingError"), ] } @@ -36405,12 +35061,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.Timestamp: Swi ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.timestampRange: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_timestampRange"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.tooLarge: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_tooLarge"), @@ -36441,12 +35091,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.trailingCommen ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.trailingGarbage: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_trailingGarbage"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.traverseEnum: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_traverse"), @@ -36459,12 +35103,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.trueEnum: Swif ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.truncated: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_truncated"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.tryEnum: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_try"), @@ -36489,12 +35127,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.TypeEnumEnum: ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.typeMismatch: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_typeMismatch"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.typeName: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_typeName"), @@ -36609,18 +35241,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknown: Swift ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownField: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_unknownField"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownFieldName: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_unknownFieldName"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownFieldsEnum: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_unknownFields"), @@ -36633,30 +35253,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.UnknownStorage ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unknownStreamError: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_unknownStreamError"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unpackTo: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_unpackTo"), ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unquotedMapKey: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_unquotedMapKey"), - ] -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unrecognizedEnumValue: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_unrecognizedEnumValue"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unregisteredTypeURL: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_unregisteredTypeURL"), @@ -36765,12 +35367,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.valueField: Sw ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.valueNumberNotFinite: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_valueNumberNotFinite"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.values: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_values"), diff --git a/Reference/SwiftProtobufTests/generated_swift_names_fields.pb.swift b/Reference/SwiftProtobufTests/generated_swift_names_fields.pb.swift index 1af92f76f..d6d267e14 100644 --- a/Reference/SwiftProtobufTests/generated_swift_names_fields.pb.swift +++ b/Reference/SwiftProtobufTests/generated_swift_names_fields.pb.swift @@ -84,6 +84,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._anyMessageStorage = newValue} } + var anyTypeUrlnotRegistered: Int32 { + get {return _storage._anyTypeUrlnotRegistered} + set {_uniqueStorage()._anyTypeUrlnotRegistered = newValue} + } + var anyUnpackError: Int32 { get {return _storage._anyUnpackError} set {_uniqueStorage()._anyUnpackError = newValue} @@ -214,6 +219,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._binaryDecoder = newValue} } + var binaryDecoding: Int32 { + get {return _storage._binaryDecoding} + set {_uniqueStorage()._binaryDecoding = newValue} + } + var binaryDecodingError: Int32 { get {return _storage._binaryDecodingError} set {_uniqueStorage()._binaryDecodingError = newValue} @@ -234,6 +244,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._binaryEncoder = newValue} } + var binaryEncoding: Int32 { + get {return _storage._binaryEncoding} + set {_uniqueStorage()._binaryEncoding = newValue} + } + var binaryEncodingError: Int32 { get {return _storage._binaryEncodingError} set {_uniqueStorage()._binaryEncodingError = newValue} @@ -274,6 +289,16 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._binaryProtobufDelimitedMessages = newValue} } + var binaryStreamDecoding: Int32 { + get {return _storage._binaryStreamDecoding} + set {_uniqueStorage()._binaryStreamDecoding = newValue} + } + + var binaryStreamDecodingError: Int32 { + get {return _storage._binaryStreamDecodingError} + set {_uniqueStorage()._binaryStreamDecodingError = newValue} + } + var bitPattern: Int32 { get {return _storage._bitPattern} set {_uniqueStorage()._bitPattern = newValue} @@ -839,6 +864,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._clientStreaming = newValue} } + var code: Int32 { + get {return _storage._code} + set {_uniqueStorage()._code = newValue} + } + var codePoint: Int32 { get {return _storage._codePoint} set {_uniqueStorage()._codePoint = newValue} @@ -874,6 +904,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._contentsOf = newValue} } + var copy: Int32 { + get {return _storage._copy} + set {_uniqueStorage()._copy = newValue} + } + var count: Int32 { get {return _storage._count} set {_uniqueStorage()._count = newValue} @@ -904,6 +939,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._customDebugStringConvertible = newValue} } + var customStringConvertible: Int32 { + get {return _storage._customStringConvertible} + set {_uniqueStorage()._customStringConvertible = newValue} + } + var d: Int32 { get {return _storage._d} set {_uniqueStorage()._d = newValue} @@ -1799,6 +1839,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._func = newValue} } + var function: Int32 { + get {return _storage._function} + set {_uniqueStorage()._function = newValue} + } + var g: Int32 { get {return _storage._g} set {_uniqueStorage()._g = newValue} @@ -2799,6 +2844,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._jsonEncoder = newValue} } + var jsonencoding: Int32 { + get {return _storage._jsonencoding} + set {_uniqueStorage()._jsonencoding = newValue} + } + var jsonencodingError: Int32 { get {return _storage._jsonencodingError} set {_uniqueStorage()._jsonencodingError = newValue} @@ -2949,6 +2999,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._lhs = newValue} } + var line: Int32 { + get {return _storage._line} + set {_uniqueStorage()._line = newValue} + } + var list: Int32 { get {return _storage._list} set {_uniqueStorage()._list = newValue} @@ -3004,6 +3059,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._makeIterator = newValue} } + var malformedLength: Int32 { + get {return _storage._malformedLength} + set {_uniqueStorage()._malformedLength = newValue} + } + var mapEntry: Int32 { get {return _storage._mapEntry} set {_uniqueStorage()._mapEntry = newValue} @@ -3254,6 +3314,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._nilLiteral = newValue} } + var noBytesAvailable: Int32 { + get {return _storage._noBytesAvailable} + set {_uniqueStorage()._noBytesAvailable = newValue} + } + var noStandardDescriptorAccessor: Int32 { get {return _storage._noStandardDescriptorAccessor} set {_uniqueStorage()._noStandardDescriptorAccessor = newValue} @@ -4039,6 +4104,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._sourceFile = newValue} } + var sourceLocation: Int32 { + get {return _storage._sourceLocation} + set {_uniqueStorage()._sourceLocation = newValue} + } + var span: Int32 { get {return _storage._span} set {_uniqueStorage()._span = newValue} @@ -4174,6 +4244,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._swiftProtobufContiguousBytes = newValue} } + var swiftProtobufError: Int32 { + get {return _storage._swiftProtobufError} + set {_uniqueStorage()._swiftProtobufError = newValue} + } + var syntax: Int32 { get {return _storage._syntax} set {_uniqueStorage()._syntax = newValue} @@ -4274,6 +4349,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._timestamp = newValue} } + var tooLarge: Int32 { + get {return _storage._tooLarge} + set {_uniqueStorage()._tooLarge = newValue} + } + var total: Int32 { get {return _storage._total} set {_uniqueStorage()._total = newValue} @@ -4434,6 +4514,11 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._unpackTo = newValue} } + var unregisteredTypeURL: Int32 { + get {return _storage._unregisteredTypeURL} + set {_uniqueStorage()._unregisteredTypeURL = newValue} + } + var unsafeBufferPointer: Int32 { get {return _storage._unsafeBufferPointer} set {_uniqueStorage()._unsafeBufferPointer = newValue} @@ -4939,972 +5024,989 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu 9: .same(proto: "AnyExtensionField"), 10: .same(proto: "AnyMessageExtension"), 11: .same(proto: "AnyMessageStorage"), - 12: .same(proto: "AnyUnpackError"), - 13: .same(proto: "Api"), - 14: .same(proto: "appended"), - 15: .same(proto: "appendUIntHex"), - 16: .same(proto: "appendUnknown"), - 17: .same(proto: "areAllInitialized"), - 18: .same(proto: "Array"), - 19: .same(proto: "arrayDepth"), - 20: .same(proto: "arrayLiteral"), - 21: .same(proto: "arraySeparator"), - 22: .same(proto: "as"), - 23: .same(proto: "asciiOpenCurlyBracket"), - 24: .same(proto: "asciiZero"), - 25: .same(proto: "async"), - 26: .same(proto: "AsyncIterator"), - 27: .same(proto: "AsyncIteratorProtocol"), - 28: .same(proto: "AsyncMessageSequence"), - 29: .same(proto: "available"), - 30: .same(proto: "b"), - 31: .same(proto: "Base"), - 32: .same(proto: "base64Values"), - 33: .same(proto: "baseAddress"), - 34: .same(proto: "BaseType"), - 35: .same(proto: "begin"), - 36: .same(proto: "binary"), - 37: .same(proto: "BinaryDecoder"), - 38: .same(proto: "BinaryDecodingError"), - 39: .same(proto: "BinaryDecodingOptions"), - 40: .same(proto: "BinaryDelimited"), - 41: .same(proto: "BinaryEncoder"), - 42: .same(proto: "BinaryEncodingError"), - 43: .same(proto: "BinaryEncodingMessageSetSizeVisitor"), - 44: .same(proto: "BinaryEncodingMessageSetVisitor"), - 45: .same(proto: "BinaryEncodingOptions"), - 46: .same(proto: "BinaryEncodingSizeVisitor"), - 47: .same(proto: "BinaryEncodingVisitor"), - 48: .same(proto: "binaryOptions"), - 49: .same(proto: "binaryProtobufDelimitedMessages"), - 50: .same(proto: "bitPattern"), - 51: .same(proto: "body"), - 52: .same(proto: "Bool"), - 53: .same(proto: "booleanLiteral"), - 54: .same(proto: "BooleanLiteralType"), - 55: .same(proto: "boolValue"), - 56: .same(proto: "buffer"), - 57: .same(proto: "bytes"), - 58: .same(proto: "bytesInGroup"), - 59: .same(proto: "bytesNeeded"), - 60: .same(proto: "bytesRead"), - 61: .same(proto: "BytesValue"), - 62: .same(proto: "c"), - 63: .same(proto: "capitalizeNext"), - 64: .same(proto: "cardinality"), - 65: .same(proto: "CaseIterable"), - 66: .same(proto: "ccEnableArenas"), - 67: .same(proto: "ccGenericServices"), - 68: .same(proto: "Character"), - 69: .same(proto: "chars"), - 70: .same(proto: "chunk"), - 71: .same(proto: "class"), - 72: .same(proto: "clearAggregateValue"), - 73: .same(proto: "clearAllowAlias"), - 74: .same(proto: "clearBegin"), - 75: .same(proto: "clearCcEnableArenas"), - 76: .same(proto: "clearCcGenericServices"), - 77: .same(proto: "clearClientStreaming"), - 78: .same(proto: "clearCsharpNamespace"), - 79: .same(proto: "clearCtype"), - 80: .same(proto: "clearDebugRedact"), - 81: .same(proto: "clearDefaultValue"), - 82: .same(proto: "clearDeprecated"), - 83: .same(proto: "clearDeprecatedLegacyJsonFieldConflicts"), - 84: .same(proto: "clearDeprecationWarning"), - 85: .same(proto: "clearDoubleValue"), - 86: .same(proto: "clearEdition"), - 87: .same(proto: "clearEditionDeprecated"), - 88: .same(proto: "clearEditionIntroduced"), - 89: .same(proto: "clearEditionRemoved"), - 90: .same(proto: "clearEnd"), - 91: .same(proto: "clearEnumType"), - 92: .same(proto: "clearExtendee"), - 93: .same(proto: "clearExtensionValue"), - 94: .same(proto: "clearFeatures"), - 95: .same(proto: "clearFeatureSupport"), - 96: .same(proto: "clearFieldPresence"), - 97: .same(proto: "clearFixedFeatures"), - 98: .same(proto: "clearFullName"), - 99: .same(proto: "clearGoPackage"), - 100: .same(proto: "clearIdempotencyLevel"), - 101: .same(proto: "clearIdentifierValue"), - 102: .same(proto: "clearInputType"), - 103: .same(proto: "clearIsExtension"), - 104: .same(proto: "clearJavaGenerateEqualsAndHash"), - 105: .same(proto: "clearJavaGenericServices"), - 106: .same(proto: "clearJavaMultipleFiles"), - 107: .same(proto: "clearJavaOuterClassname"), - 108: .same(proto: "clearJavaPackage"), - 109: .same(proto: "clearJavaStringCheckUtf8"), - 110: .same(proto: "clearJsonFormat"), - 111: .same(proto: "clearJsonName"), - 112: .same(proto: "clearJstype"), - 113: .same(proto: "clearLabel"), - 114: .same(proto: "clearLazy"), - 115: .same(proto: "clearLeadingComments"), - 116: .same(proto: "clearMapEntry"), - 117: .same(proto: "clearMaximumEdition"), - 118: .same(proto: "clearMessageEncoding"), - 119: .same(proto: "clearMessageSetWireFormat"), - 120: .same(proto: "clearMinimumEdition"), - 121: .same(proto: "clearName"), - 122: .same(proto: "clearNamePart"), - 123: .same(proto: "clearNegativeIntValue"), - 124: .same(proto: "clearNoStandardDescriptorAccessor"), - 125: .same(proto: "clearNumber"), - 126: .same(proto: "clearObjcClassPrefix"), - 127: .same(proto: "clearOneofIndex"), - 128: .same(proto: "clearOptimizeFor"), - 129: .same(proto: "clearOptions"), - 130: .same(proto: "clearOutputType"), - 131: .same(proto: "clearOverridableFeatures"), - 132: .same(proto: "clearPackage"), - 133: .same(proto: "clearPacked"), - 134: .same(proto: "clearPhpClassPrefix"), - 135: .same(proto: "clearPhpMetadataNamespace"), - 136: .same(proto: "clearPhpNamespace"), - 137: .same(proto: "clearPositiveIntValue"), - 138: .same(proto: "clearProto3Optional"), - 139: .same(proto: "clearPyGenericServices"), - 140: .same(proto: "clearRepeated"), - 141: .same(proto: "clearRepeatedFieldEncoding"), - 142: .same(proto: "clearReserved"), - 143: .same(proto: "clearRetention"), - 144: .same(proto: "clearRubyPackage"), - 145: .same(proto: "clearSemantic"), - 146: .same(proto: "clearServerStreaming"), - 147: .same(proto: "clearSourceCodeInfo"), - 148: .same(proto: "clearSourceContext"), - 149: .same(proto: "clearSourceFile"), - 150: .same(proto: "clearStart"), - 151: .same(proto: "clearStringValue"), - 152: .same(proto: "clearSwiftPrefix"), - 153: .same(proto: "clearSyntax"), - 154: .same(proto: "clearTrailingComments"), - 155: .same(proto: "clearType"), - 156: .same(proto: "clearTypeName"), - 157: .same(proto: "clearUnverifiedLazy"), - 158: .same(proto: "clearUtf8Validation"), - 159: .same(proto: "clearValue"), - 160: .same(proto: "clearVerification"), - 161: .same(proto: "clearWeak"), - 162: .same(proto: "clientStreaming"), - 163: .same(proto: "codePoint"), - 164: .same(proto: "codeUnits"), - 165: .same(proto: "Collection"), - 166: .same(proto: "com"), - 167: .same(proto: "comma"), - 168: .same(proto: "consumedBytes"), - 169: .same(proto: "contentsOf"), - 170: .same(proto: "count"), - 171: .same(proto: "countVarintsInBuffer"), - 172: .same(proto: "csharpNamespace"), - 173: .same(proto: "ctype"), - 174: .same(proto: "customCodable"), - 175: .same(proto: "CustomDebugStringConvertible"), - 176: .same(proto: "d"), - 177: .same(proto: "Data"), - 178: .same(proto: "dataResult"), - 179: .same(proto: "date"), - 180: .same(proto: "daySec"), - 181: .same(proto: "daysSinceEpoch"), - 182: .same(proto: "debugDescription"), - 183: .same(proto: "debugRedact"), - 184: .same(proto: "declaration"), - 185: .same(proto: "decoded"), - 186: .same(proto: "decodedFromJSONNull"), - 187: .same(proto: "decodeExtensionField"), - 188: .same(proto: "decodeExtensionFieldsAsMessageSet"), - 189: .same(proto: "decodeJSON"), - 190: .same(proto: "decodeMapField"), - 191: .same(proto: "decodeMessage"), - 192: .same(proto: "decoder"), - 193: .same(proto: "decodeRepeated"), - 194: .same(proto: "decodeRepeatedBoolField"), - 195: .same(proto: "decodeRepeatedBytesField"), - 196: .same(proto: "decodeRepeatedDoubleField"), - 197: .same(proto: "decodeRepeatedEnumField"), - 198: .same(proto: "decodeRepeatedFixed32Field"), - 199: .same(proto: "decodeRepeatedFixed64Field"), - 200: .same(proto: "decodeRepeatedFloatField"), - 201: .same(proto: "decodeRepeatedGroupField"), - 202: .same(proto: "decodeRepeatedInt32Field"), - 203: .same(proto: "decodeRepeatedInt64Field"), - 204: .same(proto: "decodeRepeatedMessageField"), - 205: .same(proto: "decodeRepeatedSFixed32Field"), - 206: .same(proto: "decodeRepeatedSFixed64Field"), - 207: .same(proto: "decodeRepeatedSInt32Field"), - 208: .same(proto: "decodeRepeatedSInt64Field"), - 209: .same(proto: "decodeRepeatedStringField"), - 210: .same(proto: "decodeRepeatedUInt32Field"), - 211: .same(proto: "decodeRepeatedUInt64Field"), - 212: .same(proto: "decodeSingular"), - 213: .same(proto: "decodeSingularBoolField"), - 214: .same(proto: "decodeSingularBytesField"), - 215: .same(proto: "decodeSingularDoubleField"), - 216: .same(proto: "decodeSingularEnumField"), - 217: .same(proto: "decodeSingularFixed32Field"), - 218: .same(proto: "decodeSingularFixed64Field"), - 219: .same(proto: "decodeSingularFloatField"), - 220: .same(proto: "decodeSingularGroupField"), - 221: .same(proto: "decodeSingularInt32Field"), - 222: .same(proto: "decodeSingularInt64Field"), - 223: .same(proto: "decodeSingularMessageField"), - 224: .same(proto: "decodeSingularSFixed32Field"), - 225: .same(proto: "decodeSingularSFixed64Field"), - 226: .same(proto: "decodeSingularSInt32Field"), - 227: .same(proto: "decodeSingularSInt64Field"), - 228: .same(proto: "decodeSingularStringField"), - 229: .same(proto: "decodeSingularUInt32Field"), - 230: .same(proto: "decodeSingularUInt64Field"), - 231: .same(proto: "decodeTextFormat"), - 232: .same(proto: "defaultAnyTypeURLPrefix"), - 233: .same(proto: "defaults"), - 234: .same(proto: "defaultValue"), - 235: .same(proto: "dependency"), - 236: .same(proto: "deprecated"), - 237: .same(proto: "deprecatedLegacyJsonFieldConflicts"), - 238: .same(proto: "deprecationWarning"), - 239: .same(proto: "description"), - 240: .same(proto: "DescriptorProto"), - 241: .same(proto: "Dictionary"), - 242: .same(proto: "dictionaryLiteral"), - 243: .same(proto: "digit"), - 244: .same(proto: "digit0"), - 245: .same(proto: "digit1"), - 246: .same(proto: "digitCount"), - 247: .same(proto: "digits"), - 248: .same(proto: "digitValue"), - 249: .same(proto: "discardableResult"), - 250: .same(proto: "discardUnknownFields"), - 251: .same(proto: "Double"), - 252: .same(proto: "doubleValue"), - 253: .same(proto: "Duration"), - 254: .same(proto: "E"), - 255: .same(proto: "edition"), - 256: .same(proto: "EditionDefault"), - 257: .same(proto: "editionDefaults"), - 258: .same(proto: "editionDeprecated"), - 259: .same(proto: "editionIntroduced"), - 260: .same(proto: "editionRemoved"), - 261: .same(proto: "Element"), - 262: .same(proto: "elements"), - 263: .same(proto: "emitExtensionFieldName"), - 264: .same(proto: "emitFieldName"), - 265: .same(proto: "emitFieldNumber"), - 266: .same(proto: "Empty"), - 267: .same(proto: "encodeAsBytes"), - 268: .same(proto: "encoded"), - 269: .same(proto: "encodedJSONString"), - 270: .same(proto: "encodedSize"), - 271: .same(proto: "encodeField"), - 272: .same(proto: "encoder"), - 273: .same(proto: "end"), - 274: .same(proto: "endArray"), - 275: .same(proto: "endMessageField"), - 276: .same(proto: "endObject"), - 277: .same(proto: "endRegularField"), - 278: .same(proto: "enum"), - 279: .same(proto: "EnumDescriptorProto"), - 280: .same(proto: "EnumOptions"), - 281: .same(proto: "EnumReservedRange"), - 282: .same(proto: "enumType"), - 283: .same(proto: "enumvalue"), - 284: .same(proto: "EnumValueDescriptorProto"), - 285: .same(proto: "EnumValueOptions"), - 286: .same(proto: "Equatable"), - 287: .same(proto: "Error"), - 288: .same(proto: "ExpressibleByArrayLiteral"), - 289: .same(proto: "ExpressibleByDictionaryLiteral"), - 290: .same(proto: "ext"), - 291: .same(proto: "extDecoder"), - 292: .same(proto: "extendedGraphemeClusterLiteral"), - 293: .same(proto: "ExtendedGraphemeClusterLiteralType"), - 294: .same(proto: "extendee"), - 295: .same(proto: "ExtensibleMessage"), - 296: .same(proto: "extension"), - 297: .same(proto: "ExtensionField"), - 298: .same(proto: "extensionFieldNumber"), - 299: .same(proto: "ExtensionFieldValueSet"), - 300: .same(proto: "ExtensionMap"), - 301: .same(proto: "extensionRange"), - 302: .same(proto: "ExtensionRangeOptions"), - 303: .same(proto: "extensions"), - 304: .same(proto: "extras"), - 305: .same(proto: "F"), - 306: .same(proto: "false"), - 307: .same(proto: "features"), - 308: .same(proto: "FeatureSet"), - 309: .same(proto: "FeatureSetDefaults"), - 310: .same(proto: "FeatureSetEditionDefault"), - 311: .same(proto: "featureSupport"), - 312: .same(proto: "field"), - 313: .same(proto: "fieldData"), - 314: .same(proto: "FieldDescriptorProto"), - 315: .same(proto: "FieldMask"), - 316: .same(proto: "fieldName"), - 317: .same(proto: "fieldNameCount"), - 318: .same(proto: "fieldNum"), - 319: .same(proto: "fieldNumber"), - 320: .same(proto: "fieldNumberForProto"), - 321: .same(proto: "FieldOptions"), - 322: .same(proto: "fieldPresence"), - 323: .same(proto: "fields"), - 324: .same(proto: "fieldSize"), - 325: .same(proto: "FieldTag"), - 326: .same(proto: "fieldType"), - 327: .same(proto: "file"), - 328: .same(proto: "FileDescriptorProto"), - 329: .same(proto: "FileDescriptorSet"), - 330: .same(proto: "fileName"), - 331: .same(proto: "FileOptions"), - 332: .same(proto: "filter"), - 333: .same(proto: "final"), - 334: .same(proto: "finiteOnly"), - 335: .same(proto: "first"), - 336: .same(proto: "firstItem"), - 337: .same(proto: "fixedFeatures"), - 338: .same(proto: "Float"), - 339: .same(proto: "floatLiteral"), - 340: .same(proto: "FloatLiteralType"), - 341: .same(proto: "FloatValue"), - 342: .same(proto: "forMessageName"), - 343: .same(proto: "formUnion"), - 344: .same(proto: "forReadingFrom"), - 345: .same(proto: "forTypeURL"), - 346: .same(proto: "ForwardParser"), - 347: .same(proto: "forWritingInto"), - 348: .same(proto: "from"), - 349: .same(proto: "fromAscii2"), - 350: .same(proto: "fromAscii4"), - 351: .same(proto: "fromByteOffset"), - 352: .same(proto: "fromHexDigit"), - 353: .same(proto: "fullName"), - 354: .same(proto: "func"), - 355: .same(proto: "G"), - 356: .same(proto: "GeneratedCodeInfo"), - 357: .same(proto: "get"), - 358: .same(proto: "getExtensionValue"), - 359: .same(proto: "googleapis"), - 360: .standard(proto: "Google_Protobuf_Any"), - 361: .standard(proto: "Google_Protobuf_Api"), - 362: .standard(proto: "Google_Protobuf_BoolValue"), - 363: .standard(proto: "Google_Protobuf_BytesValue"), - 364: .standard(proto: "Google_Protobuf_DescriptorProto"), - 365: .standard(proto: "Google_Protobuf_DoubleValue"), - 366: .standard(proto: "Google_Protobuf_Duration"), - 367: .standard(proto: "Google_Protobuf_Edition"), - 368: .standard(proto: "Google_Protobuf_Empty"), - 369: .standard(proto: "Google_Protobuf_Enum"), - 370: .standard(proto: "Google_Protobuf_EnumDescriptorProto"), - 371: .standard(proto: "Google_Protobuf_EnumOptions"), - 372: .standard(proto: "Google_Protobuf_EnumValue"), - 373: .standard(proto: "Google_Protobuf_EnumValueDescriptorProto"), - 374: .standard(proto: "Google_Protobuf_EnumValueOptions"), - 375: .standard(proto: "Google_Protobuf_ExtensionRangeOptions"), - 376: .standard(proto: "Google_Protobuf_FeatureSet"), - 377: .standard(proto: "Google_Protobuf_FeatureSetDefaults"), - 378: .standard(proto: "Google_Protobuf_Field"), - 379: .standard(proto: "Google_Protobuf_FieldDescriptorProto"), - 380: .standard(proto: "Google_Protobuf_FieldMask"), - 381: .standard(proto: "Google_Protobuf_FieldOptions"), - 382: .standard(proto: "Google_Protobuf_FileDescriptorProto"), - 383: .standard(proto: "Google_Protobuf_FileDescriptorSet"), - 384: .standard(proto: "Google_Protobuf_FileOptions"), - 385: .standard(proto: "Google_Protobuf_FloatValue"), - 386: .standard(proto: "Google_Protobuf_GeneratedCodeInfo"), - 387: .standard(proto: "Google_Protobuf_Int32Value"), - 388: .standard(proto: "Google_Protobuf_Int64Value"), - 389: .standard(proto: "Google_Protobuf_ListValue"), - 390: .standard(proto: "Google_Protobuf_MessageOptions"), - 391: .standard(proto: "Google_Protobuf_Method"), - 392: .standard(proto: "Google_Protobuf_MethodDescriptorProto"), - 393: .standard(proto: "Google_Protobuf_MethodOptions"), - 394: .standard(proto: "Google_Protobuf_Mixin"), - 395: .standard(proto: "Google_Protobuf_NullValue"), - 396: .standard(proto: "Google_Protobuf_OneofDescriptorProto"), - 397: .standard(proto: "Google_Protobuf_OneofOptions"), - 398: .standard(proto: "Google_Protobuf_Option"), - 399: .standard(proto: "Google_Protobuf_ServiceDescriptorProto"), - 400: .standard(proto: "Google_Protobuf_ServiceOptions"), - 401: .standard(proto: "Google_Protobuf_SourceCodeInfo"), - 402: .standard(proto: "Google_Protobuf_SourceContext"), - 403: .standard(proto: "Google_Protobuf_StringValue"), - 404: .standard(proto: "Google_Protobuf_Struct"), - 405: .standard(proto: "Google_Protobuf_Syntax"), - 406: .standard(proto: "Google_Protobuf_Timestamp"), - 407: .standard(proto: "Google_Protobuf_Type"), - 408: .standard(proto: "Google_Protobuf_UInt32Value"), - 409: .standard(proto: "Google_Protobuf_UInt64Value"), - 410: .standard(proto: "Google_Protobuf_UninterpretedOption"), - 411: .standard(proto: "Google_Protobuf_Value"), - 412: .same(proto: "goPackage"), - 413: .same(proto: "group"), - 414: .same(proto: "groupFieldNumberStack"), - 415: .same(proto: "groupSize"), - 416: .same(proto: "hadOneofValue"), - 417: .same(proto: "handleConflictingOneOf"), - 418: .same(proto: "hasAggregateValue"), - 419: .same(proto: "hasAllowAlias"), - 420: .same(proto: "hasBegin"), - 421: .same(proto: "hasCcEnableArenas"), - 422: .same(proto: "hasCcGenericServices"), - 423: .same(proto: "hasClientStreaming"), - 424: .same(proto: "hasCsharpNamespace"), - 425: .same(proto: "hasCtype"), - 426: .same(proto: "hasDebugRedact"), - 427: .same(proto: "hasDefaultValue"), - 428: .same(proto: "hasDeprecated"), - 429: .same(proto: "hasDeprecatedLegacyJsonFieldConflicts"), - 430: .same(proto: "hasDeprecationWarning"), - 431: .same(proto: "hasDoubleValue"), - 432: .same(proto: "hasEdition"), - 433: .same(proto: "hasEditionDeprecated"), - 434: .same(proto: "hasEditionIntroduced"), - 435: .same(proto: "hasEditionRemoved"), - 436: .same(proto: "hasEnd"), - 437: .same(proto: "hasEnumType"), - 438: .same(proto: "hasExtendee"), - 439: .same(proto: "hasExtensionValue"), - 440: .same(proto: "hasFeatures"), - 441: .same(proto: "hasFeatureSupport"), - 442: .same(proto: "hasFieldPresence"), - 443: .same(proto: "hasFixedFeatures"), - 444: .same(proto: "hasFullName"), - 445: .same(proto: "hasGoPackage"), - 446: .same(proto: "hash"), - 447: .same(proto: "Hashable"), - 448: .same(proto: "hasher"), - 449: .same(proto: "HashVisitor"), - 450: .same(proto: "hasIdempotencyLevel"), - 451: .same(proto: "hasIdentifierValue"), - 452: .same(proto: "hasInputType"), - 453: .same(proto: "hasIsExtension"), - 454: .same(proto: "hasJavaGenerateEqualsAndHash"), - 455: .same(proto: "hasJavaGenericServices"), - 456: .same(proto: "hasJavaMultipleFiles"), - 457: .same(proto: "hasJavaOuterClassname"), - 458: .same(proto: "hasJavaPackage"), - 459: .same(proto: "hasJavaStringCheckUtf8"), - 460: .same(proto: "hasJsonFormat"), - 461: .same(proto: "hasJsonName"), - 462: .same(proto: "hasJstype"), - 463: .same(proto: "hasLabel"), - 464: .same(proto: "hasLazy"), - 465: .same(proto: "hasLeadingComments"), - 466: .same(proto: "hasMapEntry"), - 467: .same(proto: "hasMaximumEdition"), - 468: .same(proto: "hasMessageEncoding"), - 469: .same(proto: "hasMessageSetWireFormat"), - 470: .same(proto: "hasMinimumEdition"), - 471: .same(proto: "hasName"), - 472: .same(proto: "hasNamePart"), - 473: .same(proto: "hasNegativeIntValue"), - 474: .same(proto: "hasNoStandardDescriptorAccessor"), - 475: .same(proto: "hasNumber"), - 476: .same(proto: "hasObjcClassPrefix"), - 477: .same(proto: "hasOneofIndex"), - 478: .same(proto: "hasOptimizeFor"), - 479: .same(proto: "hasOptions"), - 480: .same(proto: "hasOutputType"), - 481: .same(proto: "hasOverridableFeatures"), - 482: .same(proto: "hasPackage"), - 483: .same(proto: "hasPacked"), - 484: .same(proto: "hasPhpClassPrefix"), - 485: .same(proto: "hasPhpMetadataNamespace"), - 486: .same(proto: "hasPhpNamespace"), - 487: .same(proto: "hasPositiveIntValue"), - 488: .same(proto: "hasProto3Optional"), - 489: .same(proto: "hasPyGenericServices"), - 490: .same(proto: "hasRepeated"), - 491: .same(proto: "hasRepeatedFieldEncoding"), - 492: .same(proto: "hasReserved"), - 493: .same(proto: "hasRetention"), - 494: .same(proto: "hasRubyPackage"), - 495: .same(proto: "hasSemantic"), - 496: .same(proto: "hasServerStreaming"), - 497: .same(proto: "hasSourceCodeInfo"), - 498: .same(proto: "hasSourceContext"), - 499: .same(proto: "hasSourceFile"), - 500: .same(proto: "hasStart"), - 501: .same(proto: "hasStringValue"), - 502: .same(proto: "hasSwiftPrefix"), - 503: .same(proto: "hasSyntax"), - 504: .same(proto: "hasTrailingComments"), - 505: .same(proto: "hasType"), - 506: .same(proto: "hasTypeName"), - 507: .same(proto: "hasUnverifiedLazy"), - 508: .same(proto: "hasUtf8Validation"), - 509: .same(proto: "hasValue"), - 510: .same(proto: "hasVerification"), - 511: .same(proto: "hasWeak"), - 512: .same(proto: "hour"), - 513: .same(proto: "i"), - 514: .same(proto: "idempotencyLevel"), - 515: .same(proto: "identifierValue"), - 516: .same(proto: "if"), - 517: .same(proto: "ignoreUnknownExtensionFields"), - 518: .same(proto: "ignoreUnknownFields"), - 519: .same(proto: "index"), - 520: .same(proto: "init"), - 521: .same(proto: "inout"), - 522: .same(proto: "inputType"), - 523: .same(proto: "insert"), - 524: .same(proto: "Int"), - 525: .same(proto: "Int32"), - 526: .same(proto: "Int32Value"), - 527: .same(proto: "Int64"), - 528: .same(proto: "Int64Value"), - 529: .same(proto: "Int8"), - 530: .same(proto: "integerLiteral"), - 531: .same(proto: "IntegerLiteralType"), - 532: .same(proto: "intern"), - 533: .same(proto: "Internal"), - 534: .same(proto: "InternalState"), - 535: .same(proto: "into"), - 536: .same(proto: "ints"), - 537: .same(proto: "isA"), - 538: .same(proto: "isEqual"), - 539: .same(proto: "isEqualTo"), - 540: .same(proto: "isExtension"), - 541: .same(proto: "isInitialized"), - 542: .same(proto: "isNegative"), - 543: .same(proto: "itemTagsEncodedSize"), - 544: .same(proto: "iterator"), - 545: .same(proto: "javaGenerateEqualsAndHash"), - 546: .same(proto: "javaGenericServices"), - 547: .same(proto: "javaMultipleFiles"), - 548: .same(proto: "javaOuterClassname"), - 549: .same(proto: "javaPackage"), - 550: .same(proto: "javaStringCheckUtf8"), - 551: .same(proto: "JSONDecoder"), - 552: .same(proto: "JSONDecodingError"), - 553: .same(proto: "JSONDecodingOptions"), - 554: .same(proto: "jsonEncoder"), - 555: .same(proto: "JSONEncodingError"), - 556: .same(proto: "JSONEncodingOptions"), - 557: .same(proto: "JSONEncodingVisitor"), - 558: .same(proto: "jsonFormat"), - 559: .same(proto: "JSONMapEncodingVisitor"), - 560: .same(proto: "jsonName"), - 561: .same(proto: "jsonPath"), - 562: .same(proto: "jsonPaths"), - 563: .same(proto: "JSONScanner"), - 564: .same(proto: "jsonString"), - 565: .same(proto: "jsonText"), - 566: .same(proto: "jsonUTF8Bytes"), - 567: .same(proto: "jsonUTF8Data"), - 568: .same(proto: "jstype"), - 569: .same(proto: "k"), - 570: .same(proto: "kChunkSize"), - 571: .same(proto: "Key"), - 572: .same(proto: "keyField"), - 573: .same(proto: "keyFieldOpt"), - 574: .same(proto: "KeyType"), - 575: .same(proto: "kind"), - 576: .same(proto: "l"), - 577: .same(proto: "label"), - 578: .same(proto: "lazy"), - 579: .same(proto: "leadingComments"), - 580: .same(proto: "leadingDetachedComments"), - 581: .same(proto: "length"), - 582: .same(proto: "lessThan"), - 583: .same(proto: "let"), - 584: .same(proto: "lhs"), - 585: .same(proto: "list"), - 586: .same(proto: "listOfMessages"), - 587: .same(proto: "listValue"), - 588: .same(proto: "littleEndian"), - 589: .same(proto: "load"), - 590: .same(proto: "localHasher"), - 591: .same(proto: "location"), - 592: .same(proto: "M"), - 593: .same(proto: "major"), - 594: .same(proto: "makeAsyncIterator"), - 595: .same(proto: "makeIterator"), - 596: .same(proto: "mapEntry"), - 597: .same(proto: "MapKeyType"), - 598: .same(proto: "mapToMessages"), - 599: .same(proto: "MapValueType"), - 600: .same(proto: "mapVisitor"), - 601: .same(proto: "maximumEdition"), - 602: .same(proto: "mdayStart"), - 603: .same(proto: "merge"), - 604: .same(proto: "message"), - 605: .same(proto: "messageDepthLimit"), - 606: .same(proto: "messageEncoding"), - 607: .same(proto: "MessageExtension"), - 608: .same(proto: "MessageImplementationBase"), - 609: .same(proto: "MessageOptions"), - 610: .same(proto: "MessageSet"), - 611: .same(proto: "messageSetWireFormat"), - 612: .same(proto: "messageSize"), - 613: .same(proto: "messageType"), - 614: .same(proto: "Method"), - 615: .same(proto: "MethodDescriptorProto"), - 616: .same(proto: "MethodOptions"), - 617: .same(proto: "methods"), - 618: .same(proto: "min"), - 619: .same(proto: "minimumEdition"), - 620: .same(proto: "minor"), - 621: .same(proto: "Mixin"), - 622: .same(proto: "mixins"), - 623: .same(proto: "modifier"), - 624: .same(proto: "modify"), - 625: .same(proto: "month"), - 626: .same(proto: "msgExtension"), - 627: .same(proto: "mutating"), - 628: .same(proto: "n"), - 629: .same(proto: "name"), - 630: .same(proto: "NameDescription"), - 631: .same(proto: "NameMap"), - 632: .same(proto: "NamePart"), - 633: .same(proto: "names"), - 634: .same(proto: "nanos"), - 635: .same(proto: "negativeIntValue"), - 636: .same(proto: "nestedType"), - 637: .same(proto: "newL"), - 638: .same(proto: "newList"), - 639: .same(proto: "newValue"), - 640: .same(proto: "next"), - 641: .same(proto: "nextByte"), - 642: .same(proto: "nextFieldNumber"), - 643: .same(proto: "nextVarInt"), - 644: .same(proto: "nil"), - 645: .same(proto: "nilLiteral"), - 646: .same(proto: "noStandardDescriptorAccessor"), - 647: .same(proto: "nullValue"), - 648: .same(proto: "number"), - 649: .same(proto: "numberValue"), - 650: .same(proto: "objcClassPrefix"), - 651: .same(proto: "of"), - 652: .same(proto: "oneofDecl"), - 653: .same(proto: "OneofDescriptorProto"), - 654: .same(proto: "oneofIndex"), - 655: .same(proto: "OneofOptions"), - 656: .same(proto: "oneofs"), - 657: .standard(proto: "OneOf_Kind"), - 658: .same(proto: "optimizeFor"), - 659: .same(proto: "OptimizeMode"), - 660: .same(proto: "Option"), - 661: .same(proto: "OptionalEnumExtensionField"), - 662: .same(proto: "OptionalExtensionField"), - 663: .same(proto: "OptionalGroupExtensionField"), - 664: .same(proto: "OptionalMessageExtensionField"), - 665: .same(proto: "OptionRetention"), - 666: .same(proto: "options"), - 667: .same(proto: "OptionTargetType"), - 668: .same(proto: "other"), - 669: .same(proto: "others"), - 670: .same(proto: "out"), - 671: .same(proto: "outputType"), - 672: .same(proto: "overridableFeatures"), - 673: .same(proto: "p"), - 674: .same(proto: "package"), - 675: .same(proto: "packed"), - 676: .same(proto: "PackedEnumExtensionField"), - 677: .same(proto: "PackedExtensionField"), - 678: .same(proto: "padding"), - 679: .same(proto: "parent"), - 680: .same(proto: "parse"), - 681: .same(proto: "path"), - 682: .same(proto: "paths"), - 683: .same(proto: "payload"), - 684: .same(proto: "payloadSize"), - 685: .same(proto: "phpClassPrefix"), - 686: .same(proto: "phpMetadataNamespace"), - 687: .same(proto: "phpNamespace"), - 688: .same(proto: "pos"), - 689: .same(proto: "positiveIntValue"), - 690: .same(proto: "prefix"), - 691: .same(proto: "preserveProtoFieldNames"), - 692: .same(proto: "preTraverse"), - 693: .same(proto: "printUnknownFields"), - 694: .same(proto: "proto2"), - 695: .same(proto: "proto3DefaultValue"), - 696: .same(proto: "proto3Optional"), - 697: .same(proto: "ProtobufAPIVersionCheck"), - 698: .standard(proto: "ProtobufAPIVersion_3"), - 699: .same(proto: "ProtobufBool"), - 700: .same(proto: "ProtobufBytes"), - 701: .same(proto: "ProtobufDouble"), - 702: .same(proto: "ProtobufEnumMap"), - 703: .same(proto: "protobufExtension"), - 704: .same(proto: "ProtobufFixed32"), - 705: .same(proto: "ProtobufFixed64"), - 706: .same(proto: "ProtobufFloat"), - 707: .same(proto: "ProtobufInt32"), - 708: .same(proto: "ProtobufInt64"), - 709: .same(proto: "ProtobufMap"), - 710: .same(proto: "ProtobufMessageMap"), - 711: .same(proto: "ProtobufSFixed32"), - 712: .same(proto: "ProtobufSFixed64"), - 713: .same(proto: "ProtobufSInt32"), - 714: .same(proto: "ProtobufSInt64"), - 715: .same(proto: "ProtobufString"), - 716: .same(proto: "ProtobufUInt32"), - 717: .same(proto: "ProtobufUInt64"), - 718: .standard(proto: "protobuf_extensionFieldValues"), - 719: .standard(proto: "protobuf_fieldNumber"), - 720: .standard(proto: "protobuf_generated_isEqualTo"), - 721: .standard(proto: "protobuf_nameMap"), - 722: .standard(proto: "protobuf_newField"), - 723: .standard(proto: "protobuf_package"), - 724: .same(proto: "protocol"), - 725: .same(proto: "protoFieldName"), - 726: .same(proto: "protoMessageName"), - 727: .same(proto: "ProtoNameProviding"), - 728: .same(proto: "protoPaths"), - 729: .same(proto: "public"), - 730: .same(proto: "publicDependency"), - 731: .same(proto: "putBoolValue"), - 732: .same(proto: "putBytesValue"), - 733: .same(proto: "putDoubleValue"), - 734: .same(proto: "putEnumValue"), - 735: .same(proto: "putFixedUInt32"), - 736: .same(proto: "putFixedUInt64"), - 737: .same(proto: "putFloatValue"), - 738: .same(proto: "putInt64"), - 739: .same(proto: "putStringValue"), - 740: .same(proto: "putUInt64"), - 741: .same(proto: "putUInt64Hex"), - 742: .same(proto: "putVarInt"), - 743: .same(proto: "putZigZagVarInt"), - 744: .same(proto: "pyGenericServices"), - 745: .same(proto: "R"), - 746: .same(proto: "rawChars"), - 747: .same(proto: "RawRepresentable"), - 748: .same(proto: "RawValue"), - 749: .same(proto: "read4HexDigits"), - 750: .same(proto: "readBytes"), - 751: .same(proto: "register"), - 752: .same(proto: "repeated"), - 753: .same(proto: "RepeatedEnumExtensionField"), - 754: .same(proto: "RepeatedExtensionField"), - 755: .same(proto: "repeatedFieldEncoding"), - 756: .same(proto: "RepeatedGroupExtensionField"), - 757: .same(proto: "RepeatedMessageExtensionField"), - 758: .same(proto: "repeating"), - 759: .same(proto: "requestStreaming"), - 760: .same(proto: "requestTypeURL"), - 761: .same(proto: "requiredSize"), - 762: .same(proto: "responseStreaming"), - 763: .same(proto: "responseTypeURL"), - 764: .same(proto: "result"), - 765: .same(proto: "retention"), - 766: .same(proto: "rethrows"), - 767: .same(proto: "return"), - 768: .same(proto: "ReturnType"), - 769: .same(proto: "revision"), - 770: .same(proto: "rhs"), - 771: .same(proto: "root"), - 772: .same(proto: "rubyPackage"), - 773: .same(proto: "s"), - 774: .same(proto: "sawBackslash"), - 775: .same(proto: "sawSection4Characters"), - 776: .same(proto: "sawSection5Characters"), - 777: .same(proto: "scan"), - 778: .same(proto: "scanner"), - 779: .same(proto: "seconds"), - 780: .same(proto: "self"), - 781: .same(proto: "semantic"), - 782: .same(proto: "Sendable"), - 783: .same(proto: "separator"), - 784: .same(proto: "serialize"), - 785: .same(proto: "serializedBytes"), - 786: .same(proto: "serializedData"), - 787: .same(proto: "serializedSize"), - 788: .same(proto: "serverStreaming"), - 789: .same(proto: "service"), - 790: .same(proto: "ServiceDescriptorProto"), - 791: .same(proto: "ServiceOptions"), - 792: .same(proto: "set"), - 793: .same(proto: "setExtensionValue"), - 794: .same(proto: "shift"), - 795: .same(proto: "SimpleExtensionMap"), - 796: .same(proto: "size"), - 797: .same(proto: "sizer"), - 798: .same(proto: "source"), - 799: .same(proto: "sourceCodeInfo"), - 800: .same(proto: "sourceContext"), - 801: .same(proto: "sourceEncoding"), - 802: .same(proto: "sourceFile"), - 803: .same(proto: "span"), - 804: .same(proto: "split"), - 805: .same(proto: "start"), - 806: .same(proto: "startArray"), - 807: .same(proto: "startArrayObject"), - 808: .same(proto: "startField"), - 809: .same(proto: "startIndex"), - 810: .same(proto: "startMessageField"), - 811: .same(proto: "startObject"), - 812: .same(proto: "startRegularField"), - 813: .same(proto: "state"), - 814: .same(proto: "static"), - 815: .same(proto: "StaticString"), - 816: .same(proto: "storage"), - 817: .same(proto: "String"), - 818: .same(proto: "stringLiteral"), - 819: .same(proto: "StringLiteralType"), - 820: .same(proto: "stringResult"), - 821: .same(proto: "stringValue"), - 822: .same(proto: "struct"), - 823: .same(proto: "structValue"), - 824: .same(proto: "subDecoder"), - 825: .same(proto: "subscript"), - 826: .same(proto: "subVisitor"), - 827: .same(proto: "Swift"), - 828: .same(proto: "swiftPrefix"), - 829: .same(proto: "SwiftProtobufContiguousBytes"), - 830: .same(proto: "syntax"), - 831: .same(proto: "T"), - 832: .same(proto: "tag"), - 833: .same(proto: "targets"), - 834: .same(proto: "terminator"), - 835: .same(proto: "testDecoder"), - 836: .same(proto: "text"), - 837: .same(proto: "textDecoder"), - 838: .same(proto: "TextFormatDecoder"), - 839: .same(proto: "TextFormatDecodingError"), - 840: .same(proto: "TextFormatDecodingOptions"), - 841: .same(proto: "TextFormatEncodingOptions"), - 842: .same(proto: "TextFormatEncodingVisitor"), - 843: .same(proto: "textFormatString"), - 844: .same(proto: "throwOrIgnore"), - 845: .same(proto: "throws"), - 846: .same(proto: "timeInterval"), - 847: .same(proto: "timeIntervalSince1970"), - 848: .same(proto: "timeIntervalSinceReferenceDate"), - 849: .same(proto: "Timestamp"), - 850: .same(proto: "total"), - 851: .same(proto: "totalArrayDepth"), - 852: .same(proto: "totalSize"), - 853: .same(proto: "trailingComments"), - 854: .same(proto: "traverse"), - 855: .same(proto: "true"), - 856: .same(proto: "try"), - 857: .same(proto: "type"), - 858: .same(proto: "typealias"), - 859: .same(proto: "TypeEnum"), - 860: .same(proto: "typeName"), - 861: .same(proto: "typePrefix"), - 862: .same(proto: "typeStart"), - 863: .same(proto: "typeUnknown"), - 864: .same(proto: "typeURL"), - 865: .same(proto: "UInt32"), - 866: .same(proto: "UInt32Value"), - 867: .same(proto: "UInt64"), - 868: .same(proto: "UInt64Value"), - 869: .same(proto: "UInt8"), - 870: .same(proto: "unchecked"), - 871: .same(proto: "unicodeScalarLiteral"), - 872: .same(proto: "UnicodeScalarLiteralType"), - 873: .same(proto: "unicodeScalars"), - 874: .same(proto: "UnicodeScalarView"), - 875: .same(proto: "uninterpretedOption"), - 876: .same(proto: "union"), - 877: .same(proto: "uniqueStorage"), - 878: .same(proto: "unknown"), - 879: .same(proto: "unknownFields"), - 880: .same(proto: "UnknownStorage"), - 881: .same(proto: "unpackTo"), - 882: .same(proto: "UnsafeBufferPointer"), - 883: .same(proto: "UnsafeMutablePointer"), - 884: .same(proto: "UnsafeMutableRawBufferPointer"), - 885: .same(proto: "UnsafeRawBufferPointer"), - 886: .same(proto: "UnsafeRawPointer"), - 887: .same(proto: "unverifiedLazy"), - 888: .same(proto: "updatedOptions"), - 889: .same(proto: "url"), - 890: .same(proto: "useDeterministicOrdering"), - 891: .same(proto: "utf8"), - 892: .same(proto: "utf8Ptr"), - 893: .same(proto: "utf8ToDouble"), - 894: .same(proto: "utf8Validation"), - 895: .same(proto: "UTF8View"), - 896: .same(proto: "v"), - 897: .same(proto: "value"), - 898: .same(proto: "valueField"), - 899: .same(proto: "values"), - 900: .same(proto: "ValueType"), - 901: .same(proto: "var"), - 902: .same(proto: "verification"), - 903: .same(proto: "VerificationState"), - 904: .same(proto: "Version"), - 905: .same(proto: "versionString"), - 906: .same(proto: "visitExtensionFields"), - 907: .same(proto: "visitExtensionFieldsAsMessageSet"), - 908: .same(proto: "visitMapField"), - 909: .same(proto: "visitor"), - 910: .same(proto: "visitPacked"), - 911: .same(proto: "visitPackedBoolField"), - 912: .same(proto: "visitPackedDoubleField"), - 913: .same(proto: "visitPackedEnumField"), - 914: .same(proto: "visitPackedFixed32Field"), - 915: .same(proto: "visitPackedFixed64Field"), - 916: .same(proto: "visitPackedFloatField"), - 917: .same(proto: "visitPackedInt32Field"), - 918: .same(proto: "visitPackedInt64Field"), - 919: .same(proto: "visitPackedSFixed32Field"), - 920: .same(proto: "visitPackedSFixed64Field"), - 921: .same(proto: "visitPackedSInt32Field"), - 922: .same(proto: "visitPackedSInt64Field"), - 923: .same(proto: "visitPackedUInt32Field"), - 924: .same(proto: "visitPackedUInt64Field"), - 925: .same(proto: "visitRepeated"), - 926: .same(proto: "visitRepeatedBoolField"), - 927: .same(proto: "visitRepeatedBytesField"), - 928: .same(proto: "visitRepeatedDoubleField"), - 929: .same(proto: "visitRepeatedEnumField"), - 930: .same(proto: "visitRepeatedFixed32Field"), - 931: .same(proto: "visitRepeatedFixed64Field"), - 932: .same(proto: "visitRepeatedFloatField"), - 933: .same(proto: "visitRepeatedGroupField"), - 934: .same(proto: "visitRepeatedInt32Field"), - 935: .same(proto: "visitRepeatedInt64Field"), - 936: .same(proto: "visitRepeatedMessageField"), - 937: .same(proto: "visitRepeatedSFixed32Field"), - 938: .same(proto: "visitRepeatedSFixed64Field"), - 939: .same(proto: "visitRepeatedSInt32Field"), - 940: .same(proto: "visitRepeatedSInt64Field"), - 941: .same(proto: "visitRepeatedStringField"), - 942: .same(proto: "visitRepeatedUInt32Field"), - 943: .same(proto: "visitRepeatedUInt64Field"), - 944: .same(proto: "visitSingular"), - 945: .same(proto: "visitSingularBoolField"), - 946: .same(proto: "visitSingularBytesField"), - 947: .same(proto: "visitSingularDoubleField"), - 948: .same(proto: "visitSingularEnumField"), - 949: .same(proto: "visitSingularFixed32Field"), - 950: .same(proto: "visitSingularFixed64Field"), - 951: .same(proto: "visitSingularFloatField"), - 952: .same(proto: "visitSingularGroupField"), - 953: .same(proto: "visitSingularInt32Field"), - 954: .same(proto: "visitSingularInt64Field"), - 955: .same(proto: "visitSingularMessageField"), - 956: .same(proto: "visitSingularSFixed32Field"), - 957: .same(proto: "visitSingularSFixed64Field"), - 958: .same(proto: "visitSingularSInt32Field"), - 959: .same(proto: "visitSingularSInt64Field"), - 960: .same(proto: "visitSingularStringField"), - 961: .same(proto: "visitSingularUInt32Field"), - 962: .same(proto: "visitSingularUInt64Field"), - 963: .same(proto: "visitUnknown"), - 964: .same(proto: "wasDecoded"), - 965: .same(proto: "weak"), - 966: .same(proto: "weakDependency"), - 967: .same(proto: "where"), - 968: .same(proto: "wireFormat"), - 969: .same(proto: "with"), - 970: .same(proto: "withUnsafeBytes"), - 971: .same(proto: "withUnsafeMutableBytes"), - 972: .same(proto: "work"), - 973: .same(proto: "Wrapped"), - 974: .same(proto: "WrappedType"), - 975: .same(proto: "wrappedValue"), - 976: .same(proto: "written"), - 977: .same(proto: "yday"), + 12: .same(proto: "anyTypeURLNotRegistered"), + 13: .same(proto: "AnyUnpackError"), + 14: .same(proto: "Api"), + 15: .same(proto: "appended"), + 16: .same(proto: "appendUIntHex"), + 17: .same(proto: "appendUnknown"), + 18: .same(proto: "areAllInitialized"), + 19: .same(proto: "Array"), + 20: .same(proto: "arrayDepth"), + 21: .same(proto: "arrayLiteral"), + 22: .same(proto: "arraySeparator"), + 23: .same(proto: "as"), + 24: .same(proto: "asciiOpenCurlyBracket"), + 25: .same(proto: "asciiZero"), + 26: .same(proto: "async"), + 27: .same(proto: "AsyncIterator"), + 28: .same(proto: "AsyncIteratorProtocol"), + 29: .same(proto: "AsyncMessageSequence"), + 30: .same(proto: "available"), + 31: .same(proto: "b"), + 32: .same(proto: "Base"), + 33: .same(proto: "base64Values"), + 34: .same(proto: "baseAddress"), + 35: .same(proto: "BaseType"), + 36: .same(proto: "begin"), + 37: .same(proto: "binary"), + 38: .same(proto: "BinaryDecoder"), + 39: .same(proto: "BinaryDecoding"), + 40: .same(proto: "BinaryDecodingError"), + 41: .same(proto: "BinaryDecodingOptions"), + 42: .same(proto: "BinaryDelimited"), + 43: .same(proto: "BinaryEncoder"), + 44: .same(proto: "BinaryEncoding"), + 45: .same(proto: "BinaryEncodingError"), + 46: .same(proto: "BinaryEncodingMessageSetSizeVisitor"), + 47: .same(proto: "BinaryEncodingMessageSetVisitor"), + 48: .same(proto: "BinaryEncodingOptions"), + 49: .same(proto: "BinaryEncodingSizeVisitor"), + 50: .same(proto: "BinaryEncodingVisitor"), + 51: .same(proto: "binaryOptions"), + 52: .same(proto: "binaryProtobufDelimitedMessages"), + 53: .same(proto: "BinaryStreamDecoding"), + 54: .same(proto: "binaryStreamDecodingError"), + 55: .same(proto: "bitPattern"), + 56: .same(proto: "body"), + 57: .same(proto: "Bool"), + 58: .same(proto: "booleanLiteral"), + 59: .same(proto: "BooleanLiteralType"), + 60: .same(proto: "boolValue"), + 61: .same(proto: "buffer"), + 62: .same(proto: "bytes"), + 63: .same(proto: "bytesInGroup"), + 64: .same(proto: "bytesNeeded"), + 65: .same(proto: "bytesRead"), + 66: .same(proto: "BytesValue"), + 67: .same(proto: "c"), + 68: .same(proto: "capitalizeNext"), + 69: .same(proto: "cardinality"), + 70: .same(proto: "CaseIterable"), + 71: .same(proto: "ccEnableArenas"), + 72: .same(proto: "ccGenericServices"), + 73: .same(proto: "Character"), + 74: .same(proto: "chars"), + 75: .same(proto: "chunk"), + 76: .same(proto: "class"), + 77: .same(proto: "clearAggregateValue"), + 78: .same(proto: "clearAllowAlias"), + 79: .same(proto: "clearBegin"), + 80: .same(proto: "clearCcEnableArenas"), + 81: .same(proto: "clearCcGenericServices"), + 82: .same(proto: "clearClientStreaming"), + 83: .same(proto: "clearCsharpNamespace"), + 84: .same(proto: "clearCtype"), + 85: .same(proto: "clearDebugRedact"), + 86: .same(proto: "clearDefaultValue"), + 87: .same(proto: "clearDeprecated"), + 88: .same(proto: "clearDeprecatedLegacyJsonFieldConflicts"), + 89: .same(proto: "clearDeprecationWarning"), + 90: .same(proto: "clearDoubleValue"), + 91: .same(proto: "clearEdition"), + 92: .same(proto: "clearEditionDeprecated"), + 93: .same(proto: "clearEditionIntroduced"), + 94: .same(proto: "clearEditionRemoved"), + 95: .same(proto: "clearEnd"), + 96: .same(proto: "clearEnumType"), + 97: .same(proto: "clearExtendee"), + 98: .same(proto: "clearExtensionValue"), + 99: .same(proto: "clearFeatures"), + 100: .same(proto: "clearFeatureSupport"), + 101: .same(proto: "clearFieldPresence"), + 102: .same(proto: "clearFixedFeatures"), + 103: .same(proto: "clearFullName"), + 104: .same(proto: "clearGoPackage"), + 105: .same(proto: "clearIdempotencyLevel"), + 106: .same(proto: "clearIdentifierValue"), + 107: .same(proto: "clearInputType"), + 108: .same(proto: "clearIsExtension"), + 109: .same(proto: "clearJavaGenerateEqualsAndHash"), + 110: .same(proto: "clearJavaGenericServices"), + 111: .same(proto: "clearJavaMultipleFiles"), + 112: .same(proto: "clearJavaOuterClassname"), + 113: .same(proto: "clearJavaPackage"), + 114: .same(proto: "clearJavaStringCheckUtf8"), + 115: .same(proto: "clearJsonFormat"), + 116: .same(proto: "clearJsonName"), + 117: .same(proto: "clearJstype"), + 118: .same(proto: "clearLabel"), + 119: .same(proto: "clearLazy"), + 120: .same(proto: "clearLeadingComments"), + 121: .same(proto: "clearMapEntry"), + 122: .same(proto: "clearMaximumEdition"), + 123: .same(proto: "clearMessageEncoding"), + 124: .same(proto: "clearMessageSetWireFormat"), + 125: .same(proto: "clearMinimumEdition"), + 126: .same(proto: "clearName"), + 127: .same(proto: "clearNamePart"), + 128: .same(proto: "clearNegativeIntValue"), + 129: .same(proto: "clearNoStandardDescriptorAccessor"), + 130: .same(proto: "clearNumber"), + 131: .same(proto: "clearObjcClassPrefix"), + 132: .same(proto: "clearOneofIndex"), + 133: .same(proto: "clearOptimizeFor"), + 134: .same(proto: "clearOptions"), + 135: .same(proto: "clearOutputType"), + 136: .same(proto: "clearOverridableFeatures"), + 137: .same(proto: "clearPackage"), + 138: .same(proto: "clearPacked"), + 139: .same(proto: "clearPhpClassPrefix"), + 140: .same(proto: "clearPhpMetadataNamespace"), + 141: .same(proto: "clearPhpNamespace"), + 142: .same(proto: "clearPositiveIntValue"), + 143: .same(proto: "clearProto3Optional"), + 144: .same(proto: "clearPyGenericServices"), + 145: .same(proto: "clearRepeated"), + 146: .same(proto: "clearRepeatedFieldEncoding"), + 147: .same(proto: "clearReserved"), + 148: .same(proto: "clearRetention"), + 149: .same(proto: "clearRubyPackage"), + 150: .same(proto: "clearSemantic"), + 151: .same(proto: "clearServerStreaming"), + 152: .same(proto: "clearSourceCodeInfo"), + 153: .same(proto: "clearSourceContext"), + 154: .same(proto: "clearSourceFile"), + 155: .same(proto: "clearStart"), + 156: .same(proto: "clearStringValue"), + 157: .same(proto: "clearSwiftPrefix"), + 158: .same(proto: "clearSyntax"), + 159: .same(proto: "clearTrailingComments"), + 160: .same(proto: "clearType"), + 161: .same(proto: "clearTypeName"), + 162: .same(proto: "clearUnverifiedLazy"), + 163: .same(proto: "clearUtf8Validation"), + 164: .same(proto: "clearValue"), + 165: .same(proto: "clearVerification"), + 166: .same(proto: "clearWeak"), + 167: .same(proto: "clientStreaming"), + 168: .same(proto: "code"), + 169: .same(proto: "codePoint"), + 170: .same(proto: "codeUnits"), + 171: .same(proto: "Collection"), + 172: .same(proto: "com"), + 173: .same(proto: "comma"), + 174: .same(proto: "consumedBytes"), + 175: .same(proto: "contentsOf"), + 176: .same(proto: "copy"), + 177: .same(proto: "count"), + 178: .same(proto: "countVarintsInBuffer"), + 179: .same(proto: "csharpNamespace"), + 180: .same(proto: "ctype"), + 181: .same(proto: "customCodable"), + 182: .same(proto: "CustomDebugStringConvertible"), + 183: .same(proto: "CustomStringConvertible"), + 184: .same(proto: "d"), + 185: .same(proto: "Data"), + 186: .same(proto: "dataResult"), + 187: .same(proto: "date"), + 188: .same(proto: "daySec"), + 189: .same(proto: "daysSinceEpoch"), + 190: .same(proto: "debugDescription"), + 191: .same(proto: "debugRedact"), + 192: .same(proto: "declaration"), + 193: .same(proto: "decoded"), + 194: .same(proto: "decodedFromJSONNull"), + 195: .same(proto: "decodeExtensionField"), + 196: .same(proto: "decodeExtensionFieldsAsMessageSet"), + 197: .same(proto: "decodeJSON"), + 198: .same(proto: "decodeMapField"), + 199: .same(proto: "decodeMessage"), + 200: .same(proto: "decoder"), + 201: .same(proto: "decodeRepeated"), + 202: .same(proto: "decodeRepeatedBoolField"), + 203: .same(proto: "decodeRepeatedBytesField"), + 204: .same(proto: "decodeRepeatedDoubleField"), + 205: .same(proto: "decodeRepeatedEnumField"), + 206: .same(proto: "decodeRepeatedFixed32Field"), + 207: .same(proto: "decodeRepeatedFixed64Field"), + 208: .same(proto: "decodeRepeatedFloatField"), + 209: .same(proto: "decodeRepeatedGroupField"), + 210: .same(proto: "decodeRepeatedInt32Field"), + 211: .same(proto: "decodeRepeatedInt64Field"), + 212: .same(proto: "decodeRepeatedMessageField"), + 213: .same(proto: "decodeRepeatedSFixed32Field"), + 214: .same(proto: "decodeRepeatedSFixed64Field"), + 215: .same(proto: "decodeRepeatedSInt32Field"), + 216: .same(proto: "decodeRepeatedSInt64Field"), + 217: .same(proto: "decodeRepeatedStringField"), + 218: .same(proto: "decodeRepeatedUInt32Field"), + 219: .same(proto: "decodeRepeatedUInt64Field"), + 220: .same(proto: "decodeSingular"), + 221: .same(proto: "decodeSingularBoolField"), + 222: .same(proto: "decodeSingularBytesField"), + 223: .same(proto: "decodeSingularDoubleField"), + 224: .same(proto: "decodeSingularEnumField"), + 225: .same(proto: "decodeSingularFixed32Field"), + 226: .same(proto: "decodeSingularFixed64Field"), + 227: .same(proto: "decodeSingularFloatField"), + 228: .same(proto: "decodeSingularGroupField"), + 229: .same(proto: "decodeSingularInt32Field"), + 230: .same(proto: "decodeSingularInt64Field"), + 231: .same(proto: "decodeSingularMessageField"), + 232: .same(proto: "decodeSingularSFixed32Field"), + 233: .same(proto: "decodeSingularSFixed64Field"), + 234: .same(proto: "decodeSingularSInt32Field"), + 235: .same(proto: "decodeSingularSInt64Field"), + 236: .same(proto: "decodeSingularStringField"), + 237: .same(proto: "decodeSingularUInt32Field"), + 238: .same(proto: "decodeSingularUInt64Field"), + 239: .same(proto: "decodeTextFormat"), + 240: .same(proto: "defaultAnyTypeURLPrefix"), + 241: .same(proto: "defaults"), + 242: .same(proto: "defaultValue"), + 243: .same(proto: "dependency"), + 244: .same(proto: "deprecated"), + 245: .same(proto: "deprecatedLegacyJsonFieldConflicts"), + 246: .same(proto: "deprecationWarning"), + 247: .same(proto: "description"), + 248: .same(proto: "DescriptorProto"), + 249: .same(proto: "Dictionary"), + 250: .same(proto: "dictionaryLiteral"), + 251: .same(proto: "digit"), + 252: .same(proto: "digit0"), + 253: .same(proto: "digit1"), + 254: .same(proto: "digitCount"), + 255: .same(proto: "digits"), + 256: .same(proto: "digitValue"), + 257: .same(proto: "discardableResult"), + 258: .same(proto: "discardUnknownFields"), + 259: .same(proto: "Double"), + 260: .same(proto: "doubleValue"), + 261: .same(proto: "Duration"), + 262: .same(proto: "E"), + 263: .same(proto: "edition"), + 264: .same(proto: "EditionDefault"), + 265: .same(proto: "editionDefaults"), + 266: .same(proto: "editionDeprecated"), + 267: .same(proto: "editionIntroduced"), + 268: .same(proto: "editionRemoved"), + 269: .same(proto: "Element"), + 270: .same(proto: "elements"), + 271: .same(proto: "emitExtensionFieldName"), + 272: .same(proto: "emitFieldName"), + 273: .same(proto: "emitFieldNumber"), + 274: .same(proto: "Empty"), + 275: .same(proto: "encodeAsBytes"), + 276: .same(proto: "encoded"), + 277: .same(proto: "encodedJSONString"), + 278: .same(proto: "encodedSize"), + 279: .same(proto: "encodeField"), + 280: .same(proto: "encoder"), + 281: .same(proto: "end"), + 282: .same(proto: "endArray"), + 283: .same(proto: "endMessageField"), + 284: .same(proto: "endObject"), + 285: .same(proto: "endRegularField"), + 286: .same(proto: "enum"), + 287: .same(proto: "EnumDescriptorProto"), + 288: .same(proto: "EnumOptions"), + 289: .same(proto: "EnumReservedRange"), + 290: .same(proto: "enumType"), + 291: .same(proto: "enumvalue"), + 292: .same(proto: "EnumValueDescriptorProto"), + 293: .same(proto: "EnumValueOptions"), + 294: .same(proto: "Equatable"), + 295: .same(proto: "Error"), + 296: .same(proto: "ExpressibleByArrayLiteral"), + 297: .same(proto: "ExpressibleByDictionaryLiteral"), + 298: .same(proto: "ext"), + 299: .same(proto: "extDecoder"), + 300: .same(proto: "extendedGraphemeClusterLiteral"), + 301: .same(proto: "ExtendedGraphemeClusterLiteralType"), + 302: .same(proto: "extendee"), + 303: .same(proto: "ExtensibleMessage"), + 304: .same(proto: "extension"), + 305: .same(proto: "ExtensionField"), + 306: .same(proto: "extensionFieldNumber"), + 307: .same(proto: "ExtensionFieldValueSet"), + 308: .same(proto: "ExtensionMap"), + 309: .same(proto: "extensionRange"), + 310: .same(proto: "ExtensionRangeOptions"), + 311: .same(proto: "extensions"), + 312: .same(proto: "extras"), + 313: .same(proto: "F"), + 314: .same(proto: "false"), + 315: .same(proto: "features"), + 316: .same(proto: "FeatureSet"), + 317: .same(proto: "FeatureSetDefaults"), + 318: .same(proto: "FeatureSetEditionDefault"), + 319: .same(proto: "featureSupport"), + 320: .same(proto: "field"), + 321: .same(proto: "fieldData"), + 322: .same(proto: "FieldDescriptorProto"), + 323: .same(proto: "FieldMask"), + 324: .same(proto: "fieldName"), + 325: .same(proto: "fieldNameCount"), + 326: .same(proto: "fieldNum"), + 327: .same(proto: "fieldNumber"), + 328: .same(proto: "fieldNumberForProto"), + 329: .same(proto: "FieldOptions"), + 330: .same(proto: "fieldPresence"), + 331: .same(proto: "fields"), + 332: .same(proto: "fieldSize"), + 333: .same(proto: "FieldTag"), + 334: .same(proto: "fieldType"), + 335: .same(proto: "file"), + 336: .same(proto: "FileDescriptorProto"), + 337: .same(proto: "FileDescriptorSet"), + 338: .same(proto: "fileName"), + 339: .same(proto: "FileOptions"), + 340: .same(proto: "filter"), + 341: .same(proto: "final"), + 342: .same(proto: "finiteOnly"), + 343: .same(proto: "first"), + 344: .same(proto: "firstItem"), + 345: .same(proto: "fixedFeatures"), + 346: .same(proto: "Float"), + 347: .same(proto: "floatLiteral"), + 348: .same(proto: "FloatLiteralType"), + 349: .same(proto: "FloatValue"), + 350: .same(proto: "forMessageName"), + 351: .same(proto: "formUnion"), + 352: .same(proto: "forReadingFrom"), + 353: .same(proto: "forTypeURL"), + 354: .same(proto: "ForwardParser"), + 355: .same(proto: "forWritingInto"), + 356: .same(proto: "from"), + 357: .same(proto: "fromAscii2"), + 358: .same(proto: "fromAscii4"), + 359: .same(proto: "fromByteOffset"), + 360: .same(proto: "fromHexDigit"), + 361: .same(proto: "fullName"), + 362: .same(proto: "func"), + 363: .same(proto: "function"), + 364: .same(proto: "G"), + 365: .same(proto: "GeneratedCodeInfo"), + 366: .same(proto: "get"), + 367: .same(proto: "getExtensionValue"), + 368: .same(proto: "googleapis"), + 369: .standard(proto: "Google_Protobuf_Any"), + 370: .standard(proto: "Google_Protobuf_Api"), + 371: .standard(proto: "Google_Protobuf_BoolValue"), + 372: .standard(proto: "Google_Protobuf_BytesValue"), + 373: .standard(proto: "Google_Protobuf_DescriptorProto"), + 374: .standard(proto: "Google_Protobuf_DoubleValue"), + 375: .standard(proto: "Google_Protobuf_Duration"), + 376: .standard(proto: "Google_Protobuf_Edition"), + 377: .standard(proto: "Google_Protobuf_Empty"), + 378: .standard(proto: "Google_Protobuf_Enum"), + 379: .standard(proto: "Google_Protobuf_EnumDescriptorProto"), + 380: .standard(proto: "Google_Protobuf_EnumOptions"), + 381: .standard(proto: "Google_Protobuf_EnumValue"), + 382: .standard(proto: "Google_Protobuf_EnumValueDescriptorProto"), + 383: .standard(proto: "Google_Protobuf_EnumValueOptions"), + 384: .standard(proto: "Google_Protobuf_ExtensionRangeOptions"), + 385: .standard(proto: "Google_Protobuf_FeatureSet"), + 386: .standard(proto: "Google_Protobuf_FeatureSetDefaults"), + 387: .standard(proto: "Google_Protobuf_Field"), + 388: .standard(proto: "Google_Protobuf_FieldDescriptorProto"), + 389: .standard(proto: "Google_Protobuf_FieldMask"), + 390: .standard(proto: "Google_Protobuf_FieldOptions"), + 391: .standard(proto: "Google_Protobuf_FileDescriptorProto"), + 392: .standard(proto: "Google_Protobuf_FileDescriptorSet"), + 393: .standard(proto: "Google_Protobuf_FileOptions"), + 394: .standard(proto: "Google_Protobuf_FloatValue"), + 395: .standard(proto: "Google_Protobuf_GeneratedCodeInfo"), + 396: .standard(proto: "Google_Protobuf_Int32Value"), + 397: .standard(proto: "Google_Protobuf_Int64Value"), + 398: .standard(proto: "Google_Protobuf_ListValue"), + 399: .standard(proto: "Google_Protobuf_MessageOptions"), + 400: .standard(proto: "Google_Protobuf_Method"), + 401: .standard(proto: "Google_Protobuf_MethodDescriptorProto"), + 402: .standard(proto: "Google_Protobuf_MethodOptions"), + 403: .standard(proto: "Google_Protobuf_Mixin"), + 404: .standard(proto: "Google_Protobuf_NullValue"), + 405: .standard(proto: "Google_Protobuf_OneofDescriptorProto"), + 406: .standard(proto: "Google_Protobuf_OneofOptions"), + 407: .standard(proto: "Google_Protobuf_Option"), + 408: .standard(proto: "Google_Protobuf_ServiceDescriptorProto"), + 409: .standard(proto: "Google_Protobuf_ServiceOptions"), + 410: .standard(proto: "Google_Protobuf_SourceCodeInfo"), + 411: .standard(proto: "Google_Protobuf_SourceContext"), + 412: .standard(proto: "Google_Protobuf_StringValue"), + 413: .standard(proto: "Google_Protobuf_Struct"), + 414: .standard(proto: "Google_Protobuf_Syntax"), + 415: .standard(proto: "Google_Protobuf_Timestamp"), + 416: .standard(proto: "Google_Protobuf_Type"), + 417: .standard(proto: "Google_Protobuf_UInt32Value"), + 418: .standard(proto: "Google_Protobuf_UInt64Value"), + 419: .standard(proto: "Google_Protobuf_UninterpretedOption"), + 420: .standard(proto: "Google_Protobuf_Value"), + 421: .same(proto: "goPackage"), + 422: .same(proto: "group"), + 423: .same(proto: "groupFieldNumberStack"), + 424: .same(proto: "groupSize"), + 425: .same(proto: "hadOneofValue"), + 426: .same(proto: "handleConflictingOneOf"), + 427: .same(proto: "hasAggregateValue"), + 428: .same(proto: "hasAllowAlias"), + 429: .same(proto: "hasBegin"), + 430: .same(proto: "hasCcEnableArenas"), + 431: .same(proto: "hasCcGenericServices"), + 432: .same(proto: "hasClientStreaming"), + 433: .same(proto: "hasCsharpNamespace"), + 434: .same(proto: "hasCtype"), + 435: .same(proto: "hasDebugRedact"), + 436: .same(proto: "hasDefaultValue"), + 437: .same(proto: "hasDeprecated"), + 438: .same(proto: "hasDeprecatedLegacyJsonFieldConflicts"), + 439: .same(proto: "hasDeprecationWarning"), + 440: .same(proto: "hasDoubleValue"), + 441: .same(proto: "hasEdition"), + 442: .same(proto: "hasEditionDeprecated"), + 443: .same(proto: "hasEditionIntroduced"), + 444: .same(proto: "hasEditionRemoved"), + 445: .same(proto: "hasEnd"), + 446: .same(proto: "hasEnumType"), + 447: .same(proto: "hasExtendee"), + 448: .same(proto: "hasExtensionValue"), + 449: .same(proto: "hasFeatures"), + 450: .same(proto: "hasFeatureSupport"), + 451: .same(proto: "hasFieldPresence"), + 452: .same(proto: "hasFixedFeatures"), + 453: .same(proto: "hasFullName"), + 454: .same(proto: "hasGoPackage"), + 455: .same(proto: "hash"), + 456: .same(proto: "Hashable"), + 457: .same(proto: "hasher"), + 458: .same(proto: "HashVisitor"), + 459: .same(proto: "hasIdempotencyLevel"), + 460: .same(proto: "hasIdentifierValue"), + 461: .same(proto: "hasInputType"), + 462: .same(proto: "hasIsExtension"), + 463: .same(proto: "hasJavaGenerateEqualsAndHash"), + 464: .same(proto: "hasJavaGenericServices"), + 465: .same(proto: "hasJavaMultipleFiles"), + 466: .same(proto: "hasJavaOuterClassname"), + 467: .same(proto: "hasJavaPackage"), + 468: .same(proto: "hasJavaStringCheckUtf8"), + 469: .same(proto: "hasJsonFormat"), + 470: .same(proto: "hasJsonName"), + 471: .same(proto: "hasJstype"), + 472: .same(proto: "hasLabel"), + 473: .same(proto: "hasLazy"), + 474: .same(proto: "hasLeadingComments"), + 475: .same(proto: "hasMapEntry"), + 476: .same(proto: "hasMaximumEdition"), + 477: .same(proto: "hasMessageEncoding"), + 478: .same(proto: "hasMessageSetWireFormat"), + 479: .same(proto: "hasMinimumEdition"), + 480: .same(proto: "hasName"), + 481: .same(proto: "hasNamePart"), + 482: .same(proto: "hasNegativeIntValue"), + 483: .same(proto: "hasNoStandardDescriptorAccessor"), + 484: .same(proto: "hasNumber"), + 485: .same(proto: "hasObjcClassPrefix"), + 486: .same(proto: "hasOneofIndex"), + 487: .same(proto: "hasOptimizeFor"), + 488: .same(proto: "hasOptions"), + 489: .same(proto: "hasOutputType"), + 490: .same(proto: "hasOverridableFeatures"), + 491: .same(proto: "hasPackage"), + 492: .same(proto: "hasPacked"), + 493: .same(proto: "hasPhpClassPrefix"), + 494: .same(proto: "hasPhpMetadataNamespace"), + 495: .same(proto: "hasPhpNamespace"), + 496: .same(proto: "hasPositiveIntValue"), + 497: .same(proto: "hasProto3Optional"), + 498: .same(proto: "hasPyGenericServices"), + 499: .same(proto: "hasRepeated"), + 500: .same(proto: "hasRepeatedFieldEncoding"), + 501: .same(proto: "hasReserved"), + 502: .same(proto: "hasRetention"), + 503: .same(proto: "hasRubyPackage"), + 504: .same(proto: "hasSemantic"), + 505: .same(proto: "hasServerStreaming"), + 506: .same(proto: "hasSourceCodeInfo"), + 507: .same(proto: "hasSourceContext"), + 508: .same(proto: "hasSourceFile"), + 509: .same(proto: "hasStart"), + 510: .same(proto: "hasStringValue"), + 511: .same(proto: "hasSwiftPrefix"), + 512: .same(proto: "hasSyntax"), + 513: .same(proto: "hasTrailingComments"), + 514: .same(proto: "hasType"), + 515: .same(proto: "hasTypeName"), + 516: .same(proto: "hasUnverifiedLazy"), + 517: .same(proto: "hasUtf8Validation"), + 518: .same(proto: "hasValue"), + 519: .same(proto: "hasVerification"), + 520: .same(proto: "hasWeak"), + 521: .same(proto: "hour"), + 522: .same(proto: "i"), + 523: .same(proto: "idempotencyLevel"), + 524: .same(proto: "identifierValue"), + 525: .same(proto: "if"), + 526: .same(proto: "ignoreUnknownExtensionFields"), + 527: .same(proto: "ignoreUnknownFields"), + 528: .same(proto: "index"), + 529: .same(proto: "init"), + 530: .same(proto: "inout"), + 531: .same(proto: "inputType"), + 532: .same(proto: "insert"), + 533: .same(proto: "Int"), + 534: .same(proto: "Int32"), + 535: .same(proto: "Int32Value"), + 536: .same(proto: "Int64"), + 537: .same(proto: "Int64Value"), + 538: .same(proto: "Int8"), + 539: .same(proto: "integerLiteral"), + 540: .same(proto: "IntegerLiteralType"), + 541: .same(proto: "intern"), + 542: .same(proto: "Internal"), + 543: .same(proto: "InternalState"), + 544: .same(proto: "into"), + 545: .same(proto: "ints"), + 546: .same(proto: "isA"), + 547: .same(proto: "isEqual"), + 548: .same(proto: "isEqualTo"), + 549: .same(proto: "isExtension"), + 550: .same(proto: "isInitialized"), + 551: .same(proto: "isNegative"), + 552: .same(proto: "itemTagsEncodedSize"), + 553: .same(proto: "iterator"), + 554: .same(proto: "javaGenerateEqualsAndHash"), + 555: .same(proto: "javaGenericServices"), + 556: .same(proto: "javaMultipleFiles"), + 557: .same(proto: "javaOuterClassname"), + 558: .same(proto: "javaPackage"), + 559: .same(proto: "javaStringCheckUtf8"), + 560: .same(proto: "JSONDecoder"), + 561: .same(proto: "JSONDecodingError"), + 562: .same(proto: "JSONDecodingOptions"), + 563: .same(proto: "jsonEncoder"), + 564: .same(proto: "JSONEncoding"), + 565: .same(proto: "JSONEncodingError"), + 566: .same(proto: "JSONEncodingOptions"), + 567: .same(proto: "JSONEncodingVisitor"), + 568: .same(proto: "jsonFormat"), + 569: .same(proto: "JSONMapEncodingVisitor"), + 570: .same(proto: "jsonName"), + 571: .same(proto: "jsonPath"), + 572: .same(proto: "jsonPaths"), + 573: .same(proto: "JSONScanner"), + 574: .same(proto: "jsonString"), + 575: .same(proto: "jsonText"), + 576: .same(proto: "jsonUTF8Bytes"), + 577: .same(proto: "jsonUTF8Data"), + 578: .same(proto: "jstype"), + 579: .same(proto: "k"), + 580: .same(proto: "kChunkSize"), + 581: .same(proto: "Key"), + 582: .same(proto: "keyField"), + 583: .same(proto: "keyFieldOpt"), + 584: .same(proto: "KeyType"), + 585: .same(proto: "kind"), + 586: .same(proto: "l"), + 587: .same(proto: "label"), + 588: .same(proto: "lazy"), + 589: .same(proto: "leadingComments"), + 590: .same(proto: "leadingDetachedComments"), + 591: .same(proto: "length"), + 592: .same(proto: "lessThan"), + 593: .same(proto: "let"), + 594: .same(proto: "lhs"), + 595: .same(proto: "line"), + 596: .same(proto: "list"), + 597: .same(proto: "listOfMessages"), + 598: .same(proto: "listValue"), + 599: .same(proto: "littleEndian"), + 600: .same(proto: "load"), + 601: .same(proto: "localHasher"), + 602: .same(proto: "location"), + 603: .same(proto: "M"), + 604: .same(proto: "major"), + 605: .same(proto: "makeAsyncIterator"), + 606: .same(proto: "makeIterator"), + 607: .same(proto: "malformedLength"), + 608: .same(proto: "mapEntry"), + 609: .same(proto: "MapKeyType"), + 610: .same(proto: "mapToMessages"), + 611: .same(proto: "MapValueType"), + 612: .same(proto: "mapVisitor"), + 613: .same(proto: "maximumEdition"), + 614: .same(proto: "mdayStart"), + 615: .same(proto: "merge"), + 616: .same(proto: "message"), + 617: .same(proto: "messageDepthLimit"), + 618: .same(proto: "messageEncoding"), + 619: .same(proto: "MessageExtension"), + 620: .same(proto: "MessageImplementationBase"), + 621: .same(proto: "MessageOptions"), + 622: .same(proto: "MessageSet"), + 623: .same(proto: "messageSetWireFormat"), + 624: .same(proto: "messageSize"), + 625: .same(proto: "messageType"), + 626: .same(proto: "Method"), + 627: .same(proto: "MethodDescriptorProto"), + 628: .same(proto: "MethodOptions"), + 629: .same(proto: "methods"), + 630: .same(proto: "min"), + 631: .same(proto: "minimumEdition"), + 632: .same(proto: "minor"), + 633: .same(proto: "Mixin"), + 634: .same(proto: "mixins"), + 635: .same(proto: "modifier"), + 636: .same(proto: "modify"), + 637: .same(proto: "month"), + 638: .same(proto: "msgExtension"), + 639: .same(proto: "mutating"), + 640: .same(proto: "n"), + 641: .same(proto: "name"), + 642: .same(proto: "NameDescription"), + 643: .same(proto: "NameMap"), + 644: .same(proto: "NamePart"), + 645: .same(proto: "names"), + 646: .same(proto: "nanos"), + 647: .same(proto: "negativeIntValue"), + 648: .same(proto: "nestedType"), + 649: .same(proto: "newL"), + 650: .same(proto: "newList"), + 651: .same(proto: "newValue"), + 652: .same(proto: "next"), + 653: .same(proto: "nextByte"), + 654: .same(proto: "nextFieldNumber"), + 655: .same(proto: "nextVarInt"), + 656: .same(proto: "nil"), + 657: .same(proto: "nilLiteral"), + 658: .same(proto: "noBytesAvailable"), + 659: .same(proto: "noStandardDescriptorAccessor"), + 660: .same(proto: "nullValue"), + 661: .same(proto: "number"), + 662: .same(proto: "numberValue"), + 663: .same(proto: "objcClassPrefix"), + 664: .same(proto: "of"), + 665: .same(proto: "oneofDecl"), + 666: .same(proto: "OneofDescriptorProto"), + 667: .same(proto: "oneofIndex"), + 668: .same(proto: "OneofOptions"), + 669: .same(proto: "oneofs"), + 670: .standard(proto: "OneOf_Kind"), + 671: .same(proto: "optimizeFor"), + 672: .same(proto: "OptimizeMode"), + 673: .same(proto: "Option"), + 674: .same(proto: "OptionalEnumExtensionField"), + 675: .same(proto: "OptionalExtensionField"), + 676: .same(proto: "OptionalGroupExtensionField"), + 677: .same(proto: "OptionalMessageExtensionField"), + 678: .same(proto: "OptionRetention"), + 679: .same(proto: "options"), + 680: .same(proto: "OptionTargetType"), + 681: .same(proto: "other"), + 682: .same(proto: "others"), + 683: .same(proto: "out"), + 684: .same(proto: "outputType"), + 685: .same(proto: "overridableFeatures"), + 686: .same(proto: "p"), + 687: .same(proto: "package"), + 688: .same(proto: "packed"), + 689: .same(proto: "PackedEnumExtensionField"), + 690: .same(proto: "PackedExtensionField"), + 691: .same(proto: "padding"), + 692: .same(proto: "parent"), + 693: .same(proto: "parse"), + 694: .same(proto: "path"), + 695: .same(proto: "paths"), + 696: .same(proto: "payload"), + 697: .same(proto: "payloadSize"), + 698: .same(proto: "phpClassPrefix"), + 699: .same(proto: "phpMetadataNamespace"), + 700: .same(proto: "phpNamespace"), + 701: .same(proto: "pos"), + 702: .same(proto: "positiveIntValue"), + 703: .same(proto: "prefix"), + 704: .same(proto: "preserveProtoFieldNames"), + 705: .same(proto: "preTraverse"), + 706: .same(proto: "printUnknownFields"), + 707: .same(proto: "proto2"), + 708: .same(proto: "proto3DefaultValue"), + 709: .same(proto: "proto3Optional"), + 710: .same(proto: "ProtobufAPIVersionCheck"), + 711: .standard(proto: "ProtobufAPIVersion_3"), + 712: .same(proto: "ProtobufBool"), + 713: .same(proto: "ProtobufBytes"), + 714: .same(proto: "ProtobufDouble"), + 715: .same(proto: "ProtobufEnumMap"), + 716: .same(proto: "protobufExtension"), + 717: .same(proto: "ProtobufFixed32"), + 718: .same(proto: "ProtobufFixed64"), + 719: .same(proto: "ProtobufFloat"), + 720: .same(proto: "ProtobufInt32"), + 721: .same(proto: "ProtobufInt64"), + 722: .same(proto: "ProtobufMap"), + 723: .same(proto: "ProtobufMessageMap"), + 724: .same(proto: "ProtobufSFixed32"), + 725: .same(proto: "ProtobufSFixed64"), + 726: .same(proto: "ProtobufSInt32"), + 727: .same(proto: "ProtobufSInt64"), + 728: .same(proto: "ProtobufString"), + 729: .same(proto: "ProtobufUInt32"), + 730: .same(proto: "ProtobufUInt64"), + 731: .standard(proto: "protobuf_extensionFieldValues"), + 732: .standard(proto: "protobuf_fieldNumber"), + 733: .standard(proto: "protobuf_generated_isEqualTo"), + 734: .standard(proto: "protobuf_nameMap"), + 735: .standard(proto: "protobuf_newField"), + 736: .standard(proto: "protobuf_package"), + 737: .same(proto: "protocol"), + 738: .same(proto: "protoFieldName"), + 739: .same(proto: "protoMessageName"), + 740: .same(proto: "ProtoNameProviding"), + 741: .same(proto: "protoPaths"), + 742: .same(proto: "public"), + 743: .same(proto: "publicDependency"), + 744: .same(proto: "putBoolValue"), + 745: .same(proto: "putBytesValue"), + 746: .same(proto: "putDoubleValue"), + 747: .same(proto: "putEnumValue"), + 748: .same(proto: "putFixedUInt32"), + 749: .same(proto: "putFixedUInt64"), + 750: .same(proto: "putFloatValue"), + 751: .same(proto: "putInt64"), + 752: .same(proto: "putStringValue"), + 753: .same(proto: "putUInt64"), + 754: .same(proto: "putUInt64Hex"), + 755: .same(proto: "putVarInt"), + 756: .same(proto: "putZigZagVarInt"), + 757: .same(proto: "pyGenericServices"), + 758: .same(proto: "R"), + 759: .same(proto: "rawChars"), + 760: .same(proto: "RawRepresentable"), + 761: .same(proto: "RawValue"), + 762: .same(proto: "read4HexDigits"), + 763: .same(proto: "readBytes"), + 764: .same(proto: "register"), + 765: .same(proto: "repeated"), + 766: .same(proto: "RepeatedEnumExtensionField"), + 767: .same(proto: "RepeatedExtensionField"), + 768: .same(proto: "repeatedFieldEncoding"), + 769: .same(proto: "RepeatedGroupExtensionField"), + 770: .same(proto: "RepeatedMessageExtensionField"), + 771: .same(proto: "repeating"), + 772: .same(proto: "requestStreaming"), + 773: .same(proto: "requestTypeURL"), + 774: .same(proto: "requiredSize"), + 775: .same(proto: "responseStreaming"), + 776: .same(proto: "responseTypeURL"), + 777: .same(proto: "result"), + 778: .same(proto: "retention"), + 779: .same(proto: "rethrows"), + 780: .same(proto: "return"), + 781: .same(proto: "ReturnType"), + 782: .same(proto: "revision"), + 783: .same(proto: "rhs"), + 784: .same(proto: "root"), + 785: .same(proto: "rubyPackage"), + 786: .same(proto: "s"), + 787: .same(proto: "sawBackslash"), + 788: .same(proto: "sawSection4Characters"), + 789: .same(proto: "sawSection5Characters"), + 790: .same(proto: "scan"), + 791: .same(proto: "scanner"), + 792: .same(proto: "seconds"), + 793: .same(proto: "self"), + 794: .same(proto: "semantic"), + 795: .same(proto: "Sendable"), + 796: .same(proto: "separator"), + 797: .same(proto: "serialize"), + 798: .same(proto: "serializedBytes"), + 799: .same(proto: "serializedData"), + 800: .same(proto: "serializedSize"), + 801: .same(proto: "serverStreaming"), + 802: .same(proto: "service"), + 803: .same(proto: "ServiceDescriptorProto"), + 804: .same(proto: "ServiceOptions"), + 805: .same(proto: "set"), + 806: .same(proto: "setExtensionValue"), + 807: .same(proto: "shift"), + 808: .same(proto: "SimpleExtensionMap"), + 809: .same(proto: "size"), + 810: .same(proto: "sizer"), + 811: .same(proto: "source"), + 812: .same(proto: "sourceCodeInfo"), + 813: .same(proto: "sourceContext"), + 814: .same(proto: "sourceEncoding"), + 815: .same(proto: "sourceFile"), + 816: .same(proto: "SourceLocation"), + 817: .same(proto: "span"), + 818: .same(proto: "split"), + 819: .same(proto: "start"), + 820: .same(proto: "startArray"), + 821: .same(proto: "startArrayObject"), + 822: .same(proto: "startField"), + 823: .same(proto: "startIndex"), + 824: .same(proto: "startMessageField"), + 825: .same(proto: "startObject"), + 826: .same(proto: "startRegularField"), + 827: .same(proto: "state"), + 828: .same(proto: "static"), + 829: .same(proto: "StaticString"), + 830: .same(proto: "storage"), + 831: .same(proto: "String"), + 832: .same(proto: "stringLiteral"), + 833: .same(proto: "StringLiteralType"), + 834: .same(proto: "stringResult"), + 835: .same(proto: "stringValue"), + 836: .same(proto: "struct"), + 837: .same(proto: "structValue"), + 838: .same(proto: "subDecoder"), + 839: .same(proto: "subscript"), + 840: .same(proto: "subVisitor"), + 841: .same(proto: "Swift"), + 842: .same(proto: "swiftPrefix"), + 843: .same(proto: "SwiftProtobufContiguousBytes"), + 844: .same(proto: "SwiftProtobufError"), + 845: .same(proto: "syntax"), + 846: .same(proto: "T"), + 847: .same(proto: "tag"), + 848: .same(proto: "targets"), + 849: .same(proto: "terminator"), + 850: .same(proto: "testDecoder"), + 851: .same(proto: "text"), + 852: .same(proto: "textDecoder"), + 853: .same(proto: "TextFormatDecoder"), + 854: .same(proto: "TextFormatDecodingError"), + 855: .same(proto: "TextFormatDecodingOptions"), + 856: .same(proto: "TextFormatEncodingOptions"), + 857: .same(proto: "TextFormatEncodingVisitor"), + 858: .same(proto: "textFormatString"), + 859: .same(proto: "throwOrIgnore"), + 860: .same(proto: "throws"), + 861: .same(proto: "timeInterval"), + 862: .same(proto: "timeIntervalSince1970"), + 863: .same(proto: "timeIntervalSinceReferenceDate"), + 864: .same(proto: "Timestamp"), + 865: .same(proto: "tooLarge"), + 866: .same(proto: "total"), + 867: .same(proto: "totalArrayDepth"), + 868: .same(proto: "totalSize"), + 869: .same(proto: "trailingComments"), + 870: .same(proto: "traverse"), + 871: .same(proto: "true"), + 872: .same(proto: "try"), + 873: .same(proto: "type"), + 874: .same(proto: "typealias"), + 875: .same(proto: "TypeEnum"), + 876: .same(proto: "typeName"), + 877: .same(proto: "typePrefix"), + 878: .same(proto: "typeStart"), + 879: .same(proto: "typeUnknown"), + 880: .same(proto: "typeURL"), + 881: .same(proto: "UInt32"), + 882: .same(proto: "UInt32Value"), + 883: .same(proto: "UInt64"), + 884: .same(proto: "UInt64Value"), + 885: .same(proto: "UInt8"), + 886: .same(proto: "unchecked"), + 887: .same(proto: "unicodeScalarLiteral"), + 888: .same(proto: "UnicodeScalarLiteralType"), + 889: .same(proto: "unicodeScalars"), + 890: .same(proto: "UnicodeScalarView"), + 891: .same(proto: "uninterpretedOption"), + 892: .same(proto: "union"), + 893: .same(proto: "uniqueStorage"), + 894: .same(proto: "unknown"), + 895: .same(proto: "unknownFields"), + 896: .same(proto: "UnknownStorage"), + 897: .same(proto: "unpackTo"), + 898: .same(proto: "unregisteredTypeURL"), + 899: .same(proto: "UnsafeBufferPointer"), + 900: .same(proto: "UnsafeMutablePointer"), + 901: .same(proto: "UnsafeMutableRawBufferPointer"), + 902: .same(proto: "UnsafeRawBufferPointer"), + 903: .same(proto: "UnsafeRawPointer"), + 904: .same(proto: "unverifiedLazy"), + 905: .same(proto: "updatedOptions"), + 906: .same(proto: "url"), + 907: .same(proto: "useDeterministicOrdering"), + 908: .same(proto: "utf8"), + 909: .same(proto: "utf8Ptr"), + 910: .same(proto: "utf8ToDouble"), + 911: .same(proto: "utf8Validation"), + 912: .same(proto: "UTF8View"), + 913: .same(proto: "v"), + 914: .same(proto: "value"), + 915: .same(proto: "valueField"), + 916: .same(proto: "values"), + 917: .same(proto: "ValueType"), + 918: .same(proto: "var"), + 919: .same(proto: "verification"), + 920: .same(proto: "VerificationState"), + 921: .same(proto: "Version"), + 922: .same(proto: "versionString"), + 923: .same(proto: "visitExtensionFields"), + 924: .same(proto: "visitExtensionFieldsAsMessageSet"), + 925: .same(proto: "visitMapField"), + 926: .same(proto: "visitor"), + 927: .same(proto: "visitPacked"), + 928: .same(proto: "visitPackedBoolField"), + 929: .same(proto: "visitPackedDoubleField"), + 930: .same(proto: "visitPackedEnumField"), + 931: .same(proto: "visitPackedFixed32Field"), + 932: .same(proto: "visitPackedFixed64Field"), + 933: .same(proto: "visitPackedFloatField"), + 934: .same(proto: "visitPackedInt32Field"), + 935: .same(proto: "visitPackedInt64Field"), + 936: .same(proto: "visitPackedSFixed32Field"), + 937: .same(proto: "visitPackedSFixed64Field"), + 938: .same(proto: "visitPackedSInt32Field"), + 939: .same(proto: "visitPackedSInt64Field"), + 940: .same(proto: "visitPackedUInt32Field"), + 941: .same(proto: "visitPackedUInt64Field"), + 942: .same(proto: "visitRepeated"), + 943: .same(proto: "visitRepeatedBoolField"), + 944: .same(proto: "visitRepeatedBytesField"), + 945: .same(proto: "visitRepeatedDoubleField"), + 946: .same(proto: "visitRepeatedEnumField"), + 947: .same(proto: "visitRepeatedFixed32Field"), + 948: .same(proto: "visitRepeatedFixed64Field"), + 949: .same(proto: "visitRepeatedFloatField"), + 950: .same(proto: "visitRepeatedGroupField"), + 951: .same(proto: "visitRepeatedInt32Field"), + 952: .same(proto: "visitRepeatedInt64Field"), + 953: .same(proto: "visitRepeatedMessageField"), + 954: .same(proto: "visitRepeatedSFixed32Field"), + 955: .same(proto: "visitRepeatedSFixed64Field"), + 956: .same(proto: "visitRepeatedSInt32Field"), + 957: .same(proto: "visitRepeatedSInt64Field"), + 958: .same(proto: "visitRepeatedStringField"), + 959: .same(proto: "visitRepeatedUInt32Field"), + 960: .same(proto: "visitRepeatedUInt64Field"), + 961: .same(proto: "visitSingular"), + 962: .same(proto: "visitSingularBoolField"), + 963: .same(proto: "visitSingularBytesField"), + 964: .same(proto: "visitSingularDoubleField"), + 965: .same(proto: "visitSingularEnumField"), + 966: .same(proto: "visitSingularFixed32Field"), + 967: .same(proto: "visitSingularFixed64Field"), + 968: .same(proto: "visitSingularFloatField"), + 969: .same(proto: "visitSingularGroupField"), + 970: .same(proto: "visitSingularInt32Field"), + 971: .same(proto: "visitSingularInt64Field"), + 972: .same(proto: "visitSingularMessageField"), + 973: .same(proto: "visitSingularSFixed32Field"), + 974: .same(proto: "visitSingularSFixed64Field"), + 975: .same(proto: "visitSingularSInt32Field"), + 976: .same(proto: "visitSingularSInt64Field"), + 977: .same(proto: "visitSingularStringField"), + 978: .same(proto: "visitSingularUInt32Field"), + 979: .same(proto: "visitSingularUInt64Field"), + 980: .same(proto: "visitUnknown"), + 981: .same(proto: "wasDecoded"), + 982: .same(proto: "weak"), + 983: .same(proto: "weakDependency"), + 984: .same(proto: "where"), + 985: .same(proto: "wireFormat"), + 986: .same(proto: "with"), + 987: .same(proto: "withUnsafeBytes"), + 988: .same(proto: "withUnsafeMutableBytes"), + 989: .same(proto: "work"), + 990: .same(proto: "Wrapped"), + 991: .same(proto: "WrappedType"), + 992: .same(proto: "wrappedValue"), + 993: .same(proto: "written"), + 994: .same(proto: "yday"), ] fileprivate class _StorageClass { @@ -5919,6 +6021,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _anyExtensionField: Int32 = 0 var _anyMessageExtension: Int32 = 0 var _anyMessageStorage: Int32 = 0 + var _anyTypeUrlnotRegistered: Int32 = 0 var _anyUnpackError: Int32 = 0 var _api: Int32 = 0 var _appended: Int32 = 0 @@ -5945,10 +6048,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _begin: Int32 = 0 var _binary: Int32 = 0 var _binaryDecoder: Int32 = 0 + var _binaryDecoding: Int32 = 0 var _binaryDecodingError: Int32 = 0 var _binaryDecodingOptions: Int32 = 0 var _binaryDelimited: Int32 = 0 var _binaryEncoder: Int32 = 0 + var _binaryEncoding: Int32 = 0 var _binaryEncodingError: Int32 = 0 var _binaryEncodingMessageSetSizeVisitor: Int32 = 0 var _binaryEncodingMessageSetVisitor: Int32 = 0 @@ -5957,6 +6062,8 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _binaryEncodingVisitor: Int32 = 0 var _binaryOptions: Int32 = 0 var _binaryProtobufDelimitedMessages: Int32 = 0 + var _binaryStreamDecoding: Int32 = 0 + var _binaryStreamDecodingError: Int32 = 0 var _bitPattern: Int32 = 0 var _body: Int32 = 0 var _bool: Int32 = 0 @@ -6070,6 +6177,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _clearVerification_p: Int32 = 0 var _clearWeak_p: Int32 = 0 var _clientStreaming: Int32 = 0 + var _code: Int32 = 0 var _codePoint: Int32 = 0 var _codeUnits: Int32 = 0 var _collection: Int32 = 0 @@ -6077,12 +6185,14 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _comma: Int32 = 0 var _consumedBytes: Int32 = 0 var _contentsOf: Int32 = 0 + var _copy: Int32 = 0 var _count: Int32 = 0 var _countVarintsInBuffer: Int32 = 0 var _csharpNamespace: Int32 = 0 var _ctype: Int32 = 0 var _customCodable: Int32 = 0 var _customDebugStringConvertible: Int32 = 0 + var _customStringConvertible: Int32 = 0 var _d: Int32 = 0 var _data: Int32 = 0 var _dataResult: Int32 = 0 @@ -6262,6 +6372,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _fromHexDigit: Int32 = 0 var _fullName: Int32 = 0 var _func: Int32 = 0 + var _function: Int32 = 0 var _g: Int32 = 0 var _generatedCodeInfo: Int32 = 0 var _get: Int32 = 0 @@ -6462,6 +6573,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _jsondecodingError: Int32 = 0 var _jsondecodingOptions: Int32 = 0 var _jsonEncoder: Int32 = 0 + var _jsonencoding: Int32 = 0 var _jsonencodingError: Int32 = 0 var _jsonencodingOptions: Int32 = 0 var _jsonencodingVisitor: Int32 = 0 @@ -6492,6 +6604,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _lessThan: Int32 = 0 var _let: Int32 = 0 var _lhs: Int32 = 0 + var _line: Int32 = 0 var _list: Int32 = 0 var _listOfMessages: Int32 = 0 var _listValue: Int32 = 0 @@ -6503,6 +6616,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _major: Int32 = 0 var _makeAsyncIterator: Int32 = 0 var _makeIterator: Int32 = 0 + var _malformedLength: Int32 = 0 var _mapEntry: Int32 = 0 var _mapKeyType: Int32 = 0 var _mapToMessages: Int32 = 0 @@ -6553,6 +6667,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _nextVarInt: Int32 = 0 var _nil: Int32 = 0 var _nilLiteral: Int32 = 0 + var _noBytesAvailable: Int32 = 0 var _noStandardDescriptorAccessor: Int32 = 0 var _nullValue: Int32 = 0 var _number: Int32 = 0 @@ -6710,6 +6825,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _sourceContext: Int32 = 0 var _sourceEncoding: Int32 = 0 var _sourceFile: Int32 = 0 + var _sourceLocation: Int32 = 0 var _span: Int32 = 0 var _split: Int32 = 0 var _start: Int32 = 0 @@ -6737,6 +6853,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _swift: Int32 = 0 var _swiftPrefix: Int32 = 0 var _swiftProtobufContiguousBytes: Int32 = 0 + var _swiftProtobufError: Int32 = 0 var _syntax: Int32 = 0 var _t: Int32 = 0 var _tag: Int32 = 0 @@ -6757,6 +6874,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _timeIntervalSince1970: Int32 = 0 var _timeIntervalSinceReferenceDate: Int32 = 0 var _timestamp: Int32 = 0 + var _tooLarge: Int32 = 0 var _total: Int32 = 0 var _totalArrayDepth: Int32 = 0 var _totalSize: Int32 = 0 @@ -6789,6 +6907,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _unknownFields_p: Int32 = 0 var _unknownStorage: Int32 = 0 var _unpackTo: Int32 = 0 + var _unregisteredTypeURL: Int32 = 0 var _unsafeBufferPointer: Int32 = 0 var _unsafeMutablePointer: Int32 = 0 var _unsafeMutableRawBufferPointer: Int32 = 0 @@ -6910,6 +7029,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _anyExtensionField = source._anyExtensionField _anyMessageExtension = source._anyMessageExtension _anyMessageStorage = source._anyMessageStorage + _anyTypeUrlnotRegistered = source._anyTypeUrlnotRegistered _anyUnpackError = source._anyUnpackError _api = source._api _appended = source._appended @@ -6936,10 +7056,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _begin = source._begin _binary = source._binary _binaryDecoder = source._binaryDecoder + _binaryDecoding = source._binaryDecoding _binaryDecodingError = source._binaryDecodingError _binaryDecodingOptions = source._binaryDecodingOptions _binaryDelimited = source._binaryDelimited _binaryEncoder = source._binaryEncoder + _binaryEncoding = source._binaryEncoding _binaryEncodingError = source._binaryEncodingError _binaryEncodingMessageSetSizeVisitor = source._binaryEncodingMessageSetSizeVisitor _binaryEncodingMessageSetVisitor = source._binaryEncodingMessageSetVisitor @@ -6948,6 +7070,8 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _binaryEncodingVisitor = source._binaryEncodingVisitor _binaryOptions = source._binaryOptions _binaryProtobufDelimitedMessages = source._binaryProtobufDelimitedMessages + _binaryStreamDecoding = source._binaryStreamDecoding + _binaryStreamDecodingError = source._binaryStreamDecodingError _bitPattern = source._bitPattern _body = source._body _bool = source._bool @@ -7061,6 +7185,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _clearVerification_p = source._clearVerification_p _clearWeak_p = source._clearWeak_p _clientStreaming = source._clientStreaming + _code = source._code _codePoint = source._codePoint _codeUnits = source._codeUnits _collection = source._collection @@ -7068,12 +7193,14 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _comma = source._comma _consumedBytes = source._consumedBytes _contentsOf = source._contentsOf + _copy = source._copy _count = source._count _countVarintsInBuffer = source._countVarintsInBuffer _csharpNamespace = source._csharpNamespace _ctype = source._ctype _customCodable = source._customCodable _customDebugStringConvertible = source._customDebugStringConvertible + _customStringConvertible = source._customStringConvertible _d = source._d _data = source._data _dataResult = source._dataResult @@ -7253,6 +7380,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _fromHexDigit = source._fromHexDigit _fullName = source._fullName _func = source._func + _function = source._function _g = source._g _generatedCodeInfo = source._generatedCodeInfo _get = source._get @@ -7453,6 +7581,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _jsondecodingError = source._jsondecodingError _jsondecodingOptions = source._jsondecodingOptions _jsonEncoder = source._jsonEncoder + _jsonencoding = source._jsonencoding _jsonencodingError = source._jsonencodingError _jsonencodingOptions = source._jsonencodingOptions _jsonencodingVisitor = source._jsonencodingVisitor @@ -7483,6 +7612,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _lessThan = source._lessThan _let = source._let _lhs = source._lhs + _line = source._line _list = source._list _listOfMessages = source._listOfMessages _listValue = source._listValue @@ -7494,6 +7624,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _major = source._major _makeAsyncIterator = source._makeAsyncIterator _makeIterator = source._makeIterator + _malformedLength = source._malformedLength _mapEntry = source._mapEntry _mapKeyType = source._mapKeyType _mapToMessages = source._mapToMessages @@ -7544,6 +7675,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _nextVarInt = source._nextVarInt _nil = source._nil _nilLiteral = source._nilLiteral + _noBytesAvailable = source._noBytesAvailable _noStandardDescriptorAccessor = source._noStandardDescriptorAccessor _nullValue = source._nullValue _number = source._number @@ -7701,6 +7833,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _sourceContext = source._sourceContext _sourceEncoding = source._sourceEncoding _sourceFile = source._sourceFile + _sourceLocation = source._sourceLocation _span = source._span _split = source._split _start = source._start @@ -7728,6 +7861,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _swift = source._swift _swiftPrefix = source._swiftPrefix _swiftProtobufContiguousBytes = source._swiftProtobufContiguousBytes + _swiftProtobufError = source._swiftProtobufError _syntax = source._syntax _t = source._t _tag = source._tag @@ -7748,6 +7882,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _timeIntervalSince1970 = source._timeIntervalSince1970 _timeIntervalSinceReferenceDate = source._timeIntervalSinceReferenceDate _timestamp = source._timestamp + _tooLarge = source._tooLarge _total = source._total _totalArrayDepth = source._totalArrayDepth _totalSize = source._totalSize @@ -7780,6 +7915,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _unknownFields_p = source._unknownFields_p _unknownStorage = source._unknownStorage _unpackTo = source._unpackTo + _unregisteredTypeURL = source._unregisteredTypeURL _unsafeBufferPointer = source._unsafeBufferPointer _unsafeMutablePointer = source._unsafeMutablePointer _unsafeMutableRawBufferPointer = source._unsafeMutableRawBufferPointer @@ -7905,972 +8041,989 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu case 9: try { try decoder.decodeSingularInt32Field(value: &_storage._anyExtensionField) }() case 10: try { try decoder.decodeSingularInt32Field(value: &_storage._anyMessageExtension) }() case 11: try { try decoder.decodeSingularInt32Field(value: &_storage._anyMessageStorage) }() - case 12: try { try decoder.decodeSingularInt32Field(value: &_storage._anyUnpackError) }() - case 13: try { try decoder.decodeSingularInt32Field(value: &_storage._api) }() - case 14: try { try decoder.decodeSingularInt32Field(value: &_storage._appended) }() - case 15: try { try decoder.decodeSingularInt32Field(value: &_storage._appendUintHex) }() - case 16: try { try decoder.decodeSingularInt32Field(value: &_storage._appendUnknown) }() - case 17: try { try decoder.decodeSingularInt32Field(value: &_storage._areAllInitialized) }() - case 18: try { try decoder.decodeSingularInt32Field(value: &_storage._array) }() - case 19: try { try decoder.decodeSingularInt32Field(value: &_storage._arrayDepth) }() - case 20: try { try decoder.decodeSingularInt32Field(value: &_storage._arrayLiteral) }() - case 21: try { try decoder.decodeSingularInt32Field(value: &_storage._arraySeparator) }() - case 22: try { try decoder.decodeSingularInt32Field(value: &_storage._as) }() - case 23: try { try decoder.decodeSingularInt32Field(value: &_storage._asciiOpenCurlyBracket) }() - case 24: try { try decoder.decodeSingularInt32Field(value: &_storage._asciiZero) }() - case 25: try { try decoder.decodeSingularInt32Field(value: &_storage._async) }() - case 26: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncIterator) }() - case 27: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncIteratorProtocol) }() - case 28: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncMessageSequence) }() - case 29: try { try decoder.decodeSingularInt32Field(value: &_storage._available) }() - case 30: try { try decoder.decodeSingularInt32Field(value: &_storage._b) }() - case 31: try { try decoder.decodeSingularInt32Field(value: &_storage._base) }() - case 32: try { try decoder.decodeSingularInt32Field(value: &_storage._base64Values) }() - case 33: try { try decoder.decodeSingularInt32Field(value: &_storage._baseAddress) }() - case 34: try { try decoder.decodeSingularInt32Field(value: &_storage._baseType) }() - case 35: try { try decoder.decodeSingularInt32Field(value: &_storage._begin) }() - case 36: try { try decoder.decodeSingularInt32Field(value: &_storage._binary) }() - case 37: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecoder) }() - case 38: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecodingError) }() - case 39: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecodingOptions) }() - case 40: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDelimited) }() - case 41: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncoder) }() - case 42: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingError) }() - case 43: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingMessageSetSizeVisitor) }() - case 44: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingMessageSetVisitor) }() - case 45: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingOptions) }() - case 46: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingSizeVisitor) }() - case 47: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingVisitor) }() - case 48: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryOptions) }() - case 49: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryProtobufDelimitedMessages) }() - case 50: try { try decoder.decodeSingularInt32Field(value: &_storage._bitPattern) }() - case 51: try { try decoder.decodeSingularInt32Field(value: &_storage._body) }() - case 52: try { try decoder.decodeSingularInt32Field(value: &_storage._bool) }() - case 53: try { try decoder.decodeSingularInt32Field(value: &_storage._booleanLiteral) }() - case 54: try { try decoder.decodeSingularInt32Field(value: &_storage._booleanLiteralType) }() - case 55: try { try decoder.decodeSingularInt32Field(value: &_storage._boolValue) }() - case 56: try { try decoder.decodeSingularInt32Field(value: &_storage._buffer) }() - case 57: try { try decoder.decodeSingularInt32Field(value: &_storage._bytes) }() - case 58: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesInGroup) }() - case 59: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesNeeded) }() - case 60: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesRead) }() - case 61: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesValue) }() - case 62: try { try decoder.decodeSingularInt32Field(value: &_storage._c) }() - case 63: try { try decoder.decodeSingularInt32Field(value: &_storage._capitalizeNext) }() - case 64: try { try decoder.decodeSingularInt32Field(value: &_storage._cardinality) }() - case 65: try { try decoder.decodeSingularInt32Field(value: &_storage._caseIterable) }() - case 66: try { try decoder.decodeSingularInt32Field(value: &_storage._ccEnableArenas) }() - case 67: try { try decoder.decodeSingularInt32Field(value: &_storage._ccGenericServices) }() - case 68: try { try decoder.decodeSingularInt32Field(value: &_storage._character) }() - case 69: try { try decoder.decodeSingularInt32Field(value: &_storage._chars) }() - case 70: try { try decoder.decodeSingularInt32Field(value: &_storage._chunk) }() - case 71: try { try decoder.decodeSingularInt32Field(value: &_storage._class) }() - case 72: try { try decoder.decodeSingularInt32Field(value: &_storage._clearAggregateValue_p) }() - case 73: try { try decoder.decodeSingularInt32Field(value: &_storage._clearAllowAlias_p) }() - case 74: try { try decoder.decodeSingularInt32Field(value: &_storage._clearBegin_p) }() - case 75: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCcEnableArenas_p) }() - case 76: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCcGenericServices_p) }() - case 77: try { try decoder.decodeSingularInt32Field(value: &_storage._clearClientStreaming_p) }() - case 78: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCsharpNamespace_p) }() - case 79: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCtype_p) }() - case 80: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDebugRedact_p) }() - case 81: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDefaultValue_p) }() - case 82: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecated_p) }() - case 83: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecatedLegacyJsonFieldConflicts_p) }() - case 84: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecationWarning_p) }() - case 85: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDoubleValue_p) }() - case 86: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEdition_p) }() - case 87: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionDeprecated_p) }() - case 88: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionIntroduced_p) }() - case 89: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionRemoved_p) }() - case 90: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEnd_p) }() - case 91: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEnumType_p) }() - case 92: try { try decoder.decodeSingularInt32Field(value: &_storage._clearExtendee_p) }() - case 93: try { try decoder.decodeSingularInt32Field(value: &_storage._clearExtensionValue_p) }() - case 94: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFeatures_p) }() - case 95: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFeatureSupport_p) }() - case 96: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFieldPresence_p) }() - case 97: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFixedFeatures_p) }() - case 98: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFullName_p) }() - case 99: try { try decoder.decodeSingularInt32Field(value: &_storage._clearGoPackage_p) }() - case 100: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIdempotencyLevel_p) }() - case 101: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIdentifierValue_p) }() - case 102: try { try decoder.decodeSingularInt32Field(value: &_storage._clearInputType_p) }() - case 103: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIsExtension_p) }() - case 104: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaGenerateEqualsAndHash_p) }() - case 105: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaGenericServices_p) }() - case 106: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaMultipleFiles_p) }() - case 107: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaOuterClassname_p) }() - case 108: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaPackage_p) }() - case 109: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaStringCheckUtf8_p) }() - case 110: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJsonFormat_p) }() - case 111: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJsonName_p) }() - case 112: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJstype_p) }() - case 113: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLabel_p) }() - case 114: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLazy_p) }() - case 115: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLeadingComments_p) }() - case 116: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMapEntry_p) }() - case 117: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMaximumEdition_p) }() - case 118: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMessageEncoding_p) }() - case 119: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMessageSetWireFormat_p) }() - case 120: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMinimumEdition_p) }() - case 121: try { try decoder.decodeSingularInt32Field(value: &_storage._clearName_p) }() - case 122: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNamePart_p) }() - case 123: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNegativeIntValue_p) }() - case 124: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNoStandardDescriptorAccessor_p) }() - case 125: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNumber_p) }() - case 126: try { try decoder.decodeSingularInt32Field(value: &_storage._clearObjcClassPrefix_p) }() - case 127: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOneofIndex_p) }() - case 128: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOptimizeFor_p) }() - case 129: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOptions_p) }() - case 130: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOutputType_p) }() - case 131: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOverridableFeatures_p) }() - case 132: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPackage_p) }() - case 133: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPacked_p) }() - case 134: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpClassPrefix_p) }() - case 135: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpMetadataNamespace_p) }() - case 136: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpNamespace_p) }() - case 137: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPositiveIntValue_p) }() - case 138: try { try decoder.decodeSingularInt32Field(value: &_storage._clearProto3Optional_p) }() - case 139: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPyGenericServices_p) }() - case 140: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRepeated_p) }() - case 141: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRepeatedFieldEncoding_p) }() - case 142: try { try decoder.decodeSingularInt32Field(value: &_storage._clearReserved_p) }() - case 143: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRetention_p) }() - case 144: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRubyPackage_p) }() - case 145: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSemantic_p) }() - case 146: try { try decoder.decodeSingularInt32Field(value: &_storage._clearServerStreaming_p) }() - case 147: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceCodeInfo_p) }() - case 148: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceContext_p) }() - case 149: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceFile_p) }() - case 150: try { try decoder.decodeSingularInt32Field(value: &_storage._clearStart_p) }() - case 151: try { try decoder.decodeSingularInt32Field(value: &_storage._clearStringValue_p) }() - case 152: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSwiftPrefix_p) }() - case 153: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSyntax_p) }() - case 154: try { try decoder.decodeSingularInt32Field(value: &_storage._clearTrailingComments_p) }() - case 155: try { try decoder.decodeSingularInt32Field(value: &_storage._clearType_p) }() - case 156: try { try decoder.decodeSingularInt32Field(value: &_storage._clearTypeName_p) }() - case 157: try { try decoder.decodeSingularInt32Field(value: &_storage._clearUnverifiedLazy_p) }() - case 158: try { try decoder.decodeSingularInt32Field(value: &_storage._clearUtf8Validation_p) }() - case 159: try { try decoder.decodeSingularInt32Field(value: &_storage._clearValue_p) }() - case 160: try { try decoder.decodeSingularInt32Field(value: &_storage._clearVerification_p) }() - case 161: try { try decoder.decodeSingularInt32Field(value: &_storage._clearWeak_p) }() - case 162: try { try decoder.decodeSingularInt32Field(value: &_storage._clientStreaming) }() - case 163: try { try decoder.decodeSingularInt32Field(value: &_storage._codePoint) }() - case 164: try { try decoder.decodeSingularInt32Field(value: &_storage._codeUnits) }() - case 165: try { try decoder.decodeSingularInt32Field(value: &_storage._collection) }() - case 166: try { try decoder.decodeSingularInt32Field(value: &_storage._com) }() - case 167: try { try decoder.decodeSingularInt32Field(value: &_storage._comma) }() - case 168: try { try decoder.decodeSingularInt32Field(value: &_storage._consumedBytes) }() - case 169: try { try decoder.decodeSingularInt32Field(value: &_storage._contentsOf) }() - case 170: try { try decoder.decodeSingularInt32Field(value: &_storage._count) }() - case 171: try { try decoder.decodeSingularInt32Field(value: &_storage._countVarintsInBuffer) }() - case 172: try { try decoder.decodeSingularInt32Field(value: &_storage._csharpNamespace) }() - case 173: try { try decoder.decodeSingularInt32Field(value: &_storage._ctype) }() - case 174: try { try decoder.decodeSingularInt32Field(value: &_storage._customCodable) }() - case 175: try { try decoder.decodeSingularInt32Field(value: &_storage._customDebugStringConvertible) }() - case 176: try { try decoder.decodeSingularInt32Field(value: &_storage._d) }() - case 177: try { try decoder.decodeSingularInt32Field(value: &_storage._data) }() - case 178: try { try decoder.decodeSingularInt32Field(value: &_storage._dataResult) }() - case 179: try { try decoder.decodeSingularInt32Field(value: &_storage._date) }() - case 180: try { try decoder.decodeSingularInt32Field(value: &_storage._daySec) }() - case 181: try { try decoder.decodeSingularInt32Field(value: &_storage._daysSinceEpoch) }() - case 182: try { try decoder.decodeSingularInt32Field(value: &_storage._debugDescription_p) }() - case 183: try { try decoder.decodeSingularInt32Field(value: &_storage._debugRedact) }() - case 184: try { try decoder.decodeSingularInt32Field(value: &_storage._declaration) }() - case 185: try { try decoder.decodeSingularInt32Field(value: &_storage._decoded) }() - case 186: try { try decoder.decodeSingularInt32Field(value: &_storage._decodedFromJsonnull) }() - case 187: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeExtensionField) }() - case 188: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeExtensionFieldsAsMessageSet) }() - case 189: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeJson) }() - case 190: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeMapField) }() - case 191: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeMessage) }() - case 192: try { try decoder.decodeSingularInt32Field(value: &_storage._decoder) }() - case 193: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeated) }() - case 194: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedBoolField) }() - case 195: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedBytesField) }() - case 196: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedDoubleField) }() - case 197: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedEnumField) }() - case 198: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFixed32Field) }() - case 199: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFixed64Field) }() - case 200: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFloatField) }() - case 201: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedGroupField) }() - case 202: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedInt32Field) }() - case 203: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedInt64Field) }() - case 204: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedMessageField) }() - case 205: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSfixed32Field) }() - case 206: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSfixed64Field) }() - case 207: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSint32Field) }() - case 208: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSint64Field) }() - case 209: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedStringField) }() - case 210: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedUint32Field) }() - case 211: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedUint64Field) }() - case 212: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingular) }() - case 213: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularBoolField) }() - case 214: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularBytesField) }() - case 215: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularDoubleField) }() - case 216: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularEnumField) }() - case 217: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFixed32Field) }() - case 218: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFixed64Field) }() - case 219: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFloatField) }() - case 220: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularGroupField) }() - case 221: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularInt32Field) }() - case 222: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularInt64Field) }() - case 223: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularMessageField) }() - case 224: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSfixed32Field) }() - case 225: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSfixed64Field) }() - case 226: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSint32Field) }() - case 227: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSint64Field) }() - case 228: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularStringField) }() - case 229: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularUint32Field) }() - case 230: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularUint64Field) }() - case 231: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeTextFormat) }() - case 232: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultAnyTypeUrlprefix) }() - case 233: try { try decoder.decodeSingularInt32Field(value: &_storage._defaults) }() - case 234: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultValue) }() - case 235: try { try decoder.decodeSingularInt32Field(value: &_storage._dependency) }() - case 236: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecated) }() - case 237: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecatedLegacyJsonFieldConflicts) }() - case 238: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecationWarning) }() - case 239: try { try decoder.decodeSingularInt32Field(value: &_storage._description_p) }() - case 240: try { try decoder.decodeSingularInt32Field(value: &_storage._descriptorProto) }() - case 241: try { try decoder.decodeSingularInt32Field(value: &_storage._dictionary) }() - case 242: try { try decoder.decodeSingularInt32Field(value: &_storage._dictionaryLiteral) }() - case 243: try { try decoder.decodeSingularInt32Field(value: &_storage._digit) }() - case 244: try { try decoder.decodeSingularInt32Field(value: &_storage._digit0) }() - case 245: try { try decoder.decodeSingularInt32Field(value: &_storage._digit1) }() - case 246: try { try decoder.decodeSingularInt32Field(value: &_storage._digitCount) }() - case 247: try { try decoder.decodeSingularInt32Field(value: &_storage._digits) }() - case 248: try { try decoder.decodeSingularInt32Field(value: &_storage._digitValue) }() - case 249: try { try decoder.decodeSingularInt32Field(value: &_storage._discardableResult) }() - case 250: try { try decoder.decodeSingularInt32Field(value: &_storage._discardUnknownFields) }() - case 251: try { try decoder.decodeSingularInt32Field(value: &_storage._double) }() - case 252: try { try decoder.decodeSingularInt32Field(value: &_storage._doubleValue) }() - case 253: try { try decoder.decodeSingularInt32Field(value: &_storage._duration) }() - case 254: try { try decoder.decodeSingularInt32Field(value: &_storage._e) }() - case 255: try { try decoder.decodeSingularInt32Field(value: &_storage._edition) }() - case 256: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDefault) }() - case 257: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDefaults) }() - case 258: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDeprecated) }() - case 259: try { try decoder.decodeSingularInt32Field(value: &_storage._editionIntroduced) }() - case 260: try { try decoder.decodeSingularInt32Field(value: &_storage._editionRemoved) }() - case 261: try { try decoder.decodeSingularInt32Field(value: &_storage._element) }() - case 262: try { try decoder.decodeSingularInt32Field(value: &_storage._elements) }() - case 263: try { try decoder.decodeSingularInt32Field(value: &_storage._emitExtensionFieldName) }() - case 264: try { try decoder.decodeSingularInt32Field(value: &_storage._emitFieldName) }() - case 265: try { try decoder.decodeSingularInt32Field(value: &_storage._emitFieldNumber) }() - case 266: try { try decoder.decodeSingularInt32Field(value: &_storage._empty) }() - case 267: try { try decoder.decodeSingularInt32Field(value: &_storage._encodeAsBytes) }() - case 268: try { try decoder.decodeSingularInt32Field(value: &_storage._encoded) }() - case 269: try { try decoder.decodeSingularInt32Field(value: &_storage._encodedJsonstring) }() - case 270: try { try decoder.decodeSingularInt32Field(value: &_storage._encodedSize) }() - case 271: try { try decoder.decodeSingularInt32Field(value: &_storage._encodeField) }() - case 272: try { try decoder.decodeSingularInt32Field(value: &_storage._encoder) }() - case 273: try { try decoder.decodeSingularInt32Field(value: &_storage._end) }() - case 274: try { try decoder.decodeSingularInt32Field(value: &_storage._endArray) }() - case 275: try { try decoder.decodeSingularInt32Field(value: &_storage._endMessageField) }() - case 276: try { try decoder.decodeSingularInt32Field(value: &_storage._endObject) }() - case 277: try { try decoder.decodeSingularInt32Field(value: &_storage._endRegularField) }() - case 278: try { try decoder.decodeSingularInt32Field(value: &_storage._enum) }() - case 279: try { try decoder.decodeSingularInt32Field(value: &_storage._enumDescriptorProto) }() - case 280: try { try decoder.decodeSingularInt32Field(value: &_storage._enumOptions) }() - case 281: try { try decoder.decodeSingularInt32Field(value: &_storage._enumReservedRange) }() - case 282: try { try decoder.decodeSingularInt32Field(value: &_storage._enumType) }() - case 283: try { try decoder.decodeSingularInt32Field(value: &_storage._enumvalue) }() - case 284: try { try decoder.decodeSingularInt32Field(value: &_storage._enumValueDescriptorProto) }() - case 285: try { try decoder.decodeSingularInt32Field(value: &_storage._enumValueOptions) }() - case 286: try { try decoder.decodeSingularInt32Field(value: &_storage._equatable) }() - case 287: try { try decoder.decodeSingularInt32Field(value: &_storage._error) }() - case 288: try { try decoder.decodeSingularInt32Field(value: &_storage._expressibleByArrayLiteral) }() - case 289: try { try decoder.decodeSingularInt32Field(value: &_storage._expressibleByDictionaryLiteral) }() - case 290: try { try decoder.decodeSingularInt32Field(value: &_storage._ext) }() - case 291: try { try decoder.decodeSingularInt32Field(value: &_storage._extDecoder) }() - case 292: try { try decoder.decodeSingularInt32Field(value: &_storage._extendedGraphemeClusterLiteral) }() - case 293: try { try decoder.decodeSingularInt32Field(value: &_storage._extendedGraphemeClusterLiteralType) }() - case 294: try { try decoder.decodeSingularInt32Field(value: &_storage._extendee) }() - case 295: try { try decoder.decodeSingularInt32Field(value: &_storage._extensibleMessage) }() - case 296: try { try decoder.decodeSingularInt32Field(value: &_storage._extension) }() - case 297: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionField) }() - case 298: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionFieldNumber) }() - case 299: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionFieldValueSet) }() - case 300: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionMap) }() - case 301: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionRange) }() - case 302: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionRangeOptions) }() - case 303: try { try decoder.decodeSingularInt32Field(value: &_storage._extensions) }() - case 304: try { try decoder.decodeSingularInt32Field(value: &_storage._extras) }() - case 305: try { try decoder.decodeSingularInt32Field(value: &_storage._f) }() - case 306: try { try decoder.decodeSingularInt32Field(value: &_storage._false) }() - case 307: try { try decoder.decodeSingularInt32Field(value: &_storage._features) }() - case 308: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSet) }() - case 309: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSetDefaults) }() - case 310: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSetEditionDefault) }() - case 311: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSupport) }() - case 312: try { try decoder.decodeSingularInt32Field(value: &_storage._field) }() - case 313: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldData) }() - case 314: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldDescriptorProto) }() - case 315: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldMask) }() - case 316: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldName) }() - case 317: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNameCount) }() - case 318: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNum) }() - case 319: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNumber) }() - case 320: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNumberForProto) }() - case 321: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldOptions) }() - case 322: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldPresence) }() - case 323: try { try decoder.decodeSingularInt32Field(value: &_storage._fields) }() - case 324: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldSize) }() - case 325: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldTag) }() - case 326: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldType) }() - case 327: try { try decoder.decodeSingularInt32Field(value: &_storage._file) }() - case 328: try { try decoder.decodeSingularInt32Field(value: &_storage._fileDescriptorProto) }() - case 329: try { try decoder.decodeSingularInt32Field(value: &_storage._fileDescriptorSet) }() - case 330: try { try decoder.decodeSingularInt32Field(value: &_storage._fileName) }() - case 331: try { try decoder.decodeSingularInt32Field(value: &_storage._fileOptions) }() - case 332: try { try decoder.decodeSingularInt32Field(value: &_storage._filter) }() - case 333: try { try decoder.decodeSingularInt32Field(value: &_storage._final) }() - case 334: try { try decoder.decodeSingularInt32Field(value: &_storage._finiteOnly) }() - case 335: try { try decoder.decodeSingularInt32Field(value: &_storage._first) }() - case 336: try { try decoder.decodeSingularInt32Field(value: &_storage._firstItem) }() - case 337: try { try decoder.decodeSingularInt32Field(value: &_storage._fixedFeatures) }() - case 338: try { try decoder.decodeSingularInt32Field(value: &_storage._float) }() - case 339: try { try decoder.decodeSingularInt32Field(value: &_storage._floatLiteral) }() - case 340: try { try decoder.decodeSingularInt32Field(value: &_storage._floatLiteralType) }() - case 341: try { try decoder.decodeSingularInt32Field(value: &_storage._floatValue) }() - case 342: try { try decoder.decodeSingularInt32Field(value: &_storage._forMessageName) }() - case 343: try { try decoder.decodeSingularInt32Field(value: &_storage._formUnion) }() - case 344: try { try decoder.decodeSingularInt32Field(value: &_storage._forReadingFrom) }() - case 345: try { try decoder.decodeSingularInt32Field(value: &_storage._forTypeURL) }() - case 346: try { try decoder.decodeSingularInt32Field(value: &_storage._forwardParser) }() - case 347: try { try decoder.decodeSingularInt32Field(value: &_storage._forWritingInto) }() - case 348: try { try decoder.decodeSingularInt32Field(value: &_storage._from) }() - case 349: try { try decoder.decodeSingularInt32Field(value: &_storage._fromAscii2) }() - case 350: try { try decoder.decodeSingularInt32Field(value: &_storage._fromAscii4) }() - case 351: try { try decoder.decodeSingularInt32Field(value: &_storage._fromByteOffset) }() - case 352: try { try decoder.decodeSingularInt32Field(value: &_storage._fromHexDigit) }() - case 353: try { try decoder.decodeSingularInt32Field(value: &_storage._fullName) }() - case 354: try { try decoder.decodeSingularInt32Field(value: &_storage._func) }() - case 355: try { try decoder.decodeSingularInt32Field(value: &_storage._g) }() - case 356: try { try decoder.decodeSingularInt32Field(value: &_storage._generatedCodeInfo) }() - case 357: try { try decoder.decodeSingularInt32Field(value: &_storage._get) }() - case 358: try { try decoder.decodeSingularInt32Field(value: &_storage._getExtensionValue) }() - case 359: try { try decoder.decodeSingularInt32Field(value: &_storage._googleapis) }() - case 360: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufAny) }() - case 361: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufApi) }() - case 362: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufBoolValue) }() - case 363: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufBytesValue) }() - case 364: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDescriptorProto) }() - case 365: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDoubleValue) }() - case 366: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDuration) }() - case 367: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEdition) }() - case 368: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEmpty) }() - case 369: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnum) }() - case 370: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumDescriptorProto) }() - case 371: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumOptions) }() - case 372: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValue) }() - case 373: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValueDescriptorProto) }() - case 374: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValueOptions) }() - case 375: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufExtensionRangeOptions) }() - case 376: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFeatureSet) }() - case 377: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFeatureSetDefaults) }() - case 378: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufField) }() - case 379: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldDescriptorProto) }() - case 380: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldMask) }() - case 381: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldOptions) }() - case 382: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileDescriptorProto) }() - case 383: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileDescriptorSet) }() - case 384: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileOptions) }() - case 385: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFloatValue) }() - case 386: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufGeneratedCodeInfo) }() - case 387: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufInt32Value) }() - case 388: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufInt64Value) }() - case 389: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufListValue) }() - case 390: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMessageOptions) }() - case 391: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethod) }() - case 392: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethodDescriptorProto) }() - case 393: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethodOptions) }() - case 394: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMixin) }() - case 395: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufNullValue) }() - case 396: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOneofDescriptorProto) }() - case 397: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOneofOptions) }() - case 398: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOption) }() - case 399: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufServiceDescriptorProto) }() - case 400: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufServiceOptions) }() - case 401: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSourceCodeInfo) }() - case 402: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSourceContext) }() - case 403: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufStringValue) }() - case 404: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufStruct) }() - case 405: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSyntax) }() - case 406: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufTimestamp) }() - case 407: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufType) }() - case 408: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUint32Value) }() - case 409: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUint64Value) }() - case 410: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUninterpretedOption) }() - case 411: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufValue) }() - case 412: try { try decoder.decodeSingularInt32Field(value: &_storage._goPackage) }() - case 413: try { try decoder.decodeSingularInt32Field(value: &_storage._group) }() - case 414: try { try decoder.decodeSingularInt32Field(value: &_storage._groupFieldNumberStack) }() - case 415: try { try decoder.decodeSingularInt32Field(value: &_storage._groupSize) }() - case 416: try { try decoder.decodeSingularInt32Field(value: &_storage._hadOneofValue) }() - case 417: try { try decoder.decodeSingularInt32Field(value: &_storage._handleConflictingOneOf) }() - case 418: try { try decoder.decodeSingularInt32Field(value: &_storage._hasAggregateValue_p) }() - case 419: try { try decoder.decodeSingularInt32Field(value: &_storage._hasAllowAlias_p) }() - case 420: try { try decoder.decodeSingularInt32Field(value: &_storage._hasBegin_p) }() - case 421: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCcEnableArenas_p) }() - case 422: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCcGenericServices_p) }() - case 423: try { try decoder.decodeSingularInt32Field(value: &_storage._hasClientStreaming_p) }() - case 424: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCsharpNamespace_p) }() - case 425: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCtype_p) }() - case 426: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDebugRedact_p) }() - case 427: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDefaultValue_p) }() - case 428: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecated_p) }() - case 429: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecatedLegacyJsonFieldConflicts_p) }() - case 430: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecationWarning_p) }() - case 431: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDoubleValue_p) }() - case 432: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEdition_p) }() - case 433: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionDeprecated_p) }() - case 434: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionIntroduced_p) }() - case 435: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionRemoved_p) }() - case 436: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEnd_p) }() - case 437: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEnumType_p) }() - case 438: try { try decoder.decodeSingularInt32Field(value: &_storage._hasExtendee_p) }() - case 439: try { try decoder.decodeSingularInt32Field(value: &_storage._hasExtensionValue_p) }() - case 440: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFeatures_p) }() - case 441: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFeatureSupport_p) }() - case 442: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFieldPresence_p) }() - case 443: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFixedFeatures_p) }() - case 444: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFullName_p) }() - case 445: try { try decoder.decodeSingularInt32Field(value: &_storage._hasGoPackage_p) }() - case 446: try { try decoder.decodeSingularInt32Field(value: &_storage._hash) }() - case 447: try { try decoder.decodeSingularInt32Field(value: &_storage._hashable) }() - case 448: try { try decoder.decodeSingularInt32Field(value: &_storage._hasher) }() - case 449: try { try decoder.decodeSingularInt32Field(value: &_storage._hashVisitor) }() - case 450: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIdempotencyLevel_p) }() - case 451: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIdentifierValue_p) }() - case 452: try { try decoder.decodeSingularInt32Field(value: &_storage._hasInputType_p) }() - case 453: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIsExtension_p) }() - case 454: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaGenerateEqualsAndHash_p) }() - case 455: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaGenericServices_p) }() - case 456: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaMultipleFiles_p) }() - case 457: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaOuterClassname_p) }() - case 458: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaPackage_p) }() - case 459: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaStringCheckUtf8_p) }() - case 460: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJsonFormat_p) }() - case 461: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJsonName_p) }() - case 462: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJstype_p) }() - case 463: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLabel_p) }() - case 464: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLazy_p) }() - case 465: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLeadingComments_p) }() - case 466: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMapEntry_p) }() - case 467: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMaximumEdition_p) }() - case 468: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMessageEncoding_p) }() - case 469: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMessageSetWireFormat_p) }() - case 470: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMinimumEdition_p) }() - case 471: try { try decoder.decodeSingularInt32Field(value: &_storage._hasName_p) }() - case 472: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNamePart_p) }() - case 473: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNegativeIntValue_p) }() - case 474: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNoStandardDescriptorAccessor_p) }() - case 475: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNumber_p) }() - case 476: try { try decoder.decodeSingularInt32Field(value: &_storage._hasObjcClassPrefix_p) }() - case 477: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOneofIndex_p) }() - case 478: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOptimizeFor_p) }() - case 479: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOptions_p) }() - case 480: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOutputType_p) }() - case 481: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOverridableFeatures_p) }() - case 482: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPackage_p) }() - case 483: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPacked_p) }() - case 484: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpClassPrefix_p) }() - case 485: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpMetadataNamespace_p) }() - case 486: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpNamespace_p) }() - case 487: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPositiveIntValue_p) }() - case 488: try { try decoder.decodeSingularInt32Field(value: &_storage._hasProto3Optional_p) }() - case 489: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPyGenericServices_p) }() - case 490: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRepeated_p) }() - case 491: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRepeatedFieldEncoding_p) }() - case 492: try { try decoder.decodeSingularInt32Field(value: &_storage._hasReserved_p) }() - case 493: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRetention_p) }() - case 494: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRubyPackage_p) }() - case 495: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSemantic_p) }() - case 496: try { try decoder.decodeSingularInt32Field(value: &_storage._hasServerStreaming_p) }() - case 497: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceCodeInfo_p) }() - case 498: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceContext_p) }() - case 499: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceFile_p) }() - case 500: try { try decoder.decodeSingularInt32Field(value: &_storage._hasStart_p) }() - case 501: try { try decoder.decodeSingularInt32Field(value: &_storage._hasStringValue_p) }() - case 502: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSwiftPrefix_p) }() - case 503: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSyntax_p) }() - case 504: try { try decoder.decodeSingularInt32Field(value: &_storage._hasTrailingComments_p) }() - case 505: try { try decoder.decodeSingularInt32Field(value: &_storage._hasType_p) }() - case 506: try { try decoder.decodeSingularInt32Field(value: &_storage._hasTypeName_p) }() - case 507: try { try decoder.decodeSingularInt32Field(value: &_storage._hasUnverifiedLazy_p) }() - case 508: try { try decoder.decodeSingularInt32Field(value: &_storage._hasUtf8Validation_p) }() - case 509: try { try decoder.decodeSingularInt32Field(value: &_storage._hasValue_p) }() - case 510: try { try decoder.decodeSingularInt32Field(value: &_storage._hasVerification_p) }() - case 511: try { try decoder.decodeSingularInt32Field(value: &_storage._hasWeak_p) }() - case 512: try { try decoder.decodeSingularInt32Field(value: &_storage._hour) }() - case 513: try { try decoder.decodeSingularInt32Field(value: &_storage._i) }() - case 514: try { try decoder.decodeSingularInt32Field(value: &_storage._idempotencyLevel) }() - case 515: try { try decoder.decodeSingularInt32Field(value: &_storage._identifierValue) }() - case 516: try { try decoder.decodeSingularInt32Field(value: &_storage._if) }() - case 517: try { try decoder.decodeSingularInt32Field(value: &_storage._ignoreUnknownExtensionFields) }() - case 518: try { try decoder.decodeSingularInt32Field(value: &_storage._ignoreUnknownFields) }() - case 519: try { try decoder.decodeSingularInt32Field(value: &_storage._index) }() - case 520: try { try decoder.decodeSingularInt32Field(value: &_storage._init_p) }() - case 521: try { try decoder.decodeSingularInt32Field(value: &_storage._inout) }() - case 522: try { try decoder.decodeSingularInt32Field(value: &_storage._inputType) }() - case 523: try { try decoder.decodeSingularInt32Field(value: &_storage._insert) }() - case 524: try { try decoder.decodeSingularInt32Field(value: &_storage._int) }() - case 525: try { try decoder.decodeSingularInt32Field(value: &_storage._int32) }() - case 526: try { try decoder.decodeSingularInt32Field(value: &_storage._int32Value) }() - case 527: try { try decoder.decodeSingularInt32Field(value: &_storage._int64) }() - case 528: try { try decoder.decodeSingularInt32Field(value: &_storage._int64Value) }() - case 529: try { try decoder.decodeSingularInt32Field(value: &_storage._int8) }() - case 530: try { try decoder.decodeSingularInt32Field(value: &_storage._integerLiteral) }() - case 531: try { try decoder.decodeSingularInt32Field(value: &_storage._integerLiteralType) }() - case 532: try { try decoder.decodeSingularInt32Field(value: &_storage._intern) }() - case 533: try { try decoder.decodeSingularInt32Field(value: &_storage._internal) }() - case 534: try { try decoder.decodeSingularInt32Field(value: &_storage._internalState) }() - case 535: try { try decoder.decodeSingularInt32Field(value: &_storage._into) }() - case 536: try { try decoder.decodeSingularInt32Field(value: &_storage._ints) }() - case 537: try { try decoder.decodeSingularInt32Field(value: &_storage._isA) }() - case 538: try { try decoder.decodeSingularInt32Field(value: &_storage._isEqual) }() - case 539: try { try decoder.decodeSingularInt32Field(value: &_storage._isEqualTo) }() - case 540: try { try decoder.decodeSingularInt32Field(value: &_storage._isExtension) }() - case 541: try { try decoder.decodeSingularInt32Field(value: &_storage._isInitialized_p) }() - case 542: try { try decoder.decodeSingularInt32Field(value: &_storage._isNegative) }() - case 543: try { try decoder.decodeSingularInt32Field(value: &_storage._itemTagsEncodedSize) }() - case 544: try { try decoder.decodeSingularInt32Field(value: &_storage._iterator) }() - case 545: try { try decoder.decodeSingularInt32Field(value: &_storage._javaGenerateEqualsAndHash) }() - case 546: try { try decoder.decodeSingularInt32Field(value: &_storage._javaGenericServices) }() - case 547: try { try decoder.decodeSingularInt32Field(value: &_storage._javaMultipleFiles) }() - case 548: try { try decoder.decodeSingularInt32Field(value: &_storage._javaOuterClassname) }() - case 549: try { try decoder.decodeSingularInt32Field(value: &_storage._javaPackage) }() - case 550: try { try decoder.decodeSingularInt32Field(value: &_storage._javaStringCheckUtf8) }() - case 551: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecoder) }() - case 552: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecodingError) }() - case 553: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecodingOptions) }() - case 554: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonEncoder) }() - case 555: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingError) }() - case 556: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingOptions) }() - case 557: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingVisitor) }() - case 558: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonFormat) }() - case 559: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonmapEncodingVisitor) }() - case 560: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonName) }() - case 561: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonPath) }() - case 562: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonPaths) }() - case 563: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonscanner) }() - case 564: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonString) }() - case 565: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonText) }() - case 566: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonUtf8Bytes) }() - case 567: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonUtf8Data) }() - case 568: try { try decoder.decodeSingularInt32Field(value: &_storage._jstype) }() - case 569: try { try decoder.decodeSingularInt32Field(value: &_storage._k) }() - case 570: try { try decoder.decodeSingularInt32Field(value: &_storage._kChunkSize) }() - case 571: try { try decoder.decodeSingularInt32Field(value: &_storage._key) }() - case 572: try { try decoder.decodeSingularInt32Field(value: &_storage._keyField) }() - case 573: try { try decoder.decodeSingularInt32Field(value: &_storage._keyFieldOpt) }() - case 574: try { try decoder.decodeSingularInt32Field(value: &_storage._keyType) }() - case 575: try { try decoder.decodeSingularInt32Field(value: &_storage._kind) }() - case 576: try { try decoder.decodeSingularInt32Field(value: &_storage._l) }() - case 577: try { try decoder.decodeSingularInt32Field(value: &_storage._label) }() - case 578: try { try decoder.decodeSingularInt32Field(value: &_storage._lazy) }() - case 579: try { try decoder.decodeSingularInt32Field(value: &_storage._leadingComments) }() - case 580: try { try decoder.decodeSingularInt32Field(value: &_storage._leadingDetachedComments) }() - case 581: try { try decoder.decodeSingularInt32Field(value: &_storage._length) }() - case 582: try { try decoder.decodeSingularInt32Field(value: &_storage._lessThan) }() - case 583: try { try decoder.decodeSingularInt32Field(value: &_storage._let) }() - case 584: try { try decoder.decodeSingularInt32Field(value: &_storage._lhs) }() - case 585: try { try decoder.decodeSingularInt32Field(value: &_storage._list) }() - case 586: try { try decoder.decodeSingularInt32Field(value: &_storage._listOfMessages) }() - case 587: try { try decoder.decodeSingularInt32Field(value: &_storage._listValue) }() - case 588: try { try decoder.decodeSingularInt32Field(value: &_storage._littleEndian) }() - case 589: try { try decoder.decodeSingularInt32Field(value: &_storage._load) }() - case 590: try { try decoder.decodeSingularInt32Field(value: &_storage._localHasher) }() - case 591: try { try decoder.decodeSingularInt32Field(value: &_storage._location) }() - case 592: try { try decoder.decodeSingularInt32Field(value: &_storage._m) }() - case 593: try { try decoder.decodeSingularInt32Field(value: &_storage._major) }() - case 594: try { try decoder.decodeSingularInt32Field(value: &_storage._makeAsyncIterator) }() - case 595: try { try decoder.decodeSingularInt32Field(value: &_storage._makeIterator) }() - case 596: try { try decoder.decodeSingularInt32Field(value: &_storage._mapEntry) }() - case 597: try { try decoder.decodeSingularInt32Field(value: &_storage._mapKeyType) }() - case 598: try { try decoder.decodeSingularInt32Field(value: &_storage._mapToMessages) }() - case 599: try { try decoder.decodeSingularInt32Field(value: &_storage._mapValueType) }() - case 600: try { try decoder.decodeSingularInt32Field(value: &_storage._mapVisitor) }() - case 601: try { try decoder.decodeSingularInt32Field(value: &_storage._maximumEdition) }() - case 602: try { try decoder.decodeSingularInt32Field(value: &_storage._mdayStart) }() - case 603: try { try decoder.decodeSingularInt32Field(value: &_storage._merge) }() - case 604: try { try decoder.decodeSingularInt32Field(value: &_storage._message) }() - case 605: try { try decoder.decodeSingularInt32Field(value: &_storage._messageDepthLimit) }() - case 606: try { try decoder.decodeSingularInt32Field(value: &_storage._messageEncoding) }() - case 607: try { try decoder.decodeSingularInt32Field(value: &_storage._messageExtension) }() - case 608: try { try decoder.decodeSingularInt32Field(value: &_storage._messageImplementationBase) }() - case 609: try { try decoder.decodeSingularInt32Field(value: &_storage._messageOptions) }() - case 610: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSet) }() - case 611: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSetWireFormat) }() - case 612: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSize) }() - case 613: try { try decoder.decodeSingularInt32Field(value: &_storage._messageType) }() - case 614: try { try decoder.decodeSingularInt32Field(value: &_storage._method) }() - case 615: try { try decoder.decodeSingularInt32Field(value: &_storage._methodDescriptorProto) }() - case 616: try { try decoder.decodeSingularInt32Field(value: &_storage._methodOptions) }() - case 617: try { try decoder.decodeSingularInt32Field(value: &_storage._methods) }() - case 618: try { try decoder.decodeSingularInt32Field(value: &_storage._min) }() - case 619: try { try decoder.decodeSingularInt32Field(value: &_storage._minimumEdition) }() - case 620: try { try decoder.decodeSingularInt32Field(value: &_storage._minor) }() - case 621: try { try decoder.decodeSingularInt32Field(value: &_storage._mixin) }() - case 622: try { try decoder.decodeSingularInt32Field(value: &_storage._mixins) }() - case 623: try { try decoder.decodeSingularInt32Field(value: &_storage._modifier) }() - case 624: try { try decoder.decodeSingularInt32Field(value: &_storage._modify) }() - case 625: try { try decoder.decodeSingularInt32Field(value: &_storage._month) }() - case 626: try { try decoder.decodeSingularInt32Field(value: &_storage._msgExtension) }() - case 627: try { try decoder.decodeSingularInt32Field(value: &_storage._mutating) }() - case 628: try { try decoder.decodeSingularInt32Field(value: &_storage._n) }() - case 629: try { try decoder.decodeSingularInt32Field(value: &_storage._name) }() - case 630: try { try decoder.decodeSingularInt32Field(value: &_storage._nameDescription) }() - case 631: try { try decoder.decodeSingularInt32Field(value: &_storage._nameMap) }() - case 632: try { try decoder.decodeSingularInt32Field(value: &_storage._namePart) }() - case 633: try { try decoder.decodeSingularInt32Field(value: &_storage._names) }() - case 634: try { try decoder.decodeSingularInt32Field(value: &_storage._nanos) }() - case 635: try { try decoder.decodeSingularInt32Field(value: &_storage._negativeIntValue) }() - case 636: try { try decoder.decodeSingularInt32Field(value: &_storage._nestedType) }() - case 637: try { try decoder.decodeSingularInt32Field(value: &_storage._newL) }() - case 638: try { try decoder.decodeSingularInt32Field(value: &_storage._newList) }() - case 639: try { try decoder.decodeSingularInt32Field(value: &_storage._newValue) }() - case 640: try { try decoder.decodeSingularInt32Field(value: &_storage._next) }() - case 641: try { try decoder.decodeSingularInt32Field(value: &_storage._nextByte) }() - case 642: try { try decoder.decodeSingularInt32Field(value: &_storage._nextFieldNumber) }() - case 643: try { try decoder.decodeSingularInt32Field(value: &_storage._nextVarInt) }() - case 644: try { try decoder.decodeSingularInt32Field(value: &_storage._nil) }() - case 645: try { try decoder.decodeSingularInt32Field(value: &_storage._nilLiteral) }() - case 646: try { try decoder.decodeSingularInt32Field(value: &_storage._noStandardDescriptorAccessor) }() - case 647: try { try decoder.decodeSingularInt32Field(value: &_storage._nullValue) }() - case 648: try { try decoder.decodeSingularInt32Field(value: &_storage._number) }() - case 649: try { try decoder.decodeSingularInt32Field(value: &_storage._numberValue) }() - case 650: try { try decoder.decodeSingularInt32Field(value: &_storage._objcClassPrefix) }() - case 651: try { try decoder.decodeSingularInt32Field(value: &_storage._of) }() - case 652: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofDecl) }() - case 653: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofDescriptorProto) }() - case 654: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofIndex) }() - case 655: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofOptions) }() - case 656: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofs) }() - case 657: try { try decoder.decodeSingularInt32Field(value: &_storage._oneOfKind) }() - case 658: try { try decoder.decodeSingularInt32Field(value: &_storage._optimizeFor) }() - case 659: try { try decoder.decodeSingularInt32Field(value: &_storage._optimizeMode) }() - case 660: try { try decoder.decodeSingularInt32Field(value: &_storage._option) }() - case 661: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalEnumExtensionField) }() - case 662: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalExtensionField) }() - case 663: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalGroupExtensionField) }() - case 664: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalMessageExtensionField) }() - case 665: try { try decoder.decodeSingularInt32Field(value: &_storage._optionRetention) }() - case 666: try { try decoder.decodeSingularInt32Field(value: &_storage._options) }() - case 667: try { try decoder.decodeSingularInt32Field(value: &_storage._optionTargetType) }() - case 668: try { try decoder.decodeSingularInt32Field(value: &_storage._other) }() - case 669: try { try decoder.decodeSingularInt32Field(value: &_storage._others) }() - case 670: try { try decoder.decodeSingularInt32Field(value: &_storage._out) }() - case 671: try { try decoder.decodeSingularInt32Field(value: &_storage._outputType) }() - case 672: try { try decoder.decodeSingularInt32Field(value: &_storage._overridableFeatures) }() - case 673: try { try decoder.decodeSingularInt32Field(value: &_storage._p) }() - case 674: try { try decoder.decodeSingularInt32Field(value: &_storage._package) }() - case 675: try { try decoder.decodeSingularInt32Field(value: &_storage._packed) }() - case 676: try { try decoder.decodeSingularInt32Field(value: &_storage._packedEnumExtensionField) }() - case 677: try { try decoder.decodeSingularInt32Field(value: &_storage._packedExtensionField) }() - case 678: try { try decoder.decodeSingularInt32Field(value: &_storage._padding) }() - case 679: try { try decoder.decodeSingularInt32Field(value: &_storage._parent) }() - case 680: try { try decoder.decodeSingularInt32Field(value: &_storage._parse) }() - case 681: try { try decoder.decodeSingularInt32Field(value: &_storage._path) }() - case 682: try { try decoder.decodeSingularInt32Field(value: &_storage._paths) }() - case 683: try { try decoder.decodeSingularInt32Field(value: &_storage._payload) }() - case 684: try { try decoder.decodeSingularInt32Field(value: &_storage._payloadSize) }() - case 685: try { try decoder.decodeSingularInt32Field(value: &_storage._phpClassPrefix) }() - case 686: try { try decoder.decodeSingularInt32Field(value: &_storage._phpMetadataNamespace) }() - case 687: try { try decoder.decodeSingularInt32Field(value: &_storage._phpNamespace) }() - case 688: try { try decoder.decodeSingularInt32Field(value: &_storage._pos) }() - case 689: try { try decoder.decodeSingularInt32Field(value: &_storage._positiveIntValue) }() - case 690: try { try decoder.decodeSingularInt32Field(value: &_storage._prefix) }() - case 691: try { try decoder.decodeSingularInt32Field(value: &_storage._preserveProtoFieldNames) }() - case 692: try { try decoder.decodeSingularInt32Field(value: &_storage._preTraverse) }() - case 693: try { try decoder.decodeSingularInt32Field(value: &_storage._printUnknownFields) }() - case 694: try { try decoder.decodeSingularInt32Field(value: &_storage._proto2) }() - case 695: try { try decoder.decodeSingularInt32Field(value: &_storage._proto3DefaultValue) }() - case 696: try { try decoder.decodeSingularInt32Field(value: &_storage._proto3Optional) }() - case 697: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufApiversionCheck) }() - case 698: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufApiversion3) }() - case 699: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufBool) }() - case 700: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufBytes) }() - case 701: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufDouble) }() - case 702: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufEnumMap) }() - case 703: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufExtension) }() - case 704: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFixed32) }() - case 705: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFixed64) }() - case 706: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFloat) }() - case 707: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufInt32) }() - case 708: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufInt64) }() - case 709: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufMap) }() - case 710: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufMessageMap) }() - case 711: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSfixed32) }() - case 712: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSfixed64) }() - case 713: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSint32) }() - case 714: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSint64) }() - case 715: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufString) }() - case 716: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufUint32) }() - case 717: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufUint64) }() - case 718: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufExtensionFieldValues) }() - case 719: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFieldNumber) }() - case 720: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufGeneratedIsEqualTo) }() - case 721: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufNameMap) }() - case 722: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufNewField) }() - case 723: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufPackage) }() - case 724: try { try decoder.decodeSingularInt32Field(value: &_storage._protocol) }() - case 725: try { try decoder.decodeSingularInt32Field(value: &_storage._protoFieldName) }() - case 726: try { try decoder.decodeSingularInt32Field(value: &_storage._protoMessageName) }() - case 727: try { try decoder.decodeSingularInt32Field(value: &_storage._protoNameProviding) }() - case 728: try { try decoder.decodeSingularInt32Field(value: &_storage._protoPaths) }() - case 729: try { try decoder.decodeSingularInt32Field(value: &_storage._public) }() - case 730: try { try decoder.decodeSingularInt32Field(value: &_storage._publicDependency) }() - case 731: try { try decoder.decodeSingularInt32Field(value: &_storage._putBoolValue) }() - case 732: try { try decoder.decodeSingularInt32Field(value: &_storage._putBytesValue) }() - case 733: try { try decoder.decodeSingularInt32Field(value: &_storage._putDoubleValue) }() - case 734: try { try decoder.decodeSingularInt32Field(value: &_storage._putEnumValue) }() - case 735: try { try decoder.decodeSingularInt32Field(value: &_storage._putFixedUint32) }() - case 736: try { try decoder.decodeSingularInt32Field(value: &_storage._putFixedUint64) }() - case 737: try { try decoder.decodeSingularInt32Field(value: &_storage._putFloatValue) }() - case 738: try { try decoder.decodeSingularInt32Field(value: &_storage._putInt64) }() - case 739: try { try decoder.decodeSingularInt32Field(value: &_storage._putStringValue) }() - case 740: try { try decoder.decodeSingularInt32Field(value: &_storage._putUint64) }() - case 741: try { try decoder.decodeSingularInt32Field(value: &_storage._putUint64Hex) }() - case 742: try { try decoder.decodeSingularInt32Field(value: &_storage._putVarInt) }() - case 743: try { try decoder.decodeSingularInt32Field(value: &_storage._putZigZagVarInt) }() - case 744: try { try decoder.decodeSingularInt32Field(value: &_storage._pyGenericServices) }() - case 745: try { try decoder.decodeSingularInt32Field(value: &_storage._r) }() - case 746: try { try decoder.decodeSingularInt32Field(value: &_storage._rawChars) }() - case 747: try { try decoder.decodeSingularInt32Field(value: &_storage._rawRepresentable) }() - case 748: try { try decoder.decodeSingularInt32Field(value: &_storage._rawValue) }() - case 749: try { try decoder.decodeSingularInt32Field(value: &_storage._read4HexDigits) }() - case 750: try { try decoder.decodeSingularInt32Field(value: &_storage._readBytes) }() - case 751: try { try decoder.decodeSingularInt32Field(value: &_storage._register) }() - case 752: try { try decoder.decodeSingularInt32Field(value: &_storage._repeated) }() - case 753: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedEnumExtensionField) }() - case 754: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedExtensionField) }() - case 755: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedFieldEncoding) }() - case 756: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedGroupExtensionField) }() - case 757: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedMessageExtensionField) }() - case 758: try { try decoder.decodeSingularInt32Field(value: &_storage._repeating) }() - case 759: try { try decoder.decodeSingularInt32Field(value: &_storage._requestStreaming) }() - case 760: try { try decoder.decodeSingularInt32Field(value: &_storage._requestTypeURL) }() - case 761: try { try decoder.decodeSingularInt32Field(value: &_storage._requiredSize) }() - case 762: try { try decoder.decodeSingularInt32Field(value: &_storage._responseStreaming) }() - case 763: try { try decoder.decodeSingularInt32Field(value: &_storage._responseTypeURL) }() - case 764: try { try decoder.decodeSingularInt32Field(value: &_storage._result) }() - case 765: try { try decoder.decodeSingularInt32Field(value: &_storage._retention) }() - case 766: try { try decoder.decodeSingularInt32Field(value: &_storage._rethrows) }() - case 767: try { try decoder.decodeSingularInt32Field(value: &_storage._return) }() - case 768: try { try decoder.decodeSingularInt32Field(value: &_storage._returnType) }() - case 769: try { try decoder.decodeSingularInt32Field(value: &_storage._revision) }() - case 770: try { try decoder.decodeSingularInt32Field(value: &_storage._rhs) }() - case 771: try { try decoder.decodeSingularInt32Field(value: &_storage._root) }() - case 772: try { try decoder.decodeSingularInt32Field(value: &_storage._rubyPackage) }() - case 773: try { try decoder.decodeSingularInt32Field(value: &_storage._s) }() - case 774: try { try decoder.decodeSingularInt32Field(value: &_storage._sawBackslash) }() - case 775: try { try decoder.decodeSingularInt32Field(value: &_storage._sawSection4Characters) }() - case 776: try { try decoder.decodeSingularInt32Field(value: &_storage._sawSection5Characters) }() - case 777: try { try decoder.decodeSingularInt32Field(value: &_storage._scan) }() - case 778: try { try decoder.decodeSingularInt32Field(value: &_storage._scanner) }() - case 779: try { try decoder.decodeSingularInt32Field(value: &_storage._seconds) }() - case 780: try { try decoder.decodeSingularInt32Field(value: &_storage._self_p) }() - case 781: try { try decoder.decodeSingularInt32Field(value: &_storage._semantic) }() - case 782: try { try decoder.decodeSingularInt32Field(value: &_storage._sendable) }() - case 783: try { try decoder.decodeSingularInt32Field(value: &_storage._separator) }() - case 784: try { try decoder.decodeSingularInt32Field(value: &_storage._serialize) }() - case 785: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedBytes) }() - case 786: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedData) }() - case 787: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedSize) }() - case 788: try { try decoder.decodeSingularInt32Field(value: &_storage._serverStreaming) }() - case 789: try { try decoder.decodeSingularInt32Field(value: &_storage._service) }() - case 790: try { try decoder.decodeSingularInt32Field(value: &_storage._serviceDescriptorProto) }() - case 791: try { try decoder.decodeSingularInt32Field(value: &_storage._serviceOptions) }() - case 792: try { try decoder.decodeSingularInt32Field(value: &_storage._set) }() - case 793: try { try decoder.decodeSingularInt32Field(value: &_storage._setExtensionValue) }() - case 794: try { try decoder.decodeSingularInt32Field(value: &_storage._shift) }() - case 795: try { try decoder.decodeSingularInt32Field(value: &_storage._simpleExtensionMap) }() - case 796: try { try decoder.decodeSingularInt32Field(value: &_storage._size) }() - case 797: try { try decoder.decodeSingularInt32Field(value: &_storage._sizer) }() - case 798: try { try decoder.decodeSingularInt32Field(value: &_storage._source) }() - case 799: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceCodeInfo) }() - case 800: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceContext) }() - case 801: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceEncoding) }() - case 802: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceFile) }() - case 803: try { try decoder.decodeSingularInt32Field(value: &_storage._span) }() - case 804: try { try decoder.decodeSingularInt32Field(value: &_storage._split) }() - case 805: try { try decoder.decodeSingularInt32Field(value: &_storage._start) }() - case 806: try { try decoder.decodeSingularInt32Field(value: &_storage._startArray) }() - case 807: try { try decoder.decodeSingularInt32Field(value: &_storage._startArrayObject) }() - case 808: try { try decoder.decodeSingularInt32Field(value: &_storage._startField) }() - case 809: try { try decoder.decodeSingularInt32Field(value: &_storage._startIndex) }() - case 810: try { try decoder.decodeSingularInt32Field(value: &_storage._startMessageField) }() - case 811: try { try decoder.decodeSingularInt32Field(value: &_storage._startObject) }() - case 812: try { try decoder.decodeSingularInt32Field(value: &_storage._startRegularField) }() - case 813: try { try decoder.decodeSingularInt32Field(value: &_storage._state) }() - case 814: try { try decoder.decodeSingularInt32Field(value: &_storage._static) }() - case 815: try { try decoder.decodeSingularInt32Field(value: &_storage._staticString) }() - case 816: try { try decoder.decodeSingularInt32Field(value: &_storage._storage) }() - case 817: try { try decoder.decodeSingularInt32Field(value: &_storage._string) }() - case 818: try { try decoder.decodeSingularInt32Field(value: &_storage._stringLiteral) }() - case 819: try { try decoder.decodeSingularInt32Field(value: &_storage._stringLiteralType) }() - case 820: try { try decoder.decodeSingularInt32Field(value: &_storage._stringResult) }() - case 821: try { try decoder.decodeSingularInt32Field(value: &_storage._stringValue) }() - case 822: try { try decoder.decodeSingularInt32Field(value: &_storage._struct) }() - case 823: try { try decoder.decodeSingularInt32Field(value: &_storage._structValue) }() - case 824: try { try decoder.decodeSingularInt32Field(value: &_storage._subDecoder) }() - case 825: try { try decoder.decodeSingularInt32Field(value: &_storage._subscript) }() - case 826: try { try decoder.decodeSingularInt32Field(value: &_storage._subVisitor) }() - case 827: try { try decoder.decodeSingularInt32Field(value: &_storage._swift) }() - case 828: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftPrefix) }() - case 829: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftProtobufContiguousBytes) }() - case 830: try { try decoder.decodeSingularInt32Field(value: &_storage._syntax) }() - case 831: try { try decoder.decodeSingularInt32Field(value: &_storage._t) }() - case 832: try { try decoder.decodeSingularInt32Field(value: &_storage._tag) }() - case 833: try { try decoder.decodeSingularInt32Field(value: &_storage._targets) }() - case 834: try { try decoder.decodeSingularInt32Field(value: &_storage._terminator) }() - case 835: try { try decoder.decodeSingularInt32Field(value: &_storage._testDecoder) }() - case 836: try { try decoder.decodeSingularInt32Field(value: &_storage._text) }() - case 837: try { try decoder.decodeSingularInt32Field(value: &_storage._textDecoder) }() - case 838: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecoder) }() - case 839: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecodingError) }() - case 840: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecodingOptions) }() - case 841: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatEncodingOptions) }() - case 842: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatEncodingVisitor) }() - case 843: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatString) }() - case 844: try { try decoder.decodeSingularInt32Field(value: &_storage._throwOrIgnore) }() - case 845: try { try decoder.decodeSingularInt32Field(value: &_storage._throws) }() - case 846: try { try decoder.decodeSingularInt32Field(value: &_storage._timeInterval) }() - case 847: try { try decoder.decodeSingularInt32Field(value: &_storage._timeIntervalSince1970) }() - case 848: try { try decoder.decodeSingularInt32Field(value: &_storage._timeIntervalSinceReferenceDate) }() - case 849: try { try decoder.decodeSingularInt32Field(value: &_storage._timestamp) }() - case 850: try { try decoder.decodeSingularInt32Field(value: &_storage._total) }() - case 851: try { try decoder.decodeSingularInt32Field(value: &_storage._totalArrayDepth) }() - case 852: try { try decoder.decodeSingularInt32Field(value: &_storage._totalSize) }() - case 853: try { try decoder.decodeSingularInt32Field(value: &_storage._trailingComments) }() - case 854: try { try decoder.decodeSingularInt32Field(value: &_storage._traverse) }() - case 855: try { try decoder.decodeSingularInt32Field(value: &_storage._true) }() - case 856: try { try decoder.decodeSingularInt32Field(value: &_storage._try) }() - case 857: try { try decoder.decodeSingularInt32Field(value: &_storage._type) }() - case 858: try { try decoder.decodeSingularInt32Field(value: &_storage._typealias) }() - case 859: try { try decoder.decodeSingularInt32Field(value: &_storage._typeEnum) }() - case 860: try { try decoder.decodeSingularInt32Field(value: &_storage._typeName) }() - case 861: try { try decoder.decodeSingularInt32Field(value: &_storage._typePrefix) }() - case 862: try { try decoder.decodeSingularInt32Field(value: &_storage._typeStart) }() - case 863: try { try decoder.decodeSingularInt32Field(value: &_storage._typeUnknown) }() - case 864: try { try decoder.decodeSingularInt32Field(value: &_storage._typeURL) }() - case 865: try { try decoder.decodeSingularInt32Field(value: &_storage._uint32) }() - case 866: try { try decoder.decodeSingularInt32Field(value: &_storage._uint32Value) }() - case 867: try { try decoder.decodeSingularInt32Field(value: &_storage._uint64) }() - case 868: try { try decoder.decodeSingularInt32Field(value: &_storage._uint64Value) }() - case 869: try { try decoder.decodeSingularInt32Field(value: &_storage._uint8) }() - case 870: try { try decoder.decodeSingularInt32Field(value: &_storage._unchecked) }() - case 871: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarLiteral) }() - case 872: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarLiteralType) }() - case 873: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalars) }() - case 874: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarView) }() - case 875: try { try decoder.decodeSingularInt32Field(value: &_storage._uninterpretedOption) }() - case 876: try { try decoder.decodeSingularInt32Field(value: &_storage._union) }() - case 877: try { try decoder.decodeSingularInt32Field(value: &_storage._uniqueStorage) }() - case 878: try { try decoder.decodeSingularInt32Field(value: &_storage._unknown) }() - case 879: try { try decoder.decodeSingularInt32Field(value: &_storage._unknownFields_p) }() - case 880: try { try decoder.decodeSingularInt32Field(value: &_storage._unknownStorage) }() - case 881: try { try decoder.decodeSingularInt32Field(value: &_storage._unpackTo) }() - case 882: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeBufferPointer) }() - case 883: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeMutablePointer) }() - case 884: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeMutableRawBufferPointer) }() - case 885: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeRawBufferPointer) }() - case 886: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeRawPointer) }() - case 887: try { try decoder.decodeSingularInt32Field(value: &_storage._unverifiedLazy) }() - case 888: try { try decoder.decodeSingularInt32Field(value: &_storage._updatedOptions) }() - case 889: try { try decoder.decodeSingularInt32Field(value: &_storage._url) }() - case 890: try { try decoder.decodeSingularInt32Field(value: &_storage._useDeterministicOrdering) }() - case 891: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8) }() - case 892: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8Ptr) }() - case 893: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8ToDouble) }() - case 894: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8Validation) }() - case 895: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8View) }() - case 896: try { try decoder.decodeSingularInt32Field(value: &_storage._v) }() - case 897: try { try decoder.decodeSingularInt32Field(value: &_storage._value) }() - case 898: try { try decoder.decodeSingularInt32Field(value: &_storage._valueField) }() - case 899: try { try decoder.decodeSingularInt32Field(value: &_storage._values) }() - case 900: try { try decoder.decodeSingularInt32Field(value: &_storage._valueType) }() - case 901: try { try decoder.decodeSingularInt32Field(value: &_storage._var) }() - case 902: try { try decoder.decodeSingularInt32Field(value: &_storage._verification) }() - case 903: try { try decoder.decodeSingularInt32Field(value: &_storage._verificationState) }() - case 904: try { try decoder.decodeSingularInt32Field(value: &_storage._version) }() - case 905: try { try decoder.decodeSingularInt32Field(value: &_storage._versionString) }() - case 906: try { try decoder.decodeSingularInt32Field(value: &_storage._visitExtensionFields) }() - case 907: try { try decoder.decodeSingularInt32Field(value: &_storage._visitExtensionFieldsAsMessageSet) }() - case 908: try { try decoder.decodeSingularInt32Field(value: &_storage._visitMapField) }() - case 909: try { try decoder.decodeSingularInt32Field(value: &_storage._visitor) }() - case 910: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPacked) }() - case 911: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedBoolField) }() - case 912: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedDoubleField) }() - case 913: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedEnumField) }() - case 914: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFixed32Field) }() - case 915: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFixed64Field) }() - case 916: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFloatField) }() - case 917: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedInt32Field) }() - case 918: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedInt64Field) }() - case 919: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSfixed32Field) }() - case 920: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSfixed64Field) }() - case 921: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSint32Field) }() - case 922: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSint64Field) }() - case 923: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedUint32Field) }() - case 924: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedUint64Field) }() - case 925: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeated) }() - case 926: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedBoolField) }() - case 927: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedBytesField) }() - case 928: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedDoubleField) }() - case 929: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedEnumField) }() - case 930: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFixed32Field) }() - case 931: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFixed64Field) }() - case 932: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFloatField) }() - case 933: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedGroupField) }() - case 934: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedInt32Field) }() - case 935: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedInt64Field) }() - case 936: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedMessageField) }() - case 937: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSfixed32Field) }() - case 938: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSfixed64Field) }() - case 939: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSint32Field) }() - case 940: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSint64Field) }() - case 941: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedStringField) }() - case 942: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedUint32Field) }() - case 943: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedUint64Field) }() - case 944: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingular) }() - case 945: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularBoolField) }() - case 946: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularBytesField) }() - case 947: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularDoubleField) }() - case 948: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularEnumField) }() - case 949: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFixed32Field) }() - case 950: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFixed64Field) }() - case 951: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFloatField) }() - case 952: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularGroupField) }() - case 953: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularInt32Field) }() - case 954: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularInt64Field) }() - case 955: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularMessageField) }() - case 956: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSfixed32Field) }() - case 957: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSfixed64Field) }() - case 958: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSint32Field) }() - case 959: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSint64Field) }() - case 960: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularStringField) }() - case 961: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularUint32Field) }() - case 962: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularUint64Field) }() - case 963: try { try decoder.decodeSingularInt32Field(value: &_storage._visitUnknown) }() - case 964: try { try decoder.decodeSingularInt32Field(value: &_storage._wasDecoded) }() - case 965: try { try decoder.decodeSingularInt32Field(value: &_storage._weak) }() - case 966: try { try decoder.decodeSingularInt32Field(value: &_storage._weakDependency) }() - case 967: try { try decoder.decodeSingularInt32Field(value: &_storage._where) }() - case 968: try { try decoder.decodeSingularInt32Field(value: &_storage._wireFormat) }() - case 969: try { try decoder.decodeSingularInt32Field(value: &_storage._with) }() - case 970: try { try decoder.decodeSingularInt32Field(value: &_storage._withUnsafeBytes) }() - case 971: try { try decoder.decodeSingularInt32Field(value: &_storage._withUnsafeMutableBytes) }() - case 972: try { try decoder.decodeSingularInt32Field(value: &_storage._work) }() - case 973: try { try decoder.decodeSingularInt32Field(value: &_storage._wrapped) }() - case 974: try { try decoder.decodeSingularInt32Field(value: &_storage._wrappedType) }() - case 975: try { try decoder.decodeSingularInt32Field(value: &_storage._wrappedValue) }() - case 976: try { try decoder.decodeSingularInt32Field(value: &_storage._written) }() - case 977: try { try decoder.decodeSingularInt32Field(value: &_storage._yday) }() + case 12: try { try decoder.decodeSingularInt32Field(value: &_storage._anyTypeUrlnotRegistered) }() + case 13: try { try decoder.decodeSingularInt32Field(value: &_storage._anyUnpackError) }() + case 14: try { try decoder.decodeSingularInt32Field(value: &_storage._api) }() + case 15: try { try decoder.decodeSingularInt32Field(value: &_storage._appended) }() + case 16: try { try decoder.decodeSingularInt32Field(value: &_storage._appendUintHex) }() + case 17: try { try decoder.decodeSingularInt32Field(value: &_storage._appendUnknown) }() + case 18: try { try decoder.decodeSingularInt32Field(value: &_storage._areAllInitialized) }() + case 19: try { try decoder.decodeSingularInt32Field(value: &_storage._array) }() + case 20: try { try decoder.decodeSingularInt32Field(value: &_storage._arrayDepth) }() + case 21: try { try decoder.decodeSingularInt32Field(value: &_storage._arrayLiteral) }() + case 22: try { try decoder.decodeSingularInt32Field(value: &_storage._arraySeparator) }() + case 23: try { try decoder.decodeSingularInt32Field(value: &_storage._as) }() + case 24: try { try decoder.decodeSingularInt32Field(value: &_storage._asciiOpenCurlyBracket) }() + case 25: try { try decoder.decodeSingularInt32Field(value: &_storage._asciiZero) }() + case 26: try { try decoder.decodeSingularInt32Field(value: &_storage._async) }() + case 27: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncIterator) }() + case 28: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncIteratorProtocol) }() + case 29: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncMessageSequence) }() + case 30: try { try decoder.decodeSingularInt32Field(value: &_storage._available) }() + case 31: try { try decoder.decodeSingularInt32Field(value: &_storage._b) }() + case 32: try { try decoder.decodeSingularInt32Field(value: &_storage._base) }() + case 33: try { try decoder.decodeSingularInt32Field(value: &_storage._base64Values) }() + case 34: try { try decoder.decodeSingularInt32Field(value: &_storage._baseAddress) }() + case 35: try { try decoder.decodeSingularInt32Field(value: &_storage._baseType) }() + case 36: try { try decoder.decodeSingularInt32Field(value: &_storage._begin) }() + case 37: try { try decoder.decodeSingularInt32Field(value: &_storage._binary) }() + case 38: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecoder) }() + case 39: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecoding) }() + case 40: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecodingError) }() + case 41: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecodingOptions) }() + case 42: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDelimited) }() + case 43: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncoder) }() + case 44: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncoding) }() + case 45: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingError) }() + case 46: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingMessageSetSizeVisitor) }() + case 47: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingMessageSetVisitor) }() + case 48: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingOptions) }() + case 49: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingSizeVisitor) }() + case 50: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingVisitor) }() + case 51: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryOptions) }() + case 52: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryProtobufDelimitedMessages) }() + case 53: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryStreamDecoding) }() + case 54: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryStreamDecodingError) }() + case 55: try { try decoder.decodeSingularInt32Field(value: &_storage._bitPattern) }() + case 56: try { try decoder.decodeSingularInt32Field(value: &_storage._body) }() + case 57: try { try decoder.decodeSingularInt32Field(value: &_storage._bool) }() + case 58: try { try decoder.decodeSingularInt32Field(value: &_storage._booleanLiteral) }() + case 59: try { try decoder.decodeSingularInt32Field(value: &_storage._booleanLiteralType) }() + case 60: try { try decoder.decodeSingularInt32Field(value: &_storage._boolValue) }() + case 61: try { try decoder.decodeSingularInt32Field(value: &_storage._buffer) }() + case 62: try { try decoder.decodeSingularInt32Field(value: &_storage._bytes) }() + case 63: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesInGroup) }() + case 64: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesNeeded) }() + case 65: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesRead) }() + case 66: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesValue) }() + case 67: try { try decoder.decodeSingularInt32Field(value: &_storage._c) }() + case 68: try { try decoder.decodeSingularInt32Field(value: &_storage._capitalizeNext) }() + case 69: try { try decoder.decodeSingularInt32Field(value: &_storage._cardinality) }() + case 70: try { try decoder.decodeSingularInt32Field(value: &_storage._caseIterable) }() + case 71: try { try decoder.decodeSingularInt32Field(value: &_storage._ccEnableArenas) }() + case 72: try { try decoder.decodeSingularInt32Field(value: &_storage._ccGenericServices) }() + case 73: try { try decoder.decodeSingularInt32Field(value: &_storage._character) }() + case 74: try { try decoder.decodeSingularInt32Field(value: &_storage._chars) }() + case 75: try { try decoder.decodeSingularInt32Field(value: &_storage._chunk) }() + case 76: try { try decoder.decodeSingularInt32Field(value: &_storage._class) }() + case 77: try { try decoder.decodeSingularInt32Field(value: &_storage._clearAggregateValue_p) }() + case 78: try { try decoder.decodeSingularInt32Field(value: &_storage._clearAllowAlias_p) }() + case 79: try { try decoder.decodeSingularInt32Field(value: &_storage._clearBegin_p) }() + case 80: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCcEnableArenas_p) }() + case 81: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCcGenericServices_p) }() + case 82: try { try decoder.decodeSingularInt32Field(value: &_storage._clearClientStreaming_p) }() + case 83: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCsharpNamespace_p) }() + case 84: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCtype_p) }() + case 85: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDebugRedact_p) }() + case 86: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDefaultValue_p) }() + case 87: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecated_p) }() + case 88: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecatedLegacyJsonFieldConflicts_p) }() + case 89: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecationWarning_p) }() + case 90: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDoubleValue_p) }() + case 91: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEdition_p) }() + case 92: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionDeprecated_p) }() + case 93: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionIntroduced_p) }() + case 94: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionRemoved_p) }() + case 95: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEnd_p) }() + case 96: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEnumType_p) }() + case 97: try { try decoder.decodeSingularInt32Field(value: &_storage._clearExtendee_p) }() + case 98: try { try decoder.decodeSingularInt32Field(value: &_storage._clearExtensionValue_p) }() + case 99: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFeatures_p) }() + case 100: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFeatureSupport_p) }() + case 101: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFieldPresence_p) }() + case 102: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFixedFeatures_p) }() + case 103: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFullName_p) }() + case 104: try { try decoder.decodeSingularInt32Field(value: &_storage._clearGoPackage_p) }() + case 105: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIdempotencyLevel_p) }() + case 106: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIdentifierValue_p) }() + case 107: try { try decoder.decodeSingularInt32Field(value: &_storage._clearInputType_p) }() + case 108: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIsExtension_p) }() + case 109: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaGenerateEqualsAndHash_p) }() + case 110: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaGenericServices_p) }() + case 111: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaMultipleFiles_p) }() + case 112: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaOuterClassname_p) }() + case 113: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaPackage_p) }() + case 114: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaStringCheckUtf8_p) }() + case 115: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJsonFormat_p) }() + case 116: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJsonName_p) }() + case 117: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJstype_p) }() + case 118: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLabel_p) }() + case 119: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLazy_p) }() + case 120: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLeadingComments_p) }() + case 121: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMapEntry_p) }() + case 122: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMaximumEdition_p) }() + case 123: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMessageEncoding_p) }() + case 124: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMessageSetWireFormat_p) }() + case 125: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMinimumEdition_p) }() + case 126: try { try decoder.decodeSingularInt32Field(value: &_storage._clearName_p) }() + case 127: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNamePart_p) }() + case 128: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNegativeIntValue_p) }() + case 129: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNoStandardDescriptorAccessor_p) }() + case 130: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNumber_p) }() + case 131: try { try decoder.decodeSingularInt32Field(value: &_storage._clearObjcClassPrefix_p) }() + case 132: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOneofIndex_p) }() + case 133: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOptimizeFor_p) }() + case 134: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOptions_p) }() + case 135: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOutputType_p) }() + case 136: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOverridableFeatures_p) }() + case 137: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPackage_p) }() + case 138: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPacked_p) }() + case 139: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpClassPrefix_p) }() + case 140: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpMetadataNamespace_p) }() + case 141: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpNamespace_p) }() + case 142: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPositiveIntValue_p) }() + case 143: try { try decoder.decodeSingularInt32Field(value: &_storage._clearProto3Optional_p) }() + case 144: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPyGenericServices_p) }() + case 145: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRepeated_p) }() + case 146: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRepeatedFieldEncoding_p) }() + case 147: try { try decoder.decodeSingularInt32Field(value: &_storage._clearReserved_p) }() + case 148: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRetention_p) }() + case 149: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRubyPackage_p) }() + case 150: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSemantic_p) }() + case 151: try { try decoder.decodeSingularInt32Field(value: &_storage._clearServerStreaming_p) }() + case 152: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceCodeInfo_p) }() + case 153: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceContext_p) }() + case 154: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceFile_p) }() + case 155: try { try decoder.decodeSingularInt32Field(value: &_storage._clearStart_p) }() + case 156: try { try decoder.decodeSingularInt32Field(value: &_storage._clearStringValue_p) }() + case 157: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSwiftPrefix_p) }() + case 158: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSyntax_p) }() + case 159: try { try decoder.decodeSingularInt32Field(value: &_storage._clearTrailingComments_p) }() + case 160: try { try decoder.decodeSingularInt32Field(value: &_storage._clearType_p) }() + case 161: try { try decoder.decodeSingularInt32Field(value: &_storage._clearTypeName_p) }() + case 162: try { try decoder.decodeSingularInt32Field(value: &_storage._clearUnverifiedLazy_p) }() + case 163: try { try decoder.decodeSingularInt32Field(value: &_storage._clearUtf8Validation_p) }() + case 164: try { try decoder.decodeSingularInt32Field(value: &_storage._clearValue_p) }() + case 165: try { try decoder.decodeSingularInt32Field(value: &_storage._clearVerification_p) }() + case 166: try { try decoder.decodeSingularInt32Field(value: &_storage._clearWeak_p) }() + case 167: try { try decoder.decodeSingularInt32Field(value: &_storage._clientStreaming) }() + case 168: try { try decoder.decodeSingularInt32Field(value: &_storage._code) }() + case 169: try { try decoder.decodeSingularInt32Field(value: &_storage._codePoint) }() + case 170: try { try decoder.decodeSingularInt32Field(value: &_storage._codeUnits) }() + case 171: try { try decoder.decodeSingularInt32Field(value: &_storage._collection) }() + case 172: try { try decoder.decodeSingularInt32Field(value: &_storage._com) }() + case 173: try { try decoder.decodeSingularInt32Field(value: &_storage._comma) }() + case 174: try { try decoder.decodeSingularInt32Field(value: &_storage._consumedBytes) }() + case 175: try { try decoder.decodeSingularInt32Field(value: &_storage._contentsOf) }() + case 176: try { try decoder.decodeSingularInt32Field(value: &_storage._copy) }() + case 177: try { try decoder.decodeSingularInt32Field(value: &_storage._count) }() + case 178: try { try decoder.decodeSingularInt32Field(value: &_storage._countVarintsInBuffer) }() + case 179: try { try decoder.decodeSingularInt32Field(value: &_storage._csharpNamespace) }() + case 180: try { try decoder.decodeSingularInt32Field(value: &_storage._ctype) }() + case 181: try { try decoder.decodeSingularInt32Field(value: &_storage._customCodable) }() + case 182: try { try decoder.decodeSingularInt32Field(value: &_storage._customDebugStringConvertible) }() + case 183: try { try decoder.decodeSingularInt32Field(value: &_storage._customStringConvertible) }() + case 184: try { try decoder.decodeSingularInt32Field(value: &_storage._d) }() + case 185: try { try decoder.decodeSingularInt32Field(value: &_storage._data) }() + case 186: try { try decoder.decodeSingularInt32Field(value: &_storage._dataResult) }() + case 187: try { try decoder.decodeSingularInt32Field(value: &_storage._date) }() + case 188: try { try decoder.decodeSingularInt32Field(value: &_storage._daySec) }() + case 189: try { try decoder.decodeSingularInt32Field(value: &_storage._daysSinceEpoch) }() + case 190: try { try decoder.decodeSingularInt32Field(value: &_storage._debugDescription_p) }() + case 191: try { try decoder.decodeSingularInt32Field(value: &_storage._debugRedact) }() + case 192: try { try decoder.decodeSingularInt32Field(value: &_storage._declaration) }() + case 193: try { try decoder.decodeSingularInt32Field(value: &_storage._decoded) }() + case 194: try { try decoder.decodeSingularInt32Field(value: &_storage._decodedFromJsonnull) }() + case 195: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeExtensionField) }() + case 196: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeExtensionFieldsAsMessageSet) }() + case 197: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeJson) }() + case 198: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeMapField) }() + case 199: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeMessage) }() + case 200: try { try decoder.decodeSingularInt32Field(value: &_storage._decoder) }() + case 201: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeated) }() + case 202: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedBoolField) }() + case 203: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedBytesField) }() + case 204: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedDoubleField) }() + case 205: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedEnumField) }() + case 206: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFixed32Field) }() + case 207: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFixed64Field) }() + case 208: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFloatField) }() + case 209: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedGroupField) }() + case 210: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedInt32Field) }() + case 211: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedInt64Field) }() + case 212: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedMessageField) }() + case 213: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSfixed32Field) }() + case 214: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSfixed64Field) }() + case 215: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSint32Field) }() + case 216: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSint64Field) }() + case 217: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedStringField) }() + case 218: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedUint32Field) }() + case 219: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedUint64Field) }() + case 220: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingular) }() + case 221: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularBoolField) }() + case 222: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularBytesField) }() + case 223: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularDoubleField) }() + case 224: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularEnumField) }() + case 225: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFixed32Field) }() + case 226: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFixed64Field) }() + case 227: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFloatField) }() + case 228: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularGroupField) }() + case 229: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularInt32Field) }() + case 230: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularInt64Field) }() + case 231: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularMessageField) }() + case 232: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSfixed32Field) }() + case 233: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSfixed64Field) }() + case 234: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSint32Field) }() + case 235: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSint64Field) }() + case 236: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularStringField) }() + case 237: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularUint32Field) }() + case 238: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularUint64Field) }() + case 239: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeTextFormat) }() + case 240: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultAnyTypeUrlprefix) }() + case 241: try { try decoder.decodeSingularInt32Field(value: &_storage._defaults) }() + case 242: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultValue) }() + case 243: try { try decoder.decodeSingularInt32Field(value: &_storage._dependency) }() + case 244: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecated) }() + case 245: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecatedLegacyJsonFieldConflicts) }() + case 246: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecationWarning) }() + case 247: try { try decoder.decodeSingularInt32Field(value: &_storage._description_p) }() + case 248: try { try decoder.decodeSingularInt32Field(value: &_storage._descriptorProto) }() + case 249: try { try decoder.decodeSingularInt32Field(value: &_storage._dictionary) }() + case 250: try { try decoder.decodeSingularInt32Field(value: &_storage._dictionaryLiteral) }() + case 251: try { try decoder.decodeSingularInt32Field(value: &_storage._digit) }() + case 252: try { try decoder.decodeSingularInt32Field(value: &_storage._digit0) }() + case 253: try { try decoder.decodeSingularInt32Field(value: &_storage._digit1) }() + case 254: try { try decoder.decodeSingularInt32Field(value: &_storage._digitCount) }() + case 255: try { try decoder.decodeSingularInt32Field(value: &_storage._digits) }() + case 256: try { try decoder.decodeSingularInt32Field(value: &_storage._digitValue) }() + case 257: try { try decoder.decodeSingularInt32Field(value: &_storage._discardableResult) }() + case 258: try { try decoder.decodeSingularInt32Field(value: &_storage._discardUnknownFields) }() + case 259: try { try decoder.decodeSingularInt32Field(value: &_storage._double) }() + case 260: try { try decoder.decodeSingularInt32Field(value: &_storage._doubleValue) }() + case 261: try { try decoder.decodeSingularInt32Field(value: &_storage._duration) }() + case 262: try { try decoder.decodeSingularInt32Field(value: &_storage._e) }() + case 263: try { try decoder.decodeSingularInt32Field(value: &_storage._edition) }() + case 264: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDefault) }() + case 265: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDefaults) }() + case 266: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDeprecated) }() + case 267: try { try decoder.decodeSingularInt32Field(value: &_storage._editionIntroduced) }() + case 268: try { try decoder.decodeSingularInt32Field(value: &_storage._editionRemoved) }() + case 269: try { try decoder.decodeSingularInt32Field(value: &_storage._element) }() + case 270: try { try decoder.decodeSingularInt32Field(value: &_storage._elements) }() + case 271: try { try decoder.decodeSingularInt32Field(value: &_storage._emitExtensionFieldName) }() + case 272: try { try decoder.decodeSingularInt32Field(value: &_storage._emitFieldName) }() + case 273: try { try decoder.decodeSingularInt32Field(value: &_storage._emitFieldNumber) }() + case 274: try { try decoder.decodeSingularInt32Field(value: &_storage._empty) }() + case 275: try { try decoder.decodeSingularInt32Field(value: &_storage._encodeAsBytes) }() + case 276: try { try decoder.decodeSingularInt32Field(value: &_storage._encoded) }() + case 277: try { try decoder.decodeSingularInt32Field(value: &_storage._encodedJsonstring) }() + case 278: try { try decoder.decodeSingularInt32Field(value: &_storage._encodedSize) }() + case 279: try { try decoder.decodeSingularInt32Field(value: &_storage._encodeField) }() + case 280: try { try decoder.decodeSingularInt32Field(value: &_storage._encoder) }() + case 281: try { try decoder.decodeSingularInt32Field(value: &_storage._end) }() + case 282: try { try decoder.decodeSingularInt32Field(value: &_storage._endArray) }() + case 283: try { try decoder.decodeSingularInt32Field(value: &_storage._endMessageField) }() + case 284: try { try decoder.decodeSingularInt32Field(value: &_storage._endObject) }() + case 285: try { try decoder.decodeSingularInt32Field(value: &_storage._endRegularField) }() + case 286: try { try decoder.decodeSingularInt32Field(value: &_storage._enum) }() + case 287: try { try decoder.decodeSingularInt32Field(value: &_storage._enumDescriptorProto) }() + case 288: try { try decoder.decodeSingularInt32Field(value: &_storage._enumOptions) }() + case 289: try { try decoder.decodeSingularInt32Field(value: &_storage._enumReservedRange) }() + case 290: try { try decoder.decodeSingularInt32Field(value: &_storage._enumType) }() + case 291: try { try decoder.decodeSingularInt32Field(value: &_storage._enumvalue) }() + case 292: try { try decoder.decodeSingularInt32Field(value: &_storage._enumValueDescriptorProto) }() + case 293: try { try decoder.decodeSingularInt32Field(value: &_storage._enumValueOptions) }() + case 294: try { try decoder.decodeSingularInt32Field(value: &_storage._equatable) }() + case 295: try { try decoder.decodeSingularInt32Field(value: &_storage._error) }() + case 296: try { try decoder.decodeSingularInt32Field(value: &_storage._expressibleByArrayLiteral) }() + case 297: try { try decoder.decodeSingularInt32Field(value: &_storage._expressibleByDictionaryLiteral) }() + case 298: try { try decoder.decodeSingularInt32Field(value: &_storage._ext) }() + case 299: try { try decoder.decodeSingularInt32Field(value: &_storage._extDecoder) }() + case 300: try { try decoder.decodeSingularInt32Field(value: &_storage._extendedGraphemeClusterLiteral) }() + case 301: try { try decoder.decodeSingularInt32Field(value: &_storage._extendedGraphemeClusterLiteralType) }() + case 302: try { try decoder.decodeSingularInt32Field(value: &_storage._extendee) }() + case 303: try { try decoder.decodeSingularInt32Field(value: &_storage._extensibleMessage) }() + case 304: try { try decoder.decodeSingularInt32Field(value: &_storage._extension) }() + case 305: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionField) }() + case 306: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionFieldNumber) }() + case 307: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionFieldValueSet) }() + case 308: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionMap) }() + case 309: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionRange) }() + case 310: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionRangeOptions) }() + case 311: try { try decoder.decodeSingularInt32Field(value: &_storage._extensions) }() + case 312: try { try decoder.decodeSingularInt32Field(value: &_storage._extras) }() + case 313: try { try decoder.decodeSingularInt32Field(value: &_storage._f) }() + case 314: try { try decoder.decodeSingularInt32Field(value: &_storage._false) }() + case 315: try { try decoder.decodeSingularInt32Field(value: &_storage._features) }() + case 316: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSet) }() + case 317: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSetDefaults) }() + case 318: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSetEditionDefault) }() + case 319: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSupport) }() + case 320: try { try decoder.decodeSingularInt32Field(value: &_storage._field) }() + case 321: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldData) }() + case 322: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldDescriptorProto) }() + case 323: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldMask) }() + case 324: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldName) }() + case 325: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNameCount) }() + case 326: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNum) }() + case 327: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNumber) }() + case 328: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNumberForProto) }() + case 329: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldOptions) }() + case 330: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldPresence) }() + case 331: try { try decoder.decodeSingularInt32Field(value: &_storage._fields) }() + case 332: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldSize) }() + case 333: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldTag) }() + case 334: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldType) }() + case 335: try { try decoder.decodeSingularInt32Field(value: &_storage._file) }() + case 336: try { try decoder.decodeSingularInt32Field(value: &_storage._fileDescriptorProto) }() + case 337: try { try decoder.decodeSingularInt32Field(value: &_storage._fileDescriptorSet) }() + case 338: try { try decoder.decodeSingularInt32Field(value: &_storage._fileName) }() + case 339: try { try decoder.decodeSingularInt32Field(value: &_storage._fileOptions) }() + case 340: try { try decoder.decodeSingularInt32Field(value: &_storage._filter) }() + case 341: try { try decoder.decodeSingularInt32Field(value: &_storage._final) }() + case 342: try { try decoder.decodeSingularInt32Field(value: &_storage._finiteOnly) }() + case 343: try { try decoder.decodeSingularInt32Field(value: &_storage._first) }() + case 344: try { try decoder.decodeSingularInt32Field(value: &_storage._firstItem) }() + case 345: try { try decoder.decodeSingularInt32Field(value: &_storage._fixedFeatures) }() + case 346: try { try decoder.decodeSingularInt32Field(value: &_storage._float) }() + case 347: try { try decoder.decodeSingularInt32Field(value: &_storage._floatLiteral) }() + case 348: try { try decoder.decodeSingularInt32Field(value: &_storage._floatLiteralType) }() + case 349: try { try decoder.decodeSingularInt32Field(value: &_storage._floatValue) }() + case 350: try { try decoder.decodeSingularInt32Field(value: &_storage._forMessageName) }() + case 351: try { try decoder.decodeSingularInt32Field(value: &_storage._formUnion) }() + case 352: try { try decoder.decodeSingularInt32Field(value: &_storage._forReadingFrom) }() + case 353: try { try decoder.decodeSingularInt32Field(value: &_storage._forTypeURL) }() + case 354: try { try decoder.decodeSingularInt32Field(value: &_storage._forwardParser) }() + case 355: try { try decoder.decodeSingularInt32Field(value: &_storage._forWritingInto) }() + case 356: try { try decoder.decodeSingularInt32Field(value: &_storage._from) }() + case 357: try { try decoder.decodeSingularInt32Field(value: &_storage._fromAscii2) }() + case 358: try { try decoder.decodeSingularInt32Field(value: &_storage._fromAscii4) }() + case 359: try { try decoder.decodeSingularInt32Field(value: &_storage._fromByteOffset) }() + case 360: try { try decoder.decodeSingularInt32Field(value: &_storage._fromHexDigit) }() + case 361: try { try decoder.decodeSingularInt32Field(value: &_storage._fullName) }() + case 362: try { try decoder.decodeSingularInt32Field(value: &_storage._func) }() + case 363: try { try decoder.decodeSingularInt32Field(value: &_storage._function) }() + case 364: try { try decoder.decodeSingularInt32Field(value: &_storage._g) }() + case 365: try { try decoder.decodeSingularInt32Field(value: &_storage._generatedCodeInfo) }() + case 366: try { try decoder.decodeSingularInt32Field(value: &_storage._get) }() + case 367: try { try decoder.decodeSingularInt32Field(value: &_storage._getExtensionValue) }() + case 368: try { try decoder.decodeSingularInt32Field(value: &_storage._googleapis) }() + case 369: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufAny) }() + case 370: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufApi) }() + case 371: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufBoolValue) }() + case 372: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufBytesValue) }() + case 373: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDescriptorProto) }() + case 374: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDoubleValue) }() + case 375: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDuration) }() + case 376: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEdition) }() + case 377: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEmpty) }() + case 378: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnum) }() + case 379: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumDescriptorProto) }() + case 380: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumOptions) }() + case 381: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValue) }() + case 382: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValueDescriptorProto) }() + case 383: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValueOptions) }() + case 384: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufExtensionRangeOptions) }() + case 385: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFeatureSet) }() + case 386: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFeatureSetDefaults) }() + case 387: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufField) }() + case 388: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldDescriptorProto) }() + case 389: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldMask) }() + case 390: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldOptions) }() + case 391: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileDescriptorProto) }() + case 392: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileDescriptorSet) }() + case 393: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileOptions) }() + case 394: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFloatValue) }() + case 395: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufGeneratedCodeInfo) }() + case 396: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufInt32Value) }() + case 397: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufInt64Value) }() + case 398: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufListValue) }() + case 399: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMessageOptions) }() + case 400: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethod) }() + case 401: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethodDescriptorProto) }() + case 402: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethodOptions) }() + case 403: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMixin) }() + case 404: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufNullValue) }() + case 405: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOneofDescriptorProto) }() + case 406: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOneofOptions) }() + case 407: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOption) }() + case 408: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufServiceDescriptorProto) }() + case 409: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufServiceOptions) }() + case 410: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSourceCodeInfo) }() + case 411: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSourceContext) }() + case 412: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufStringValue) }() + case 413: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufStruct) }() + case 414: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSyntax) }() + case 415: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufTimestamp) }() + case 416: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufType) }() + case 417: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUint32Value) }() + case 418: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUint64Value) }() + case 419: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUninterpretedOption) }() + case 420: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufValue) }() + case 421: try { try decoder.decodeSingularInt32Field(value: &_storage._goPackage) }() + case 422: try { try decoder.decodeSingularInt32Field(value: &_storage._group) }() + case 423: try { try decoder.decodeSingularInt32Field(value: &_storage._groupFieldNumberStack) }() + case 424: try { try decoder.decodeSingularInt32Field(value: &_storage._groupSize) }() + case 425: try { try decoder.decodeSingularInt32Field(value: &_storage._hadOneofValue) }() + case 426: try { try decoder.decodeSingularInt32Field(value: &_storage._handleConflictingOneOf) }() + case 427: try { try decoder.decodeSingularInt32Field(value: &_storage._hasAggregateValue_p) }() + case 428: try { try decoder.decodeSingularInt32Field(value: &_storage._hasAllowAlias_p) }() + case 429: try { try decoder.decodeSingularInt32Field(value: &_storage._hasBegin_p) }() + case 430: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCcEnableArenas_p) }() + case 431: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCcGenericServices_p) }() + case 432: try { try decoder.decodeSingularInt32Field(value: &_storage._hasClientStreaming_p) }() + case 433: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCsharpNamespace_p) }() + case 434: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCtype_p) }() + case 435: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDebugRedact_p) }() + case 436: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDefaultValue_p) }() + case 437: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecated_p) }() + case 438: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecatedLegacyJsonFieldConflicts_p) }() + case 439: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecationWarning_p) }() + case 440: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDoubleValue_p) }() + case 441: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEdition_p) }() + case 442: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionDeprecated_p) }() + case 443: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionIntroduced_p) }() + case 444: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionRemoved_p) }() + case 445: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEnd_p) }() + case 446: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEnumType_p) }() + case 447: try { try decoder.decodeSingularInt32Field(value: &_storage._hasExtendee_p) }() + case 448: try { try decoder.decodeSingularInt32Field(value: &_storage._hasExtensionValue_p) }() + case 449: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFeatures_p) }() + case 450: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFeatureSupport_p) }() + case 451: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFieldPresence_p) }() + case 452: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFixedFeatures_p) }() + case 453: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFullName_p) }() + case 454: try { try decoder.decodeSingularInt32Field(value: &_storage._hasGoPackage_p) }() + case 455: try { try decoder.decodeSingularInt32Field(value: &_storage._hash) }() + case 456: try { try decoder.decodeSingularInt32Field(value: &_storage._hashable) }() + case 457: try { try decoder.decodeSingularInt32Field(value: &_storage._hasher) }() + case 458: try { try decoder.decodeSingularInt32Field(value: &_storage._hashVisitor) }() + case 459: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIdempotencyLevel_p) }() + case 460: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIdentifierValue_p) }() + case 461: try { try decoder.decodeSingularInt32Field(value: &_storage._hasInputType_p) }() + case 462: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIsExtension_p) }() + case 463: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaGenerateEqualsAndHash_p) }() + case 464: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaGenericServices_p) }() + case 465: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaMultipleFiles_p) }() + case 466: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaOuterClassname_p) }() + case 467: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaPackage_p) }() + case 468: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaStringCheckUtf8_p) }() + case 469: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJsonFormat_p) }() + case 470: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJsonName_p) }() + case 471: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJstype_p) }() + case 472: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLabel_p) }() + case 473: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLazy_p) }() + case 474: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLeadingComments_p) }() + case 475: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMapEntry_p) }() + case 476: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMaximumEdition_p) }() + case 477: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMessageEncoding_p) }() + case 478: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMessageSetWireFormat_p) }() + case 479: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMinimumEdition_p) }() + case 480: try { try decoder.decodeSingularInt32Field(value: &_storage._hasName_p) }() + case 481: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNamePart_p) }() + case 482: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNegativeIntValue_p) }() + case 483: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNoStandardDescriptorAccessor_p) }() + case 484: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNumber_p) }() + case 485: try { try decoder.decodeSingularInt32Field(value: &_storage._hasObjcClassPrefix_p) }() + case 486: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOneofIndex_p) }() + case 487: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOptimizeFor_p) }() + case 488: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOptions_p) }() + case 489: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOutputType_p) }() + case 490: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOverridableFeatures_p) }() + case 491: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPackage_p) }() + case 492: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPacked_p) }() + case 493: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpClassPrefix_p) }() + case 494: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpMetadataNamespace_p) }() + case 495: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpNamespace_p) }() + case 496: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPositiveIntValue_p) }() + case 497: try { try decoder.decodeSingularInt32Field(value: &_storage._hasProto3Optional_p) }() + case 498: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPyGenericServices_p) }() + case 499: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRepeated_p) }() + case 500: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRepeatedFieldEncoding_p) }() + case 501: try { try decoder.decodeSingularInt32Field(value: &_storage._hasReserved_p) }() + case 502: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRetention_p) }() + case 503: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRubyPackage_p) }() + case 504: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSemantic_p) }() + case 505: try { try decoder.decodeSingularInt32Field(value: &_storage._hasServerStreaming_p) }() + case 506: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceCodeInfo_p) }() + case 507: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceContext_p) }() + case 508: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceFile_p) }() + case 509: try { try decoder.decodeSingularInt32Field(value: &_storage._hasStart_p) }() + case 510: try { try decoder.decodeSingularInt32Field(value: &_storage._hasStringValue_p) }() + case 511: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSwiftPrefix_p) }() + case 512: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSyntax_p) }() + case 513: try { try decoder.decodeSingularInt32Field(value: &_storage._hasTrailingComments_p) }() + case 514: try { try decoder.decodeSingularInt32Field(value: &_storage._hasType_p) }() + case 515: try { try decoder.decodeSingularInt32Field(value: &_storage._hasTypeName_p) }() + case 516: try { try decoder.decodeSingularInt32Field(value: &_storage._hasUnverifiedLazy_p) }() + case 517: try { try decoder.decodeSingularInt32Field(value: &_storage._hasUtf8Validation_p) }() + case 518: try { try decoder.decodeSingularInt32Field(value: &_storage._hasValue_p) }() + case 519: try { try decoder.decodeSingularInt32Field(value: &_storage._hasVerification_p) }() + case 520: try { try decoder.decodeSingularInt32Field(value: &_storage._hasWeak_p) }() + case 521: try { try decoder.decodeSingularInt32Field(value: &_storage._hour) }() + case 522: try { try decoder.decodeSingularInt32Field(value: &_storage._i) }() + case 523: try { try decoder.decodeSingularInt32Field(value: &_storage._idempotencyLevel) }() + case 524: try { try decoder.decodeSingularInt32Field(value: &_storage._identifierValue) }() + case 525: try { try decoder.decodeSingularInt32Field(value: &_storage._if) }() + case 526: try { try decoder.decodeSingularInt32Field(value: &_storage._ignoreUnknownExtensionFields) }() + case 527: try { try decoder.decodeSingularInt32Field(value: &_storage._ignoreUnknownFields) }() + case 528: try { try decoder.decodeSingularInt32Field(value: &_storage._index) }() + case 529: try { try decoder.decodeSingularInt32Field(value: &_storage._init_p) }() + case 530: try { try decoder.decodeSingularInt32Field(value: &_storage._inout) }() + case 531: try { try decoder.decodeSingularInt32Field(value: &_storage._inputType) }() + case 532: try { try decoder.decodeSingularInt32Field(value: &_storage._insert) }() + case 533: try { try decoder.decodeSingularInt32Field(value: &_storage._int) }() + case 534: try { try decoder.decodeSingularInt32Field(value: &_storage._int32) }() + case 535: try { try decoder.decodeSingularInt32Field(value: &_storage._int32Value) }() + case 536: try { try decoder.decodeSingularInt32Field(value: &_storage._int64) }() + case 537: try { try decoder.decodeSingularInt32Field(value: &_storage._int64Value) }() + case 538: try { try decoder.decodeSingularInt32Field(value: &_storage._int8) }() + case 539: try { try decoder.decodeSingularInt32Field(value: &_storage._integerLiteral) }() + case 540: try { try decoder.decodeSingularInt32Field(value: &_storage._integerLiteralType) }() + case 541: try { try decoder.decodeSingularInt32Field(value: &_storage._intern) }() + case 542: try { try decoder.decodeSingularInt32Field(value: &_storage._internal) }() + case 543: try { try decoder.decodeSingularInt32Field(value: &_storage._internalState) }() + case 544: try { try decoder.decodeSingularInt32Field(value: &_storage._into) }() + case 545: try { try decoder.decodeSingularInt32Field(value: &_storage._ints) }() + case 546: try { try decoder.decodeSingularInt32Field(value: &_storage._isA) }() + case 547: try { try decoder.decodeSingularInt32Field(value: &_storage._isEqual) }() + case 548: try { try decoder.decodeSingularInt32Field(value: &_storage._isEqualTo) }() + case 549: try { try decoder.decodeSingularInt32Field(value: &_storage._isExtension) }() + case 550: try { try decoder.decodeSingularInt32Field(value: &_storage._isInitialized_p) }() + case 551: try { try decoder.decodeSingularInt32Field(value: &_storage._isNegative) }() + case 552: try { try decoder.decodeSingularInt32Field(value: &_storage._itemTagsEncodedSize) }() + case 553: try { try decoder.decodeSingularInt32Field(value: &_storage._iterator) }() + case 554: try { try decoder.decodeSingularInt32Field(value: &_storage._javaGenerateEqualsAndHash) }() + case 555: try { try decoder.decodeSingularInt32Field(value: &_storage._javaGenericServices) }() + case 556: try { try decoder.decodeSingularInt32Field(value: &_storage._javaMultipleFiles) }() + case 557: try { try decoder.decodeSingularInt32Field(value: &_storage._javaOuterClassname) }() + case 558: try { try decoder.decodeSingularInt32Field(value: &_storage._javaPackage) }() + case 559: try { try decoder.decodeSingularInt32Field(value: &_storage._javaStringCheckUtf8) }() + case 560: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecoder) }() + case 561: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecodingError) }() + case 562: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecodingOptions) }() + case 563: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonEncoder) }() + case 564: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencoding) }() + case 565: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingError) }() + case 566: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingOptions) }() + case 567: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingVisitor) }() + case 568: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonFormat) }() + case 569: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonmapEncodingVisitor) }() + case 570: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonName) }() + case 571: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonPath) }() + case 572: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonPaths) }() + case 573: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonscanner) }() + case 574: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonString) }() + case 575: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonText) }() + case 576: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonUtf8Bytes) }() + case 577: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonUtf8Data) }() + case 578: try { try decoder.decodeSingularInt32Field(value: &_storage._jstype) }() + case 579: try { try decoder.decodeSingularInt32Field(value: &_storage._k) }() + case 580: try { try decoder.decodeSingularInt32Field(value: &_storage._kChunkSize) }() + case 581: try { try decoder.decodeSingularInt32Field(value: &_storage._key) }() + case 582: try { try decoder.decodeSingularInt32Field(value: &_storage._keyField) }() + case 583: try { try decoder.decodeSingularInt32Field(value: &_storage._keyFieldOpt) }() + case 584: try { try decoder.decodeSingularInt32Field(value: &_storage._keyType) }() + case 585: try { try decoder.decodeSingularInt32Field(value: &_storage._kind) }() + case 586: try { try decoder.decodeSingularInt32Field(value: &_storage._l) }() + case 587: try { try decoder.decodeSingularInt32Field(value: &_storage._label) }() + case 588: try { try decoder.decodeSingularInt32Field(value: &_storage._lazy) }() + case 589: try { try decoder.decodeSingularInt32Field(value: &_storage._leadingComments) }() + case 590: try { try decoder.decodeSingularInt32Field(value: &_storage._leadingDetachedComments) }() + case 591: try { try decoder.decodeSingularInt32Field(value: &_storage._length) }() + case 592: try { try decoder.decodeSingularInt32Field(value: &_storage._lessThan) }() + case 593: try { try decoder.decodeSingularInt32Field(value: &_storage._let) }() + case 594: try { try decoder.decodeSingularInt32Field(value: &_storage._lhs) }() + case 595: try { try decoder.decodeSingularInt32Field(value: &_storage._line) }() + case 596: try { try decoder.decodeSingularInt32Field(value: &_storage._list) }() + case 597: try { try decoder.decodeSingularInt32Field(value: &_storage._listOfMessages) }() + case 598: try { try decoder.decodeSingularInt32Field(value: &_storage._listValue) }() + case 599: try { try decoder.decodeSingularInt32Field(value: &_storage._littleEndian) }() + case 600: try { try decoder.decodeSingularInt32Field(value: &_storage._load) }() + case 601: try { try decoder.decodeSingularInt32Field(value: &_storage._localHasher) }() + case 602: try { try decoder.decodeSingularInt32Field(value: &_storage._location) }() + case 603: try { try decoder.decodeSingularInt32Field(value: &_storage._m) }() + case 604: try { try decoder.decodeSingularInt32Field(value: &_storage._major) }() + case 605: try { try decoder.decodeSingularInt32Field(value: &_storage._makeAsyncIterator) }() + case 606: try { try decoder.decodeSingularInt32Field(value: &_storage._makeIterator) }() + case 607: try { try decoder.decodeSingularInt32Field(value: &_storage._malformedLength) }() + case 608: try { try decoder.decodeSingularInt32Field(value: &_storage._mapEntry) }() + case 609: try { try decoder.decodeSingularInt32Field(value: &_storage._mapKeyType) }() + case 610: try { try decoder.decodeSingularInt32Field(value: &_storage._mapToMessages) }() + case 611: try { try decoder.decodeSingularInt32Field(value: &_storage._mapValueType) }() + case 612: try { try decoder.decodeSingularInt32Field(value: &_storage._mapVisitor) }() + case 613: try { try decoder.decodeSingularInt32Field(value: &_storage._maximumEdition) }() + case 614: try { try decoder.decodeSingularInt32Field(value: &_storage._mdayStart) }() + case 615: try { try decoder.decodeSingularInt32Field(value: &_storage._merge) }() + case 616: try { try decoder.decodeSingularInt32Field(value: &_storage._message) }() + case 617: try { try decoder.decodeSingularInt32Field(value: &_storage._messageDepthLimit) }() + case 618: try { try decoder.decodeSingularInt32Field(value: &_storage._messageEncoding) }() + case 619: try { try decoder.decodeSingularInt32Field(value: &_storage._messageExtension) }() + case 620: try { try decoder.decodeSingularInt32Field(value: &_storage._messageImplementationBase) }() + case 621: try { try decoder.decodeSingularInt32Field(value: &_storage._messageOptions) }() + case 622: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSet) }() + case 623: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSetWireFormat) }() + case 624: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSize) }() + case 625: try { try decoder.decodeSingularInt32Field(value: &_storage._messageType) }() + case 626: try { try decoder.decodeSingularInt32Field(value: &_storage._method) }() + case 627: try { try decoder.decodeSingularInt32Field(value: &_storage._methodDescriptorProto) }() + case 628: try { try decoder.decodeSingularInt32Field(value: &_storage._methodOptions) }() + case 629: try { try decoder.decodeSingularInt32Field(value: &_storage._methods) }() + case 630: try { try decoder.decodeSingularInt32Field(value: &_storage._min) }() + case 631: try { try decoder.decodeSingularInt32Field(value: &_storage._minimumEdition) }() + case 632: try { try decoder.decodeSingularInt32Field(value: &_storage._minor) }() + case 633: try { try decoder.decodeSingularInt32Field(value: &_storage._mixin) }() + case 634: try { try decoder.decodeSingularInt32Field(value: &_storage._mixins) }() + case 635: try { try decoder.decodeSingularInt32Field(value: &_storage._modifier) }() + case 636: try { try decoder.decodeSingularInt32Field(value: &_storage._modify) }() + case 637: try { try decoder.decodeSingularInt32Field(value: &_storage._month) }() + case 638: try { try decoder.decodeSingularInt32Field(value: &_storage._msgExtension) }() + case 639: try { try decoder.decodeSingularInt32Field(value: &_storage._mutating) }() + case 640: try { try decoder.decodeSingularInt32Field(value: &_storage._n) }() + case 641: try { try decoder.decodeSingularInt32Field(value: &_storage._name) }() + case 642: try { try decoder.decodeSingularInt32Field(value: &_storage._nameDescription) }() + case 643: try { try decoder.decodeSingularInt32Field(value: &_storage._nameMap) }() + case 644: try { try decoder.decodeSingularInt32Field(value: &_storage._namePart) }() + case 645: try { try decoder.decodeSingularInt32Field(value: &_storage._names) }() + case 646: try { try decoder.decodeSingularInt32Field(value: &_storage._nanos) }() + case 647: try { try decoder.decodeSingularInt32Field(value: &_storage._negativeIntValue) }() + case 648: try { try decoder.decodeSingularInt32Field(value: &_storage._nestedType) }() + case 649: try { try decoder.decodeSingularInt32Field(value: &_storage._newL) }() + case 650: try { try decoder.decodeSingularInt32Field(value: &_storage._newList) }() + case 651: try { try decoder.decodeSingularInt32Field(value: &_storage._newValue) }() + case 652: try { try decoder.decodeSingularInt32Field(value: &_storage._next) }() + case 653: try { try decoder.decodeSingularInt32Field(value: &_storage._nextByte) }() + case 654: try { try decoder.decodeSingularInt32Field(value: &_storage._nextFieldNumber) }() + case 655: try { try decoder.decodeSingularInt32Field(value: &_storage._nextVarInt) }() + case 656: try { try decoder.decodeSingularInt32Field(value: &_storage._nil) }() + case 657: try { try decoder.decodeSingularInt32Field(value: &_storage._nilLiteral) }() + case 658: try { try decoder.decodeSingularInt32Field(value: &_storage._noBytesAvailable) }() + case 659: try { try decoder.decodeSingularInt32Field(value: &_storage._noStandardDescriptorAccessor) }() + case 660: try { try decoder.decodeSingularInt32Field(value: &_storage._nullValue) }() + case 661: try { try decoder.decodeSingularInt32Field(value: &_storage._number) }() + case 662: try { try decoder.decodeSingularInt32Field(value: &_storage._numberValue) }() + case 663: try { try decoder.decodeSingularInt32Field(value: &_storage._objcClassPrefix) }() + case 664: try { try decoder.decodeSingularInt32Field(value: &_storage._of) }() + case 665: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofDecl) }() + case 666: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofDescriptorProto) }() + case 667: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofIndex) }() + case 668: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofOptions) }() + case 669: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofs) }() + case 670: try { try decoder.decodeSingularInt32Field(value: &_storage._oneOfKind) }() + case 671: try { try decoder.decodeSingularInt32Field(value: &_storage._optimizeFor) }() + case 672: try { try decoder.decodeSingularInt32Field(value: &_storage._optimizeMode) }() + case 673: try { try decoder.decodeSingularInt32Field(value: &_storage._option) }() + case 674: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalEnumExtensionField) }() + case 675: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalExtensionField) }() + case 676: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalGroupExtensionField) }() + case 677: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalMessageExtensionField) }() + case 678: try { try decoder.decodeSingularInt32Field(value: &_storage._optionRetention) }() + case 679: try { try decoder.decodeSingularInt32Field(value: &_storage._options) }() + case 680: try { try decoder.decodeSingularInt32Field(value: &_storage._optionTargetType) }() + case 681: try { try decoder.decodeSingularInt32Field(value: &_storage._other) }() + case 682: try { try decoder.decodeSingularInt32Field(value: &_storage._others) }() + case 683: try { try decoder.decodeSingularInt32Field(value: &_storage._out) }() + case 684: try { try decoder.decodeSingularInt32Field(value: &_storage._outputType) }() + case 685: try { try decoder.decodeSingularInt32Field(value: &_storage._overridableFeatures) }() + case 686: try { try decoder.decodeSingularInt32Field(value: &_storage._p) }() + case 687: try { try decoder.decodeSingularInt32Field(value: &_storage._package) }() + case 688: try { try decoder.decodeSingularInt32Field(value: &_storage._packed) }() + case 689: try { try decoder.decodeSingularInt32Field(value: &_storage._packedEnumExtensionField) }() + case 690: try { try decoder.decodeSingularInt32Field(value: &_storage._packedExtensionField) }() + case 691: try { try decoder.decodeSingularInt32Field(value: &_storage._padding) }() + case 692: try { try decoder.decodeSingularInt32Field(value: &_storage._parent) }() + case 693: try { try decoder.decodeSingularInt32Field(value: &_storage._parse) }() + case 694: try { try decoder.decodeSingularInt32Field(value: &_storage._path) }() + case 695: try { try decoder.decodeSingularInt32Field(value: &_storage._paths) }() + case 696: try { try decoder.decodeSingularInt32Field(value: &_storage._payload) }() + case 697: try { try decoder.decodeSingularInt32Field(value: &_storage._payloadSize) }() + case 698: try { try decoder.decodeSingularInt32Field(value: &_storage._phpClassPrefix) }() + case 699: try { try decoder.decodeSingularInt32Field(value: &_storage._phpMetadataNamespace) }() + case 700: try { try decoder.decodeSingularInt32Field(value: &_storage._phpNamespace) }() + case 701: try { try decoder.decodeSingularInt32Field(value: &_storage._pos) }() + case 702: try { try decoder.decodeSingularInt32Field(value: &_storage._positiveIntValue) }() + case 703: try { try decoder.decodeSingularInt32Field(value: &_storage._prefix) }() + case 704: try { try decoder.decodeSingularInt32Field(value: &_storage._preserveProtoFieldNames) }() + case 705: try { try decoder.decodeSingularInt32Field(value: &_storage._preTraverse) }() + case 706: try { try decoder.decodeSingularInt32Field(value: &_storage._printUnknownFields) }() + case 707: try { try decoder.decodeSingularInt32Field(value: &_storage._proto2) }() + case 708: try { try decoder.decodeSingularInt32Field(value: &_storage._proto3DefaultValue) }() + case 709: try { try decoder.decodeSingularInt32Field(value: &_storage._proto3Optional) }() + case 710: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufApiversionCheck) }() + case 711: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufApiversion3) }() + case 712: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufBool) }() + case 713: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufBytes) }() + case 714: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufDouble) }() + case 715: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufEnumMap) }() + case 716: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufExtension) }() + case 717: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFixed32) }() + case 718: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFixed64) }() + case 719: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFloat) }() + case 720: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufInt32) }() + case 721: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufInt64) }() + case 722: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufMap) }() + case 723: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufMessageMap) }() + case 724: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSfixed32) }() + case 725: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSfixed64) }() + case 726: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSint32) }() + case 727: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSint64) }() + case 728: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufString) }() + case 729: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufUint32) }() + case 730: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufUint64) }() + case 731: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufExtensionFieldValues) }() + case 732: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFieldNumber) }() + case 733: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufGeneratedIsEqualTo) }() + case 734: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufNameMap) }() + case 735: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufNewField) }() + case 736: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufPackage) }() + case 737: try { try decoder.decodeSingularInt32Field(value: &_storage._protocol) }() + case 738: try { try decoder.decodeSingularInt32Field(value: &_storage._protoFieldName) }() + case 739: try { try decoder.decodeSingularInt32Field(value: &_storage._protoMessageName) }() + case 740: try { try decoder.decodeSingularInt32Field(value: &_storage._protoNameProviding) }() + case 741: try { try decoder.decodeSingularInt32Field(value: &_storage._protoPaths) }() + case 742: try { try decoder.decodeSingularInt32Field(value: &_storage._public) }() + case 743: try { try decoder.decodeSingularInt32Field(value: &_storage._publicDependency) }() + case 744: try { try decoder.decodeSingularInt32Field(value: &_storage._putBoolValue) }() + case 745: try { try decoder.decodeSingularInt32Field(value: &_storage._putBytesValue) }() + case 746: try { try decoder.decodeSingularInt32Field(value: &_storage._putDoubleValue) }() + case 747: try { try decoder.decodeSingularInt32Field(value: &_storage._putEnumValue) }() + case 748: try { try decoder.decodeSingularInt32Field(value: &_storage._putFixedUint32) }() + case 749: try { try decoder.decodeSingularInt32Field(value: &_storage._putFixedUint64) }() + case 750: try { try decoder.decodeSingularInt32Field(value: &_storage._putFloatValue) }() + case 751: try { try decoder.decodeSingularInt32Field(value: &_storage._putInt64) }() + case 752: try { try decoder.decodeSingularInt32Field(value: &_storage._putStringValue) }() + case 753: try { try decoder.decodeSingularInt32Field(value: &_storage._putUint64) }() + case 754: try { try decoder.decodeSingularInt32Field(value: &_storage._putUint64Hex) }() + case 755: try { try decoder.decodeSingularInt32Field(value: &_storage._putVarInt) }() + case 756: try { try decoder.decodeSingularInt32Field(value: &_storage._putZigZagVarInt) }() + case 757: try { try decoder.decodeSingularInt32Field(value: &_storage._pyGenericServices) }() + case 758: try { try decoder.decodeSingularInt32Field(value: &_storage._r) }() + case 759: try { try decoder.decodeSingularInt32Field(value: &_storage._rawChars) }() + case 760: try { try decoder.decodeSingularInt32Field(value: &_storage._rawRepresentable) }() + case 761: try { try decoder.decodeSingularInt32Field(value: &_storage._rawValue) }() + case 762: try { try decoder.decodeSingularInt32Field(value: &_storage._read4HexDigits) }() + case 763: try { try decoder.decodeSingularInt32Field(value: &_storage._readBytes) }() + case 764: try { try decoder.decodeSingularInt32Field(value: &_storage._register) }() + case 765: try { try decoder.decodeSingularInt32Field(value: &_storage._repeated) }() + case 766: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedEnumExtensionField) }() + case 767: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedExtensionField) }() + case 768: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedFieldEncoding) }() + case 769: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedGroupExtensionField) }() + case 770: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedMessageExtensionField) }() + case 771: try { try decoder.decodeSingularInt32Field(value: &_storage._repeating) }() + case 772: try { try decoder.decodeSingularInt32Field(value: &_storage._requestStreaming) }() + case 773: try { try decoder.decodeSingularInt32Field(value: &_storage._requestTypeURL) }() + case 774: try { try decoder.decodeSingularInt32Field(value: &_storage._requiredSize) }() + case 775: try { try decoder.decodeSingularInt32Field(value: &_storage._responseStreaming) }() + case 776: try { try decoder.decodeSingularInt32Field(value: &_storage._responseTypeURL) }() + case 777: try { try decoder.decodeSingularInt32Field(value: &_storage._result) }() + case 778: try { try decoder.decodeSingularInt32Field(value: &_storage._retention) }() + case 779: try { try decoder.decodeSingularInt32Field(value: &_storage._rethrows) }() + case 780: try { try decoder.decodeSingularInt32Field(value: &_storage._return) }() + case 781: try { try decoder.decodeSingularInt32Field(value: &_storage._returnType) }() + case 782: try { try decoder.decodeSingularInt32Field(value: &_storage._revision) }() + case 783: try { try decoder.decodeSingularInt32Field(value: &_storage._rhs) }() + case 784: try { try decoder.decodeSingularInt32Field(value: &_storage._root) }() + case 785: try { try decoder.decodeSingularInt32Field(value: &_storage._rubyPackage) }() + case 786: try { try decoder.decodeSingularInt32Field(value: &_storage._s) }() + case 787: try { try decoder.decodeSingularInt32Field(value: &_storage._sawBackslash) }() + case 788: try { try decoder.decodeSingularInt32Field(value: &_storage._sawSection4Characters) }() + case 789: try { try decoder.decodeSingularInt32Field(value: &_storage._sawSection5Characters) }() + case 790: try { try decoder.decodeSingularInt32Field(value: &_storage._scan) }() + case 791: try { try decoder.decodeSingularInt32Field(value: &_storage._scanner) }() + case 792: try { try decoder.decodeSingularInt32Field(value: &_storage._seconds) }() + case 793: try { try decoder.decodeSingularInt32Field(value: &_storage._self_p) }() + case 794: try { try decoder.decodeSingularInt32Field(value: &_storage._semantic) }() + case 795: try { try decoder.decodeSingularInt32Field(value: &_storage._sendable) }() + case 796: try { try decoder.decodeSingularInt32Field(value: &_storage._separator) }() + case 797: try { try decoder.decodeSingularInt32Field(value: &_storage._serialize) }() + case 798: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedBytes) }() + case 799: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedData) }() + case 800: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedSize) }() + case 801: try { try decoder.decodeSingularInt32Field(value: &_storage._serverStreaming) }() + case 802: try { try decoder.decodeSingularInt32Field(value: &_storage._service) }() + case 803: try { try decoder.decodeSingularInt32Field(value: &_storage._serviceDescriptorProto) }() + case 804: try { try decoder.decodeSingularInt32Field(value: &_storage._serviceOptions) }() + case 805: try { try decoder.decodeSingularInt32Field(value: &_storage._set) }() + case 806: try { try decoder.decodeSingularInt32Field(value: &_storage._setExtensionValue) }() + case 807: try { try decoder.decodeSingularInt32Field(value: &_storage._shift) }() + case 808: try { try decoder.decodeSingularInt32Field(value: &_storage._simpleExtensionMap) }() + case 809: try { try decoder.decodeSingularInt32Field(value: &_storage._size) }() + case 810: try { try decoder.decodeSingularInt32Field(value: &_storage._sizer) }() + case 811: try { try decoder.decodeSingularInt32Field(value: &_storage._source) }() + case 812: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceCodeInfo) }() + case 813: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceContext) }() + case 814: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceEncoding) }() + case 815: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceFile) }() + case 816: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceLocation) }() + case 817: try { try decoder.decodeSingularInt32Field(value: &_storage._span) }() + case 818: try { try decoder.decodeSingularInt32Field(value: &_storage._split) }() + case 819: try { try decoder.decodeSingularInt32Field(value: &_storage._start) }() + case 820: try { try decoder.decodeSingularInt32Field(value: &_storage._startArray) }() + case 821: try { try decoder.decodeSingularInt32Field(value: &_storage._startArrayObject) }() + case 822: try { try decoder.decodeSingularInt32Field(value: &_storage._startField) }() + case 823: try { try decoder.decodeSingularInt32Field(value: &_storage._startIndex) }() + case 824: try { try decoder.decodeSingularInt32Field(value: &_storage._startMessageField) }() + case 825: try { try decoder.decodeSingularInt32Field(value: &_storage._startObject) }() + case 826: try { try decoder.decodeSingularInt32Field(value: &_storage._startRegularField) }() + case 827: try { try decoder.decodeSingularInt32Field(value: &_storage._state) }() + case 828: try { try decoder.decodeSingularInt32Field(value: &_storage._static) }() + case 829: try { try decoder.decodeSingularInt32Field(value: &_storage._staticString) }() + case 830: try { try decoder.decodeSingularInt32Field(value: &_storage._storage) }() + case 831: try { try decoder.decodeSingularInt32Field(value: &_storage._string) }() + case 832: try { try decoder.decodeSingularInt32Field(value: &_storage._stringLiteral) }() + case 833: try { try decoder.decodeSingularInt32Field(value: &_storage._stringLiteralType) }() + case 834: try { try decoder.decodeSingularInt32Field(value: &_storage._stringResult) }() + case 835: try { try decoder.decodeSingularInt32Field(value: &_storage._stringValue) }() + case 836: try { try decoder.decodeSingularInt32Field(value: &_storage._struct) }() + case 837: try { try decoder.decodeSingularInt32Field(value: &_storage._structValue) }() + case 838: try { try decoder.decodeSingularInt32Field(value: &_storage._subDecoder) }() + case 839: try { try decoder.decodeSingularInt32Field(value: &_storage._subscript) }() + case 840: try { try decoder.decodeSingularInt32Field(value: &_storage._subVisitor) }() + case 841: try { try decoder.decodeSingularInt32Field(value: &_storage._swift) }() + case 842: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftPrefix) }() + case 843: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftProtobufContiguousBytes) }() + case 844: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftProtobufError) }() + case 845: try { try decoder.decodeSingularInt32Field(value: &_storage._syntax) }() + case 846: try { try decoder.decodeSingularInt32Field(value: &_storage._t) }() + case 847: try { try decoder.decodeSingularInt32Field(value: &_storage._tag) }() + case 848: try { try decoder.decodeSingularInt32Field(value: &_storage._targets) }() + case 849: try { try decoder.decodeSingularInt32Field(value: &_storage._terminator) }() + case 850: try { try decoder.decodeSingularInt32Field(value: &_storage._testDecoder) }() + case 851: try { try decoder.decodeSingularInt32Field(value: &_storage._text) }() + case 852: try { try decoder.decodeSingularInt32Field(value: &_storage._textDecoder) }() + case 853: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecoder) }() + case 854: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecodingError) }() + case 855: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecodingOptions) }() + case 856: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatEncodingOptions) }() + case 857: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatEncodingVisitor) }() + case 858: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatString) }() + case 859: try { try decoder.decodeSingularInt32Field(value: &_storage._throwOrIgnore) }() + case 860: try { try decoder.decodeSingularInt32Field(value: &_storage._throws) }() + case 861: try { try decoder.decodeSingularInt32Field(value: &_storage._timeInterval) }() + case 862: try { try decoder.decodeSingularInt32Field(value: &_storage._timeIntervalSince1970) }() + case 863: try { try decoder.decodeSingularInt32Field(value: &_storage._timeIntervalSinceReferenceDate) }() + case 864: try { try decoder.decodeSingularInt32Field(value: &_storage._timestamp) }() + case 865: try { try decoder.decodeSingularInt32Field(value: &_storage._tooLarge) }() + case 866: try { try decoder.decodeSingularInt32Field(value: &_storage._total) }() + case 867: try { try decoder.decodeSingularInt32Field(value: &_storage._totalArrayDepth) }() + case 868: try { try decoder.decodeSingularInt32Field(value: &_storage._totalSize) }() + case 869: try { try decoder.decodeSingularInt32Field(value: &_storage._trailingComments) }() + case 870: try { try decoder.decodeSingularInt32Field(value: &_storage._traverse) }() + case 871: try { try decoder.decodeSingularInt32Field(value: &_storage._true) }() + case 872: try { try decoder.decodeSingularInt32Field(value: &_storage._try) }() + case 873: try { try decoder.decodeSingularInt32Field(value: &_storage._type) }() + case 874: try { try decoder.decodeSingularInt32Field(value: &_storage._typealias) }() + case 875: try { try decoder.decodeSingularInt32Field(value: &_storage._typeEnum) }() + case 876: try { try decoder.decodeSingularInt32Field(value: &_storage._typeName) }() + case 877: try { try decoder.decodeSingularInt32Field(value: &_storage._typePrefix) }() + case 878: try { try decoder.decodeSingularInt32Field(value: &_storage._typeStart) }() + case 879: try { try decoder.decodeSingularInt32Field(value: &_storage._typeUnknown) }() + case 880: try { try decoder.decodeSingularInt32Field(value: &_storage._typeURL) }() + case 881: try { try decoder.decodeSingularInt32Field(value: &_storage._uint32) }() + case 882: try { try decoder.decodeSingularInt32Field(value: &_storage._uint32Value) }() + case 883: try { try decoder.decodeSingularInt32Field(value: &_storage._uint64) }() + case 884: try { try decoder.decodeSingularInt32Field(value: &_storage._uint64Value) }() + case 885: try { try decoder.decodeSingularInt32Field(value: &_storage._uint8) }() + case 886: try { try decoder.decodeSingularInt32Field(value: &_storage._unchecked) }() + case 887: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarLiteral) }() + case 888: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarLiteralType) }() + case 889: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalars) }() + case 890: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarView) }() + case 891: try { try decoder.decodeSingularInt32Field(value: &_storage._uninterpretedOption) }() + case 892: try { try decoder.decodeSingularInt32Field(value: &_storage._union) }() + case 893: try { try decoder.decodeSingularInt32Field(value: &_storage._uniqueStorage) }() + case 894: try { try decoder.decodeSingularInt32Field(value: &_storage._unknown) }() + case 895: try { try decoder.decodeSingularInt32Field(value: &_storage._unknownFields_p) }() + case 896: try { try decoder.decodeSingularInt32Field(value: &_storage._unknownStorage) }() + case 897: try { try decoder.decodeSingularInt32Field(value: &_storage._unpackTo) }() + case 898: try { try decoder.decodeSingularInt32Field(value: &_storage._unregisteredTypeURL) }() + case 899: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeBufferPointer) }() + case 900: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeMutablePointer) }() + case 901: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeMutableRawBufferPointer) }() + case 902: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeRawBufferPointer) }() + case 903: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeRawPointer) }() + case 904: try { try decoder.decodeSingularInt32Field(value: &_storage._unverifiedLazy) }() + case 905: try { try decoder.decodeSingularInt32Field(value: &_storage._updatedOptions) }() + case 906: try { try decoder.decodeSingularInt32Field(value: &_storage._url) }() + case 907: try { try decoder.decodeSingularInt32Field(value: &_storage._useDeterministicOrdering) }() + case 908: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8) }() + case 909: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8Ptr) }() + case 910: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8ToDouble) }() + case 911: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8Validation) }() + case 912: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8View) }() + case 913: try { try decoder.decodeSingularInt32Field(value: &_storage._v) }() + case 914: try { try decoder.decodeSingularInt32Field(value: &_storage._value) }() + case 915: try { try decoder.decodeSingularInt32Field(value: &_storage._valueField) }() + case 916: try { try decoder.decodeSingularInt32Field(value: &_storage._values) }() + case 917: try { try decoder.decodeSingularInt32Field(value: &_storage._valueType) }() + case 918: try { try decoder.decodeSingularInt32Field(value: &_storage._var) }() + case 919: try { try decoder.decodeSingularInt32Field(value: &_storage._verification) }() + case 920: try { try decoder.decodeSingularInt32Field(value: &_storage._verificationState) }() + case 921: try { try decoder.decodeSingularInt32Field(value: &_storage._version) }() + case 922: try { try decoder.decodeSingularInt32Field(value: &_storage._versionString) }() + case 923: try { try decoder.decodeSingularInt32Field(value: &_storage._visitExtensionFields) }() + case 924: try { try decoder.decodeSingularInt32Field(value: &_storage._visitExtensionFieldsAsMessageSet) }() + case 925: try { try decoder.decodeSingularInt32Field(value: &_storage._visitMapField) }() + case 926: try { try decoder.decodeSingularInt32Field(value: &_storage._visitor) }() + case 927: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPacked) }() + case 928: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedBoolField) }() + case 929: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedDoubleField) }() + case 930: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedEnumField) }() + case 931: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFixed32Field) }() + case 932: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFixed64Field) }() + case 933: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFloatField) }() + case 934: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedInt32Field) }() + case 935: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedInt64Field) }() + case 936: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSfixed32Field) }() + case 937: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSfixed64Field) }() + case 938: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSint32Field) }() + case 939: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSint64Field) }() + case 940: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedUint32Field) }() + case 941: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedUint64Field) }() + case 942: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeated) }() + case 943: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedBoolField) }() + case 944: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedBytesField) }() + case 945: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedDoubleField) }() + case 946: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedEnumField) }() + case 947: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFixed32Field) }() + case 948: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFixed64Field) }() + case 949: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFloatField) }() + case 950: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedGroupField) }() + case 951: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedInt32Field) }() + case 952: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedInt64Field) }() + case 953: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedMessageField) }() + case 954: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSfixed32Field) }() + case 955: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSfixed64Field) }() + case 956: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSint32Field) }() + case 957: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSint64Field) }() + case 958: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedStringField) }() + case 959: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedUint32Field) }() + case 960: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedUint64Field) }() + case 961: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingular) }() + case 962: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularBoolField) }() + case 963: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularBytesField) }() + case 964: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularDoubleField) }() + case 965: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularEnumField) }() + case 966: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFixed32Field) }() + case 967: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFixed64Field) }() + case 968: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFloatField) }() + case 969: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularGroupField) }() + case 970: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularInt32Field) }() + case 971: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularInt64Field) }() + case 972: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularMessageField) }() + case 973: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSfixed32Field) }() + case 974: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSfixed64Field) }() + case 975: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSint32Field) }() + case 976: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSint64Field) }() + case 977: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularStringField) }() + case 978: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularUint32Field) }() + case 979: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularUint64Field) }() + case 980: try { try decoder.decodeSingularInt32Field(value: &_storage._visitUnknown) }() + case 981: try { try decoder.decodeSingularInt32Field(value: &_storage._wasDecoded) }() + case 982: try { try decoder.decodeSingularInt32Field(value: &_storage._weak) }() + case 983: try { try decoder.decodeSingularInt32Field(value: &_storage._weakDependency) }() + case 984: try { try decoder.decodeSingularInt32Field(value: &_storage._where) }() + case 985: try { try decoder.decodeSingularInt32Field(value: &_storage._wireFormat) }() + case 986: try { try decoder.decodeSingularInt32Field(value: &_storage._with) }() + case 987: try { try decoder.decodeSingularInt32Field(value: &_storage._withUnsafeBytes) }() + case 988: try { try decoder.decodeSingularInt32Field(value: &_storage._withUnsafeMutableBytes) }() + case 989: try { try decoder.decodeSingularInt32Field(value: &_storage._work) }() + case 990: try { try decoder.decodeSingularInt32Field(value: &_storage._wrapped) }() + case 991: try { try decoder.decodeSingularInt32Field(value: &_storage._wrappedType) }() + case 992: try { try decoder.decodeSingularInt32Field(value: &_storage._wrappedValue) }() + case 993: try { try decoder.decodeSingularInt32Field(value: &_storage._written) }() + case 994: try { try decoder.decodeSingularInt32Field(value: &_storage._yday) }() default: break } } @@ -8912,2903 +9065,2954 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._anyMessageStorage != 0 { try visitor.visitSingularInt32Field(value: _storage._anyMessageStorage, fieldNumber: 11) } + if _storage._anyTypeUrlnotRegistered != 0 { + try visitor.visitSingularInt32Field(value: _storage._anyTypeUrlnotRegistered, fieldNumber: 12) + } if _storage._anyUnpackError != 0 { - try visitor.visitSingularInt32Field(value: _storage._anyUnpackError, fieldNumber: 12) + try visitor.visitSingularInt32Field(value: _storage._anyUnpackError, fieldNumber: 13) } if _storage._api != 0 { - try visitor.visitSingularInt32Field(value: _storage._api, fieldNumber: 13) + try visitor.visitSingularInt32Field(value: _storage._api, fieldNumber: 14) } if _storage._appended != 0 { - try visitor.visitSingularInt32Field(value: _storage._appended, fieldNumber: 14) + try visitor.visitSingularInt32Field(value: _storage._appended, fieldNumber: 15) } if _storage._appendUintHex != 0 { - try visitor.visitSingularInt32Field(value: _storage._appendUintHex, fieldNumber: 15) + try visitor.visitSingularInt32Field(value: _storage._appendUintHex, fieldNumber: 16) } if _storage._appendUnknown != 0 { - try visitor.visitSingularInt32Field(value: _storage._appendUnknown, fieldNumber: 16) + try visitor.visitSingularInt32Field(value: _storage._appendUnknown, fieldNumber: 17) } if _storage._areAllInitialized != 0 { - try visitor.visitSingularInt32Field(value: _storage._areAllInitialized, fieldNumber: 17) + try visitor.visitSingularInt32Field(value: _storage._areAllInitialized, fieldNumber: 18) } if _storage._array != 0 { - try visitor.visitSingularInt32Field(value: _storage._array, fieldNumber: 18) + try visitor.visitSingularInt32Field(value: _storage._array, fieldNumber: 19) } if _storage._arrayDepth != 0 { - try visitor.visitSingularInt32Field(value: _storage._arrayDepth, fieldNumber: 19) + try visitor.visitSingularInt32Field(value: _storage._arrayDepth, fieldNumber: 20) } if _storage._arrayLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._arrayLiteral, fieldNumber: 20) + try visitor.visitSingularInt32Field(value: _storage._arrayLiteral, fieldNumber: 21) } if _storage._arraySeparator != 0 { - try visitor.visitSingularInt32Field(value: _storage._arraySeparator, fieldNumber: 21) + try visitor.visitSingularInt32Field(value: _storage._arraySeparator, fieldNumber: 22) } if _storage._as != 0 { - try visitor.visitSingularInt32Field(value: _storage._as, fieldNumber: 22) + try visitor.visitSingularInt32Field(value: _storage._as, fieldNumber: 23) } if _storage._asciiOpenCurlyBracket != 0 { - try visitor.visitSingularInt32Field(value: _storage._asciiOpenCurlyBracket, fieldNumber: 23) + try visitor.visitSingularInt32Field(value: _storage._asciiOpenCurlyBracket, fieldNumber: 24) } if _storage._asciiZero != 0 { - try visitor.visitSingularInt32Field(value: _storage._asciiZero, fieldNumber: 24) + try visitor.visitSingularInt32Field(value: _storage._asciiZero, fieldNumber: 25) } if _storage._async != 0 { - try visitor.visitSingularInt32Field(value: _storage._async, fieldNumber: 25) + try visitor.visitSingularInt32Field(value: _storage._async, fieldNumber: 26) } if _storage._asyncIterator != 0 { - try visitor.visitSingularInt32Field(value: _storage._asyncIterator, fieldNumber: 26) + try visitor.visitSingularInt32Field(value: _storage._asyncIterator, fieldNumber: 27) } if _storage._asyncIteratorProtocol != 0 { - try visitor.visitSingularInt32Field(value: _storage._asyncIteratorProtocol, fieldNumber: 27) + try visitor.visitSingularInt32Field(value: _storage._asyncIteratorProtocol, fieldNumber: 28) } if _storage._asyncMessageSequence != 0 { - try visitor.visitSingularInt32Field(value: _storage._asyncMessageSequence, fieldNumber: 28) + try visitor.visitSingularInt32Field(value: _storage._asyncMessageSequence, fieldNumber: 29) } if _storage._available != 0 { - try visitor.visitSingularInt32Field(value: _storage._available, fieldNumber: 29) + try visitor.visitSingularInt32Field(value: _storage._available, fieldNumber: 30) } if _storage._b != 0 { - try visitor.visitSingularInt32Field(value: _storage._b, fieldNumber: 30) + try visitor.visitSingularInt32Field(value: _storage._b, fieldNumber: 31) } if _storage._base != 0 { - try visitor.visitSingularInt32Field(value: _storage._base, fieldNumber: 31) + try visitor.visitSingularInt32Field(value: _storage._base, fieldNumber: 32) } if _storage._base64Values != 0 { - try visitor.visitSingularInt32Field(value: _storage._base64Values, fieldNumber: 32) + try visitor.visitSingularInt32Field(value: _storage._base64Values, fieldNumber: 33) } if _storage._baseAddress != 0 { - try visitor.visitSingularInt32Field(value: _storage._baseAddress, fieldNumber: 33) + try visitor.visitSingularInt32Field(value: _storage._baseAddress, fieldNumber: 34) } if _storage._baseType != 0 { - try visitor.visitSingularInt32Field(value: _storage._baseType, fieldNumber: 34) + try visitor.visitSingularInt32Field(value: _storage._baseType, fieldNumber: 35) } if _storage._begin != 0 { - try visitor.visitSingularInt32Field(value: _storage._begin, fieldNumber: 35) + try visitor.visitSingularInt32Field(value: _storage._begin, fieldNumber: 36) } if _storage._binary != 0 { - try visitor.visitSingularInt32Field(value: _storage._binary, fieldNumber: 36) + try visitor.visitSingularInt32Field(value: _storage._binary, fieldNumber: 37) } if _storage._binaryDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryDecoder, fieldNumber: 37) + try visitor.visitSingularInt32Field(value: _storage._binaryDecoder, fieldNumber: 38) + } + if _storage._binaryDecoding != 0 { + try visitor.visitSingularInt32Field(value: _storage._binaryDecoding, fieldNumber: 39) } if _storage._binaryDecodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryDecodingError, fieldNumber: 38) + try visitor.visitSingularInt32Field(value: _storage._binaryDecodingError, fieldNumber: 40) } if _storage._binaryDecodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryDecodingOptions, fieldNumber: 39) + try visitor.visitSingularInt32Field(value: _storage._binaryDecodingOptions, fieldNumber: 41) } if _storage._binaryDelimited != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryDelimited, fieldNumber: 40) + try visitor.visitSingularInt32Field(value: _storage._binaryDelimited, fieldNumber: 42) } if _storage._binaryEncoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncoder, fieldNumber: 41) + try visitor.visitSingularInt32Field(value: _storage._binaryEncoder, fieldNumber: 43) + } + if _storage._binaryEncoding != 0 { + try visitor.visitSingularInt32Field(value: _storage._binaryEncoding, fieldNumber: 44) } if _storage._binaryEncodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingError, fieldNumber: 42) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingError, fieldNumber: 45) } if _storage._binaryEncodingMessageSetSizeVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingMessageSetSizeVisitor, fieldNumber: 43) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingMessageSetSizeVisitor, fieldNumber: 46) } if _storage._binaryEncodingMessageSetVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingMessageSetVisitor, fieldNumber: 44) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingMessageSetVisitor, fieldNumber: 47) } if _storage._binaryEncodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingOptions, fieldNumber: 45) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingOptions, fieldNumber: 48) } if _storage._binaryEncodingSizeVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingSizeVisitor, fieldNumber: 46) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingSizeVisitor, fieldNumber: 49) } if _storage._binaryEncodingVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingVisitor, fieldNumber: 47) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingVisitor, fieldNumber: 50) } if _storage._binaryOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryOptions, fieldNumber: 48) + try visitor.visitSingularInt32Field(value: _storage._binaryOptions, fieldNumber: 51) } if _storage._binaryProtobufDelimitedMessages != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryProtobufDelimitedMessages, fieldNumber: 49) + try visitor.visitSingularInt32Field(value: _storage._binaryProtobufDelimitedMessages, fieldNumber: 52) + } + if _storage._binaryStreamDecoding != 0 { + try visitor.visitSingularInt32Field(value: _storage._binaryStreamDecoding, fieldNumber: 53) + } + if _storage._binaryStreamDecodingError != 0 { + try visitor.visitSingularInt32Field(value: _storage._binaryStreamDecodingError, fieldNumber: 54) } if _storage._bitPattern != 0 { - try visitor.visitSingularInt32Field(value: _storage._bitPattern, fieldNumber: 50) + try visitor.visitSingularInt32Field(value: _storage._bitPattern, fieldNumber: 55) } if _storage._body != 0 { - try visitor.visitSingularInt32Field(value: _storage._body, fieldNumber: 51) + try visitor.visitSingularInt32Field(value: _storage._body, fieldNumber: 56) } if _storage._bool != 0 { - try visitor.visitSingularInt32Field(value: _storage._bool, fieldNumber: 52) + try visitor.visitSingularInt32Field(value: _storage._bool, fieldNumber: 57) } if _storage._booleanLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._booleanLiteral, fieldNumber: 53) + try visitor.visitSingularInt32Field(value: _storage._booleanLiteral, fieldNumber: 58) } if _storage._booleanLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._booleanLiteralType, fieldNumber: 54) + try visitor.visitSingularInt32Field(value: _storage._booleanLiteralType, fieldNumber: 59) } if _storage._boolValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._boolValue, fieldNumber: 55) + try visitor.visitSingularInt32Field(value: _storage._boolValue, fieldNumber: 60) } if _storage._buffer != 0 { - try visitor.visitSingularInt32Field(value: _storage._buffer, fieldNumber: 56) + try visitor.visitSingularInt32Field(value: _storage._buffer, fieldNumber: 61) } if _storage._bytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytes, fieldNumber: 57) + try visitor.visitSingularInt32Field(value: _storage._bytes, fieldNumber: 62) } if _storage._bytesInGroup != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytesInGroup, fieldNumber: 58) + try visitor.visitSingularInt32Field(value: _storage._bytesInGroup, fieldNumber: 63) } if _storage._bytesNeeded != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytesNeeded, fieldNumber: 59) + try visitor.visitSingularInt32Field(value: _storage._bytesNeeded, fieldNumber: 64) } if _storage._bytesRead != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytesRead, fieldNumber: 60) + try visitor.visitSingularInt32Field(value: _storage._bytesRead, fieldNumber: 65) } if _storage._bytesValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytesValue, fieldNumber: 61) + try visitor.visitSingularInt32Field(value: _storage._bytesValue, fieldNumber: 66) } if _storage._c != 0 { - try visitor.visitSingularInt32Field(value: _storage._c, fieldNumber: 62) + try visitor.visitSingularInt32Field(value: _storage._c, fieldNumber: 67) } if _storage._capitalizeNext != 0 { - try visitor.visitSingularInt32Field(value: _storage._capitalizeNext, fieldNumber: 63) + try visitor.visitSingularInt32Field(value: _storage._capitalizeNext, fieldNumber: 68) } if _storage._cardinality != 0 { - try visitor.visitSingularInt32Field(value: _storage._cardinality, fieldNumber: 64) + try visitor.visitSingularInt32Field(value: _storage._cardinality, fieldNumber: 69) } if _storage._caseIterable != 0 { - try visitor.visitSingularInt32Field(value: _storage._caseIterable, fieldNumber: 65) + try visitor.visitSingularInt32Field(value: _storage._caseIterable, fieldNumber: 70) } if _storage._ccEnableArenas != 0 { - try visitor.visitSingularInt32Field(value: _storage._ccEnableArenas, fieldNumber: 66) + try visitor.visitSingularInt32Field(value: _storage._ccEnableArenas, fieldNumber: 71) } if _storage._ccGenericServices != 0 { - try visitor.visitSingularInt32Field(value: _storage._ccGenericServices, fieldNumber: 67) + try visitor.visitSingularInt32Field(value: _storage._ccGenericServices, fieldNumber: 72) } if _storage._character != 0 { - try visitor.visitSingularInt32Field(value: _storage._character, fieldNumber: 68) + try visitor.visitSingularInt32Field(value: _storage._character, fieldNumber: 73) } if _storage._chars != 0 { - try visitor.visitSingularInt32Field(value: _storage._chars, fieldNumber: 69) + try visitor.visitSingularInt32Field(value: _storage._chars, fieldNumber: 74) } if _storage._chunk != 0 { - try visitor.visitSingularInt32Field(value: _storage._chunk, fieldNumber: 70) + try visitor.visitSingularInt32Field(value: _storage._chunk, fieldNumber: 75) } if _storage._class != 0 { - try visitor.visitSingularInt32Field(value: _storage._class, fieldNumber: 71) + try visitor.visitSingularInt32Field(value: _storage._class, fieldNumber: 76) } if _storage._clearAggregateValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearAggregateValue_p, fieldNumber: 72) + try visitor.visitSingularInt32Field(value: _storage._clearAggregateValue_p, fieldNumber: 77) } if _storage._clearAllowAlias_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearAllowAlias_p, fieldNumber: 73) + try visitor.visitSingularInt32Field(value: _storage._clearAllowAlias_p, fieldNumber: 78) } if _storage._clearBegin_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearBegin_p, fieldNumber: 74) + try visitor.visitSingularInt32Field(value: _storage._clearBegin_p, fieldNumber: 79) } if _storage._clearCcEnableArenas_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearCcEnableArenas_p, fieldNumber: 75) + try visitor.visitSingularInt32Field(value: _storage._clearCcEnableArenas_p, fieldNumber: 80) } if _storage._clearCcGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearCcGenericServices_p, fieldNumber: 76) + try visitor.visitSingularInt32Field(value: _storage._clearCcGenericServices_p, fieldNumber: 81) } if _storage._clearClientStreaming_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearClientStreaming_p, fieldNumber: 77) + try visitor.visitSingularInt32Field(value: _storage._clearClientStreaming_p, fieldNumber: 82) } if _storage._clearCsharpNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearCsharpNamespace_p, fieldNumber: 78) + try visitor.visitSingularInt32Field(value: _storage._clearCsharpNamespace_p, fieldNumber: 83) } if _storage._clearCtype_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearCtype_p, fieldNumber: 79) + try visitor.visitSingularInt32Field(value: _storage._clearCtype_p, fieldNumber: 84) } if _storage._clearDebugRedact_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDebugRedact_p, fieldNumber: 80) + try visitor.visitSingularInt32Field(value: _storage._clearDebugRedact_p, fieldNumber: 85) } if _storage._clearDefaultValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDefaultValue_p, fieldNumber: 81) + try visitor.visitSingularInt32Field(value: _storage._clearDefaultValue_p, fieldNumber: 86) } if _storage._clearDeprecated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDeprecated_p, fieldNumber: 82) + try visitor.visitSingularInt32Field(value: _storage._clearDeprecated_p, fieldNumber: 87) } if _storage._clearDeprecatedLegacyJsonFieldConflicts_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDeprecatedLegacyJsonFieldConflicts_p, fieldNumber: 83) + try visitor.visitSingularInt32Field(value: _storage._clearDeprecatedLegacyJsonFieldConflicts_p, fieldNumber: 88) } if _storage._clearDeprecationWarning_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDeprecationWarning_p, fieldNumber: 84) + try visitor.visitSingularInt32Field(value: _storage._clearDeprecationWarning_p, fieldNumber: 89) } if _storage._clearDoubleValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDoubleValue_p, fieldNumber: 85) + try visitor.visitSingularInt32Field(value: _storage._clearDoubleValue_p, fieldNumber: 90) } if _storage._clearEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEdition_p, fieldNumber: 86) + try visitor.visitSingularInt32Field(value: _storage._clearEdition_p, fieldNumber: 91) } if _storage._clearEditionDeprecated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEditionDeprecated_p, fieldNumber: 87) + try visitor.visitSingularInt32Field(value: _storage._clearEditionDeprecated_p, fieldNumber: 92) } if _storage._clearEditionIntroduced_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEditionIntroduced_p, fieldNumber: 88) + try visitor.visitSingularInt32Field(value: _storage._clearEditionIntroduced_p, fieldNumber: 93) } if _storage._clearEditionRemoved_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEditionRemoved_p, fieldNumber: 89) + try visitor.visitSingularInt32Field(value: _storage._clearEditionRemoved_p, fieldNumber: 94) } if _storage._clearEnd_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEnd_p, fieldNumber: 90) + try visitor.visitSingularInt32Field(value: _storage._clearEnd_p, fieldNumber: 95) } if _storage._clearEnumType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEnumType_p, fieldNumber: 91) + try visitor.visitSingularInt32Field(value: _storage._clearEnumType_p, fieldNumber: 96) } if _storage._clearExtendee_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearExtendee_p, fieldNumber: 92) + try visitor.visitSingularInt32Field(value: _storage._clearExtendee_p, fieldNumber: 97) } if _storage._clearExtensionValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearExtensionValue_p, fieldNumber: 93) + try visitor.visitSingularInt32Field(value: _storage._clearExtensionValue_p, fieldNumber: 98) } if _storage._clearFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFeatures_p, fieldNumber: 94) + try visitor.visitSingularInt32Field(value: _storage._clearFeatures_p, fieldNumber: 99) } if _storage._clearFeatureSupport_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFeatureSupport_p, fieldNumber: 95) + try visitor.visitSingularInt32Field(value: _storage._clearFeatureSupport_p, fieldNumber: 100) } if _storage._clearFieldPresence_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFieldPresence_p, fieldNumber: 96) + try visitor.visitSingularInt32Field(value: _storage._clearFieldPresence_p, fieldNumber: 101) } if _storage._clearFixedFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFixedFeatures_p, fieldNumber: 97) + try visitor.visitSingularInt32Field(value: _storage._clearFixedFeatures_p, fieldNumber: 102) } if _storage._clearFullName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFullName_p, fieldNumber: 98) + try visitor.visitSingularInt32Field(value: _storage._clearFullName_p, fieldNumber: 103) } if _storage._clearGoPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearGoPackage_p, fieldNumber: 99) + try visitor.visitSingularInt32Field(value: _storage._clearGoPackage_p, fieldNumber: 104) } if _storage._clearIdempotencyLevel_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearIdempotencyLevel_p, fieldNumber: 100) + try visitor.visitSingularInt32Field(value: _storage._clearIdempotencyLevel_p, fieldNumber: 105) } if _storage._clearIdentifierValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearIdentifierValue_p, fieldNumber: 101) + try visitor.visitSingularInt32Field(value: _storage._clearIdentifierValue_p, fieldNumber: 106) } if _storage._clearInputType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearInputType_p, fieldNumber: 102) + try visitor.visitSingularInt32Field(value: _storage._clearInputType_p, fieldNumber: 107) } if _storage._clearIsExtension_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearIsExtension_p, fieldNumber: 103) + try visitor.visitSingularInt32Field(value: _storage._clearIsExtension_p, fieldNumber: 108) } if _storage._clearJavaGenerateEqualsAndHash_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaGenerateEqualsAndHash_p, fieldNumber: 104) + try visitor.visitSingularInt32Field(value: _storage._clearJavaGenerateEqualsAndHash_p, fieldNumber: 109) } if _storage._clearJavaGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaGenericServices_p, fieldNumber: 105) + try visitor.visitSingularInt32Field(value: _storage._clearJavaGenericServices_p, fieldNumber: 110) } if _storage._clearJavaMultipleFiles_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaMultipleFiles_p, fieldNumber: 106) + try visitor.visitSingularInt32Field(value: _storage._clearJavaMultipleFiles_p, fieldNumber: 111) } if _storage._clearJavaOuterClassname_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaOuterClassname_p, fieldNumber: 107) + try visitor.visitSingularInt32Field(value: _storage._clearJavaOuterClassname_p, fieldNumber: 112) } if _storage._clearJavaPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaPackage_p, fieldNumber: 108) + try visitor.visitSingularInt32Field(value: _storage._clearJavaPackage_p, fieldNumber: 113) } if _storage._clearJavaStringCheckUtf8_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaStringCheckUtf8_p, fieldNumber: 109) + try visitor.visitSingularInt32Field(value: _storage._clearJavaStringCheckUtf8_p, fieldNumber: 114) } if _storage._clearJsonFormat_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJsonFormat_p, fieldNumber: 110) + try visitor.visitSingularInt32Field(value: _storage._clearJsonFormat_p, fieldNumber: 115) } if _storage._clearJsonName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJsonName_p, fieldNumber: 111) + try visitor.visitSingularInt32Field(value: _storage._clearJsonName_p, fieldNumber: 116) } if _storage._clearJstype_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJstype_p, fieldNumber: 112) + try visitor.visitSingularInt32Field(value: _storage._clearJstype_p, fieldNumber: 117) } if _storage._clearLabel_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearLabel_p, fieldNumber: 113) + try visitor.visitSingularInt32Field(value: _storage._clearLabel_p, fieldNumber: 118) } if _storage._clearLazy_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearLazy_p, fieldNumber: 114) + try visitor.visitSingularInt32Field(value: _storage._clearLazy_p, fieldNumber: 119) } if _storage._clearLeadingComments_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearLeadingComments_p, fieldNumber: 115) + try visitor.visitSingularInt32Field(value: _storage._clearLeadingComments_p, fieldNumber: 120) } if _storage._clearMapEntry_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMapEntry_p, fieldNumber: 116) + try visitor.visitSingularInt32Field(value: _storage._clearMapEntry_p, fieldNumber: 121) } if _storage._clearMaximumEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMaximumEdition_p, fieldNumber: 117) + try visitor.visitSingularInt32Field(value: _storage._clearMaximumEdition_p, fieldNumber: 122) } if _storage._clearMessageEncoding_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMessageEncoding_p, fieldNumber: 118) + try visitor.visitSingularInt32Field(value: _storage._clearMessageEncoding_p, fieldNumber: 123) } if _storage._clearMessageSetWireFormat_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMessageSetWireFormat_p, fieldNumber: 119) + try visitor.visitSingularInt32Field(value: _storage._clearMessageSetWireFormat_p, fieldNumber: 124) } if _storage._clearMinimumEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMinimumEdition_p, fieldNumber: 120) + try visitor.visitSingularInt32Field(value: _storage._clearMinimumEdition_p, fieldNumber: 125) } if _storage._clearName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearName_p, fieldNumber: 121) + try visitor.visitSingularInt32Field(value: _storage._clearName_p, fieldNumber: 126) } if _storage._clearNamePart_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearNamePart_p, fieldNumber: 122) + try visitor.visitSingularInt32Field(value: _storage._clearNamePart_p, fieldNumber: 127) } if _storage._clearNegativeIntValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearNegativeIntValue_p, fieldNumber: 123) + try visitor.visitSingularInt32Field(value: _storage._clearNegativeIntValue_p, fieldNumber: 128) } if _storage._clearNoStandardDescriptorAccessor_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearNoStandardDescriptorAccessor_p, fieldNumber: 124) + try visitor.visitSingularInt32Field(value: _storage._clearNoStandardDescriptorAccessor_p, fieldNumber: 129) } if _storage._clearNumber_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearNumber_p, fieldNumber: 125) + try visitor.visitSingularInt32Field(value: _storage._clearNumber_p, fieldNumber: 130) } if _storage._clearObjcClassPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearObjcClassPrefix_p, fieldNumber: 126) + try visitor.visitSingularInt32Field(value: _storage._clearObjcClassPrefix_p, fieldNumber: 131) } if _storage._clearOneofIndex_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOneofIndex_p, fieldNumber: 127) + try visitor.visitSingularInt32Field(value: _storage._clearOneofIndex_p, fieldNumber: 132) } if _storage._clearOptimizeFor_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOptimizeFor_p, fieldNumber: 128) + try visitor.visitSingularInt32Field(value: _storage._clearOptimizeFor_p, fieldNumber: 133) } if _storage._clearOptions_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOptions_p, fieldNumber: 129) + try visitor.visitSingularInt32Field(value: _storage._clearOptions_p, fieldNumber: 134) } if _storage._clearOutputType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOutputType_p, fieldNumber: 130) + try visitor.visitSingularInt32Field(value: _storage._clearOutputType_p, fieldNumber: 135) } if _storage._clearOverridableFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOverridableFeatures_p, fieldNumber: 131) + try visitor.visitSingularInt32Field(value: _storage._clearOverridableFeatures_p, fieldNumber: 136) } if _storage._clearPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPackage_p, fieldNumber: 132) + try visitor.visitSingularInt32Field(value: _storage._clearPackage_p, fieldNumber: 137) } if _storage._clearPacked_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPacked_p, fieldNumber: 133) + try visitor.visitSingularInt32Field(value: _storage._clearPacked_p, fieldNumber: 138) } if _storage._clearPhpClassPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPhpClassPrefix_p, fieldNumber: 134) + try visitor.visitSingularInt32Field(value: _storage._clearPhpClassPrefix_p, fieldNumber: 139) } if _storage._clearPhpMetadataNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPhpMetadataNamespace_p, fieldNumber: 135) + try visitor.visitSingularInt32Field(value: _storage._clearPhpMetadataNamespace_p, fieldNumber: 140) } if _storage._clearPhpNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPhpNamespace_p, fieldNumber: 136) + try visitor.visitSingularInt32Field(value: _storage._clearPhpNamespace_p, fieldNumber: 141) } if _storage._clearPositiveIntValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPositiveIntValue_p, fieldNumber: 137) + try visitor.visitSingularInt32Field(value: _storage._clearPositiveIntValue_p, fieldNumber: 142) } if _storage._clearProto3Optional_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearProto3Optional_p, fieldNumber: 138) + try visitor.visitSingularInt32Field(value: _storage._clearProto3Optional_p, fieldNumber: 143) } if _storage._clearPyGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPyGenericServices_p, fieldNumber: 139) + try visitor.visitSingularInt32Field(value: _storage._clearPyGenericServices_p, fieldNumber: 144) } if _storage._clearRepeated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearRepeated_p, fieldNumber: 140) + try visitor.visitSingularInt32Field(value: _storage._clearRepeated_p, fieldNumber: 145) } if _storage._clearRepeatedFieldEncoding_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearRepeatedFieldEncoding_p, fieldNumber: 141) + try visitor.visitSingularInt32Field(value: _storage._clearRepeatedFieldEncoding_p, fieldNumber: 146) } if _storage._clearReserved_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearReserved_p, fieldNumber: 142) + try visitor.visitSingularInt32Field(value: _storage._clearReserved_p, fieldNumber: 147) } if _storage._clearRetention_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearRetention_p, fieldNumber: 143) + try visitor.visitSingularInt32Field(value: _storage._clearRetention_p, fieldNumber: 148) } if _storage._clearRubyPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearRubyPackage_p, fieldNumber: 144) + try visitor.visitSingularInt32Field(value: _storage._clearRubyPackage_p, fieldNumber: 149) } if _storage._clearSemantic_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSemantic_p, fieldNumber: 145) + try visitor.visitSingularInt32Field(value: _storage._clearSemantic_p, fieldNumber: 150) } if _storage._clearServerStreaming_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearServerStreaming_p, fieldNumber: 146) + try visitor.visitSingularInt32Field(value: _storage._clearServerStreaming_p, fieldNumber: 151) } if _storage._clearSourceCodeInfo_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSourceCodeInfo_p, fieldNumber: 147) + try visitor.visitSingularInt32Field(value: _storage._clearSourceCodeInfo_p, fieldNumber: 152) } if _storage._clearSourceContext_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSourceContext_p, fieldNumber: 148) + try visitor.visitSingularInt32Field(value: _storage._clearSourceContext_p, fieldNumber: 153) } if _storage._clearSourceFile_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSourceFile_p, fieldNumber: 149) + try visitor.visitSingularInt32Field(value: _storage._clearSourceFile_p, fieldNumber: 154) } if _storage._clearStart_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearStart_p, fieldNumber: 150) + try visitor.visitSingularInt32Field(value: _storage._clearStart_p, fieldNumber: 155) } if _storage._clearStringValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearStringValue_p, fieldNumber: 151) + try visitor.visitSingularInt32Field(value: _storage._clearStringValue_p, fieldNumber: 156) } if _storage._clearSwiftPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSwiftPrefix_p, fieldNumber: 152) + try visitor.visitSingularInt32Field(value: _storage._clearSwiftPrefix_p, fieldNumber: 157) } if _storage._clearSyntax_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSyntax_p, fieldNumber: 153) + try visitor.visitSingularInt32Field(value: _storage._clearSyntax_p, fieldNumber: 158) } if _storage._clearTrailingComments_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearTrailingComments_p, fieldNumber: 154) + try visitor.visitSingularInt32Field(value: _storage._clearTrailingComments_p, fieldNumber: 159) } if _storage._clearType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearType_p, fieldNumber: 155) + try visitor.visitSingularInt32Field(value: _storage._clearType_p, fieldNumber: 160) } if _storage._clearTypeName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearTypeName_p, fieldNumber: 156) + try visitor.visitSingularInt32Field(value: _storage._clearTypeName_p, fieldNumber: 161) } if _storage._clearUnverifiedLazy_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearUnverifiedLazy_p, fieldNumber: 157) + try visitor.visitSingularInt32Field(value: _storage._clearUnverifiedLazy_p, fieldNumber: 162) } if _storage._clearUtf8Validation_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearUtf8Validation_p, fieldNumber: 158) + try visitor.visitSingularInt32Field(value: _storage._clearUtf8Validation_p, fieldNumber: 163) } if _storage._clearValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearValue_p, fieldNumber: 159) + try visitor.visitSingularInt32Field(value: _storage._clearValue_p, fieldNumber: 164) } if _storage._clearVerification_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearVerification_p, fieldNumber: 160) + try visitor.visitSingularInt32Field(value: _storage._clearVerification_p, fieldNumber: 165) } if _storage._clearWeak_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearWeak_p, fieldNumber: 161) + try visitor.visitSingularInt32Field(value: _storage._clearWeak_p, fieldNumber: 166) } if _storage._clientStreaming != 0 { - try visitor.visitSingularInt32Field(value: _storage._clientStreaming, fieldNumber: 162) + try visitor.visitSingularInt32Field(value: _storage._clientStreaming, fieldNumber: 167) + } + if _storage._code != 0 { + try visitor.visitSingularInt32Field(value: _storage._code, fieldNumber: 168) } if _storage._codePoint != 0 { - try visitor.visitSingularInt32Field(value: _storage._codePoint, fieldNumber: 163) + try visitor.visitSingularInt32Field(value: _storage._codePoint, fieldNumber: 169) } if _storage._codeUnits != 0 { - try visitor.visitSingularInt32Field(value: _storage._codeUnits, fieldNumber: 164) + try visitor.visitSingularInt32Field(value: _storage._codeUnits, fieldNumber: 170) } if _storage._collection != 0 { - try visitor.visitSingularInt32Field(value: _storage._collection, fieldNumber: 165) + try visitor.visitSingularInt32Field(value: _storage._collection, fieldNumber: 171) } if _storage._com != 0 { - try visitor.visitSingularInt32Field(value: _storage._com, fieldNumber: 166) + try visitor.visitSingularInt32Field(value: _storage._com, fieldNumber: 172) } if _storage._comma != 0 { - try visitor.visitSingularInt32Field(value: _storage._comma, fieldNumber: 167) + try visitor.visitSingularInt32Field(value: _storage._comma, fieldNumber: 173) } if _storage._consumedBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._consumedBytes, fieldNumber: 168) + try visitor.visitSingularInt32Field(value: _storage._consumedBytes, fieldNumber: 174) } if _storage._contentsOf != 0 { - try visitor.visitSingularInt32Field(value: _storage._contentsOf, fieldNumber: 169) + try visitor.visitSingularInt32Field(value: _storage._contentsOf, fieldNumber: 175) + } + if _storage._copy != 0 { + try visitor.visitSingularInt32Field(value: _storage._copy, fieldNumber: 176) } if _storage._count != 0 { - try visitor.visitSingularInt32Field(value: _storage._count, fieldNumber: 170) + try visitor.visitSingularInt32Field(value: _storage._count, fieldNumber: 177) } if _storage._countVarintsInBuffer != 0 { - try visitor.visitSingularInt32Field(value: _storage._countVarintsInBuffer, fieldNumber: 171) + try visitor.visitSingularInt32Field(value: _storage._countVarintsInBuffer, fieldNumber: 178) } if _storage._csharpNamespace != 0 { - try visitor.visitSingularInt32Field(value: _storage._csharpNamespace, fieldNumber: 172) + try visitor.visitSingularInt32Field(value: _storage._csharpNamespace, fieldNumber: 179) } if _storage._ctype != 0 { - try visitor.visitSingularInt32Field(value: _storage._ctype, fieldNumber: 173) + try visitor.visitSingularInt32Field(value: _storage._ctype, fieldNumber: 180) } if _storage._customCodable != 0 { - try visitor.visitSingularInt32Field(value: _storage._customCodable, fieldNumber: 174) + try visitor.visitSingularInt32Field(value: _storage._customCodable, fieldNumber: 181) } if _storage._customDebugStringConvertible != 0 { - try visitor.visitSingularInt32Field(value: _storage._customDebugStringConvertible, fieldNumber: 175) + try visitor.visitSingularInt32Field(value: _storage._customDebugStringConvertible, fieldNumber: 182) + } + if _storage._customStringConvertible != 0 { + try visitor.visitSingularInt32Field(value: _storage._customStringConvertible, fieldNumber: 183) } if _storage._d != 0 { - try visitor.visitSingularInt32Field(value: _storage._d, fieldNumber: 176) + try visitor.visitSingularInt32Field(value: _storage._d, fieldNumber: 184) } if _storage._data != 0 { - try visitor.visitSingularInt32Field(value: _storage._data, fieldNumber: 177) + try visitor.visitSingularInt32Field(value: _storage._data, fieldNumber: 185) } if _storage._dataResult != 0 { - try visitor.visitSingularInt32Field(value: _storage._dataResult, fieldNumber: 178) + try visitor.visitSingularInt32Field(value: _storage._dataResult, fieldNumber: 186) } if _storage._date != 0 { - try visitor.visitSingularInt32Field(value: _storage._date, fieldNumber: 179) + try visitor.visitSingularInt32Field(value: _storage._date, fieldNumber: 187) } if _storage._daySec != 0 { - try visitor.visitSingularInt32Field(value: _storage._daySec, fieldNumber: 180) + try visitor.visitSingularInt32Field(value: _storage._daySec, fieldNumber: 188) } if _storage._daysSinceEpoch != 0 { - try visitor.visitSingularInt32Field(value: _storage._daysSinceEpoch, fieldNumber: 181) + try visitor.visitSingularInt32Field(value: _storage._daysSinceEpoch, fieldNumber: 189) } if _storage._debugDescription_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._debugDescription_p, fieldNumber: 182) + try visitor.visitSingularInt32Field(value: _storage._debugDescription_p, fieldNumber: 190) } if _storage._debugRedact != 0 { - try visitor.visitSingularInt32Field(value: _storage._debugRedact, fieldNumber: 183) + try visitor.visitSingularInt32Field(value: _storage._debugRedact, fieldNumber: 191) } if _storage._declaration != 0 { - try visitor.visitSingularInt32Field(value: _storage._declaration, fieldNumber: 184) + try visitor.visitSingularInt32Field(value: _storage._declaration, fieldNumber: 192) } if _storage._decoded != 0 { - try visitor.visitSingularInt32Field(value: _storage._decoded, fieldNumber: 185) + try visitor.visitSingularInt32Field(value: _storage._decoded, fieldNumber: 193) } if _storage._decodedFromJsonnull != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodedFromJsonnull, fieldNumber: 186) + try visitor.visitSingularInt32Field(value: _storage._decodedFromJsonnull, fieldNumber: 194) } if _storage._decodeExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeExtensionField, fieldNumber: 187) + try visitor.visitSingularInt32Field(value: _storage._decodeExtensionField, fieldNumber: 195) } if _storage._decodeExtensionFieldsAsMessageSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeExtensionFieldsAsMessageSet, fieldNumber: 188) + try visitor.visitSingularInt32Field(value: _storage._decodeExtensionFieldsAsMessageSet, fieldNumber: 196) } if _storage._decodeJson != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeJson, fieldNumber: 189) + try visitor.visitSingularInt32Field(value: _storage._decodeJson, fieldNumber: 197) } if _storage._decodeMapField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeMapField, fieldNumber: 190) + try visitor.visitSingularInt32Field(value: _storage._decodeMapField, fieldNumber: 198) } if _storage._decodeMessage != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeMessage, fieldNumber: 191) + try visitor.visitSingularInt32Field(value: _storage._decodeMessage, fieldNumber: 199) } if _storage._decoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._decoder, fieldNumber: 192) + try visitor.visitSingularInt32Field(value: _storage._decoder, fieldNumber: 200) } if _storage._decodeRepeated != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeated, fieldNumber: 193) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeated, fieldNumber: 201) } if _storage._decodeRepeatedBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedBoolField, fieldNumber: 194) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedBoolField, fieldNumber: 202) } if _storage._decodeRepeatedBytesField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedBytesField, fieldNumber: 195) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedBytesField, fieldNumber: 203) } if _storage._decodeRepeatedDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedDoubleField, fieldNumber: 196) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedDoubleField, fieldNumber: 204) } if _storage._decodeRepeatedEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedEnumField, fieldNumber: 197) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedEnumField, fieldNumber: 205) } if _storage._decodeRepeatedFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFixed32Field, fieldNumber: 198) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFixed32Field, fieldNumber: 206) } if _storage._decodeRepeatedFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFixed64Field, fieldNumber: 199) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFixed64Field, fieldNumber: 207) } if _storage._decodeRepeatedFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFloatField, fieldNumber: 200) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFloatField, fieldNumber: 208) } if _storage._decodeRepeatedGroupField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedGroupField, fieldNumber: 201) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedGroupField, fieldNumber: 209) } if _storage._decodeRepeatedInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedInt32Field, fieldNumber: 202) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedInt32Field, fieldNumber: 210) } if _storage._decodeRepeatedInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedInt64Field, fieldNumber: 203) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedInt64Field, fieldNumber: 211) } if _storage._decodeRepeatedMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedMessageField, fieldNumber: 204) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedMessageField, fieldNumber: 212) } if _storage._decodeRepeatedSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSfixed32Field, fieldNumber: 205) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSfixed32Field, fieldNumber: 213) } if _storage._decodeRepeatedSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSfixed64Field, fieldNumber: 206) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSfixed64Field, fieldNumber: 214) } if _storage._decodeRepeatedSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSint32Field, fieldNumber: 207) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSint32Field, fieldNumber: 215) } if _storage._decodeRepeatedSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSint64Field, fieldNumber: 208) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSint64Field, fieldNumber: 216) } if _storage._decodeRepeatedStringField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedStringField, fieldNumber: 209) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedStringField, fieldNumber: 217) } if _storage._decodeRepeatedUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedUint32Field, fieldNumber: 210) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedUint32Field, fieldNumber: 218) } if _storage._decodeRepeatedUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedUint64Field, fieldNumber: 211) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedUint64Field, fieldNumber: 219) } if _storage._decodeSingular != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingular, fieldNumber: 212) + try visitor.visitSingularInt32Field(value: _storage._decodeSingular, fieldNumber: 220) } if _storage._decodeSingularBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularBoolField, fieldNumber: 213) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularBoolField, fieldNumber: 221) } if _storage._decodeSingularBytesField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularBytesField, fieldNumber: 214) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularBytesField, fieldNumber: 222) } if _storage._decodeSingularDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularDoubleField, fieldNumber: 215) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularDoubleField, fieldNumber: 223) } if _storage._decodeSingularEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularEnumField, fieldNumber: 216) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularEnumField, fieldNumber: 224) } if _storage._decodeSingularFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularFixed32Field, fieldNumber: 217) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularFixed32Field, fieldNumber: 225) } if _storage._decodeSingularFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularFixed64Field, fieldNumber: 218) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularFixed64Field, fieldNumber: 226) } if _storage._decodeSingularFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularFloatField, fieldNumber: 219) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularFloatField, fieldNumber: 227) } if _storage._decodeSingularGroupField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularGroupField, fieldNumber: 220) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularGroupField, fieldNumber: 228) } if _storage._decodeSingularInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularInt32Field, fieldNumber: 221) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularInt32Field, fieldNumber: 229) } if _storage._decodeSingularInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularInt64Field, fieldNumber: 222) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularInt64Field, fieldNumber: 230) } if _storage._decodeSingularMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularMessageField, fieldNumber: 223) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularMessageField, fieldNumber: 231) } if _storage._decodeSingularSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularSfixed32Field, fieldNumber: 224) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularSfixed32Field, fieldNumber: 232) } if _storage._decodeSingularSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularSfixed64Field, fieldNumber: 225) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularSfixed64Field, fieldNumber: 233) } if _storage._decodeSingularSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularSint32Field, fieldNumber: 226) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularSint32Field, fieldNumber: 234) } if _storage._decodeSingularSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularSint64Field, fieldNumber: 227) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularSint64Field, fieldNumber: 235) } if _storage._decodeSingularStringField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularStringField, fieldNumber: 228) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularStringField, fieldNumber: 236) } if _storage._decodeSingularUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularUint32Field, fieldNumber: 229) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularUint32Field, fieldNumber: 237) } if _storage._decodeSingularUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularUint64Field, fieldNumber: 230) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularUint64Field, fieldNumber: 238) } if _storage._decodeTextFormat != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeTextFormat, fieldNumber: 231) + try visitor.visitSingularInt32Field(value: _storage._decodeTextFormat, fieldNumber: 239) } if _storage._defaultAnyTypeUrlprefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._defaultAnyTypeUrlprefix, fieldNumber: 232) + try visitor.visitSingularInt32Field(value: _storage._defaultAnyTypeUrlprefix, fieldNumber: 240) } if _storage._defaults != 0 { - try visitor.visitSingularInt32Field(value: _storage._defaults, fieldNumber: 233) + try visitor.visitSingularInt32Field(value: _storage._defaults, fieldNumber: 241) } if _storage._defaultValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._defaultValue, fieldNumber: 234) + try visitor.visitSingularInt32Field(value: _storage._defaultValue, fieldNumber: 242) } if _storage._dependency != 0 { - try visitor.visitSingularInt32Field(value: _storage._dependency, fieldNumber: 235) + try visitor.visitSingularInt32Field(value: _storage._dependency, fieldNumber: 243) } if _storage._deprecated != 0 { - try visitor.visitSingularInt32Field(value: _storage._deprecated, fieldNumber: 236) + try visitor.visitSingularInt32Field(value: _storage._deprecated, fieldNumber: 244) } if _storage._deprecatedLegacyJsonFieldConflicts != 0 { - try visitor.visitSingularInt32Field(value: _storage._deprecatedLegacyJsonFieldConflicts, fieldNumber: 237) + try visitor.visitSingularInt32Field(value: _storage._deprecatedLegacyJsonFieldConflicts, fieldNumber: 245) } if _storage._deprecationWarning != 0 { - try visitor.visitSingularInt32Field(value: _storage._deprecationWarning, fieldNumber: 238) + try visitor.visitSingularInt32Field(value: _storage._deprecationWarning, fieldNumber: 246) } if _storage._description_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._description_p, fieldNumber: 239) + try visitor.visitSingularInt32Field(value: _storage._description_p, fieldNumber: 247) } if _storage._descriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._descriptorProto, fieldNumber: 240) + try visitor.visitSingularInt32Field(value: _storage._descriptorProto, fieldNumber: 248) } if _storage._dictionary != 0 { - try visitor.visitSingularInt32Field(value: _storage._dictionary, fieldNumber: 241) + try visitor.visitSingularInt32Field(value: _storage._dictionary, fieldNumber: 249) } if _storage._dictionaryLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._dictionaryLiteral, fieldNumber: 242) + try visitor.visitSingularInt32Field(value: _storage._dictionaryLiteral, fieldNumber: 250) } if _storage._digit != 0 { - try visitor.visitSingularInt32Field(value: _storage._digit, fieldNumber: 243) + try visitor.visitSingularInt32Field(value: _storage._digit, fieldNumber: 251) } if _storage._digit0 != 0 { - try visitor.visitSingularInt32Field(value: _storage._digit0, fieldNumber: 244) + try visitor.visitSingularInt32Field(value: _storage._digit0, fieldNumber: 252) } if _storage._digit1 != 0 { - try visitor.visitSingularInt32Field(value: _storage._digit1, fieldNumber: 245) + try visitor.visitSingularInt32Field(value: _storage._digit1, fieldNumber: 253) } if _storage._digitCount != 0 { - try visitor.visitSingularInt32Field(value: _storage._digitCount, fieldNumber: 246) + try visitor.visitSingularInt32Field(value: _storage._digitCount, fieldNumber: 254) } if _storage._digits != 0 { - try visitor.visitSingularInt32Field(value: _storage._digits, fieldNumber: 247) + try visitor.visitSingularInt32Field(value: _storage._digits, fieldNumber: 255) } if _storage._digitValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._digitValue, fieldNumber: 248) + try visitor.visitSingularInt32Field(value: _storage._digitValue, fieldNumber: 256) } if _storage._discardableResult != 0 { - try visitor.visitSingularInt32Field(value: _storage._discardableResult, fieldNumber: 249) + try visitor.visitSingularInt32Field(value: _storage._discardableResult, fieldNumber: 257) } if _storage._discardUnknownFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._discardUnknownFields, fieldNumber: 250) + try visitor.visitSingularInt32Field(value: _storage._discardUnknownFields, fieldNumber: 258) } if _storage._double != 0 { - try visitor.visitSingularInt32Field(value: _storage._double, fieldNumber: 251) + try visitor.visitSingularInt32Field(value: _storage._double, fieldNumber: 259) } if _storage._doubleValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._doubleValue, fieldNumber: 252) + try visitor.visitSingularInt32Field(value: _storage._doubleValue, fieldNumber: 260) } if _storage._duration != 0 { - try visitor.visitSingularInt32Field(value: _storage._duration, fieldNumber: 253) + try visitor.visitSingularInt32Field(value: _storage._duration, fieldNumber: 261) } if _storage._e != 0 { - try visitor.visitSingularInt32Field(value: _storage._e, fieldNumber: 254) + try visitor.visitSingularInt32Field(value: _storage._e, fieldNumber: 262) } if _storage._edition != 0 { - try visitor.visitSingularInt32Field(value: _storage._edition, fieldNumber: 255) + try visitor.visitSingularInt32Field(value: _storage._edition, fieldNumber: 263) } if _storage._editionDefault != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionDefault, fieldNumber: 256) + try visitor.visitSingularInt32Field(value: _storage._editionDefault, fieldNumber: 264) } if _storage._editionDefaults != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionDefaults, fieldNumber: 257) + try visitor.visitSingularInt32Field(value: _storage._editionDefaults, fieldNumber: 265) } if _storage._editionDeprecated != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionDeprecated, fieldNumber: 258) + try visitor.visitSingularInt32Field(value: _storage._editionDeprecated, fieldNumber: 266) } if _storage._editionIntroduced != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionIntroduced, fieldNumber: 259) + try visitor.visitSingularInt32Field(value: _storage._editionIntroduced, fieldNumber: 267) } if _storage._editionRemoved != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionRemoved, fieldNumber: 260) + try visitor.visitSingularInt32Field(value: _storage._editionRemoved, fieldNumber: 268) } if _storage._element != 0 { - try visitor.visitSingularInt32Field(value: _storage._element, fieldNumber: 261) + try visitor.visitSingularInt32Field(value: _storage._element, fieldNumber: 269) } if _storage._elements != 0 { - try visitor.visitSingularInt32Field(value: _storage._elements, fieldNumber: 262) + try visitor.visitSingularInt32Field(value: _storage._elements, fieldNumber: 270) } if _storage._emitExtensionFieldName != 0 { - try visitor.visitSingularInt32Field(value: _storage._emitExtensionFieldName, fieldNumber: 263) + try visitor.visitSingularInt32Field(value: _storage._emitExtensionFieldName, fieldNumber: 271) } if _storage._emitFieldName != 0 { - try visitor.visitSingularInt32Field(value: _storage._emitFieldName, fieldNumber: 264) + try visitor.visitSingularInt32Field(value: _storage._emitFieldName, fieldNumber: 272) } if _storage._emitFieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._emitFieldNumber, fieldNumber: 265) + try visitor.visitSingularInt32Field(value: _storage._emitFieldNumber, fieldNumber: 273) } if _storage._empty != 0 { - try visitor.visitSingularInt32Field(value: _storage._empty, fieldNumber: 266) + try visitor.visitSingularInt32Field(value: _storage._empty, fieldNumber: 274) } if _storage._encodeAsBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._encodeAsBytes, fieldNumber: 267) + try visitor.visitSingularInt32Field(value: _storage._encodeAsBytes, fieldNumber: 275) } if _storage._encoded != 0 { - try visitor.visitSingularInt32Field(value: _storage._encoded, fieldNumber: 268) + try visitor.visitSingularInt32Field(value: _storage._encoded, fieldNumber: 276) } if _storage._encodedJsonstring != 0 { - try visitor.visitSingularInt32Field(value: _storage._encodedJsonstring, fieldNumber: 269) + try visitor.visitSingularInt32Field(value: _storage._encodedJsonstring, fieldNumber: 277) } if _storage._encodedSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._encodedSize, fieldNumber: 270) + try visitor.visitSingularInt32Field(value: _storage._encodedSize, fieldNumber: 278) } if _storage._encodeField != 0 { - try visitor.visitSingularInt32Field(value: _storage._encodeField, fieldNumber: 271) + try visitor.visitSingularInt32Field(value: _storage._encodeField, fieldNumber: 279) } if _storage._encoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._encoder, fieldNumber: 272) + try visitor.visitSingularInt32Field(value: _storage._encoder, fieldNumber: 280) } if _storage._end != 0 { - try visitor.visitSingularInt32Field(value: _storage._end, fieldNumber: 273) + try visitor.visitSingularInt32Field(value: _storage._end, fieldNumber: 281) } if _storage._endArray != 0 { - try visitor.visitSingularInt32Field(value: _storage._endArray, fieldNumber: 274) + try visitor.visitSingularInt32Field(value: _storage._endArray, fieldNumber: 282) } if _storage._endMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._endMessageField, fieldNumber: 275) + try visitor.visitSingularInt32Field(value: _storage._endMessageField, fieldNumber: 283) } if _storage._endObject != 0 { - try visitor.visitSingularInt32Field(value: _storage._endObject, fieldNumber: 276) + try visitor.visitSingularInt32Field(value: _storage._endObject, fieldNumber: 284) } if _storage._endRegularField != 0 { - try visitor.visitSingularInt32Field(value: _storage._endRegularField, fieldNumber: 277) + try visitor.visitSingularInt32Field(value: _storage._endRegularField, fieldNumber: 285) } if _storage._enum != 0 { - try visitor.visitSingularInt32Field(value: _storage._enum, fieldNumber: 278) + try visitor.visitSingularInt32Field(value: _storage._enum, fieldNumber: 286) } if _storage._enumDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumDescriptorProto, fieldNumber: 279) + try visitor.visitSingularInt32Field(value: _storage._enumDescriptorProto, fieldNumber: 287) } if _storage._enumOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumOptions, fieldNumber: 280) + try visitor.visitSingularInt32Field(value: _storage._enumOptions, fieldNumber: 288) } if _storage._enumReservedRange != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumReservedRange, fieldNumber: 281) + try visitor.visitSingularInt32Field(value: _storage._enumReservedRange, fieldNumber: 289) } if _storage._enumType != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumType, fieldNumber: 282) + try visitor.visitSingularInt32Field(value: _storage._enumType, fieldNumber: 290) } if _storage._enumvalue != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumvalue, fieldNumber: 283) + try visitor.visitSingularInt32Field(value: _storage._enumvalue, fieldNumber: 291) } if _storage._enumValueDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumValueDescriptorProto, fieldNumber: 284) + try visitor.visitSingularInt32Field(value: _storage._enumValueDescriptorProto, fieldNumber: 292) } if _storage._enumValueOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumValueOptions, fieldNumber: 285) + try visitor.visitSingularInt32Field(value: _storage._enumValueOptions, fieldNumber: 293) } if _storage._equatable != 0 { - try visitor.visitSingularInt32Field(value: _storage._equatable, fieldNumber: 286) + try visitor.visitSingularInt32Field(value: _storage._equatable, fieldNumber: 294) } if _storage._error != 0 { - try visitor.visitSingularInt32Field(value: _storage._error, fieldNumber: 287) + try visitor.visitSingularInt32Field(value: _storage._error, fieldNumber: 295) } if _storage._expressibleByArrayLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._expressibleByArrayLiteral, fieldNumber: 288) + try visitor.visitSingularInt32Field(value: _storage._expressibleByArrayLiteral, fieldNumber: 296) } if _storage._expressibleByDictionaryLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._expressibleByDictionaryLiteral, fieldNumber: 289) + try visitor.visitSingularInt32Field(value: _storage._expressibleByDictionaryLiteral, fieldNumber: 297) } if _storage._ext != 0 { - try visitor.visitSingularInt32Field(value: _storage._ext, fieldNumber: 290) + try visitor.visitSingularInt32Field(value: _storage._ext, fieldNumber: 298) } if _storage._extDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._extDecoder, fieldNumber: 291) + try visitor.visitSingularInt32Field(value: _storage._extDecoder, fieldNumber: 299) } if _storage._extendedGraphemeClusterLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._extendedGraphemeClusterLiteral, fieldNumber: 292) + try visitor.visitSingularInt32Field(value: _storage._extendedGraphemeClusterLiteral, fieldNumber: 300) } if _storage._extendedGraphemeClusterLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._extendedGraphemeClusterLiteralType, fieldNumber: 293) + try visitor.visitSingularInt32Field(value: _storage._extendedGraphemeClusterLiteralType, fieldNumber: 301) } if _storage._extendee != 0 { - try visitor.visitSingularInt32Field(value: _storage._extendee, fieldNumber: 294) + try visitor.visitSingularInt32Field(value: _storage._extendee, fieldNumber: 302) } if _storage._extensibleMessage != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensibleMessage, fieldNumber: 295) + try visitor.visitSingularInt32Field(value: _storage._extensibleMessage, fieldNumber: 303) } if _storage._extension != 0 { - try visitor.visitSingularInt32Field(value: _storage._extension, fieldNumber: 296) + try visitor.visitSingularInt32Field(value: _storage._extension, fieldNumber: 304) } if _storage._extensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionField, fieldNumber: 297) + try visitor.visitSingularInt32Field(value: _storage._extensionField, fieldNumber: 305) } if _storage._extensionFieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionFieldNumber, fieldNumber: 298) + try visitor.visitSingularInt32Field(value: _storage._extensionFieldNumber, fieldNumber: 306) } if _storage._extensionFieldValueSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionFieldValueSet, fieldNumber: 299) + try visitor.visitSingularInt32Field(value: _storage._extensionFieldValueSet, fieldNumber: 307) } if _storage._extensionMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionMap, fieldNumber: 300) + try visitor.visitSingularInt32Field(value: _storage._extensionMap, fieldNumber: 308) } if _storage._extensionRange != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionRange, fieldNumber: 301) + try visitor.visitSingularInt32Field(value: _storage._extensionRange, fieldNumber: 309) } if _storage._extensionRangeOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionRangeOptions, fieldNumber: 302) + try visitor.visitSingularInt32Field(value: _storage._extensionRangeOptions, fieldNumber: 310) } if _storage._extensions != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensions, fieldNumber: 303) + try visitor.visitSingularInt32Field(value: _storage._extensions, fieldNumber: 311) } if _storage._extras != 0 { - try visitor.visitSingularInt32Field(value: _storage._extras, fieldNumber: 304) + try visitor.visitSingularInt32Field(value: _storage._extras, fieldNumber: 312) } if _storage._f != 0 { - try visitor.visitSingularInt32Field(value: _storage._f, fieldNumber: 305) + try visitor.visitSingularInt32Field(value: _storage._f, fieldNumber: 313) } if _storage._false != 0 { - try visitor.visitSingularInt32Field(value: _storage._false, fieldNumber: 306) + try visitor.visitSingularInt32Field(value: _storage._false, fieldNumber: 314) } if _storage._features != 0 { - try visitor.visitSingularInt32Field(value: _storage._features, fieldNumber: 307) + try visitor.visitSingularInt32Field(value: _storage._features, fieldNumber: 315) } if _storage._featureSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._featureSet, fieldNumber: 308) + try visitor.visitSingularInt32Field(value: _storage._featureSet, fieldNumber: 316) } if _storage._featureSetDefaults != 0 { - try visitor.visitSingularInt32Field(value: _storage._featureSetDefaults, fieldNumber: 309) + try visitor.visitSingularInt32Field(value: _storage._featureSetDefaults, fieldNumber: 317) } if _storage._featureSetEditionDefault != 0 { - try visitor.visitSingularInt32Field(value: _storage._featureSetEditionDefault, fieldNumber: 310) + try visitor.visitSingularInt32Field(value: _storage._featureSetEditionDefault, fieldNumber: 318) } if _storage._featureSupport != 0 { - try visitor.visitSingularInt32Field(value: _storage._featureSupport, fieldNumber: 311) + try visitor.visitSingularInt32Field(value: _storage._featureSupport, fieldNumber: 319) } if _storage._field != 0 { - try visitor.visitSingularInt32Field(value: _storage._field, fieldNumber: 312) + try visitor.visitSingularInt32Field(value: _storage._field, fieldNumber: 320) } if _storage._fieldData != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldData, fieldNumber: 313) + try visitor.visitSingularInt32Field(value: _storage._fieldData, fieldNumber: 321) } if _storage._fieldDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldDescriptorProto, fieldNumber: 314) + try visitor.visitSingularInt32Field(value: _storage._fieldDescriptorProto, fieldNumber: 322) } if _storage._fieldMask != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldMask, fieldNumber: 315) + try visitor.visitSingularInt32Field(value: _storage._fieldMask, fieldNumber: 323) } if _storage._fieldName != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldName, fieldNumber: 316) + try visitor.visitSingularInt32Field(value: _storage._fieldName, fieldNumber: 324) } if _storage._fieldNameCount != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldNameCount, fieldNumber: 317) + try visitor.visitSingularInt32Field(value: _storage._fieldNameCount, fieldNumber: 325) } if _storage._fieldNum != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldNum, fieldNumber: 318) + try visitor.visitSingularInt32Field(value: _storage._fieldNum, fieldNumber: 326) } if _storage._fieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldNumber, fieldNumber: 319) + try visitor.visitSingularInt32Field(value: _storage._fieldNumber, fieldNumber: 327) } if _storage._fieldNumberForProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldNumberForProto, fieldNumber: 320) + try visitor.visitSingularInt32Field(value: _storage._fieldNumberForProto, fieldNumber: 328) } if _storage._fieldOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldOptions, fieldNumber: 321) + try visitor.visitSingularInt32Field(value: _storage._fieldOptions, fieldNumber: 329) } if _storage._fieldPresence != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldPresence, fieldNumber: 322) + try visitor.visitSingularInt32Field(value: _storage._fieldPresence, fieldNumber: 330) } if _storage._fields != 0 { - try visitor.visitSingularInt32Field(value: _storage._fields, fieldNumber: 323) + try visitor.visitSingularInt32Field(value: _storage._fields, fieldNumber: 331) } if _storage._fieldSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldSize, fieldNumber: 324) + try visitor.visitSingularInt32Field(value: _storage._fieldSize, fieldNumber: 332) } if _storage._fieldTag != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldTag, fieldNumber: 325) + try visitor.visitSingularInt32Field(value: _storage._fieldTag, fieldNumber: 333) } if _storage._fieldType != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldType, fieldNumber: 326) + try visitor.visitSingularInt32Field(value: _storage._fieldType, fieldNumber: 334) } if _storage._file != 0 { - try visitor.visitSingularInt32Field(value: _storage._file, fieldNumber: 327) + try visitor.visitSingularInt32Field(value: _storage._file, fieldNumber: 335) } if _storage._fileDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._fileDescriptorProto, fieldNumber: 328) + try visitor.visitSingularInt32Field(value: _storage._fileDescriptorProto, fieldNumber: 336) } if _storage._fileDescriptorSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._fileDescriptorSet, fieldNumber: 329) + try visitor.visitSingularInt32Field(value: _storage._fileDescriptorSet, fieldNumber: 337) } if _storage._fileName != 0 { - try visitor.visitSingularInt32Field(value: _storage._fileName, fieldNumber: 330) + try visitor.visitSingularInt32Field(value: _storage._fileName, fieldNumber: 338) } if _storage._fileOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._fileOptions, fieldNumber: 331) + try visitor.visitSingularInt32Field(value: _storage._fileOptions, fieldNumber: 339) } if _storage._filter != 0 { - try visitor.visitSingularInt32Field(value: _storage._filter, fieldNumber: 332) + try visitor.visitSingularInt32Field(value: _storage._filter, fieldNumber: 340) } if _storage._final != 0 { - try visitor.visitSingularInt32Field(value: _storage._final, fieldNumber: 333) + try visitor.visitSingularInt32Field(value: _storage._final, fieldNumber: 341) } if _storage._finiteOnly != 0 { - try visitor.visitSingularInt32Field(value: _storage._finiteOnly, fieldNumber: 334) + try visitor.visitSingularInt32Field(value: _storage._finiteOnly, fieldNumber: 342) } if _storage._first != 0 { - try visitor.visitSingularInt32Field(value: _storage._first, fieldNumber: 335) + try visitor.visitSingularInt32Field(value: _storage._first, fieldNumber: 343) } if _storage._firstItem != 0 { - try visitor.visitSingularInt32Field(value: _storage._firstItem, fieldNumber: 336) + try visitor.visitSingularInt32Field(value: _storage._firstItem, fieldNumber: 344) } if _storage._fixedFeatures != 0 { - try visitor.visitSingularInt32Field(value: _storage._fixedFeatures, fieldNumber: 337) + try visitor.visitSingularInt32Field(value: _storage._fixedFeatures, fieldNumber: 345) } if _storage._float != 0 { - try visitor.visitSingularInt32Field(value: _storage._float, fieldNumber: 338) + try visitor.visitSingularInt32Field(value: _storage._float, fieldNumber: 346) } if _storage._floatLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._floatLiteral, fieldNumber: 339) + try visitor.visitSingularInt32Field(value: _storage._floatLiteral, fieldNumber: 347) } if _storage._floatLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._floatLiteralType, fieldNumber: 340) + try visitor.visitSingularInt32Field(value: _storage._floatLiteralType, fieldNumber: 348) } if _storage._floatValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._floatValue, fieldNumber: 341) + try visitor.visitSingularInt32Field(value: _storage._floatValue, fieldNumber: 349) } if _storage._forMessageName != 0 { - try visitor.visitSingularInt32Field(value: _storage._forMessageName, fieldNumber: 342) + try visitor.visitSingularInt32Field(value: _storage._forMessageName, fieldNumber: 350) } if _storage._formUnion != 0 { - try visitor.visitSingularInt32Field(value: _storage._formUnion, fieldNumber: 343) + try visitor.visitSingularInt32Field(value: _storage._formUnion, fieldNumber: 351) } if _storage._forReadingFrom != 0 { - try visitor.visitSingularInt32Field(value: _storage._forReadingFrom, fieldNumber: 344) + try visitor.visitSingularInt32Field(value: _storage._forReadingFrom, fieldNumber: 352) } if _storage._forTypeURL != 0 { - try visitor.visitSingularInt32Field(value: _storage._forTypeURL, fieldNumber: 345) + try visitor.visitSingularInt32Field(value: _storage._forTypeURL, fieldNumber: 353) } if _storage._forwardParser != 0 { - try visitor.visitSingularInt32Field(value: _storage._forwardParser, fieldNumber: 346) + try visitor.visitSingularInt32Field(value: _storage._forwardParser, fieldNumber: 354) } if _storage._forWritingInto != 0 { - try visitor.visitSingularInt32Field(value: _storage._forWritingInto, fieldNumber: 347) + try visitor.visitSingularInt32Field(value: _storage._forWritingInto, fieldNumber: 355) } if _storage._from != 0 { - try visitor.visitSingularInt32Field(value: _storage._from, fieldNumber: 348) + try visitor.visitSingularInt32Field(value: _storage._from, fieldNumber: 356) } if _storage._fromAscii2 != 0 { - try visitor.visitSingularInt32Field(value: _storage._fromAscii2, fieldNumber: 349) + try visitor.visitSingularInt32Field(value: _storage._fromAscii2, fieldNumber: 357) } if _storage._fromAscii4 != 0 { - try visitor.visitSingularInt32Field(value: _storage._fromAscii4, fieldNumber: 350) + try visitor.visitSingularInt32Field(value: _storage._fromAscii4, fieldNumber: 358) } if _storage._fromByteOffset != 0 { - try visitor.visitSingularInt32Field(value: _storage._fromByteOffset, fieldNumber: 351) + try visitor.visitSingularInt32Field(value: _storage._fromByteOffset, fieldNumber: 359) } if _storage._fromHexDigit != 0 { - try visitor.visitSingularInt32Field(value: _storage._fromHexDigit, fieldNumber: 352) + try visitor.visitSingularInt32Field(value: _storage._fromHexDigit, fieldNumber: 360) } if _storage._fullName != 0 { - try visitor.visitSingularInt32Field(value: _storage._fullName, fieldNumber: 353) + try visitor.visitSingularInt32Field(value: _storage._fullName, fieldNumber: 361) } if _storage._func != 0 { - try visitor.visitSingularInt32Field(value: _storage._func, fieldNumber: 354) + try visitor.visitSingularInt32Field(value: _storage._func, fieldNumber: 362) + } + if _storage._function != 0 { + try visitor.visitSingularInt32Field(value: _storage._function, fieldNumber: 363) } if _storage._g != 0 { - try visitor.visitSingularInt32Field(value: _storage._g, fieldNumber: 355) + try visitor.visitSingularInt32Field(value: _storage._g, fieldNumber: 364) } if _storage._generatedCodeInfo != 0 { - try visitor.visitSingularInt32Field(value: _storage._generatedCodeInfo, fieldNumber: 356) + try visitor.visitSingularInt32Field(value: _storage._generatedCodeInfo, fieldNumber: 365) } if _storage._get != 0 { - try visitor.visitSingularInt32Field(value: _storage._get, fieldNumber: 357) + try visitor.visitSingularInt32Field(value: _storage._get, fieldNumber: 366) } if _storage._getExtensionValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._getExtensionValue, fieldNumber: 358) + try visitor.visitSingularInt32Field(value: _storage._getExtensionValue, fieldNumber: 367) } if _storage._googleapis != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleapis, fieldNumber: 359) + try visitor.visitSingularInt32Field(value: _storage._googleapis, fieldNumber: 368) } if _storage._googleProtobufAny != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufAny, fieldNumber: 360) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufAny, fieldNumber: 369) } if _storage._googleProtobufApi != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufApi, fieldNumber: 361) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufApi, fieldNumber: 370) } if _storage._googleProtobufBoolValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufBoolValue, fieldNumber: 362) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufBoolValue, fieldNumber: 371) } if _storage._googleProtobufBytesValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufBytesValue, fieldNumber: 363) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufBytesValue, fieldNumber: 372) } if _storage._googleProtobufDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufDescriptorProto, fieldNumber: 364) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufDescriptorProto, fieldNumber: 373) } if _storage._googleProtobufDoubleValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufDoubleValue, fieldNumber: 365) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufDoubleValue, fieldNumber: 374) } if _storage._googleProtobufDuration != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufDuration, fieldNumber: 366) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufDuration, fieldNumber: 375) } if _storage._googleProtobufEdition != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEdition, fieldNumber: 367) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEdition, fieldNumber: 376) } if _storage._googleProtobufEmpty != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEmpty, fieldNumber: 368) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEmpty, fieldNumber: 377) } if _storage._googleProtobufEnum != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnum, fieldNumber: 369) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnum, fieldNumber: 378) } if _storage._googleProtobufEnumDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumDescriptorProto, fieldNumber: 370) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumDescriptorProto, fieldNumber: 379) } if _storage._googleProtobufEnumOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumOptions, fieldNumber: 371) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumOptions, fieldNumber: 380) } if _storage._googleProtobufEnumValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValue, fieldNumber: 372) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValue, fieldNumber: 381) } if _storage._googleProtobufEnumValueDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValueDescriptorProto, fieldNumber: 373) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValueDescriptorProto, fieldNumber: 382) } if _storage._googleProtobufEnumValueOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValueOptions, fieldNumber: 374) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValueOptions, fieldNumber: 383) } if _storage._googleProtobufExtensionRangeOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufExtensionRangeOptions, fieldNumber: 375) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufExtensionRangeOptions, fieldNumber: 384) } if _storage._googleProtobufFeatureSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFeatureSet, fieldNumber: 376) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFeatureSet, fieldNumber: 385) } if _storage._googleProtobufFeatureSetDefaults != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFeatureSetDefaults, fieldNumber: 377) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFeatureSetDefaults, fieldNumber: 386) } if _storage._googleProtobufField != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufField, fieldNumber: 378) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufField, fieldNumber: 387) } if _storage._googleProtobufFieldDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldDescriptorProto, fieldNumber: 379) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldDescriptorProto, fieldNumber: 388) } if _storage._googleProtobufFieldMask != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldMask, fieldNumber: 380) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldMask, fieldNumber: 389) } if _storage._googleProtobufFieldOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldOptions, fieldNumber: 381) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldOptions, fieldNumber: 390) } if _storage._googleProtobufFileDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileDescriptorProto, fieldNumber: 382) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileDescriptorProto, fieldNumber: 391) } if _storage._googleProtobufFileDescriptorSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileDescriptorSet, fieldNumber: 383) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileDescriptorSet, fieldNumber: 392) } if _storage._googleProtobufFileOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileOptions, fieldNumber: 384) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileOptions, fieldNumber: 393) } if _storage._googleProtobufFloatValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFloatValue, fieldNumber: 385) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFloatValue, fieldNumber: 394) } if _storage._googleProtobufGeneratedCodeInfo != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufGeneratedCodeInfo, fieldNumber: 386) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufGeneratedCodeInfo, fieldNumber: 395) } if _storage._googleProtobufInt32Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufInt32Value, fieldNumber: 387) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufInt32Value, fieldNumber: 396) } if _storage._googleProtobufInt64Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufInt64Value, fieldNumber: 388) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufInt64Value, fieldNumber: 397) } if _storage._googleProtobufListValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufListValue, fieldNumber: 389) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufListValue, fieldNumber: 398) } if _storage._googleProtobufMessageOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMessageOptions, fieldNumber: 390) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMessageOptions, fieldNumber: 399) } if _storage._googleProtobufMethod != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethod, fieldNumber: 391) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethod, fieldNumber: 400) } if _storage._googleProtobufMethodDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethodDescriptorProto, fieldNumber: 392) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethodDescriptorProto, fieldNumber: 401) } if _storage._googleProtobufMethodOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethodOptions, fieldNumber: 393) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethodOptions, fieldNumber: 402) } if _storage._googleProtobufMixin != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMixin, fieldNumber: 394) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMixin, fieldNumber: 403) } if _storage._googleProtobufNullValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufNullValue, fieldNumber: 395) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufNullValue, fieldNumber: 404) } if _storage._googleProtobufOneofDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufOneofDescriptorProto, fieldNumber: 396) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufOneofDescriptorProto, fieldNumber: 405) } if _storage._googleProtobufOneofOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufOneofOptions, fieldNumber: 397) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufOneofOptions, fieldNumber: 406) } if _storage._googleProtobufOption != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufOption, fieldNumber: 398) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufOption, fieldNumber: 407) } if _storage._googleProtobufServiceDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufServiceDescriptorProto, fieldNumber: 399) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufServiceDescriptorProto, fieldNumber: 408) } if _storage._googleProtobufServiceOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufServiceOptions, fieldNumber: 400) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufServiceOptions, fieldNumber: 409) } if _storage._googleProtobufSourceCodeInfo != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufSourceCodeInfo, fieldNumber: 401) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufSourceCodeInfo, fieldNumber: 410) } if _storage._googleProtobufSourceContext != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufSourceContext, fieldNumber: 402) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufSourceContext, fieldNumber: 411) } if _storage._googleProtobufStringValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufStringValue, fieldNumber: 403) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufStringValue, fieldNumber: 412) } if _storage._googleProtobufStruct != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufStruct, fieldNumber: 404) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufStruct, fieldNumber: 413) } if _storage._googleProtobufSyntax != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufSyntax, fieldNumber: 405) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufSyntax, fieldNumber: 414) } if _storage._googleProtobufTimestamp != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufTimestamp, fieldNumber: 406) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufTimestamp, fieldNumber: 415) } if _storage._googleProtobufType != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufType, fieldNumber: 407) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufType, fieldNumber: 416) } if _storage._googleProtobufUint32Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufUint32Value, fieldNumber: 408) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufUint32Value, fieldNumber: 417) } if _storage._googleProtobufUint64Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufUint64Value, fieldNumber: 409) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufUint64Value, fieldNumber: 418) } if _storage._googleProtobufUninterpretedOption != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufUninterpretedOption, fieldNumber: 410) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufUninterpretedOption, fieldNumber: 419) } if _storage._googleProtobufValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufValue, fieldNumber: 411) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufValue, fieldNumber: 420) } if _storage._goPackage != 0 { - try visitor.visitSingularInt32Field(value: _storage._goPackage, fieldNumber: 412) + try visitor.visitSingularInt32Field(value: _storage._goPackage, fieldNumber: 421) } if _storage._group != 0 { - try visitor.visitSingularInt32Field(value: _storage._group, fieldNumber: 413) + try visitor.visitSingularInt32Field(value: _storage._group, fieldNumber: 422) } if _storage._groupFieldNumberStack != 0 { - try visitor.visitSingularInt32Field(value: _storage._groupFieldNumberStack, fieldNumber: 414) + try visitor.visitSingularInt32Field(value: _storage._groupFieldNumberStack, fieldNumber: 423) } if _storage._groupSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._groupSize, fieldNumber: 415) + try visitor.visitSingularInt32Field(value: _storage._groupSize, fieldNumber: 424) } if _storage._hadOneofValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._hadOneofValue, fieldNumber: 416) + try visitor.visitSingularInt32Field(value: _storage._hadOneofValue, fieldNumber: 425) } if _storage._handleConflictingOneOf != 0 { - try visitor.visitSingularInt32Field(value: _storage._handleConflictingOneOf, fieldNumber: 417) + try visitor.visitSingularInt32Field(value: _storage._handleConflictingOneOf, fieldNumber: 426) } if _storage._hasAggregateValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasAggregateValue_p, fieldNumber: 418) + try visitor.visitSingularInt32Field(value: _storage._hasAggregateValue_p, fieldNumber: 427) } if _storage._hasAllowAlias_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasAllowAlias_p, fieldNumber: 419) + try visitor.visitSingularInt32Field(value: _storage._hasAllowAlias_p, fieldNumber: 428) } if _storage._hasBegin_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasBegin_p, fieldNumber: 420) + try visitor.visitSingularInt32Field(value: _storage._hasBegin_p, fieldNumber: 429) } if _storage._hasCcEnableArenas_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasCcEnableArenas_p, fieldNumber: 421) + try visitor.visitSingularInt32Field(value: _storage._hasCcEnableArenas_p, fieldNumber: 430) } if _storage._hasCcGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasCcGenericServices_p, fieldNumber: 422) + try visitor.visitSingularInt32Field(value: _storage._hasCcGenericServices_p, fieldNumber: 431) } if _storage._hasClientStreaming_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasClientStreaming_p, fieldNumber: 423) + try visitor.visitSingularInt32Field(value: _storage._hasClientStreaming_p, fieldNumber: 432) } if _storage._hasCsharpNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasCsharpNamespace_p, fieldNumber: 424) + try visitor.visitSingularInt32Field(value: _storage._hasCsharpNamespace_p, fieldNumber: 433) } if _storage._hasCtype_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasCtype_p, fieldNumber: 425) + try visitor.visitSingularInt32Field(value: _storage._hasCtype_p, fieldNumber: 434) } if _storage._hasDebugRedact_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDebugRedact_p, fieldNumber: 426) + try visitor.visitSingularInt32Field(value: _storage._hasDebugRedact_p, fieldNumber: 435) } if _storage._hasDefaultValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDefaultValue_p, fieldNumber: 427) + try visitor.visitSingularInt32Field(value: _storage._hasDefaultValue_p, fieldNumber: 436) } if _storage._hasDeprecated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDeprecated_p, fieldNumber: 428) + try visitor.visitSingularInt32Field(value: _storage._hasDeprecated_p, fieldNumber: 437) } if _storage._hasDeprecatedLegacyJsonFieldConflicts_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDeprecatedLegacyJsonFieldConflicts_p, fieldNumber: 429) + try visitor.visitSingularInt32Field(value: _storage._hasDeprecatedLegacyJsonFieldConflicts_p, fieldNumber: 438) } if _storage._hasDeprecationWarning_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDeprecationWarning_p, fieldNumber: 430) + try visitor.visitSingularInt32Field(value: _storage._hasDeprecationWarning_p, fieldNumber: 439) } if _storage._hasDoubleValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDoubleValue_p, fieldNumber: 431) + try visitor.visitSingularInt32Field(value: _storage._hasDoubleValue_p, fieldNumber: 440) } if _storage._hasEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEdition_p, fieldNumber: 432) + try visitor.visitSingularInt32Field(value: _storage._hasEdition_p, fieldNumber: 441) } if _storage._hasEditionDeprecated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEditionDeprecated_p, fieldNumber: 433) + try visitor.visitSingularInt32Field(value: _storage._hasEditionDeprecated_p, fieldNumber: 442) } if _storage._hasEditionIntroduced_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEditionIntroduced_p, fieldNumber: 434) + try visitor.visitSingularInt32Field(value: _storage._hasEditionIntroduced_p, fieldNumber: 443) } if _storage._hasEditionRemoved_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEditionRemoved_p, fieldNumber: 435) + try visitor.visitSingularInt32Field(value: _storage._hasEditionRemoved_p, fieldNumber: 444) } if _storage._hasEnd_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEnd_p, fieldNumber: 436) + try visitor.visitSingularInt32Field(value: _storage._hasEnd_p, fieldNumber: 445) } if _storage._hasEnumType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEnumType_p, fieldNumber: 437) + try visitor.visitSingularInt32Field(value: _storage._hasEnumType_p, fieldNumber: 446) } if _storage._hasExtendee_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasExtendee_p, fieldNumber: 438) + try visitor.visitSingularInt32Field(value: _storage._hasExtendee_p, fieldNumber: 447) } if _storage._hasExtensionValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasExtensionValue_p, fieldNumber: 439) + try visitor.visitSingularInt32Field(value: _storage._hasExtensionValue_p, fieldNumber: 448) } if _storage._hasFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFeatures_p, fieldNumber: 440) + try visitor.visitSingularInt32Field(value: _storage._hasFeatures_p, fieldNumber: 449) } if _storage._hasFeatureSupport_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFeatureSupport_p, fieldNumber: 441) + try visitor.visitSingularInt32Field(value: _storage._hasFeatureSupport_p, fieldNumber: 450) } if _storage._hasFieldPresence_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFieldPresence_p, fieldNumber: 442) + try visitor.visitSingularInt32Field(value: _storage._hasFieldPresence_p, fieldNumber: 451) } if _storage._hasFixedFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFixedFeatures_p, fieldNumber: 443) + try visitor.visitSingularInt32Field(value: _storage._hasFixedFeatures_p, fieldNumber: 452) } if _storage._hasFullName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFullName_p, fieldNumber: 444) + try visitor.visitSingularInt32Field(value: _storage._hasFullName_p, fieldNumber: 453) } if _storage._hasGoPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasGoPackage_p, fieldNumber: 445) + try visitor.visitSingularInt32Field(value: _storage._hasGoPackage_p, fieldNumber: 454) } if _storage._hash != 0 { - try visitor.visitSingularInt32Field(value: _storage._hash, fieldNumber: 446) + try visitor.visitSingularInt32Field(value: _storage._hash, fieldNumber: 455) } if _storage._hashable != 0 { - try visitor.visitSingularInt32Field(value: _storage._hashable, fieldNumber: 447) + try visitor.visitSingularInt32Field(value: _storage._hashable, fieldNumber: 456) } if _storage._hasher != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasher, fieldNumber: 448) + try visitor.visitSingularInt32Field(value: _storage._hasher, fieldNumber: 457) } if _storage._hashVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._hashVisitor, fieldNumber: 449) + try visitor.visitSingularInt32Field(value: _storage._hashVisitor, fieldNumber: 458) } if _storage._hasIdempotencyLevel_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasIdempotencyLevel_p, fieldNumber: 450) + try visitor.visitSingularInt32Field(value: _storage._hasIdempotencyLevel_p, fieldNumber: 459) } if _storage._hasIdentifierValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasIdentifierValue_p, fieldNumber: 451) + try visitor.visitSingularInt32Field(value: _storage._hasIdentifierValue_p, fieldNumber: 460) } if _storage._hasInputType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasInputType_p, fieldNumber: 452) + try visitor.visitSingularInt32Field(value: _storage._hasInputType_p, fieldNumber: 461) } if _storage._hasIsExtension_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasIsExtension_p, fieldNumber: 453) + try visitor.visitSingularInt32Field(value: _storage._hasIsExtension_p, fieldNumber: 462) } if _storage._hasJavaGenerateEqualsAndHash_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaGenerateEqualsAndHash_p, fieldNumber: 454) + try visitor.visitSingularInt32Field(value: _storage._hasJavaGenerateEqualsAndHash_p, fieldNumber: 463) } if _storage._hasJavaGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaGenericServices_p, fieldNumber: 455) + try visitor.visitSingularInt32Field(value: _storage._hasJavaGenericServices_p, fieldNumber: 464) } if _storage._hasJavaMultipleFiles_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaMultipleFiles_p, fieldNumber: 456) + try visitor.visitSingularInt32Field(value: _storage._hasJavaMultipleFiles_p, fieldNumber: 465) } if _storage._hasJavaOuterClassname_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaOuterClassname_p, fieldNumber: 457) + try visitor.visitSingularInt32Field(value: _storage._hasJavaOuterClassname_p, fieldNumber: 466) } if _storage._hasJavaPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaPackage_p, fieldNumber: 458) + try visitor.visitSingularInt32Field(value: _storage._hasJavaPackage_p, fieldNumber: 467) } if _storage._hasJavaStringCheckUtf8_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaStringCheckUtf8_p, fieldNumber: 459) + try visitor.visitSingularInt32Field(value: _storage._hasJavaStringCheckUtf8_p, fieldNumber: 468) } if _storage._hasJsonFormat_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJsonFormat_p, fieldNumber: 460) + try visitor.visitSingularInt32Field(value: _storage._hasJsonFormat_p, fieldNumber: 469) } if _storage._hasJsonName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJsonName_p, fieldNumber: 461) + try visitor.visitSingularInt32Field(value: _storage._hasJsonName_p, fieldNumber: 470) } if _storage._hasJstype_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJstype_p, fieldNumber: 462) + try visitor.visitSingularInt32Field(value: _storage._hasJstype_p, fieldNumber: 471) } if _storage._hasLabel_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasLabel_p, fieldNumber: 463) + try visitor.visitSingularInt32Field(value: _storage._hasLabel_p, fieldNumber: 472) } if _storage._hasLazy_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasLazy_p, fieldNumber: 464) + try visitor.visitSingularInt32Field(value: _storage._hasLazy_p, fieldNumber: 473) } if _storage._hasLeadingComments_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasLeadingComments_p, fieldNumber: 465) + try visitor.visitSingularInt32Field(value: _storage._hasLeadingComments_p, fieldNumber: 474) } if _storage._hasMapEntry_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMapEntry_p, fieldNumber: 466) + try visitor.visitSingularInt32Field(value: _storage._hasMapEntry_p, fieldNumber: 475) } if _storage._hasMaximumEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMaximumEdition_p, fieldNumber: 467) + try visitor.visitSingularInt32Field(value: _storage._hasMaximumEdition_p, fieldNumber: 476) } if _storage._hasMessageEncoding_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMessageEncoding_p, fieldNumber: 468) + try visitor.visitSingularInt32Field(value: _storage._hasMessageEncoding_p, fieldNumber: 477) } if _storage._hasMessageSetWireFormat_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMessageSetWireFormat_p, fieldNumber: 469) + try visitor.visitSingularInt32Field(value: _storage._hasMessageSetWireFormat_p, fieldNumber: 478) } if _storage._hasMinimumEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMinimumEdition_p, fieldNumber: 470) + try visitor.visitSingularInt32Field(value: _storage._hasMinimumEdition_p, fieldNumber: 479) } if _storage._hasName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasName_p, fieldNumber: 471) + try visitor.visitSingularInt32Field(value: _storage._hasName_p, fieldNumber: 480) } if _storage._hasNamePart_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasNamePart_p, fieldNumber: 472) + try visitor.visitSingularInt32Field(value: _storage._hasNamePart_p, fieldNumber: 481) } if _storage._hasNegativeIntValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasNegativeIntValue_p, fieldNumber: 473) + try visitor.visitSingularInt32Field(value: _storage._hasNegativeIntValue_p, fieldNumber: 482) } if _storage._hasNoStandardDescriptorAccessor_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasNoStandardDescriptorAccessor_p, fieldNumber: 474) + try visitor.visitSingularInt32Field(value: _storage._hasNoStandardDescriptorAccessor_p, fieldNumber: 483) } if _storage._hasNumber_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasNumber_p, fieldNumber: 475) + try visitor.visitSingularInt32Field(value: _storage._hasNumber_p, fieldNumber: 484) } if _storage._hasObjcClassPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasObjcClassPrefix_p, fieldNumber: 476) + try visitor.visitSingularInt32Field(value: _storage._hasObjcClassPrefix_p, fieldNumber: 485) } if _storage._hasOneofIndex_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOneofIndex_p, fieldNumber: 477) + try visitor.visitSingularInt32Field(value: _storage._hasOneofIndex_p, fieldNumber: 486) } if _storage._hasOptimizeFor_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOptimizeFor_p, fieldNumber: 478) + try visitor.visitSingularInt32Field(value: _storage._hasOptimizeFor_p, fieldNumber: 487) } if _storage._hasOptions_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOptions_p, fieldNumber: 479) + try visitor.visitSingularInt32Field(value: _storage._hasOptions_p, fieldNumber: 488) } if _storage._hasOutputType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOutputType_p, fieldNumber: 480) + try visitor.visitSingularInt32Field(value: _storage._hasOutputType_p, fieldNumber: 489) } if _storage._hasOverridableFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOverridableFeatures_p, fieldNumber: 481) + try visitor.visitSingularInt32Field(value: _storage._hasOverridableFeatures_p, fieldNumber: 490) } if _storage._hasPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPackage_p, fieldNumber: 482) + try visitor.visitSingularInt32Field(value: _storage._hasPackage_p, fieldNumber: 491) } if _storage._hasPacked_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPacked_p, fieldNumber: 483) + try visitor.visitSingularInt32Field(value: _storage._hasPacked_p, fieldNumber: 492) } if _storage._hasPhpClassPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPhpClassPrefix_p, fieldNumber: 484) + try visitor.visitSingularInt32Field(value: _storage._hasPhpClassPrefix_p, fieldNumber: 493) } if _storage._hasPhpMetadataNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPhpMetadataNamespace_p, fieldNumber: 485) + try visitor.visitSingularInt32Field(value: _storage._hasPhpMetadataNamespace_p, fieldNumber: 494) } if _storage._hasPhpNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPhpNamespace_p, fieldNumber: 486) + try visitor.visitSingularInt32Field(value: _storage._hasPhpNamespace_p, fieldNumber: 495) } if _storage._hasPositiveIntValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPositiveIntValue_p, fieldNumber: 487) + try visitor.visitSingularInt32Field(value: _storage._hasPositiveIntValue_p, fieldNumber: 496) } if _storage._hasProto3Optional_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasProto3Optional_p, fieldNumber: 488) + try visitor.visitSingularInt32Field(value: _storage._hasProto3Optional_p, fieldNumber: 497) } if _storage._hasPyGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPyGenericServices_p, fieldNumber: 489) + try visitor.visitSingularInt32Field(value: _storage._hasPyGenericServices_p, fieldNumber: 498) } if _storage._hasRepeated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasRepeated_p, fieldNumber: 490) + try visitor.visitSingularInt32Field(value: _storage._hasRepeated_p, fieldNumber: 499) } if _storage._hasRepeatedFieldEncoding_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasRepeatedFieldEncoding_p, fieldNumber: 491) + try visitor.visitSingularInt32Field(value: _storage._hasRepeatedFieldEncoding_p, fieldNumber: 500) } if _storage._hasReserved_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasReserved_p, fieldNumber: 492) + try visitor.visitSingularInt32Field(value: _storage._hasReserved_p, fieldNumber: 501) } if _storage._hasRetention_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasRetention_p, fieldNumber: 493) + try visitor.visitSingularInt32Field(value: _storage._hasRetention_p, fieldNumber: 502) } if _storage._hasRubyPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasRubyPackage_p, fieldNumber: 494) + try visitor.visitSingularInt32Field(value: _storage._hasRubyPackage_p, fieldNumber: 503) } if _storage._hasSemantic_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSemantic_p, fieldNumber: 495) + try visitor.visitSingularInt32Field(value: _storage._hasSemantic_p, fieldNumber: 504) } if _storage._hasServerStreaming_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasServerStreaming_p, fieldNumber: 496) + try visitor.visitSingularInt32Field(value: _storage._hasServerStreaming_p, fieldNumber: 505) } if _storage._hasSourceCodeInfo_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSourceCodeInfo_p, fieldNumber: 497) + try visitor.visitSingularInt32Field(value: _storage._hasSourceCodeInfo_p, fieldNumber: 506) } if _storage._hasSourceContext_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSourceContext_p, fieldNumber: 498) + try visitor.visitSingularInt32Field(value: _storage._hasSourceContext_p, fieldNumber: 507) } if _storage._hasSourceFile_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSourceFile_p, fieldNumber: 499) + try visitor.visitSingularInt32Field(value: _storage._hasSourceFile_p, fieldNumber: 508) } if _storage._hasStart_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasStart_p, fieldNumber: 500) + try visitor.visitSingularInt32Field(value: _storage._hasStart_p, fieldNumber: 509) } if _storage._hasStringValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasStringValue_p, fieldNumber: 501) + try visitor.visitSingularInt32Field(value: _storage._hasStringValue_p, fieldNumber: 510) } if _storage._hasSwiftPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSwiftPrefix_p, fieldNumber: 502) + try visitor.visitSingularInt32Field(value: _storage._hasSwiftPrefix_p, fieldNumber: 511) } if _storage._hasSyntax_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSyntax_p, fieldNumber: 503) + try visitor.visitSingularInt32Field(value: _storage._hasSyntax_p, fieldNumber: 512) } if _storage._hasTrailingComments_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasTrailingComments_p, fieldNumber: 504) + try visitor.visitSingularInt32Field(value: _storage._hasTrailingComments_p, fieldNumber: 513) } if _storage._hasType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasType_p, fieldNumber: 505) + try visitor.visitSingularInt32Field(value: _storage._hasType_p, fieldNumber: 514) } if _storage._hasTypeName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasTypeName_p, fieldNumber: 506) + try visitor.visitSingularInt32Field(value: _storage._hasTypeName_p, fieldNumber: 515) } if _storage._hasUnverifiedLazy_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasUnverifiedLazy_p, fieldNumber: 507) + try visitor.visitSingularInt32Field(value: _storage._hasUnverifiedLazy_p, fieldNumber: 516) } if _storage._hasUtf8Validation_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasUtf8Validation_p, fieldNumber: 508) + try visitor.visitSingularInt32Field(value: _storage._hasUtf8Validation_p, fieldNumber: 517) } if _storage._hasValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasValue_p, fieldNumber: 509) + try visitor.visitSingularInt32Field(value: _storage._hasValue_p, fieldNumber: 518) } if _storage._hasVerification_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasVerification_p, fieldNumber: 510) + try visitor.visitSingularInt32Field(value: _storage._hasVerification_p, fieldNumber: 519) } if _storage._hasWeak_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasWeak_p, fieldNumber: 511) + try visitor.visitSingularInt32Field(value: _storage._hasWeak_p, fieldNumber: 520) } if _storage._hour != 0 { - try visitor.visitSingularInt32Field(value: _storage._hour, fieldNumber: 512) + try visitor.visitSingularInt32Field(value: _storage._hour, fieldNumber: 521) } if _storage._i != 0 { - try visitor.visitSingularInt32Field(value: _storage._i, fieldNumber: 513) + try visitor.visitSingularInt32Field(value: _storage._i, fieldNumber: 522) } if _storage._idempotencyLevel != 0 { - try visitor.visitSingularInt32Field(value: _storage._idempotencyLevel, fieldNumber: 514) + try visitor.visitSingularInt32Field(value: _storage._idempotencyLevel, fieldNumber: 523) } if _storage._identifierValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._identifierValue, fieldNumber: 515) + try visitor.visitSingularInt32Field(value: _storage._identifierValue, fieldNumber: 524) } if _storage._if != 0 { - try visitor.visitSingularInt32Field(value: _storage._if, fieldNumber: 516) + try visitor.visitSingularInt32Field(value: _storage._if, fieldNumber: 525) } if _storage._ignoreUnknownExtensionFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._ignoreUnknownExtensionFields, fieldNumber: 517) + try visitor.visitSingularInt32Field(value: _storage._ignoreUnknownExtensionFields, fieldNumber: 526) } if _storage._ignoreUnknownFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._ignoreUnknownFields, fieldNumber: 518) + try visitor.visitSingularInt32Field(value: _storage._ignoreUnknownFields, fieldNumber: 527) } if _storage._index != 0 { - try visitor.visitSingularInt32Field(value: _storage._index, fieldNumber: 519) + try visitor.visitSingularInt32Field(value: _storage._index, fieldNumber: 528) } if _storage._init_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._init_p, fieldNumber: 520) + try visitor.visitSingularInt32Field(value: _storage._init_p, fieldNumber: 529) } if _storage._inout != 0 { - try visitor.visitSingularInt32Field(value: _storage._inout, fieldNumber: 521) + try visitor.visitSingularInt32Field(value: _storage._inout, fieldNumber: 530) } if _storage._inputType != 0 { - try visitor.visitSingularInt32Field(value: _storage._inputType, fieldNumber: 522) + try visitor.visitSingularInt32Field(value: _storage._inputType, fieldNumber: 531) } if _storage._insert != 0 { - try visitor.visitSingularInt32Field(value: _storage._insert, fieldNumber: 523) + try visitor.visitSingularInt32Field(value: _storage._insert, fieldNumber: 532) } if _storage._int != 0 { - try visitor.visitSingularInt32Field(value: _storage._int, fieldNumber: 524) + try visitor.visitSingularInt32Field(value: _storage._int, fieldNumber: 533) } if _storage._int32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._int32, fieldNumber: 525) + try visitor.visitSingularInt32Field(value: _storage._int32, fieldNumber: 534) } if _storage._int32Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._int32Value, fieldNumber: 526) + try visitor.visitSingularInt32Field(value: _storage._int32Value, fieldNumber: 535) } if _storage._int64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._int64, fieldNumber: 527) + try visitor.visitSingularInt32Field(value: _storage._int64, fieldNumber: 536) } if _storage._int64Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._int64Value, fieldNumber: 528) + try visitor.visitSingularInt32Field(value: _storage._int64Value, fieldNumber: 537) } if _storage._int8 != 0 { - try visitor.visitSingularInt32Field(value: _storage._int8, fieldNumber: 529) + try visitor.visitSingularInt32Field(value: _storage._int8, fieldNumber: 538) } if _storage._integerLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._integerLiteral, fieldNumber: 530) + try visitor.visitSingularInt32Field(value: _storage._integerLiteral, fieldNumber: 539) } if _storage._integerLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._integerLiteralType, fieldNumber: 531) + try visitor.visitSingularInt32Field(value: _storage._integerLiteralType, fieldNumber: 540) } if _storage._intern != 0 { - try visitor.visitSingularInt32Field(value: _storage._intern, fieldNumber: 532) + try visitor.visitSingularInt32Field(value: _storage._intern, fieldNumber: 541) } if _storage._internal != 0 { - try visitor.visitSingularInt32Field(value: _storage._internal, fieldNumber: 533) + try visitor.visitSingularInt32Field(value: _storage._internal, fieldNumber: 542) } if _storage._internalState != 0 { - try visitor.visitSingularInt32Field(value: _storage._internalState, fieldNumber: 534) + try visitor.visitSingularInt32Field(value: _storage._internalState, fieldNumber: 543) } if _storage._into != 0 { - try visitor.visitSingularInt32Field(value: _storage._into, fieldNumber: 535) + try visitor.visitSingularInt32Field(value: _storage._into, fieldNumber: 544) } if _storage._ints != 0 { - try visitor.visitSingularInt32Field(value: _storage._ints, fieldNumber: 536) + try visitor.visitSingularInt32Field(value: _storage._ints, fieldNumber: 545) } if _storage._isA != 0 { - try visitor.visitSingularInt32Field(value: _storage._isA, fieldNumber: 537) + try visitor.visitSingularInt32Field(value: _storage._isA, fieldNumber: 546) } if _storage._isEqual != 0 { - try visitor.visitSingularInt32Field(value: _storage._isEqual, fieldNumber: 538) + try visitor.visitSingularInt32Field(value: _storage._isEqual, fieldNumber: 547) } if _storage._isEqualTo != 0 { - try visitor.visitSingularInt32Field(value: _storage._isEqualTo, fieldNumber: 539) + try visitor.visitSingularInt32Field(value: _storage._isEqualTo, fieldNumber: 548) } if _storage._isExtension != 0 { - try visitor.visitSingularInt32Field(value: _storage._isExtension, fieldNumber: 540) + try visitor.visitSingularInt32Field(value: _storage._isExtension, fieldNumber: 549) } if _storage._isInitialized_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._isInitialized_p, fieldNumber: 541) + try visitor.visitSingularInt32Field(value: _storage._isInitialized_p, fieldNumber: 550) } if _storage._isNegative != 0 { - try visitor.visitSingularInt32Field(value: _storage._isNegative, fieldNumber: 542) + try visitor.visitSingularInt32Field(value: _storage._isNegative, fieldNumber: 551) } if _storage._itemTagsEncodedSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._itemTagsEncodedSize, fieldNumber: 543) + try visitor.visitSingularInt32Field(value: _storage._itemTagsEncodedSize, fieldNumber: 552) } if _storage._iterator != 0 { - try visitor.visitSingularInt32Field(value: _storage._iterator, fieldNumber: 544) + try visitor.visitSingularInt32Field(value: _storage._iterator, fieldNumber: 553) } if _storage._javaGenerateEqualsAndHash != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaGenerateEqualsAndHash, fieldNumber: 545) + try visitor.visitSingularInt32Field(value: _storage._javaGenerateEqualsAndHash, fieldNumber: 554) } if _storage._javaGenericServices != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaGenericServices, fieldNumber: 546) + try visitor.visitSingularInt32Field(value: _storage._javaGenericServices, fieldNumber: 555) } if _storage._javaMultipleFiles != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaMultipleFiles, fieldNumber: 547) + try visitor.visitSingularInt32Field(value: _storage._javaMultipleFiles, fieldNumber: 556) } if _storage._javaOuterClassname != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaOuterClassname, fieldNumber: 548) + try visitor.visitSingularInt32Field(value: _storage._javaOuterClassname, fieldNumber: 557) } if _storage._javaPackage != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaPackage, fieldNumber: 549) + try visitor.visitSingularInt32Field(value: _storage._javaPackage, fieldNumber: 558) } if _storage._javaStringCheckUtf8 != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaStringCheckUtf8, fieldNumber: 550) + try visitor.visitSingularInt32Field(value: _storage._javaStringCheckUtf8, fieldNumber: 559) } if _storage._jsondecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsondecoder, fieldNumber: 551) + try visitor.visitSingularInt32Field(value: _storage._jsondecoder, fieldNumber: 560) } if _storage._jsondecodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsondecodingError, fieldNumber: 552) + try visitor.visitSingularInt32Field(value: _storage._jsondecodingError, fieldNumber: 561) } if _storage._jsondecodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsondecodingOptions, fieldNumber: 553) + try visitor.visitSingularInt32Field(value: _storage._jsondecodingOptions, fieldNumber: 562) } if _storage._jsonEncoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonEncoder, fieldNumber: 554) + try visitor.visitSingularInt32Field(value: _storage._jsonEncoder, fieldNumber: 563) + } + if _storage._jsonencoding != 0 { + try visitor.visitSingularInt32Field(value: _storage._jsonencoding, fieldNumber: 564) } if _storage._jsonencodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonencodingError, fieldNumber: 555) + try visitor.visitSingularInt32Field(value: _storage._jsonencodingError, fieldNumber: 565) } if _storage._jsonencodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonencodingOptions, fieldNumber: 556) + try visitor.visitSingularInt32Field(value: _storage._jsonencodingOptions, fieldNumber: 566) } if _storage._jsonencodingVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonencodingVisitor, fieldNumber: 557) + try visitor.visitSingularInt32Field(value: _storage._jsonencodingVisitor, fieldNumber: 567) } if _storage._jsonFormat != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonFormat, fieldNumber: 558) + try visitor.visitSingularInt32Field(value: _storage._jsonFormat, fieldNumber: 568) } if _storage._jsonmapEncodingVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonmapEncodingVisitor, fieldNumber: 559) + try visitor.visitSingularInt32Field(value: _storage._jsonmapEncodingVisitor, fieldNumber: 569) } if _storage._jsonName != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonName, fieldNumber: 560) + try visitor.visitSingularInt32Field(value: _storage._jsonName, fieldNumber: 570) } if _storage._jsonPath != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonPath, fieldNumber: 561) + try visitor.visitSingularInt32Field(value: _storage._jsonPath, fieldNumber: 571) } if _storage._jsonPaths != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonPaths, fieldNumber: 562) + try visitor.visitSingularInt32Field(value: _storage._jsonPaths, fieldNumber: 572) } if _storage._jsonscanner != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonscanner, fieldNumber: 563) + try visitor.visitSingularInt32Field(value: _storage._jsonscanner, fieldNumber: 573) } if _storage._jsonString != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonString, fieldNumber: 564) + try visitor.visitSingularInt32Field(value: _storage._jsonString, fieldNumber: 574) } if _storage._jsonText != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonText, fieldNumber: 565) + try visitor.visitSingularInt32Field(value: _storage._jsonText, fieldNumber: 575) } if _storage._jsonUtf8Bytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonUtf8Bytes, fieldNumber: 566) + try visitor.visitSingularInt32Field(value: _storage._jsonUtf8Bytes, fieldNumber: 576) } if _storage._jsonUtf8Data != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonUtf8Data, fieldNumber: 567) + try visitor.visitSingularInt32Field(value: _storage._jsonUtf8Data, fieldNumber: 577) } if _storage._jstype != 0 { - try visitor.visitSingularInt32Field(value: _storage._jstype, fieldNumber: 568) + try visitor.visitSingularInt32Field(value: _storage._jstype, fieldNumber: 578) } if _storage._k != 0 { - try visitor.visitSingularInt32Field(value: _storage._k, fieldNumber: 569) + try visitor.visitSingularInt32Field(value: _storage._k, fieldNumber: 579) } if _storage._kChunkSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._kChunkSize, fieldNumber: 570) + try visitor.visitSingularInt32Field(value: _storage._kChunkSize, fieldNumber: 580) } if _storage._key != 0 { - try visitor.visitSingularInt32Field(value: _storage._key, fieldNumber: 571) + try visitor.visitSingularInt32Field(value: _storage._key, fieldNumber: 581) } if _storage._keyField != 0 { - try visitor.visitSingularInt32Field(value: _storage._keyField, fieldNumber: 572) + try visitor.visitSingularInt32Field(value: _storage._keyField, fieldNumber: 582) } if _storage._keyFieldOpt != 0 { - try visitor.visitSingularInt32Field(value: _storage._keyFieldOpt, fieldNumber: 573) + try visitor.visitSingularInt32Field(value: _storage._keyFieldOpt, fieldNumber: 583) } if _storage._keyType != 0 { - try visitor.visitSingularInt32Field(value: _storage._keyType, fieldNumber: 574) + try visitor.visitSingularInt32Field(value: _storage._keyType, fieldNumber: 584) } if _storage._kind != 0 { - try visitor.visitSingularInt32Field(value: _storage._kind, fieldNumber: 575) + try visitor.visitSingularInt32Field(value: _storage._kind, fieldNumber: 585) } if _storage._l != 0 { - try visitor.visitSingularInt32Field(value: _storage._l, fieldNumber: 576) + try visitor.visitSingularInt32Field(value: _storage._l, fieldNumber: 586) } if _storage._label != 0 { - try visitor.visitSingularInt32Field(value: _storage._label, fieldNumber: 577) + try visitor.visitSingularInt32Field(value: _storage._label, fieldNumber: 587) } if _storage._lazy != 0 { - try visitor.visitSingularInt32Field(value: _storage._lazy, fieldNumber: 578) + try visitor.visitSingularInt32Field(value: _storage._lazy, fieldNumber: 588) } if _storage._leadingComments != 0 { - try visitor.visitSingularInt32Field(value: _storage._leadingComments, fieldNumber: 579) + try visitor.visitSingularInt32Field(value: _storage._leadingComments, fieldNumber: 589) } if _storage._leadingDetachedComments != 0 { - try visitor.visitSingularInt32Field(value: _storage._leadingDetachedComments, fieldNumber: 580) + try visitor.visitSingularInt32Field(value: _storage._leadingDetachedComments, fieldNumber: 590) } if _storage._length != 0 { - try visitor.visitSingularInt32Field(value: _storage._length, fieldNumber: 581) + try visitor.visitSingularInt32Field(value: _storage._length, fieldNumber: 591) } if _storage._lessThan != 0 { - try visitor.visitSingularInt32Field(value: _storage._lessThan, fieldNumber: 582) + try visitor.visitSingularInt32Field(value: _storage._lessThan, fieldNumber: 592) } if _storage._let != 0 { - try visitor.visitSingularInt32Field(value: _storage._let, fieldNumber: 583) + try visitor.visitSingularInt32Field(value: _storage._let, fieldNumber: 593) } if _storage._lhs != 0 { - try visitor.visitSingularInt32Field(value: _storage._lhs, fieldNumber: 584) + try visitor.visitSingularInt32Field(value: _storage._lhs, fieldNumber: 594) + } + if _storage._line != 0 { + try visitor.visitSingularInt32Field(value: _storage._line, fieldNumber: 595) } if _storage._list != 0 { - try visitor.visitSingularInt32Field(value: _storage._list, fieldNumber: 585) + try visitor.visitSingularInt32Field(value: _storage._list, fieldNumber: 596) } if _storage._listOfMessages != 0 { - try visitor.visitSingularInt32Field(value: _storage._listOfMessages, fieldNumber: 586) + try visitor.visitSingularInt32Field(value: _storage._listOfMessages, fieldNumber: 597) } if _storage._listValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._listValue, fieldNumber: 587) + try visitor.visitSingularInt32Field(value: _storage._listValue, fieldNumber: 598) } if _storage._littleEndian != 0 { - try visitor.visitSingularInt32Field(value: _storage._littleEndian, fieldNumber: 588) + try visitor.visitSingularInt32Field(value: _storage._littleEndian, fieldNumber: 599) } if _storage._load != 0 { - try visitor.visitSingularInt32Field(value: _storage._load, fieldNumber: 589) + try visitor.visitSingularInt32Field(value: _storage._load, fieldNumber: 600) } if _storage._localHasher != 0 { - try visitor.visitSingularInt32Field(value: _storage._localHasher, fieldNumber: 590) + try visitor.visitSingularInt32Field(value: _storage._localHasher, fieldNumber: 601) } if _storage._location != 0 { - try visitor.visitSingularInt32Field(value: _storage._location, fieldNumber: 591) + try visitor.visitSingularInt32Field(value: _storage._location, fieldNumber: 602) } if _storage._m != 0 { - try visitor.visitSingularInt32Field(value: _storage._m, fieldNumber: 592) + try visitor.visitSingularInt32Field(value: _storage._m, fieldNumber: 603) } if _storage._major != 0 { - try visitor.visitSingularInt32Field(value: _storage._major, fieldNumber: 593) + try visitor.visitSingularInt32Field(value: _storage._major, fieldNumber: 604) } if _storage._makeAsyncIterator != 0 { - try visitor.visitSingularInt32Field(value: _storage._makeAsyncIterator, fieldNumber: 594) + try visitor.visitSingularInt32Field(value: _storage._makeAsyncIterator, fieldNumber: 605) } if _storage._makeIterator != 0 { - try visitor.visitSingularInt32Field(value: _storage._makeIterator, fieldNumber: 595) + try visitor.visitSingularInt32Field(value: _storage._makeIterator, fieldNumber: 606) + } + if _storage._malformedLength != 0 { + try visitor.visitSingularInt32Field(value: _storage._malformedLength, fieldNumber: 607) } if _storage._mapEntry != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapEntry, fieldNumber: 596) + try visitor.visitSingularInt32Field(value: _storage._mapEntry, fieldNumber: 608) } if _storage._mapKeyType != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapKeyType, fieldNumber: 597) + try visitor.visitSingularInt32Field(value: _storage._mapKeyType, fieldNumber: 609) } if _storage._mapToMessages != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapToMessages, fieldNumber: 598) + try visitor.visitSingularInt32Field(value: _storage._mapToMessages, fieldNumber: 610) } if _storage._mapValueType != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapValueType, fieldNumber: 599) + try visitor.visitSingularInt32Field(value: _storage._mapValueType, fieldNumber: 611) } if _storage._mapVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapVisitor, fieldNumber: 600) + try visitor.visitSingularInt32Field(value: _storage._mapVisitor, fieldNumber: 612) } if _storage._maximumEdition != 0 { - try visitor.visitSingularInt32Field(value: _storage._maximumEdition, fieldNumber: 601) + try visitor.visitSingularInt32Field(value: _storage._maximumEdition, fieldNumber: 613) } if _storage._mdayStart != 0 { - try visitor.visitSingularInt32Field(value: _storage._mdayStart, fieldNumber: 602) + try visitor.visitSingularInt32Field(value: _storage._mdayStart, fieldNumber: 614) } if _storage._merge != 0 { - try visitor.visitSingularInt32Field(value: _storage._merge, fieldNumber: 603) + try visitor.visitSingularInt32Field(value: _storage._merge, fieldNumber: 615) } if _storage._message != 0 { - try visitor.visitSingularInt32Field(value: _storage._message, fieldNumber: 604) + try visitor.visitSingularInt32Field(value: _storage._message, fieldNumber: 616) } if _storage._messageDepthLimit != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageDepthLimit, fieldNumber: 605) + try visitor.visitSingularInt32Field(value: _storage._messageDepthLimit, fieldNumber: 617) } if _storage._messageEncoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageEncoding, fieldNumber: 606) + try visitor.visitSingularInt32Field(value: _storage._messageEncoding, fieldNumber: 618) } if _storage._messageExtension != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageExtension, fieldNumber: 607) + try visitor.visitSingularInt32Field(value: _storage._messageExtension, fieldNumber: 619) } if _storage._messageImplementationBase != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageImplementationBase, fieldNumber: 608) + try visitor.visitSingularInt32Field(value: _storage._messageImplementationBase, fieldNumber: 620) } if _storage._messageOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageOptions, fieldNumber: 609) + try visitor.visitSingularInt32Field(value: _storage._messageOptions, fieldNumber: 621) } if _storage._messageSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageSet, fieldNumber: 610) + try visitor.visitSingularInt32Field(value: _storage._messageSet, fieldNumber: 622) } if _storage._messageSetWireFormat != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageSetWireFormat, fieldNumber: 611) + try visitor.visitSingularInt32Field(value: _storage._messageSetWireFormat, fieldNumber: 623) } if _storage._messageSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageSize, fieldNumber: 612) + try visitor.visitSingularInt32Field(value: _storage._messageSize, fieldNumber: 624) } if _storage._messageType != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageType, fieldNumber: 613) + try visitor.visitSingularInt32Field(value: _storage._messageType, fieldNumber: 625) } if _storage._method != 0 { - try visitor.visitSingularInt32Field(value: _storage._method, fieldNumber: 614) + try visitor.visitSingularInt32Field(value: _storage._method, fieldNumber: 626) } if _storage._methodDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._methodDescriptorProto, fieldNumber: 615) + try visitor.visitSingularInt32Field(value: _storage._methodDescriptorProto, fieldNumber: 627) } if _storage._methodOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._methodOptions, fieldNumber: 616) + try visitor.visitSingularInt32Field(value: _storage._methodOptions, fieldNumber: 628) } if _storage._methods != 0 { - try visitor.visitSingularInt32Field(value: _storage._methods, fieldNumber: 617) + try visitor.visitSingularInt32Field(value: _storage._methods, fieldNumber: 629) } if _storage._min != 0 { - try visitor.visitSingularInt32Field(value: _storage._min, fieldNumber: 618) + try visitor.visitSingularInt32Field(value: _storage._min, fieldNumber: 630) } if _storage._minimumEdition != 0 { - try visitor.visitSingularInt32Field(value: _storage._minimumEdition, fieldNumber: 619) + try visitor.visitSingularInt32Field(value: _storage._minimumEdition, fieldNumber: 631) } if _storage._minor != 0 { - try visitor.visitSingularInt32Field(value: _storage._minor, fieldNumber: 620) + try visitor.visitSingularInt32Field(value: _storage._minor, fieldNumber: 632) } if _storage._mixin != 0 { - try visitor.visitSingularInt32Field(value: _storage._mixin, fieldNumber: 621) + try visitor.visitSingularInt32Field(value: _storage._mixin, fieldNumber: 633) } if _storage._mixins != 0 { - try visitor.visitSingularInt32Field(value: _storage._mixins, fieldNumber: 622) + try visitor.visitSingularInt32Field(value: _storage._mixins, fieldNumber: 634) } if _storage._modifier != 0 { - try visitor.visitSingularInt32Field(value: _storage._modifier, fieldNumber: 623) + try visitor.visitSingularInt32Field(value: _storage._modifier, fieldNumber: 635) } if _storage._modify != 0 { - try visitor.visitSingularInt32Field(value: _storage._modify, fieldNumber: 624) + try visitor.visitSingularInt32Field(value: _storage._modify, fieldNumber: 636) } if _storage._month != 0 { - try visitor.visitSingularInt32Field(value: _storage._month, fieldNumber: 625) + try visitor.visitSingularInt32Field(value: _storage._month, fieldNumber: 637) } if _storage._msgExtension != 0 { - try visitor.visitSingularInt32Field(value: _storage._msgExtension, fieldNumber: 626) + try visitor.visitSingularInt32Field(value: _storage._msgExtension, fieldNumber: 638) } if _storage._mutating != 0 { - try visitor.visitSingularInt32Field(value: _storage._mutating, fieldNumber: 627) + try visitor.visitSingularInt32Field(value: _storage._mutating, fieldNumber: 639) } if _storage._n != 0 { - try visitor.visitSingularInt32Field(value: _storage._n, fieldNumber: 628) + try visitor.visitSingularInt32Field(value: _storage._n, fieldNumber: 640) } if _storage._name != 0 { - try visitor.visitSingularInt32Field(value: _storage._name, fieldNumber: 629) + try visitor.visitSingularInt32Field(value: _storage._name, fieldNumber: 641) } if _storage._nameDescription != 0 { - try visitor.visitSingularInt32Field(value: _storage._nameDescription, fieldNumber: 630) + try visitor.visitSingularInt32Field(value: _storage._nameDescription, fieldNumber: 642) } if _storage._nameMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._nameMap, fieldNumber: 631) + try visitor.visitSingularInt32Field(value: _storage._nameMap, fieldNumber: 643) } if _storage._namePart != 0 { - try visitor.visitSingularInt32Field(value: _storage._namePart, fieldNumber: 632) + try visitor.visitSingularInt32Field(value: _storage._namePart, fieldNumber: 644) } if _storage._names != 0 { - try visitor.visitSingularInt32Field(value: _storage._names, fieldNumber: 633) + try visitor.visitSingularInt32Field(value: _storage._names, fieldNumber: 645) } if _storage._nanos != 0 { - try visitor.visitSingularInt32Field(value: _storage._nanos, fieldNumber: 634) + try visitor.visitSingularInt32Field(value: _storage._nanos, fieldNumber: 646) } if _storage._negativeIntValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._negativeIntValue, fieldNumber: 635) + try visitor.visitSingularInt32Field(value: _storage._negativeIntValue, fieldNumber: 647) } if _storage._nestedType != 0 { - try visitor.visitSingularInt32Field(value: _storage._nestedType, fieldNumber: 636) + try visitor.visitSingularInt32Field(value: _storage._nestedType, fieldNumber: 648) } if _storage._newL != 0 { - try visitor.visitSingularInt32Field(value: _storage._newL, fieldNumber: 637) + try visitor.visitSingularInt32Field(value: _storage._newL, fieldNumber: 649) } if _storage._newList != 0 { - try visitor.visitSingularInt32Field(value: _storage._newList, fieldNumber: 638) + try visitor.visitSingularInt32Field(value: _storage._newList, fieldNumber: 650) } if _storage._newValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._newValue, fieldNumber: 639) + try visitor.visitSingularInt32Field(value: _storage._newValue, fieldNumber: 651) } if _storage._next != 0 { - try visitor.visitSingularInt32Field(value: _storage._next, fieldNumber: 640) + try visitor.visitSingularInt32Field(value: _storage._next, fieldNumber: 652) } if _storage._nextByte != 0 { - try visitor.visitSingularInt32Field(value: _storage._nextByte, fieldNumber: 641) + try visitor.visitSingularInt32Field(value: _storage._nextByte, fieldNumber: 653) } if _storage._nextFieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._nextFieldNumber, fieldNumber: 642) + try visitor.visitSingularInt32Field(value: _storage._nextFieldNumber, fieldNumber: 654) } if _storage._nextVarInt != 0 { - try visitor.visitSingularInt32Field(value: _storage._nextVarInt, fieldNumber: 643) + try visitor.visitSingularInt32Field(value: _storage._nextVarInt, fieldNumber: 655) } if _storage._nil != 0 { - try visitor.visitSingularInt32Field(value: _storage._nil, fieldNumber: 644) + try visitor.visitSingularInt32Field(value: _storage._nil, fieldNumber: 656) } if _storage._nilLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._nilLiteral, fieldNumber: 645) + try visitor.visitSingularInt32Field(value: _storage._nilLiteral, fieldNumber: 657) + } + if _storage._noBytesAvailable != 0 { + try visitor.visitSingularInt32Field(value: _storage._noBytesAvailable, fieldNumber: 658) } if _storage._noStandardDescriptorAccessor != 0 { - try visitor.visitSingularInt32Field(value: _storage._noStandardDescriptorAccessor, fieldNumber: 646) + try visitor.visitSingularInt32Field(value: _storage._noStandardDescriptorAccessor, fieldNumber: 659) } if _storage._nullValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._nullValue, fieldNumber: 647) + try visitor.visitSingularInt32Field(value: _storage._nullValue, fieldNumber: 660) } if _storage._number != 0 { - try visitor.visitSingularInt32Field(value: _storage._number, fieldNumber: 648) + try visitor.visitSingularInt32Field(value: _storage._number, fieldNumber: 661) } if _storage._numberValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._numberValue, fieldNumber: 649) + try visitor.visitSingularInt32Field(value: _storage._numberValue, fieldNumber: 662) } if _storage._objcClassPrefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._objcClassPrefix, fieldNumber: 650) + try visitor.visitSingularInt32Field(value: _storage._objcClassPrefix, fieldNumber: 663) } if _storage._of != 0 { - try visitor.visitSingularInt32Field(value: _storage._of, fieldNumber: 651) + try visitor.visitSingularInt32Field(value: _storage._of, fieldNumber: 664) } if _storage._oneofDecl != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofDecl, fieldNumber: 652) + try visitor.visitSingularInt32Field(value: _storage._oneofDecl, fieldNumber: 665) } if _storage._oneofDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofDescriptorProto, fieldNumber: 653) + try visitor.visitSingularInt32Field(value: _storage._oneofDescriptorProto, fieldNumber: 666) } if _storage._oneofIndex != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofIndex, fieldNumber: 654) + try visitor.visitSingularInt32Field(value: _storage._oneofIndex, fieldNumber: 667) } if _storage._oneofOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofOptions, fieldNumber: 655) + try visitor.visitSingularInt32Field(value: _storage._oneofOptions, fieldNumber: 668) } if _storage._oneofs != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofs, fieldNumber: 656) + try visitor.visitSingularInt32Field(value: _storage._oneofs, fieldNumber: 669) } if _storage._oneOfKind != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneOfKind, fieldNumber: 657) + try visitor.visitSingularInt32Field(value: _storage._oneOfKind, fieldNumber: 670) } if _storage._optimizeFor != 0 { - try visitor.visitSingularInt32Field(value: _storage._optimizeFor, fieldNumber: 658) + try visitor.visitSingularInt32Field(value: _storage._optimizeFor, fieldNumber: 671) } if _storage._optimizeMode != 0 { - try visitor.visitSingularInt32Field(value: _storage._optimizeMode, fieldNumber: 659) + try visitor.visitSingularInt32Field(value: _storage._optimizeMode, fieldNumber: 672) } if _storage._option != 0 { - try visitor.visitSingularInt32Field(value: _storage._option, fieldNumber: 660) + try visitor.visitSingularInt32Field(value: _storage._option, fieldNumber: 673) } if _storage._optionalEnumExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionalEnumExtensionField, fieldNumber: 661) + try visitor.visitSingularInt32Field(value: _storage._optionalEnumExtensionField, fieldNumber: 674) } if _storage._optionalExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionalExtensionField, fieldNumber: 662) + try visitor.visitSingularInt32Field(value: _storage._optionalExtensionField, fieldNumber: 675) } if _storage._optionalGroupExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionalGroupExtensionField, fieldNumber: 663) + try visitor.visitSingularInt32Field(value: _storage._optionalGroupExtensionField, fieldNumber: 676) } if _storage._optionalMessageExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionalMessageExtensionField, fieldNumber: 664) + try visitor.visitSingularInt32Field(value: _storage._optionalMessageExtensionField, fieldNumber: 677) } if _storage._optionRetention != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionRetention, fieldNumber: 665) + try visitor.visitSingularInt32Field(value: _storage._optionRetention, fieldNumber: 678) } if _storage._options != 0 { - try visitor.visitSingularInt32Field(value: _storage._options, fieldNumber: 666) + try visitor.visitSingularInt32Field(value: _storage._options, fieldNumber: 679) } if _storage._optionTargetType != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionTargetType, fieldNumber: 667) + try visitor.visitSingularInt32Field(value: _storage._optionTargetType, fieldNumber: 680) } if _storage._other != 0 { - try visitor.visitSingularInt32Field(value: _storage._other, fieldNumber: 668) + try visitor.visitSingularInt32Field(value: _storage._other, fieldNumber: 681) } if _storage._others != 0 { - try visitor.visitSingularInt32Field(value: _storage._others, fieldNumber: 669) + try visitor.visitSingularInt32Field(value: _storage._others, fieldNumber: 682) } if _storage._out != 0 { - try visitor.visitSingularInt32Field(value: _storage._out, fieldNumber: 670) + try visitor.visitSingularInt32Field(value: _storage._out, fieldNumber: 683) } if _storage._outputType != 0 { - try visitor.visitSingularInt32Field(value: _storage._outputType, fieldNumber: 671) + try visitor.visitSingularInt32Field(value: _storage._outputType, fieldNumber: 684) } if _storage._overridableFeatures != 0 { - try visitor.visitSingularInt32Field(value: _storage._overridableFeatures, fieldNumber: 672) + try visitor.visitSingularInt32Field(value: _storage._overridableFeatures, fieldNumber: 685) } if _storage._p != 0 { - try visitor.visitSingularInt32Field(value: _storage._p, fieldNumber: 673) + try visitor.visitSingularInt32Field(value: _storage._p, fieldNumber: 686) } if _storage._package != 0 { - try visitor.visitSingularInt32Field(value: _storage._package, fieldNumber: 674) + try visitor.visitSingularInt32Field(value: _storage._package, fieldNumber: 687) } if _storage._packed != 0 { - try visitor.visitSingularInt32Field(value: _storage._packed, fieldNumber: 675) + try visitor.visitSingularInt32Field(value: _storage._packed, fieldNumber: 688) } if _storage._packedEnumExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._packedEnumExtensionField, fieldNumber: 676) + try visitor.visitSingularInt32Field(value: _storage._packedEnumExtensionField, fieldNumber: 689) } if _storage._packedExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._packedExtensionField, fieldNumber: 677) + try visitor.visitSingularInt32Field(value: _storage._packedExtensionField, fieldNumber: 690) } if _storage._padding != 0 { - try visitor.visitSingularInt32Field(value: _storage._padding, fieldNumber: 678) + try visitor.visitSingularInt32Field(value: _storage._padding, fieldNumber: 691) } if _storage._parent != 0 { - try visitor.visitSingularInt32Field(value: _storage._parent, fieldNumber: 679) + try visitor.visitSingularInt32Field(value: _storage._parent, fieldNumber: 692) } if _storage._parse != 0 { - try visitor.visitSingularInt32Field(value: _storage._parse, fieldNumber: 680) + try visitor.visitSingularInt32Field(value: _storage._parse, fieldNumber: 693) } if _storage._path != 0 { - try visitor.visitSingularInt32Field(value: _storage._path, fieldNumber: 681) + try visitor.visitSingularInt32Field(value: _storage._path, fieldNumber: 694) } if _storage._paths != 0 { - try visitor.visitSingularInt32Field(value: _storage._paths, fieldNumber: 682) + try visitor.visitSingularInt32Field(value: _storage._paths, fieldNumber: 695) } if _storage._payload != 0 { - try visitor.visitSingularInt32Field(value: _storage._payload, fieldNumber: 683) + try visitor.visitSingularInt32Field(value: _storage._payload, fieldNumber: 696) } if _storage._payloadSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._payloadSize, fieldNumber: 684) + try visitor.visitSingularInt32Field(value: _storage._payloadSize, fieldNumber: 697) } if _storage._phpClassPrefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._phpClassPrefix, fieldNumber: 685) + try visitor.visitSingularInt32Field(value: _storage._phpClassPrefix, fieldNumber: 698) } if _storage._phpMetadataNamespace != 0 { - try visitor.visitSingularInt32Field(value: _storage._phpMetadataNamespace, fieldNumber: 686) + try visitor.visitSingularInt32Field(value: _storage._phpMetadataNamespace, fieldNumber: 699) } if _storage._phpNamespace != 0 { - try visitor.visitSingularInt32Field(value: _storage._phpNamespace, fieldNumber: 687) + try visitor.visitSingularInt32Field(value: _storage._phpNamespace, fieldNumber: 700) } if _storage._pos != 0 { - try visitor.visitSingularInt32Field(value: _storage._pos, fieldNumber: 688) + try visitor.visitSingularInt32Field(value: _storage._pos, fieldNumber: 701) } if _storage._positiveIntValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._positiveIntValue, fieldNumber: 689) + try visitor.visitSingularInt32Field(value: _storage._positiveIntValue, fieldNumber: 702) } if _storage._prefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._prefix, fieldNumber: 690) + try visitor.visitSingularInt32Field(value: _storage._prefix, fieldNumber: 703) } if _storage._preserveProtoFieldNames != 0 { - try visitor.visitSingularInt32Field(value: _storage._preserveProtoFieldNames, fieldNumber: 691) + try visitor.visitSingularInt32Field(value: _storage._preserveProtoFieldNames, fieldNumber: 704) } if _storage._preTraverse != 0 { - try visitor.visitSingularInt32Field(value: _storage._preTraverse, fieldNumber: 692) + try visitor.visitSingularInt32Field(value: _storage._preTraverse, fieldNumber: 705) } if _storage._printUnknownFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._printUnknownFields, fieldNumber: 693) + try visitor.visitSingularInt32Field(value: _storage._printUnknownFields, fieldNumber: 706) } if _storage._proto2 != 0 { - try visitor.visitSingularInt32Field(value: _storage._proto2, fieldNumber: 694) + try visitor.visitSingularInt32Field(value: _storage._proto2, fieldNumber: 707) } if _storage._proto3DefaultValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._proto3DefaultValue, fieldNumber: 695) + try visitor.visitSingularInt32Field(value: _storage._proto3DefaultValue, fieldNumber: 708) } if _storage._proto3Optional != 0 { - try visitor.visitSingularInt32Field(value: _storage._proto3Optional, fieldNumber: 696) + try visitor.visitSingularInt32Field(value: _storage._proto3Optional, fieldNumber: 709) } if _storage._protobufApiversionCheck != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufApiversionCheck, fieldNumber: 697) + try visitor.visitSingularInt32Field(value: _storage._protobufApiversionCheck, fieldNumber: 710) } if _storage._protobufApiversion3 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufApiversion3, fieldNumber: 698) + try visitor.visitSingularInt32Field(value: _storage._protobufApiversion3, fieldNumber: 711) } if _storage._protobufBool != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufBool, fieldNumber: 699) + try visitor.visitSingularInt32Field(value: _storage._protobufBool, fieldNumber: 712) } if _storage._protobufBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufBytes, fieldNumber: 700) + try visitor.visitSingularInt32Field(value: _storage._protobufBytes, fieldNumber: 713) } if _storage._protobufDouble != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufDouble, fieldNumber: 701) + try visitor.visitSingularInt32Field(value: _storage._protobufDouble, fieldNumber: 714) } if _storage._protobufEnumMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufEnumMap, fieldNumber: 702) + try visitor.visitSingularInt32Field(value: _storage._protobufEnumMap, fieldNumber: 715) } if _storage._protobufExtension != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufExtension, fieldNumber: 703) + try visitor.visitSingularInt32Field(value: _storage._protobufExtension, fieldNumber: 716) } if _storage._protobufFixed32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufFixed32, fieldNumber: 704) + try visitor.visitSingularInt32Field(value: _storage._protobufFixed32, fieldNumber: 717) } if _storage._protobufFixed64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufFixed64, fieldNumber: 705) + try visitor.visitSingularInt32Field(value: _storage._protobufFixed64, fieldNumber: 718) } if _storage._protobufFloat != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufFloat, fieldNumber: 706) + try visitor.visitSingularInt32Field(value: _storage._protobufFloat, fieldNumber: 719) } if _storage._protobufInt32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufInt32, fieldNumber: 707) + try visitor.visitSingularInt32Field(value: _storage._protobufInt32, fieldNumber: 720) } if _storage._protobufInt64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufInt64, fieldNumber: 708) + try visitor.visitSingularInt32Field(value: _storage._protobufInt64, fieldNumber: 721) } if _storage._protobufMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufMap, fieldNumber: 709) + try visitor.visitSingularInt32Field(value: _storage._protobufMap, fieldNumber: 722) } if _storage._protobufMessageMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufMessageMap, fieldNumber: 710) + try visitor.visitSingularInt32Field(value: _storage._protobufMessageMap, fieldNumber: 723) } if _storage._protobufSfixed32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufSfixed32, fieldNumber: 711) + try visitor.visitSingularInt32Field(value: _storage._protobufSfixed32, fieldNumber: 724) } if _storage._protobufSfixed64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufSfixed64, fieldNumber: 712) + try visitor.visitSingularInt32Field(value: _storage._protobufSfixed64, fieldNumber: 725) } if _storage._protobufSint32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufSint32, fieldNumber: 713) + try visitor.visitSingularInt32Field(value: _storage._protobufSint32, fieldNumber: 726) } if _storage._protobufSint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufSint64, fieldNumber: 714) + try visitor.visitSingularInt32Field(value: _storage._protobufSint64, fieldNumber: 727) } if _storage._protobufString != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufString, fieldNumber: 715) + try visitor.visitSingularInt32Field(value: _storage._protobufString, fieldNumber: 728) } if _storage._protobufUint32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufUint32, fieldNumber: 716) + try visitor.visitSingularInt32Field(value: _storage._protobufUint32, fieldNumber: 729) } if _storage._protobufUint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufUint64, fieldNumber: 717) + try visitor.visitSingularInt32Field(value: _storage._protobufUint64, fieldNumber: 730) } if _storage._protobufExtensionFieldValues != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufExtensionFieldValues, fieldNumber: 718) + try visitor.visitSingularInt32Field(value: _storage._protobufExtensionFieldValues, fieldNumber: 731) } if _storage._protobufFieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufFieldNumber, fieldNumber: 719) + try visitor.visitSingularInt32Field(value: _storage._protobufFieldNumber, fieldNumber: 732) } if _storage._protobufGeneratedIsEqualTo != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufGeneratedIsEqualTo, fieldNumber: 720) + try visitor.visitSingularInt32Field(value: _storage._protobufGeneratedIsEqualTo, fieldNumber: 733) } if _storage._protobufNameMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufNameMap, fieldNumber: 721) + try visitor.visitSingularInt32Field(value: _storage._protobufNameMap, fieldNumber: 734) } if _storage._protobufNewField != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufNewField, fieldNumber: 722) + try visitor.visitSingularInt32Field(value: _storage._protobufNewField, fieldNumber: 735) } if _storage._protobufPackage != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufPackage, fieldNumber: 723) + try visitor.visitSingularInt32Field(value: _storage._protobufPackage, fieldNumber: 736) } if _storage._protocol != 0 { - try visitor.visitSingularInt32Field(value: _storage._protocol, fieldNumber: 724) + try visitor.visitSingularInt32Field(value: _storage._protocol, fieldNumber: 737) } if _storage._protoFieldName != 0 { - try visitor.visitSingularInt32Field(value: _storage._protoFieldName, fieldNumber: 725) + try visitor.visitSingularInt32Field(value: _storage._protoFieldName, fieldNumber: 738) } if _storage._protoMessageName != 0 { - try visitor.visitSingularInt32Field(value: _storage._protoMessageName, fieldNumber: 726) + try visitor.visitSingularInt32Field(value: _storage._protoMessageName, fieldNumber: 739) } if _storage._protoNameProviding != 0 { - try visitor.visitSingularInt32Field(value: _storage._protoNameProviding, fieldNumber: 727) + try visitor.visitSingularInt32Field(value: _storage._protoNameProviding, fieldNumber: 740) } if _storage._protoPaths != 0 { - try visitor.visitSingularInt32Field(value: _storage._protoPaths, fieldNumber: 728) + try visitor.visitSingularInt32Field(value: _storage._protoPaths, fieldNumber: 741) } if _storage._public != 0 { - try visitor.visitSingularInt32Field(value: _storage._public, fieldNumber: 729) + try visitor.visitSingularInt32Field(value: _storage._public, fieldNumber: 742) } if _storage._publicDependency != 0 { - try visitor.visitSingularInt32Field(value: _storage._publicDependency, fieldNumber: 730) + try visitor.visitSingularInt32Field(value: _storage._publicDependency, fieldNumber: 743) } if _storage._putBoolValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putBoolValue, fieldNumber: 731) + try visitor.visitSingularInt32Field(value: _storage._putBoolValue, fieldNumber: 744) } if _storage._putBytesValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putBytesValue, fieldNumber: 732) + try visitor.visitSingularInt32Field(value: _storage._putBytesValue, fieldNumber: 745) } if _storage._putDoubleValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putDoubleValue, fieldNumber: 733) + try visitor.visitSingularInt32Field(value: _storage._putDoubleValue, fieldNumber: 746) } if _storage._putEnumValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putEnumValue, fieldNumber: 734) + try visitor.visitSingularInt32Field(value: _storage._putEnumValue, fieldNumber: 747) } if _storage._putFixedUint32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._putFixedUint32, fieldNumber: 735) + try visitor.visitSingularInt32Field(value: _storage._putFixedUint32, fieldNumber: 748) } if _storage._putFixedUint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._putFixedUint64, fieldNumber: 736) + try visitor.visitSingularInt32Field(value: _storage._putFixedUint64, fieldNumber: 749) } if _storage._putFloatValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putFloatValue, fieldNumber: 737) + try visitor.visitSingularInt32Field(value: _storage._putFloatValue, fieldNumber: 750) } if _storage._putInt64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._putInt64, fieldNumber: 738) + try visitor.visitSingularInt32Field(value: _storage._putInt64, fieldNumber: 751) } if _storage._putStringValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putStringValue, fieldNumber: 739) + try visitor.visitSingularInt32Field(value: _storage._putStringValue, fieldNumber: 752) } if _storage._putUint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._putUint64, fieldNumber: 740) + try visitor.visitSingularInt32Field(value: _storage._putUint64, fieldNumber: 753) } if _storage._putUint64Hex != 0 { - try visitor.visitSingularInt32Field(value: _storage._putUint64Hex, fieldNumber: 741) + try visitor.visitSingularInt32Field(value: _storage._putUint64Hex, fieldNumber: 754) } if _storage._putVarInt != 0 { - try visitor.visitSingularInt32Field(value: _storage._putVarInt, fieldNumber: 742) + try visitor.visitSingularInt32Field(value: _storage._putVarInt, fieldNumber: 755) } if _storage._putZigZagVarInt != 0 { - try visitor.visitSingularInt32Field(value: _storage._putZigZagVarInt, fieldNumber: 743) + try visitor.visitSingularInt32Field(value: _storage._putZigZagVarInt, fieldNumber: 756) } if _storage._pyGenericServices != 0 { - try visitor.visitSingularInt32Field(value: _storage._pyGenericServices, fieldNumber: 744) + try visitor.visitSingularInt32Field(value: _storage._pyGenericServices, fieldNumber: 757) } if _storage._r != 0 { - try visitor.visitSingularInt32Field(value: _storage._r, fieldNumber: 745) + try visitor.visitSingularInt32Field(value: _storage._r, fieldNumber: 758) } if _storage._rawChars != 0 { - try visitor.visitSingularInt32Field(value: _storage._rawChars, fieldNumber: 746) + try visitor.visitSingularInt32Field(value: _storage._rawChars, fieldNumber: 759) } if _storage._rawRepresentable != 0 { - try visitor.visitSingularInt32Field(value: _storage._rawRepresentable, fieldNumber: 747) + try visitor.visitSingularInt32Field(value: _storage._rawRepresentable, fieldNumber: 760) } if _storage._rawValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._rawValue, fieldNumber: 748) + try visitor.visitSingularInt32Field(value: _storage._rawValue, fieldNumber: 761) } if _storage._read4HexDigits != 0 { - try visitor.visitSingularInt32Field(value: _storage._read4HexDigits, fieldNumber: 749) + try visitor.visitSingularInt32Field(value: _storage._read4HexDigits, fieldNumber: 762) } if _storage._readBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._readBytes, fieldNumber: 750) + try visitor.visitSingularInt32Field(value: _storage._readBytes, fieldNumber: 763) } if _storage._register != 0 { - try visitor.visitSingularInt32Field(value: _storage._register, fieldNumber: 751) + try visitor.visitSingularInt32Field(value: _storage._register, fieldNumber: 764) } if _storage._repeated != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeated, fieldNumber: 752) + try visitor.visitSingularInt32Field(value: _storage._repeated, fieldNumber: 765) } if _storage._repeatedEnumExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedEnumExtensionField, fieldNumber: 753) + try visitor.visitSingularInt32Field(value: _storage._repeatedEnumExtensionField, fieldNumber: 766) } if _storage._repeatedExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedExtensionField, fieldNumber: 754) + try visitor.visitSingularInt32Field(value: _storage._repeatedExtensionField, fieldNumber: 767) } if _storage._repeatedFieldEncoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedFieldEncoding, fieldNumber: 755) + try visitor.visitSingularInt32Field(value: _storage._repeatedFieldEncoding, fieldNumber: 768) } if _storage._repeatedGroupExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedGroupExtensionField, fieldNumber: 756) + try visitor.visitSingularInt32Field(value: _storage._repeatedGroupExtensionField, fieldNumber: 769) } if _storage._repeatedMessageExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedMessageExtensionField, fieldNumber: 757) + try visitor.visitSingularInt32Field(value: _storage._repeatedMessageExtensionField, fieldNumber: 770) } if _storage._repeating != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeating, fieldNumber: 758) + try visitor.visitSingularInt32Field(value: _storage._repeating, fieldNumber: 771) } if _storage._requestStreaming != 0 { - try visitor.visitSingularInt32Field(value: _storage._requestStreaming, fieldNumber: 759) + try visitor.visitSingularInt32Field(value: _storage._requestStreaming, fieldNumber: 772) } if _storage._requestTypeURL != 0 { - try visitor.visitSingularInt32Field(value: _storage._requestTypeURL, fieldNumber: 760) + try visitor.visitSingularInt32Field(value: _storage._requestTypeURL, fieldNumber: 773) } if _storage._requiredSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._requiredSize, fieldNumber: 761) + try visitor.visitSingularInt32Field(value: _storage._requiredSize, fieldNumber: 774) } if _storage._responseStreaming != 0 { - try visitor.visitSingularInt32Field(value: _storage._responseStreaming, fieldNumber: 762) + try visitor.visitSingularInt32Field(value: _storage._responseStreaming, fieldNumber: 775) } if _storage._responseTypeURL != 0 { - try visitor.visitSingularInt32Field(value: _storage._responseTypeURL, fieldNumber: 763) + try visitor.visitSingularInt32Field(value: _storage._responseTypeURL, fieldNumber: 776) } if _storage._result != 0 { - try visitor.visitSingularInt32Field(value: _storage._result, fieldNumber: 764) + try visitor.visitSingularInt32Field(value: _storage._result, fieldNumber: 777) } if _storage._retention != 0 { - try visitor.visitSingularInt32Field(value: _storage._retention, fieldNumber: 765) + try visitor.visitSingularInt32Field(value: _storage._retention, fieldNumber: 778) } if _storage._rethrows != 0 { - try visitor.visitSingularInt32Field(value: _storage._rethrows, fieldNumber: 766) + try visitor.visitSingularInt32Field(value: _storage._rethrows, fieldNumber: 779) } if _storage._return != 0 { - try visitor.visitSingularInt32Field(value: _storage._return, fieldNumber: 767) + try visitor.visitSingularInt32Field(value: _storage._return, fieldNumber: 780) } if _storage._returnType != 0 { - try visitor.visitSingularInt32Field(value: _storage._returnType, fieldNumber: 768) + try visitor.visitSingularInt32Field(value: _storage._returnType, fieldNumber: 781) } if _storage._revision != 0 { - try visitor.visitSingularInt32Field(value: _storage._revision, fieldNumber: 769) + try visitor.visitSingularInt32Field(value: _storage._revision, fieldNumber: 782) } if _storage._rhs != 0 { - try visitor.visitSingularInt32Field(value: _storage._rhs, fieldNumber: 770) + try visitor.visitSingularInt32Field(value: _storage._rhs, fieldNumber: 783) } if _storage._root != 0 { - try visitor.visitSingularInt32Field(value: _storage._root, fieldNumber: 771) + try visitor.visitSingularInt32Field(value: _storage._root, fieldNumber: 784) } if _storage._rubyPackage != 0 { - try visitor.visitSingularInt32Field(value: _storage._rubyPackage, fieldNumber: 772) + try visitor.visitSingularInt32Field(value: _storage._rubyPackage, fieldNumber: 785) } if _storage._s != 0 { - try visitor.visitSingularInt32Field(value: _storage._s, fieldNumber: 773) + try visitor.visitSingularInt32Field(value: _storage._s, fieldNumber: 786) } if _storage._sawBackslash != 0 { - try visitor.visitSingularInt32Field(value: _storage._sawBackslash, fieldNumber: 774) + try visitor.visitSingularInt32Field(value: _storage._sawBackslash, fieldNumber: 787) } if _storage._sawSection4Characters != 0 { - try visitor.visitSingularInt32Field(value: _storage._sawSection4Characters, fieldNumber: 775) + try visitor.visitSingularInt32Field(value: _storage._sawSection4Characters, fieldNumber: 788) } if _storage._sawSection5Characters != 0 { - try visitor.visitSingularInt32Field(value: _storage._sawSection5Characters, fieldNumber: 776) + try visitor.visitSingularInt32Field(value: _storage._sawSection5Characters, fieldNumber: 789) } if _storage._scan != 0 { - try visitor.visitSingularInt32Field(value: _storage._scan, fieldNumber: 777) + try visitor.visitSingularInt32Field(value: _storage._scan, fieldNumber: 790) } if _storage._scanner != 0 { - try visitor.visitSingularInt32Field(value: _storage._scanner, fieldNumber: 778) + try visitor.visitSingularInt32Field(value: _storage._scanner, fieldNumber: 791) } if _storage._seconds != 0 { - try visitor.visitSingularInt32Field(value: _storage._seconds, fieldNumber: 779) + try visitor.visitSingularInt32Field(value: _storage._seconds, fieldNumber: 792) } if _storage._self_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._self_p, fieldNumber: 780) + try visitor.visitSingularInt32Field(value: _storage._self_p, fieldNumber: 793) } if _storage._semantic != 0 { - try visitor.visitSingularInt32Field(value: _storage._semantic, fieldNumber: 781) + try visitor.visitSingularInt32Field(value: _storage._semantic, fieldNumber: 794) } if _storage._sendable != 0 { - try visitor.visitSingularInt32Field(value: _storage._sendable, fieldNumber: 782) + try visitor.visitSingularInt32Field(value: _storage._sendable, fieldNumber: 795) } if _storage._separator != 0 { - try visitor.visitSingularInt32Field(value: _storage._separator, fieldNumber: 783) + try visitor.visitSingularInt32Field(value: _storage._separator, fieldNumber: 796) } if _storage._serialize != 0 { - try visitor.visitSingularInt32Field(value: _storage._serialize, fieldNumber: 784) + try visitor.visitSingularInt32Field(value: _storage._serialize, fieldNumber: 797) } if _storage._serializedBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._serializedBytes, fieldNumber: 785) + try visitor.visitSingularInt32Field(value: _storage._serializedBytes, fieldNumber: 798) } if _storage._serializedData != 0 { - try visitor.visitSingularInt32Field(value: _storage._serializedData, fieldNumber: 786) + try visitor.visitSingularInt32Field(value: _storage._serializedData, fieldNumber: 799) } if _storage._serializedSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._serializedSize, fieldNumber: 787) + try visitor.visitSingularInt32Field(value: _storage._serializedSize, fieldNumber: 800) } if _storage._serverStreaming != 0 { - try visitor.visitSingularInt32Field(value: _storage._serverStreaming, fieldNumber: 788) + try visitor.visitSingularInt32Field(value: _storage._serverStreaming, fieldNumber: 801) } if _storage._service != 0 { - try visitor.visitSingularInt32Field(value: _storage._service, fieldNumber: 789) + try visitor.visitSingularInt32Field(value: _storage._service, fieldNumber: 802) } if _storage._serviceDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._serviceDescriptorProto, fieldNumber: 790) + try visitor.visitSingularInt32Field(value: _storage._serviceDescriptorProto, fieldNumber: 803) } if _storage._serviceOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._serviceOptions, fieldNumber: 791) + try visitor.visitSingularInt32Field(value: _storage._serviceOptions, fieldNumber: 804) } if _storage._set != 0 { - try visitor.visitSingularInt32Field(value: _storage._set, fieldNumber: 792) + try visitor.visitSingularInt32Field(value: _storage._set, fieldNumber: 805) } if _storage._setExtensionValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._setExtensionValue, fieldNumber: 793) + try visitor.visitSingularInt32Field(value: _storage._setExtensionValue, fieldNumber: 806) } if _storage._shift != 0 { - try visitor.visitSingularInt32Field(value: _storage._shift, fieldNumber: 794) + try visitor.visitSingularInt32Field(value: _storage._shift, fieldNumber: 807) } if _storage._simpleExtensionMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._simpleExtensionMap, fieldNumber: 795) + try visitor.visitSingularInt32Field(value: _storage._simpleExtensionMap, fieldNumber: 808) } if _storage._size != 0 { - try visitor.visitSingularInt32Field(value: _storage._size, fieldNumber: 796) + try visitor.visitSingularInt32Field(value: _storage._size, fieldNumber: 809) } if _storage._sizer != 0 { - try visitor.visitSingularInt32Field(value: _storage._sizer, fieldNumber: 797) + try visitor.visitSingularInt32Field(value: _storage._sizer, fieldNumber: 810) } if _storage._source != 0 { - try visitor.visitSingularInt32Field(value: _storage._source, fieldNumber: 798) + try visitor.visitSingularInt32Field(value: _storage._source, fieldNumber: 811) } if _storage._sourceCodeInfo != 0 { - try visitor.visitSingularInt32Field(value: _storage._sourceCodeInfo, fieldNumber: 799) + try visitor.visitSingularInt32Field(value: _storage._sourceCodeInfo, fieldNumber: 812) } if _storage._sourceContext != 0 { - try visitor.visitSingularInt32Field(value: _storage._sourceContext, fieldNumber: 800) + try visitor.visitSingularInt32Field(value: _storage._sourceContext, fieldNumber: 813) } if _storage._sourceEncoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._sourceEncoding, fieldNumber: 801) + try visitor.visitSingularInt32Field(value: _storage._sourceEncoding, fieldNumber: 814) } if _storage._sourceFile != 0 { - try visitor.visitSingularInt32Field(value: _storage._sourceFile, fieldNumber: 802) + try visitor.visitSingularInt32Field(value: _storage._sourceFile, fieldNumber: 815) + } + if _storage._sourceLocation != 0 { + try visitor.visitSingularInt32Field(value: _storage._sourceLocation, fieldNumber: 816) } if _storage._span != 0 { - try visitor.visitSingularInt32Field(value: _storage._span, fieldNumber: 803) + try visitor.visitSingularInt32Field(value: _storage._span, fieldNumber: 817) } if _storage._split != 0 { - try visitor.visitSingularInt32Field(value: _storage._split, fieldNumber: 804) + try visitor.visitSingularInt32Field(value: _storage._split, fieldNumber: 818) } if _storage._start != 0 { - try visitor.visitSingularInt32Field(value: _storage._start, fieldNumber: 805) + try visitor.visitSingularInt32Field(value: _storage._start, fieldNumber: 819) } if _storage._startArray != 0 { - try visitor.visitSingularInt32Field(value: _storage._startArray, fieldNumber: 806) + try visitor.visitSingularInt32Field(value: _storage._startArray, fieldNumber: 820) } if _storage._startArrayObject != 0 { - try visitor.visitSingularInt32Field(value: _storage._startArrayObject, fieldNumber: 807) + try visitor.visitSingularInt32Field(value: _storage._startArrayObject, fieldNumber: 821) } if _storage._startField != 0 { - try visitor.visitSingularInt32Field(value: _storage._startField, fieldNumber: 808) + try visitor.visitSingularInt32Field(value: _storage._startField, fieldNumber: 822) } if _storage._startIndex != 0 { - try visitor.visitSingularInt32Field(value: _storage._startIndex, fieldNumber: 809) + try visitor.visitSingularInt32Field(value: _storage._startIndex, fieldNumber: 823) } if _storage._startMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._startMessageField, fieldNumber: 810) + try visitor.visitSingularInt32Field(value: _storage._startMessageField, fieldNumber: 824) } if _storage._startObject != 0 { - try visitor.visitSingularInt32Field(value: _storage._startObject, fieldNumber: 811) + try visitor.visitSingularInt32Field(value: _storage._startObject, fieldNumber: 825) } if _storage._startRegularField != 0 { - try visitor.visitSingularInt32Field(value: _storage._startRegularField, fieldNumber: 812) + try visitor.visitSingularInt32Field(value: _storage._startRegularField, fieldNumber: 826) } if _storage._state != 0 { - try visitor.visitSingularInt32Field(value: _storage._state, fieldNumber: 813) + try visitor.visitSingularInt32Field(value: _storage._state, fieldNumber: 827) } if _storage._static != 0 { - try visitor.visitSingularInt32Field(value: _storage._static, fieldNumber: 814) + try visitor.visitSingularInt32Field(value: _storage._static, fieldNumber: 828) } if _storage._staticString != 0 { - try visitor.visitSingularInt32Field(value: _storage._staticString, fieldNumber: 815) + try visitor.visitSingularInt32Field(value: _storage._staticString, fieldNumber: 829) } if _storage._storage != 0 { - try visitor.visitSingularInt32Field(value: _storage._storage, fieldNumber: 816) + try visitor.visitSingularInt32Field(value: _storage._storage, fieldNumber: 830) } if _storage._string != 0 { - try visitor.visitSingularInt32Field(value: _storage._string, fieldNumber: 817) + try visitor.visitSingularInt32Field(value: _storage._string, fieldNumber: 831) } if _storage._stringLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._stringLiteral, fieldNumber: 818) + try visitor.visitSingularInt32Field(value: _storage._stringLiteral, fieldNumber: 832) } if _storage._stringLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._stringLiteralType, fieldNumber: 819) + try visitor.visitSingularInt32Field(value: _storage._stringLiteralType, fieldNumber: 833) } if _storage._stringResult != 0 { - try visitor.visitSingularInt32Field(value: _storage._stringResult, fieldNumber: 820) + try visitor.visitSingularInt32Field(value: _storage._stringResult, fieldNumber: 834) } if _storage._stringValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._stringValue, fieldNumber: 821) + try visitor.visitSingularInt32Field(value: _storage._stringValue, fieldNumber: 835) } if _storage._struct != 0 { - try visitor.visitSingularInt32Field(value: _storage._struct, fieldNumber: 822) + try visitor.visitSingularInt32Field(value: _storage._struct, fieldNumber: 836) } if _storage._structValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._structValue, fieldNumber: 823) + try visitor.visitSingularInt32Field(value: _storage._structValue, fieldNumber: 837) } if _storage._subDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._subDecoder, fieldNumber: 824) + try visitor.visitSingularInt32Field(value: _storage._subDecoder, fieldNumber: 838) } if _storage._subscript != 0 { - try visitor.visitSingularInt32Field(value: _storage._subscript, fieldNumber: 825) + try visitor.visitSingularInt32Field(value: _storage._subscript, fieldNumber: 839) } if _storage._subVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._subVisitor, fieldNumber: 826) + try visitor.visitSingularInt32Field(value: _storage._subVisitor, fieldNumber: 840) } if _storage._swift != 0 { - try visitor.visitSingularInt32Field(value: _storage._swift, fieldNumber: 827) + try visitor.visitSingularInt32Field(value: _storage._swift, fieldNumber: 841) } if _storage._swiftPrefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._swiftPrefix, fieldNumber: 828) + try visitor.visitSingularInt32Field(value: _storage._swiftPrefix, fieldNumber: 842) } if _storage._swiftProtobufContiguousBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._swiftProtobufContiguousBytes, fieldNumber: 829) + try visitor.visitSingularInt32Field(value: _storage._swiftProtobufContiguousBytes, fieldNumber: 843) + } + if _storage._swiftProtobufError != 0 { + try visitor.visitSingularInt32Field(value: _storage._swiftProtobufError, fieldNumber: 844) } if _storage._syntax != 0 { - try visitor.visitSingularInt32Field(value: _storage._syntax, fieldNumber: 830) + try visitor.visitSingularInt32Field(value: _storage._syntax, fieldNumber: 845) } if _storage._t != 0 { - try visitor.visitSingularInt32Field(value: _storage._t, fieldNumber: 831) + try visitor.visitSingularInt32Field(value: _storage._t, fieldNumber: 846) } if _storage._tag != 0 { - try visitor.visitSingularInt32Field(value: _storage._tag, fieldNumber: 832) + try visitor.visitSingularInt32Field(value: _storage._tag, fieldNumber: 847) } if _storage._targets != 0 { - try visitor.visitSingularInt32Field(value: _storage._targets, fieldNumber: 833) + try visitor.visitSingularInt32Field(value: _storage._targets, fieldNumber: 848) } if _storage._terminator != 0 { - try visitor.visitSingularInt32Field(value: _storage._terminator, fieldNumber: 834) + try visitor.visitSingularInt32Field(value: _storage._terminator, fieldNumber: 849) } if _storage._testDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._testDecoder, fieldNumber: 835) + try visitor.visitSingularInt32Field(value: _storage._testDecoder, fieldNumber: 850) } if _storage._text != 0 { - try visitor.visitSingularInt32Field(value: _storage._text, fieldNumber: 836) + try visitor.visitSingularInt32Field(value: _storage._text, fieldNumber: 851) } if _storage._textDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._textDecoder, fieldNumber: 837) + try visitor.visitSingularInt32Field(value: _storage._textDecoder, fieldNumber: 852) } if _storage._textFormatDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatDecoder, fieldNumber: 838) + try visitor.visitSingularInt32Field(value: _storage._textFormatDecoder, fieldNumber: 853) } if _storage._textFormatDecodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatDecodingError, fieldNumber: 839) + try visitor.visitSingularInt32Field(value: _storage._textFormatDecodingError, fieldNumber: 854) } if _storage._textFormatDecodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatDecodingOptions, fieldNumber: 840) + try visitor.visitSingularInt32Field(value: _storage._textFormatDecodingOptions, fieldNumber: 855) } if _storage._textFormatEncodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatEncodingOptions, fieldNumber: 841) + try visitor.visitSingularInt32Field(value: _storage._textFormatEncodingOptions, fieldNumber: 856) } if _storage._textFormatEncodingVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatEncodingVisitor, fieldNumber: 842) + try visitor.visitSingularInt32Field(value: _storage._textFormatEncodingVisitor, fieldNumber: 857) } if _storage._textFormatString != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatString, fieldNumber: 843) + try visitor.visitSingularInt32Field(value: _storage._textFormatString, fieldNumber: 858) } if _storage._throwOrIgnore != 0 { - try visitor.visitSingularInt32Field(value: _storage._throwOrIgnore, fieldNumber: 844) + try visitor.visitSingularInt32Field(value: _storage._throwOrIgnore, fieldNumber: 859) } if _storage._throws != 0 { - try visitor.visitSingularInt32Field(value: _storage._throws, fieldNumber: 845) + try visitor.visitSingularInt32Field(value: _storage._throws, fieldNumber: 860) } if _storage._timeInterval != 0 { - try visitor.visitSingularInt32Field(value: _storage._timeInterval, fieldNumber: 846) + try visitor.visitSingularInt32Field(value: _storage._timeInterval, fieldNumber: 861) } if _storage._timeIntervalSince1970 != 0 { - try visitor.visitSingularInt32Field(value: _storage._timeIntervalSince1970, fieldNumber: 847) + try visitor.visitSingularInt32Field(value: _storage._timeIntervalSince1970, fieldNumber: 862) } if _storage._timeIntervalSinceReferenceDate != 0 { - try visitor.visitSingularInt32Field(value: _storage._timeIntervalSinceReferenceDate, fieldNumber: 848) + try visitor.visitSingularInt32Field(value: _storage._timeIntervalSinceReferenceDate, fieldNumber: 863) } if _storage._timestamp != 0 { - try visitor.visitSingularInt32Field(value: _storage._timestamp, fieldNumber: 849) + try visitor.visitSingularInt32Field(value: _storage._timestamp, fieldNumber: 864) + } + if _storage._tooLarge != 0 { + try visitor.visitSingularInt32Field(value: _storage._tooLarge, fieldNumber: 865) } if _storage._total != 0 { - try visitor.visitSingularInt32Field(value: _storage._total, fieldNumber: 850) + try visitor.visitSingularInt32Field(value: _storage._total, fieldNumber: 866) } if _storage._totalArrayDepth != 0 { - try visitor.visitSingularInt32Field(value: _storage._totalArrayDepth, fieldNumber: 851) + try visitor.visitSingularInt32Field(value: _storage._totalArrayDepth, fieldNumber: 867) } if _storage._totalSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._totalSize, fieldNumber: 852) + try visitor.visitSingularInt32Field(value: _storage._totalSize, fieldNumber: 868) } if _storage._trailingComments != 0 { - try visitor.visitSingularInt32Field(value: _storage._trailingComments, fieldNumber: 853) + try visitor.visitSingularInt32Field(value: _storage._trailingComments, fieldNumber: 869) } if _storage._traverse != 0 { - try visitor.visitSingularInt32Field(value: _storage._traverse, fieldNumber: 854) + try visitor.visitSingularInt32Field(value: _storage._traverse, fieldNumber: 870) } if _storage._true != 0 { - try visitor.visitSingularInt32Field(value: _storage._true, fieldNumber: 855) + try visitor.visitSingularInt32Field(value: _storage._true, fieldNumber: 871) } if _storage._try != 0 { - try visitor.visitSingularInt32Field(value: _storage._try, fieldNumber: 856) + try visitor.visitSingularInt32Field(value: _storage._try, fieldNumber: 872) } if _storage._type != 0 { - try visitor.visitSingularInt32Field(value: _storage._type, fieldNumber: 857) + try visitor.visitSingularInt32Field(value: _storage._type, fieldNumber: 873) } if _storage._typealias != 0 { - try visitor.visitSingularInt32Field(value: _storage._typealias, fieldNumber: 858) + try visitor.visitSingularInt32Field(value: _storage._typealias, fieldNumber: 874) } if _storage._typeEnum != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeEnum, fieldNumber: 859) + try visitor.visitSingularInt32Field(value: _storage._typeEnum, fieldNumber: 875) } if _storage._typeName != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeName, fieldNumber: 860) + try visitor.visitSingularInt32Field(value: _storage._typeName, fieldNumber: 876) } if _storage._typePrefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._typePrefix, fieldNumber: 861) + try visitor.visitSingularInt32Field(value: _storage._typePrefix, fieldNumber: 877) } if _storage._typeStart != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeStart, fieldNumber: 862) + try visitor.visitSingularInt32Field(value: _storage._typeStart, fieldNumber: 878) } if _storage._typeUnknown != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeUnknown, fieldNumber: 863) + try visitor.visitSingularInt32Field(value: _storage._typeUnknown, fieldNumber: 879) } if _storage._typeURL != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeURL, fieldNumber: 864) + try visitor.visitSingularInt32Field(value: _storage._typeURL, fieldNumber: 880) } if _storage._uint32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint32, fieldNumber: 865) + try visitor.visitSingularInt32Field(value: _storage._uint32, fieldNumber: 881) } if _storage._uint32Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint32Value, fieldNumber: 866) + try visitor.visitSingularInt32Field(value: _storage._uint32Value, fieldNumber: 882) } if _storage._uint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint64, fieldNumber: 867) + try visitor.visitSingularInt32Field(value: _storage._uint64, fieldNumber: 883) } if _storage._uint64Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint64Value, fieldNumber: 868) + try visitor.visitSingularInt32Field(value: _storage._uint64Value, fieldNumber: 884) } if _storage._uint8 != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint8, fieldNumber: 869) + try visitor.visitSingularInt32Field(value: _storage._uint8, fieldNumber: 885) } if _storage._unchecked != 0 { - try visitor.visitSingularInt32Field(value: _storage._unchecked, fieldNumber: 870) + try visitor.visitSingularInt32Field(value: _storage._unchecked, fieldNumber: 886) } if _storage._unicodeScalarLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._unicodeScalarLiteral, fieldNumber: 871) + try visitor.visitSingularInt32Field(value: _storage._unicodeScalarLiteral, fieldNumber: 887) } if _storage._unicodeScalarLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._unicodeScalarLiteralType, fieldNumber: 872) + try visitor.visitSingularInt32Field(value: _storage._unicodeScalarLiteralType, fieldNumber: 888) } if _storage._unicodeScalars != 0 { - try visitor.visitSingularInt32Field(value: _storage._unicodeScalars, fieldNumber: 873) + try visitor.visitSingularInt32Field(value: _storage._unicodeScalars, fieldNumber: 889) } if _storage._unicodeScalarView != 0 { - try visitor.visitSingularInt32Field(value: _storage._unicodeScalarView, fieldNumber: 874) + try visitor.visitSingularInt32Field(value: _storage._unicodeScalarView, fieldNumber: 890) } if _storage._uninterpretedOption != 0 { - try visitor.visitSingularInt32Field(value: _storage._uninterpretedOption, fieldNumber: 875) + try visitor.visitSingularInt32Field(value: _storage._uninterpretedOption, fieldNumber: 891) } if _storage._union != 0 { - try visitor.visitSingularInt32Field(value: _storage._union, fieldNumber: 876) + try visitor.visitSingularInt32Field(value: _storage._union, fieldNumber: 892) } if _storage._uniqueStorage != 0 { - try visitor.visitSingularInt32Field(value: _storage._uniqueStorage, fieldNumber: 877) + try visitor.visitSingularInt32Field(value: _storage._uniqueStorage, fieldNumber: 893) } if _storage._unknown != 0 { - try visitor.visitSingularInt32Field(value: _storage._unknown, fieldNumber: 878) + try visitor.visitSingularInt32Field(value: _storage._unknown, fieldNumber: 894) } if _storage._unknownFields_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._unknownFields_p, fieldNumber: 879) + try visitor.visitSingularInt32Field(value: _storage._unknownFields_p, fieldNumber: 895) } if _storage._unknownStorage != 0 { - try visitor.visitSingularInt32Field(value: _storage._unknownStorage, fieldNumber: 880) + try visitor.visitSingularInt32Field(value: _storage._unknownStorage, fieldNumber: 896) } if _storage._unpackTo != 0 { - try visitor.visitSingularInt32Field(value: _storage._unpackTo, fieldNumber: 881) + try visitor.visitSingularInt32Field(value: _storage._unpackTo, fieldNumber: 897) + } + if _storage._unregisteredTypeURL != 0 { + try visitor.visitSingularInt32Field(value: _storage._unregisteredTypeURL, fieldNumber: 898) } if _storage._unsafeBufferPointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeBufferPointer, fieldNumber: 882) + try visitor.visitSingularInt32Field(value: _storage._unsafeBufferPointer, fieldNumber: 899) } if _storage._unsafeMutablePointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeMutablePointer, fieldNumber: 883) + try visitor.visitSingularInt32Field(value: _storage._unsafeMutablePointer, fieldNumber: 900) } if _storage._unsafeMutableRawBufferPointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeMutableRawBufferPointer, fieldNumber: 884) + try visitor.visitSingularInt32Field(value: _storage._unsafeMutableRawBufferPointer, fieldNumber: 901) } if _storage._unsafeRawBufferPointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeRawBufferPointer, fieldNumber: 885) + try visitor.visitSingularInt32Field(value: _storage._unsafeRawBufferPointer, fieldNumber: 902) } if _storage._unsafeRawPointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeRawPointer, fieldNumber: 886) + try visitor.visitSingularInt32Field(value: _storage._unsafeRawPointer, fieldNumber: 903) } if _storage._unverifiedLazy != 0 { - try visitor.visitSingularInt32Field(value: _storage._unverifiedLazy, fieldNumber: 887) + try visitor.visitSingularInt32Field(value: _storage._unverifiedLazy, fieldNumber: 904) } if _storage._updatedOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._updatedOptions, fieldNumber: 888) + try visitor.visitSingularInt32Field(value: _storage._updatedOptions, fieldNumber: 905) } if _storage._url != 0 { - try visitor.visitSingularInt32Field(value: _storage._url, fieldNumber: 889) + try visitor.visitSingularInt32Field(value: _storage._url, fieldNumber: 906) } if _storage._useDeterministicOrdering != 0 { - try visitor.visitSingularInt32Field(value: _storage._useDeterministicOrdering, fieldNumber: 890) + try visitor.visitSingularInt32Field(value: _storage._useDeterministicOrdering, fieldNumber: 907) } if _storage._utf8 != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8, fieldNumber: 891) + try visitor.visitSingularInt32Field(value: _storage._utf8, fieldNumber: 908) } if _storage._utf8Ptr != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8Ptr, fieldNumber: 892) + try visitor.visitSingularInt32Field(value: _storage._utf8Ptr, fieldNumber: 909) } if _storage._utf8ToDouble != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8ToDouble, fieldNumber: 893) + try visitor.visitSingularInt32Field(value: _storage._utf8ToDouble, fieldNumber: 910) } if _storage._utf8Validation != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8Validation, fieldNumber: 894) + try visitor.visitSingularInt32Field(value: _storage._utf8Validation, fieldNumber: 911) } if _storage._utf8View != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8View, fieldNumber: 895) + try visitor.visitSingularInt32Field(value: _storage._utf8View, fieldNumber: 912) } if _storage._v != 0 { - try visitor.visitSingularInt32Field(value: _storage._v, fieldNumber: 896) + try visitor.visitSingularInt32Field(value: _storage._v, fieldNumber: 913) } if _storage._value != 0 { - try visitor.visitSingularInt32Field(value: _storage._value, fieldNumber: 897) + try visitor.visitSingularInt32Field(value: _storage._value, fieldNumber: 914) } if _storage._valueField != 0 { - try visitor.visitSingularInt32Field(value: _storage._valueField, fieldNumber: 898) + try visitor.visitSingularInt32Field(value: _storage._valueField, fieldNumber: 915) } if _storage._values != 0 { - try visitor.visitSingularInt32Field(value: _storage._values, fieldNumber: 899) + try visitor.visitSingularInt32Field(value: _storage._values, fieldNumber: 916) } if _storage._valueType != 0 { - try visitor.visitSingularInt32Field(value: _storage._valueType, fieldNumber: 900) + try visitor.visitSingularInt32Field(value: _storage._valueType, fieldNumber: 917) } if _storage._var != 0 { - try visitor.visitSingularInt32Field(value: _storage._var, fieldNumber: 901) + try visitor.visitSingularInt32Field(value: _storage._var, fieldNumber: 918) } if _storage._verification != 0 { - try visitor.visitSingularInt32Field(value: _storage._verification, fieldNumber: 902) + try visitor.visitSingularInt32Field(value: _storage._verification, fieldNumber: 919) } if _storage._verificationState != 0 { - try visitor.visitSingularInt32Field(value: _storage._verificationState, fieldNumber: 903) + try visitor.visitSingularInt32Field(value: _storage._verificationState, fieldNumber: 920) } if _storage._version != 0 { - try visitor.visitSingularInt32Field(value: _storage._version, fieldNumber: 904) + try visitor.visitSingularInt32Field(value: _storage._version, fieldNumber: 921) } if _storage._versionString != 0 { - try visitor.visitSingularInt32Field(value: _storage._versionString, fieldNumber: 905) + try visitor.visitSingularInt32Field(value: _storage._versionString, fieldNumber: 922) } if _storage._visitExtensionFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitExtensionFields, fieldNumber: 906) + try visitor.visitSingularInt32Field(value: _storage._visitExtensionFields, fieldNumber: 923) } if _storage._visitExtensionFieldsAsMessageSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitExtensionFieldsAsMessageSet, fieldNumber: 907) + try visitor.visitSingularInt32Field(value: _storage._visitExtensionFieldsAsMessageSet, fieldNumber: 924) } if _storage._visitMapField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitMapField, fieldNumber: 908) + try visitor.visitSingularInt32Field(value: _storage._visitMapField, fieldNumber: 925) } if _storage._visitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitor, fieldNumber: 909) + try visitor.visitSingularInt32Field(value: _storage._visitor, fieldNumber: 926) } if _storage._visitPacked != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPacked, fieldNumber: 910) + try visitor.visitSingularInt32Field(value: _storage._visitPacked, fieldNumber: 927) } if _storage._visitPackedBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedBoolField, fieldNumber: 911) + try visitor.visitSingularInt32Field(value: _storage._visitPackedBoolField, fieldNumber: 928) } if _storage._visitPackedDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedDoubleField, fieldNumber: 912) + try visitor.visitSingularInt32Field(value: _storage._visitPackedDoubleField, fieldNumber: 929) } if _storage._visitPackedEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedEnumField, fieldNumber: 913) + try visitor.visitSingularInt32Field(value: _storage._visitPackedEnumField, fieldNumber: 930) } if _storage._visitPackedFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedFixed32Field, fieldNumber: 914) + try visitor.visitSingularInt32Field(value: _storage._visitPackedFixed32Field, fieldNumber: 931) } if _storage._visitPackedFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedFixed64Field, fieldNumber: 915) + try visitor.visitSingularInt32Field(value: _storage._visitPackedFixed64Field, fieldNumber: 932) } if _storage._visitPackedFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedFloatField, fieldNumber: 916) + try visitor.visitSingularInt32Field(value: _storage._visitPackedFloatField, fieldNumber: 933) } if _storage._visitPackedInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedInt32Field, fieldNumber: 917) + try visitor.visitSingularInt32Field(value: _storage._visitPackedInt32Field, fieldNumber: 934) } if _storage._visitPackedInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedInt64Field, fieldNumber: 918) + try visitor.visitSingularInt32Field(value: _storage._visitPackedInt64Field, fieldNumber: 935) } if _storage._visitPackedSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedSfixed32Field, fieldNumber: 919) + try visitor.visitSingularInt32Field(value: _storage._visitPackedSfixed32Field, fieldNumber: 936) } if _storage._visitPackedSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedSfixed64Field, fieldNumber: 920) + try visitor.visitSingularInt32Field(value: _storage._visitPackedSfixed64Field, fieldNumber: 937) } if _storage._visitPackedSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedSint32Field, fieldNumber: 921) + try visitor.visitSingularInt32Field(value: _storage._visitPackedSint32Field, fieldNumber: 938) } if _storage._visitPackedSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedSint64Field, fieldNumber: 922) + try visitor.visitSingularInt32Field(value: _storage._visitPackedSint64Field, fieldNumber: 939) } if _storage._visitPackedUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedUint32Field, fieldNumber: 923) + try visitor.visitSingularInt32Field(value: _storage._visitPackedUint32Field, fieldNumber: 940) } if _storage._visitPackedUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedUint64Field, fieldNumber: 924) + try visitor.visitSingularInt32Field(value: _storage._visitPackedUint64Field, fieldNumber: 941) } if _storage._visitRepeated != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeated, fieldNumber: 925) + try visitor.visitSingularInt32Field(value: _storage._visitRepeated, fieldNumber: 942) } if _storage._visitRepeatedBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedBoolField, fieldNumber: 926) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedBoolField, fieldNumber: 943) } if _storage._visitRepeatedBytesField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedBytesField, fieldNumber: 927) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedBytesField, fieldNumber: 944) } if _storage._visitRepeatedDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedDoubleField, fieldNumber: 928) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedDoubleField, fieldNumber: 945) } if _storage._visitRepeatedEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedEnumField, fieldNumber: 929) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedEnumField, fieldNumber: 946) } if _storage._visitRepeatedFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFixed32Field, fieldNumber: 930) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFixed32Field, fieldNumber: 947) } if _storage._visitRepeatedFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFixed64Field, fieldNumber: 931) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFixed64Field, fieldNumber: 948) } if _storage._visitRepeatedFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFloatField, fieldNumber: 932) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFloatField, fieldNumber: 949) } if _storage._visitRepeatedGroupField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedGroupField, fieldNumber: 933) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedGroupField, fieldNumber: 950) } if _storage._visitRepeatedInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedInt32Field, fieldNumber: 934) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedInt32Field, fieldNumber: 951) } if _storage._visitRepeatedInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedInt64Field, fieldNumber: 935) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedInt64Field, fieldNumber: 952) } if _storage._visitRepeatedMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedMessageField, fieldNumber: 936) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedMessageField, fieldNumber: 953) } if _storage._visitRepeatedSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSfixed32Field, fieldNumber: 937) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSfixed32Field, fieldNumber: 954) } if _storage._visitRepeatedSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSfixed64Field, fieldNumber: 938) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSfixed64Field, fieldNumber: 955) } if _storage._visitRepeatedSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSint32Field, fieldNumber: 939) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSint32Field, fieldNumber: 956) } if _storage._visitRepeatedSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSint64Field, fieldNumber: 940) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSint64Field, fieldNumber: 957) } if _storage._visitRepeatedStringField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedStringField, fieldNumber: 941) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedStringField, fieldNumber: 958) } if _storage._visitRepeatedUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedUint32Field, fieldNumber: 942) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedUint32Field, fieldNumber: 959) } if _storage._visitRepeatedUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedUint64Field, fieldNumber: 943) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedUint64Field, fieldNumber: 960) } if _storage._visitSingular != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingular, fieldNumber: 944) + try visitor.visitSingularInt32Field(value: _storage._visitSingular, fieldNumber: 961) } if _storage._visitSingularBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularBoolField, fieldNumber: 945) + try visitor.visitSingularInt32Field(value: _storage._visitSingularBoolField, fieldNumber: 962) } if _storage._visitSingularBytesField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularBytesField, fieldNumber: 946) + try visitor.visitSingularInt32Field(value: _storage._visitSingularBytesField, fieldNumber: 963) } if _storage._visitSingularDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularDoubleField, fieldNumber: 947) + try visitor.visitSingularInt32Field(value: _storage._visitSingularDoubleField, fieldNumber: 964) } if _storage._visitSingularEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularEnumField, fieldNumber: 948) + try visitor.visitSingularInt32Field(value: _storage._visitSingularEnumField, fieldNumber: 965) } if _storage._visitSingularFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularFixed32Field, fieldNumber: 949) + try visitor.visitSingularInt32Field(value: _storage._visitSingularFixed32Field, fieldNumber: 966) } if _storage._visitSingularFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularFixed64Field, fieldNumber: 950) + try visitor.visitSingularInt32Field(value: _storage._visitSingularFixed64Field, fieldNumber: 967) } if _storage._visitSingularFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularFloatField, fieldNumber: 951) + try visitor.visitSingularInt32Field(value: _storage._visitSingularFloatField, fieldNumber: 968) } if _storage._visitSingularGroupField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularGroupField, fieldNumber: 952) + try visitor.visitSingularInt32Field(value: _storage._visitSingularGroupField, fieldNumber: 969) } if _storage._visitSingularInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularInt32Field, fieldNumber: 953) + try visitor.visitSingularInt32Field(value: _storage._visitSingularInt32Field, fieldNumber: 970) } if _storage._visitSingularInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularInt64Field, fieldNumber: 954) + try visitor.visitSingularInt32Field(value: _storage._visitSingularInt64Field, fieldNumber: 971) } if _storage._visitSingularMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularMessageField, fieldNumber: 955) + try visitor.visitSingularInt32Field(value: _storage._visitSingularMessageField, fieldNumber: 972) } if _storage._visitSingularSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularSfixed32Field, fieldNumber: 956) + try visitor.visitSingularInt32Field(value: _storage._visitSingularSfixed32Field, fieldNumber: 973) } if _storage._visitSingularSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularSfixed64Field, fieldNumber: 957) + try visitor.visitSingularInt32Field(value: _storage._visitSingularSfixed64Field, fieldNumber: 974) } if _storage._visitSingularSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularSint32Field, fieldNumber: 958) + try visitor.visitSingularInt32Field(value: _storage._visitSingularSint32Field, fieldNumber: 975) } if _storage._visitSingularSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularSint64Field, fieldNumber: 959) + try visitor.visitSingularInt32Field(value: _storage._visitSingularSint64Field, fieldNumber: 976) } if _storage._visitSingularStringField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularStringField, fieldNumber: 960) + try visitor.visitSingularInt32Field(value: _storage._visitSingularStringField, fieldNumber: 977) } if _storage._visitSingularUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularUint32Field, fieldNumber: 961) + try visitor.visitSingularInt32Field(value: _storage._visitSingularUint32Field, fieldNumber: 978) } if _storage._visitSingularUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularUint64Field, fieldNumber: 962) + try visitor.visitSingularInt32Field(value: _storage._visitSingularUint64Field, fieldNumber: 979) } if _storage._visitUnknown != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitUnknown, fieldNumber: 963) + try visitor.visitSingularInt32Field(value: _storage._visitUnknown, fieldNumber: 980) } if _storage._wasDecoded != 0 { - try visitor.visitSingularInt32Field(value: _storage._wasDecoded, fieldNumber: 964) + try visitor.visitSingularInt32Field(value: _storage._wasDecoded, fieldNumber: 981) } if _storage._weak != 0 { - try visitor.visitSingularInt32Field(value: _storage._weak, fieldNumber: 965) + try visitor.visitSingularInt32Field(value: _storage._weak, fieldNumber: 982) } if _storage._weakDependency != 0 { - try visitor.visitSingularInt32Field(value: _storage._weakDependency, fieldNumber: 966) + try visitor.visitSingularInt32Field(value: _storage._weakDependency, fieldNumber: 983) } if _storage._where != 0 { - try visitor.visitSingularInt32Field(value: _storage._where, fieldNumber: 967) + try visitor.visitSingularInt32Field(value: _storage._where, fieldNumber: 984) } if _storage._wireFormat != 0 { - try visitor.visitSingularInt32Field(value: _storage._wireFormat, fieldNumber: 968) + try visitor.visitSingularInt32Field(value: _storage._wireFormat, fieldNumber: 985) } if _storage._with != 0 { - try visitor.visitSingularInt32Field(value: _storage._with, fieldNumber: 969) + try visitor.visitSingularInt32Field(value: _storage._with, fieldNumber: 986) } if _storage._withUnsafeBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._withUnsafeBytes, fieldNumber: 970) + try visitor.visitSingularInt32Field(value: _storage._withUnsafeBytes, fieldNumber: 987) } if _storage._withUnsafeMutableBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._withUnsafeMutableBytes, fieldNumber: 971) + try visitor.visitSingularInt32Field(value: _storage._withUnsafeMutableBytes, fieldNumber: 988) } if _storage._work != 0 { - try visitor.visitSingularInt32Field(value: _storage._work, fieldNumber: 972) + try visitor.visitSingularInt32Field(value: _storage._work, fieldNumber: 989) } if _storage._wrapped != 0 { - try visitor.visitSingularInt32Field(value: _storage._wrapped, fieldNumber: 973) + try visitor.visitSingularInt32Field(value: _storage._wrapped, fieldNumber: 990) } if _storage._wrappedType != 0 { - try visitor.visitSingularInt32Field(value: _storage._wrappedType, fieldNumber: 974) + try visitor.visitSingularInt32Field(value: _storage._wrappedType, fieldNumber: 991) } if _storage._wrappedValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._wrappedValue, fieldNumber: 975) + try visitor.visitSingularInt32Field(value: _storage._wrappedValue, fieldNumber: 992) } if _storage._written != 0 { - try visitor.visitSingularInt32Field(value: _storage._written, fieldNumber: 976) + try visitor.visitSingularInt32Field(value: _storage._written, fieldNumber: 993) } if _storage._yday != 0 { - try visitor.visitSingularInt32Field(value: _storage._yday, fieldNumber: 977) + try visitor.visitSingularInt32Field(value: _storage._yday, fieldNumber: 994) } } try unknownFields.traverse(visitor: &visitor) @@ -11830,6 +12034,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._anyExtensionField != rhs_storage._anyExtensionField {return false} if _storage._anyMessageExtension != rhs_storage._anyMessageExtension {return false} if _storage._anyMessageStorage != rhs_storage._anyMessageStorage {return false} + if _storage._anyTypeUrlnotRegistered != rhs_storage._anyTypeUrlnotRegistered {return false} if _storage._anyUnpackError != rhs_storage._anyUnpackError {return false} if _storage._api != rhs_storage._api {return false} if _storage._appended != rhs_storage._appended {return false} @@ -11856,10 +12061,12 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._begin != rhs_storage._begin {return false} if _storage._binary != rhs_storage._binary {return false} if _storage._binaryDecoder != rhs_storage._binaryDecoder {return false} + if _storage._binaryDecoding != rhs_storage._binaryDecoding {return false} if _storage._binaryDecodingError != rhs_storage._binaryDecodingError {return false} if _storage._binaryDecodingOptions != rhs_storage._binaryDecodingOptions {return false} if _storage._binaryDelimited != rhs_storage._binaryDelimited {return false} if _storage._binaryEncoder != rhs_storage._binaryEncoder {return false} + if _storage._binaryEncoding != rhs_storage._binaryEncoding {return false} if _storage._binaryEncodingError != rhs_storage._binaryEncodingError {return false} if _storage._binaryEncodingMessageSetSizeVisitor != rhs_storage._binaryEncodingMessageSetSizeVisitor {return false} if _storage._binaryEncodingMessageSetVisitor != rhs_storage._binaryEncodingMessageSetVisitor {return false} @@ -11868,6 +12075,8 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._binaryEncodingVisitor != rhs_storage._binaryEncodingVisitor {return false} if _storage._binaryOptions != rhs_storage._binaryOptions {return false} if _storage._binaryProtobufDelimitedMessages != rhs_storage._binaryProtobufDelimitedMessages {return false} + if _storage._binaryStreamDecoding != rhs_storage._binaryStreamDecoding {return false} + if _storage._binaryStreamDecodingError != rhs_storage._binaryStreamDecodingError {return false} if _storage._bitPattern != rhs_storage._bitPattern {return false} if _storage._body != rhs_storage._body {return false} if _storage._bool != rhs_storage._bool {return false} @@ -11981,6 +12190,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._clearVerification_p != rhs_storage._clearVerification_p {return false} if _storage._clearWeak_p != rhs_storage._clearWeak_p {return false} if _storage._clientStreaming != rhs_storage._clientStreaming {return false} + if _storage._code != rhs_storage._code {return false} if _storage._codePoint != rhs_storage._codePoint {return false} if _storage._codeUnits != rhs_storage._codeUnits {return false} if _storage._collection != rhs_storage._collection {return false} @@ -11988,12 +12198,14 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._comma != rhs_storage._comma {return false} if _storage._consumedBytes != rhs_storage._consumedBytes {return false} if _storage._contentsOf != rhs_storage._contentsOf {return false} + if _storage._copy != rhs_storage._copy {return false} if _storage._count != rhs_storage._count {return false} if _storage._countVarintsInBuffer != rhs_storage._countVarintsInBuffer {return false} if _storage._csharpNamespace != rhs_storage._csharpNamespace {return false} if _storage._ctype != rhs_storage._ctype {return false} if _storage._customCodable != rhs_storage._customCodable {return false} if _storage._customDebugStringConvertible != rhs_storage._customDebugStringConvertible {return false} + if _storage._customStringConvertible != rhs_storage._customStringConvertible {return false} if _storage._d != rhs_storage._d {return false} if _storage._data != rhs_storage._data {return false} if _storage._dataResult != rhs_storage._dataResult {return false} @@ -12173,6 +12385,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._fromHexDigit != rhs_storage._fromHexDigit {return false} if _storage._fullName != rhs_storage._fullName {return false} if _storage._func != rhs_storage._func {return false} + if _storage._function != rhs_storage._function {return false} if _storage._g != rhs_storage._g {return false} if _storage._generatedCodeInfo != rhs_storage._generatedCodeInfo {return false} if _storage._get != rhs_storage._get {return false} @@ -12373,6 +12586,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._jsondecodingError != rhs_storage._jsondecodingError {return false} if _storage._jsondecodingOptions != rhs_storage._jsondecodingOptions {return false} if _storage._jsonEncoder != rhs_storage._jsonEncoder {return false} + if _storage._jsonencoding != rhs_storage._jsonencoding {return false} if _storage._jsonencodingError != rhs_storage._jsonencodingError {return false} if _storage._jsonencodingOptions != rhs_storage._jsonencodingOptions {return false} if _storage._jsonencodingVisitor != rhs_storage._jsonencodingVisitor {return false} @@ -12403,6 +12617,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._lessThan != rhs_storage._lessThan {return false} if _storage._let != rhs_storage._let {return false} if _storage._lhs != rhs_storage._lhs {return false} + if _storage._line != rhs_storage._line {return false} if _storage._list != rhs_storage._list {return false} if _storage._listOfMessages != rhs_storage._listOfMessages {return false} if _storage._listValue != rhs_storage._listValue {return false} @@ -12414,6 +12629,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._major != rhs_storage._major {return false} if _storage._makeAsyncIterator != rhs_storage._makeAsyncIterator {return false} if _storage._makeIterator != rhs_storage._makeIterator {return false} + if _storage._malformedLength != rhs_storage._malformedLength {return false} if _storage._mapEntry != rhs_storage._mapEntry {return false} if _storage._mapKeyType != rhs_storage._mapKeyType {return false} if _storage._mapToMessages != rhs_storage._mapToMessages {return false} @@ -12464,6 +12680,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._nextVarInt != rhs_storage._nextVarInt {return false} if _storage._nil != rhs_storage._nil {return false} if _storage._nilLiteral != rhs_storage._nilLiteral {return false} + if _storage._noBytesAvailable != rhs_storage._noBytesAvailable {return false} if _storage._noStandardDescriptorAccessor != rhs_storage._noStandardDescriptorAccessor {return false} if _storage._nullValue != rhs_storage._nullValue {return false} if _storage._number != rhs_storage._number {return false} @@ -12621,6 +12838,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._sourceContext != rhs_storage._sourceContext {return false} if _storage._sourceEncoding != rhs_storage._sourceEncoding {return false} if _storage._sourceFile != rhs_storage._sourceFile {return false} + if _storage._sourceLocation != rhs_storage._sourceLocation {return false} if _storage._span != rhs_storage._span {return false} if _storage._split != rhs_storage._split {return false} if _storage._start != rhs_storage._start {return false} @@ -12648,6 +12866,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._swift != rhs_storage._swift {return false} if _storage._swiftPrefix != rhs_storage._swiftPrefix {return false} if _storage._swiftProtobufContiguousBytes != rhs_storage._swiftProtobufContiguousBytes {return false} + if _storage._swiftProtobufError != rhs_storage._swiftProtobufError {return false} if _storage._syntax != rhs_storage._syntax {return false} if _storage._t != rhs_storage._t {return false} if _storage._tag != rhs_storage._tag {return false} @@ -12668,6 +12887,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._timeIntervalSince1970 != rhs_storage._timeIntervalSince1970 {return false} if _storage._timeIntervalSinceReferenceDate != rhs_storage._timeIntervalSinceReferenceDate {return false} if _storage._timestamp != rhs_storage._timestamp {return false} + if _storage._tooLarge != rhs_storage._tooLarge {return false} if _storage._total != rhs_storage._total {return false} if _storage._totalArrayDepth != rhs_storage._totalArrayDepth {return false} if _storage._totalSize != rhs_storage._totalSize {return false} @@ -12700,6 +12920,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._unknownFields_p != rhs_storage._unknownFields_p {return false} if _storage._unknownStorage != rhs_storage._unknownStorage {return false} if _storage._unpackTo != rhs_storage._unpackTo {return false} + if _storage._unregisteredTypeURL != rhs_storage._unregisteredTypeURL {return false} if _storage._unsafeBufferPointer != rhs_storage._unsafeBufferPointer {return false} if _storage._unsafeMutablePointer != rhs_storage._unsafeMutablePointer {return false} if _storage._unsafeMutableRawBufferPointer != rhs_storage._unsafeMutableRawBufferPointer {return false} diff --git a/Reference/SwiftProtobufTests/generated_swift_names_messages.pb.swift b/Reference/SwiftProtobufTests/generated_swift_names_messages.pb.swift index 871fff23b..9f29280d9 100644 --- a/Reference/SwiftProtobufTests/generated_swift_names_messages.pb.swift +++ b/Reference/SwiftProtobufTests/generated_swift_names_messages.pb.swift @@ -175,18 +175,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct AnyUnpack: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var anyUnpack: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct AnyUnpackError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -2119,18 +2107,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct conflictingOneOf: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var conflictingOneOf: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct consumedBytes: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -3187,18 +3163,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct durationRange: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var durationRange: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct E: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -3823,18 +3787,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct failure: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var failure: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct falseMessage: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -3955,18 +3907,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct fieldMaskConversion: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var fieldMaskConversion: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct fieldName: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6415,18 +6355,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct illegalNull: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var illegalNull: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct index: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6607,30 +6535,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct internalError: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var internalError: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct internalExtensionError: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var internalExtensionError: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct InternalState: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6667,30 +6571,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct invalidArgument: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var invalidArgument: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct invalidUTF8: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var invalidUtf8: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct isA: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6871,18 +6751,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct JSONDecoding: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var jsondecoding: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct JSONDecodingError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -7243,18 +7111,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct leadingZero: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var leadingZero: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct length: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -7447,54 +7303,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct malformedAnyField: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedAnyField: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct malformedBool: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedBool: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct malformedDuration: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedDuration: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct malformedFieldMask: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedFieldMask: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct malformedLength: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -7507,90 +7315,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct malformedMap: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedMap: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct malformedNumber: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedNumber: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct malformedProtobuf: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedProtobuf: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct malformedString: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedString: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct malformedText: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedText: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct malformedTimestamp: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedTimestamp: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct malformedWellKnownTypeJSON: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var malformedWellKnownTypeJson: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct mapEntry: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -7891,42 +7615,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct missingFieldNames: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var missingFieldNames: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct missingRequiredFields: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var missingRequiredFields: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct missingValue: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var missingValue: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct Mixin: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -8275,18 +7963,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct numberRange: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var numberRange: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct numberValue: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -9847,18 +9523,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct schemaMismatch: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var schemaMismatch: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct seconds: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10603,19 +10267,7 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct TextFormatDecoding: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var textFormatDecoding: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct textFormatDecodingError: Sendable { + struct TextFormatDecodingError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. @@ -10747,18 +10399,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct timestampRange: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var timestampRange: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct tooLarge: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10819,18 +10459,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct trailingGarbage: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var trailingGarbage: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct traverseMessage: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10855,18 +10483,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct truncated: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var truncated: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct tryMessage: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10915,18 +10531,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct typeMismatch: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var typeMismatch: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct typeName: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -11155,30 +10759,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct unknownField: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var unknownField: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct unknownFieldName: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var unknownFieldName: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct unknownFieldsMessage: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -11203,18 +10783,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct unknownStreamError: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var unknownStreamError: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct unpackTo: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -11227,30 +10795,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct unquotedMapKey: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var unquotedMapKey: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - - struct unrecognizedEnumValue: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var unrecognizedEnumValue: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct unregisteredTypeURL: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -11467,18 +11011,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct valueNumberNotFinite: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var valueNumberNotFinite: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct values: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -12837,38 +12369,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.anyTypeURLN } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyUnpack: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".AnyUnpack" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "AnyUnpack"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.anyUnpack) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.anyUnpack != 0 { - try visitor.visitSingularInt32Field(value: self.anyUnpack, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyUnpack, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyUnpack) -> Bool { - if lhs.anyUnpack != rhs.anyUnpack {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyUnpackError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".AnyUnpackError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -18021,38 +17521,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.comma: Swif } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.conflictingOneOf: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".conflictingOneOf" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "conflictingOneOf"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.conflictingOneOf) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.conflictingOneOf != 0 { - try visitor.visitSingularInt32Field(value: self.conflictingOneOf, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.conflictingOneOf, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.conflictingOneOf) -> Bool { - if lhs.conflictingOneOf != rhs.conflictingOneOf {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.consumedBytes: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".consumedBytes" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -20869,38 +20337,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.Duration: S } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.durationRange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".durationRange" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "durationRange"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.durationRange) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.durationRange != 0 { - try visitor.visitSingularInt32Field(value: self.durationRange, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.durationRange, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.durationRange) -> Bool { - if lhs.durationRange != rhs.durationRange {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.E: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".E" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -22565,38 +22001,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.F: SwiftPro } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.failure: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".failure" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "failure"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.failure) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.failure != 0 { - try visitor.visitSingularInt32Field(value: self.failure, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.failure, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.failure) -> Bool { - if lhs.failure != rhs.failure {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.falseMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".false" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -22917,38 +22321,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.FieldMask: } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.fieldMaskConversion: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".fieldMaskConversion" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "fieldMaskConversion"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.fieldMaskConversion) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.fieldMaskConversion != 0 { - try visitor.visitSingularInt32Field(value: self.fieldMaskConversion, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.fieldMaskConversion, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.fieldMaskConversion) -> Bool { - if lhs.fieldMaskConversion != rhs.fieldMaskConversion {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.fieldName: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".fieldName" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -29477,38 +28849,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.ignoreUnkno } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.illegalNull: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".illegalNull" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "illegalNull"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.illegalNull) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.illegalNull != 0 { - try visitor.visitSingularInt32Field(value: self.illegalNull, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.illegalNull, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.illegalNull) -> Bool { - if lhs.illegalNull != rhs.illegalNull {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.index: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".index" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -29989,70 +29329,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.Internal: S } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".internalError" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "internalError"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.internalError) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.internalError != 0 { - try visitor.visitSingularInt32Field(value: self.internalError, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalError) -> Bool { - if lhs.internalError != rhs.internalError {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalExtensionError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".internalExtensionError" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "internalExtensionError"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.internalExtensionError) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.internalExtensionError != 0 { - try visitor.visitSingularInt32Field(value: self.internalExtensionError, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalExtensionError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.internalExtensionError) -> Bool { - if lhs.internalExtensionError != rhs.internalExtensionError {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.InternalState: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".InternalState" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -30149,70 +29425,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.ints: Swift } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidArgument: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".invalidArgument" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "invalidArgument"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.invalidArgument) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.invalidArgument != 0 { - try visitor.visitSingularInt32Field(value: self.invalidArgument, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidArgument, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidArgument) -> Bool { - if lhs.invalidArgument != rhs.invalidArgument {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidUTF8: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".invalidUTF8" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "invalidUTF8"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.invalidUtf8) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.invalidUtf8 != 0 { - try visitor.visitSingularInt32Field(value: self.invalidUtf8, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidUTF8, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.invalidUTF8) -> Bool { - if lhs.invalidUtf8 != rhs.invalidUtf8 {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.isA: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".isA" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -30693,38 +29905,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecoder } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".JSONDecoding" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "JSONDecoding"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.jsondecoding) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.jsondecoding != 0 { - try visitor.visitSingularInt32Field(value: self.jsondecoding, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecoding) -> Bool { - if lhs.jsondecoding != rhs.jsondecoding {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONDecodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".JSONDecodingError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -31685,38 +30865,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.leadingDeta } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.leadingZero: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".leadingZero" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "leadingZero"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.leadingZero) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.leadingZero != 0 { - try visitor.visitSingularInt32Field(value: self.leadingZero, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.leadingZero, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.leadingZero) -> Bool { - if lhs.leadingZero != rhs.leadingZero {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.length: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".length" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -32229,134 +31377,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.makeIterato } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedAnyField: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedAnyField" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedAnyField"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedAnyField) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedAnyField != 0 { - try visitor.visitSingularInt32Field(value: self.malformedAnyField, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedAnyField, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedAnyField) -> Bool { - if lhs.malformedAnyField != rhs.malformedAnyField {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedBool: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedBool" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedBool"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedBool) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedBool != 0 { - try visitor.visitSingularInt32Field(value: self.malformedBool, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedBool, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedBool) -> Bool { - if lhs.malformedBool != rhs.malformedBool {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedDuration: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedDuration" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedDuration"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedDuration) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedDuration != 0 { - try visitor.visitSingularInt32Field(value: self.malformedDuration, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedDuration, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedDuration) -> Bool { - if lhs.malformedDuration != rhs.malformedDuration {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedFieldMask: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedFieldMask" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedFieldMask"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedFieldMask) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedFieldMask != 0 { - try visitor.visitSingularInt32Field(value: self.malformedFieldMask, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedFieldMask, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedFieldMask) -> Bool { - if lhs.malformedFieldMask != rhs.malformedFieldMask {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedLength: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedLength" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -32389,230 +31409,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedLe } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedMap: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedMap" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedMap"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedMap) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedMap != 0 { - try visitor.visitSingularInt32Field(value: self.malformedMap, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedMap, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedMap) -> Bool { - if lhs.malformedMap != rhs.malformedMap {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedNumber: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedNumber" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedNumber"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedNumber) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedNumber != 0 { - try visitor.visitSingularInt32Field(value: self.malformedNumber, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedNumber, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedNumber) -> Bool { - if lhs.malformedNumber != rhs.malformedNumber {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedProtobuf: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedProtobuf" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedProtobuf"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedProtobuf) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedProtobuf != 0 { - try visitor.visitSingularInt32Field(value: self.malformedProtobuf, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedProtobuf, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedProtobuf) -> Bool { - if lhs.malformedProtobuf != rhs.malformedProtobuf {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedString: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedString" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedString"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedString) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedString != 0 { - try visitor.visitSingularInt32Field(value: self.malformedString, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedString, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedString) -> Bool { - if lhs.malformedString != rhs.malformedString {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedText: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedText" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedText"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedText) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedText != 0 { - try visitor.visitSingularInt32Field(value: self.malformedText, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedText, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedText) -> Bool { - if lhs.malformedText != rhs.malformedText {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedTimestamp: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedTimestamp" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedTimestamp"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedTimestamp) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedTimestamp != 0 { - try visitor.visitSingularInt32Field(value: self.malformedTimestamp, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedTimestamp, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedTimestamp) -> Bool { - if lhs.malformedTimestamp != rhs.malformedTimestamp {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedWellKnownTypeJSON: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".malformedWellKnownTypeJSON" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "malformedWellKnownTypeJSON"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.malformedWellKnownTypeJson) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.malformedWellKnownTypeJson != 0 { - try visitor.visitSingularInt32Field(value: self.malformedWellKnownTypeJson, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedWellKnownTypeJSON, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.malformedWellKnownTypeJSON) -> Bool { - if lhs.malformedWellKnownTypeJson != rhs.malformedWellKnownTypeJson {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.mapEntry: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".mapEntry" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -33413,102 +32209,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.minor: Swif } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingFieldNames: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".missingFieldNames" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "missingFieldNames"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.missingFieldNames) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.missingFieldNames != 0 { - try visitor.visitSingularInt32Field(value: self.missingFieldNames, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingFieldNames, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingFieldNames) -> Bool { - if lhs.missingFieldNames != rhs.missingFieldNames {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingRequiredFields: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".missingRequiredFields" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "missingRequiredFields"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.missingRequiredFields) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.missingRequiredFields != 0 { - try visitor.visitSingularInt32Field(value: self.missingRequiredFields, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingRequiredFields, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingRequiredFields) -> Bool { - if lhs.missingRequiredFields != rhs.missingRequiredFields {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingValue: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".missingValue" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "missingValue"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.missingValue) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.missingValue != 0 { - try visitor.visitSingularInt32Field(value: self.missingValue, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingValue, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.missingValue) -> Bool { - if lhs.missingValue != rhs.missingValue {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.Mixin: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".Mixin" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -34437,38 +33137,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.number: Swi } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.numberRange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".numberRange" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "numberRange"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.numberRange) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.numberRange != 0 { - try visitor.visitSingularInt32Field(value: self.numberRange, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.numberRange, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.numberRange) -> Bool { - if lhs.numberRange != rhs.numberRange {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.numberValue: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".numberValue" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -38629,38 +37297,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.scanner: Sw } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.schemaMismatch: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".schemaMismatch" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "schemaMismatch"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.schemaMismatch) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.schemaMismatch != 0 { - try visitor.visitSingularInt32Field(value: self.schemaMismatch, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.schemaMismatch, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.schemaMismatch) -> Bool { - if lhs.schemaMismatch != rhs.schemaMismatch {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.seconds: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".seconds" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -40645,42 +39281,10 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatD } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".TextFormatDecoding" +extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".TextFormatDecodingError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "TextFormatDecoding"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.textFormatDecoding) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.textFormatDecoding != 0 { - try visitor.visitSingularInt32Field(value: self.textFormatDecoding, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecoding) -> Bool { - if lhs.textFormatDecoding != rhs.textFormatDecoding {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.textFormatDecodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".textFormatDecodingError" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "textFormatDecodingError"), + 1: .same(proto: "TextFormatDecodingError"), ] mutating func decodeMessage(decoder: inout D) throws { @@ -40702,7 +39306,7 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.textFormatD try unknownFields.traverse(visitor: &visitor) } - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.textFormatDecodingError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.textFormatDecodingError) -> Bool { + static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecodingError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TextFormatDecodingError) -> Bool { if lhs.textFormatDecodingError != rhs.textFormatDecodingError {return false} if lhs.unknownFields != rhs.unknownFields {return false} return true @@ -41029,38 +39633,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.Timestamp: } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.timestampRange: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".timestampRange" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "timestampRange"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.timestampRange) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.timestampRange != 0 { - try visitor.visitSingularInt32Field(value: self.timestampRange, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.timestampRange, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.timestampRange) -> Bool { - if lhs.timestampRange != rhs.timestampRange {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.tooLarge: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".tooLarge" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -41221,38 +39793,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trailingCom } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trailingGarbage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".trailingGarbage" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "trailingGarbage"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.trailingGarbage) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.trailingGarbage != 0 { - try visitor.visitSingularInt32Field(value: self.trailingGarbage, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trailingGarbage, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trailingGarbage) -> Bool { - if lhs.trailingGarbage != rhs.trailingGarbage {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.traverseMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".traverse" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -41317,38 +39857,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.trueMessage } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.truncated: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".truncated" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "truncated"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.truncated) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.truncated != 0 { - try visitor.visitSingularInt32Field(value: self.truncated, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.truncated, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.truncated) -> Bool { - if lhs.truncated != rhs.truncated {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.tryMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".try" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -41477,38 +39985,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.TypeEnum: S } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.typeMismatch: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".typeMismatch" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "typeMismatch"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.typeMismatch) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.typeMismatch != 0 { - try visitor.visitSingularInt32Field(value: self.typeMismatch, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.typeMismatch, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.typeMismatch) -> Bool { - if lhs.typeMismatch != rhs.typeMismatch {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.typeName: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".typeName" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -42117,70 +40593,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknown: Sw } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownField: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unknownField" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "unknownField"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.unknownField) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.unknownField != 0 { - try visitor.visitSingularInt32Field(value: self.unknownField, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownField, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownField) -> Bool { - if lhs.unknownField != rhs.unknownField {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownFieldName: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unknownFieldName" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "unknownFieldName"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.unknownFieldName) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.unknownFieldName != 0 { - try visitor.visitSingularInt32Field(value: self.unknownFieldName, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownFieldName, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownFieldName) -> Bool { - if lhs.unknownFieldName != rhs.unknownFieldName {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownFieldsMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unknownFields" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -42245,38 +40657,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.UnknownStor } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownStreamError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unknownStreamError" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "unknownStreamError"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.unknownStreamError) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.unknownStreamError != 0 { - try visitor.visitSingularInt32Field(value: self.unknownStreamError, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownStreamError, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unknownStreamError) -> Bool { - if lhs.unknownStreamError != rhs.unknownStreamError {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unpackTo: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unpackTo" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -42309,70 +40689,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unpackTo: S } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unquotedMapKey: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unquotedMapKey" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "unquotedMapKey"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.unquotedMapKey) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.unquotedMapKey != 0 { - try visitor.visitSingularInt32Field(value: self.unquotedMapKey, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unquotedMapKey, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unquotedMapKey) -> Bool { - if lhs.unquotedMapKey != rhs.unquotedMapKey {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unrecognizedEnumValue: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unrecognizedEnumValue" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "unrecognizedEnumValue"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.unrecognizedEnumValue) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.unrecognizedEnumValue != 0 { - try visitor.visitSingularInt32Field(value: self.unrecognizedEnumValue, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unrecognizedEnumValue, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unrecognizedEnumValue) -> Bool { - if lhs.unrecognizedEnumValue != rhs.unrecognizedEnumValue {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unregisteredTypeURL: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unregisteredTypeURL" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -42949,38 +41265,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.valueField: } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.valueNumberNotFinite: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".valueNumberNotFinite" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "valueNumberNotFinite"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.valueNumberNotFinite) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.valueNumberNotFinite != 0 { - try visitor.visitSingularInt32Field(value: self.valueNumberNotFinite, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.valueNumberNotFinite, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.valueNumberNotFinite) -> Bool { - if lhs.valueNumberNotFinite != rhs.valueNumberNotFinite {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.values: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".values" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ From 8c519b15622cbcc80dd35002e49204467738fd22 Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Tue, 21 May 2024 15:17:09 +0100 Subject: [PATCH 17/19] Remove breaking errors --- Sources/SwiftProtobuf/AnyMessageStorage.swift | 6 +- Sources/SwiftProtobuf/BinaryDecoder.swift | 3 +- Sources/SwiftProtobuf/BinaryDelimited.swift | 5 +- .../Message+BinaryAdditions.swift | 3 +- .../SwiftProtobuf/SwiftProtobufError.swift | 104 ------------------ Tests/SwiftProtobufTests/Test_AllTypes.swift | 10 +- .../Test_BinaryDelimited.swift | 4 +- 7 files changed, 17 insertions(+), 118 deletions(-) diff --git a/Sources/SwiftProtobuf/AnyMessageStorage.swift b/Sources/SwiftProtobuf/AnyMessageStorage.swift index 2f2c181f4..b444efda4 100644 --- a/Sources/SwiftProtobuf/AnyMessageStorage.swift +++ b/Sources/SwiftProtobuf/AnyMessageStorage.swift @@ -218,7 +218,7 @@ internal class AnyMessageStorage { case .contentJSON(let contentJSON, let options): // contentJSON requires we have the type available for decoding guard let messageType = Google_Protobuf_Any.messageType(forTypeURL: _typeURL) else { - throw SwiftProtobufError.BinaryEncoding.anyTypeURLNotRegistered(typeURL: _typeURL) + throw BinaryEncodingError.anyTranscodeFailure } do { // Decodes the full JSON and then discard the result. @@ -230,7 +230,7 @@ internal class AnyMessageStorage { options: options, as: messageType) } catch { - throw SwiftProtobufError.BinaryEncoding.anyTypeURLNotRegistered(typeURL: _typeURL) + throw BinaryEncodingError.anyTranscodeFailure } } } @@ -422,7 +422,7 @@ extension AnyMessageStorage { // binary value, so we're stuck. (The Google spec does not // provide a way to just package the binary value for someone // else to decode later.) - throw SwiftProtobufError.JSONEncoding.anyTypeURLNotRegistered(typeURL: _typeURL) + throw JSONEncodingError.anyTranscodeFailure } let m = try messageType.init(serializedBytes: valueData, partial: true) return try serializeAnyJSON(for: m, typeURL: _typeURL, options: options) diff --git a/Sources/SwiftProtobuf/BinaryDecoder.swift b/Sources/SwiftProtobuf/BinaryDecoder.swift index 751e7b4ca..714a41bc4 100644 --- a/Sources/SwiftProtobuf/BinaryDecoder.swift +++ b/Sources/SwiftProtobuf/BinaryDecoder.swift @@ -1424,7 +1424,8 @@ internal struct BinaryDecoder: Decoder { // that is length delimited on the wire, so the spec would imply // the limit still applies. guard length < 0x7fffffff else { - throw SwiftProtobufError.BinaryDecoding.tooLarge() + // Reuse existing error to avoid breaking change of changing thrown error + throw BinaryDecodingError.malformedProtobuf } guard length <= UInt64(available) else { diff --git a/Sources/SwiftProtobuf/BinaryDelimited.swift b/Sources/SwiftProtobuf/BinaryDelimited.swift index 39661e874..5b4ea9ebd 100644 --- a/Sources/SwiftProtobuf/BinaryDelimited.swift +++ b/Sources/SwiftProtobuf/BinaryDelimited.swift @@ -158,7 +158,8 @@ public enum BinaryDelimited { return } guard unsignedLength <= 0x7fffffff else { - throw SwiftProtobufError.BinaryStreamDecoding.tooLarge() + // Adding a new case is a breaking change, reuse malformedProtobuf. + throw BinaryDecodingError.malformedProtobuf } let length = Int(unsignedLength) @@ -248,7 +249,7 @@ internal func decodeVarint(_ stream: InputStream) throws -> UInt64 { } shift += 7 if shift > 63 { - throw SwiftProtobufError.BinaryStreamDecoding.malformedLength() + throw BinaryDecodingError.malformedProtobuf } } } diff --git a/Sources/SwiftProtobuf/Message+BinaryAdditions.swift b/Sources/SwiftProtobuf/Message+BinaryAdditions.swift index b85fecc05..1f8c88de6 100644 --- a/Sources/SwiftProtobuf/Message+BinaryAdditions.swift +++ b/Sources/SwiftProtobuf/Message+BinaryAdditions.swift @@ -48,7 +48,8 @@ extension Message { // the places that encode message fields (or strings/bytes fields), keeping // the overhead of the check to a minimum. guard requiredSize < 0x7fffffff else { - throw SwiftProtobufError.BinaryEncoding.tooLarge() + // Adding a new error is a breaking change. + throw BinaryEncodingError.missingRequiredFields } var data = Bytes(repeating: 0, count: requiredSize) diff --git a/Sources/SwiftProtobuf/SwiftProtobufError.swift b/Sources/SwiftProtobuf/SwiftProtobufError.swift index 2dcd4a630..e9151e202 100644 --- a/Sources/SwiftProtobuf/SwiftProtobufError.swift +++ b/Sources/SwiftProtobuf/SwiftProtobufError.swift @@ -89,27 +89,15 @@ extension SwiftProtobufError { /// A high level indication of the kind of error being thrown. public struct Code: Hashable, Sendable, CustomStringConvertible { private enum Wrapped: Hashable, Sendable, CustomStringConvertible { - case binaryEncodingError case binaryDecodingError case binaryStreamDecodingError - case jsonEncodingError - - // These are not domains, but rather specific errors for which we - // want to have associated types, and thus require special treatment. - case anyTypeURLNotRegistered(typeURL: String) var description: String { switch self { - case .binaryEncodingError: - return "Binary encoding error" case .binaryDecodingError: return "Binary decoding error" case .binaryStreamDecodingError: return "Stream decoding error" - case .jsonEncodingError: - return "JSON encoding error" - case .anyTypeURLNotRegistered(let typeURL): - return "Type URL not registered: \(typeURL)" } } } @@ -123,11 +111,6 @@ extension SwiftProtobufError { private init(_ code: Wrapped) { self.code = code } - - /// Errors arising from encoding protobufs into binary data. - public static var binaryEncodingError: Self { - Self(.binaryEncodingError) - } /// Errors arising from binary decoding of data into protobufs. public static var binaryDecodingError: Self { @@ -139,35 +122,6 @@ extension SwiftProtobufError { public static var binaryStreamDecodingError: Self { Self(.binaryStreamDecodingError) } - - /// Errors arising from encoding protobufs into JSON. - public static var jsonEncodingError: Self { - Self(.jsonEncodingError) - } - - /// `Any` fields that were decoded from JSON cannot be re-encoded to binary - /// unless the object they hold is a well-known type or a type registered via - /// `Google_Protobuf_Any.register()`. - /// This Code refers to errors that arise from this scenario. - /// - /// - Parameter typeURL: The URL for the unregistered type. - /// - Returns: A `SwiftProtobufError.Code`. - public static func anyTypeURLNotRegistered(typeURL: String) -> Self { - Self(.anyTypeURLNotRegistered(typeURL: typeURL)) - } - - /// The unregistered type URL that caused the error, if any is associated with this `Code`. - public var unregisteredTypeURL: String? { - switch self.code { - case .anyTypeURLNotRegistered(let typeURL): - return typeURL - case .binaryEncodingError, - .binaryDecodingError, - .binaryStreamDecodingError, - .jsonEncodingError: - return nil - } - } } /// A location within source code. @@ -213,42 +167,6 @@ extension SwiftProtobufError: CustomDebugStringConvertible { // - MARK: Common errors extension SwiftProtobufError { - /// Errors arising from encoding protobufs into binary data. - public enum BinaryEncoding { - /// Messages are limited to a maximum of 2GB in encoded size. - public static func tooLarge( - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .binaryEncodingError, - message: "Messages are limited to a maximum of 2GB in encoded size.", - location: SourceLocation(function: function, file: file, line: line) - ) - } - - /// `Any` fields that were decoded from JSON cannot be re-encoded to binary - /// unless the object they hold is a well-known type or a type registered via - /// `Google_Protobuf_Any.register()`. - public static func anyTypeURLNotRegistered( - typeURL: String, - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .anyTypeURLNotRegistered(typeURL: typeURL), - message: """ - Any fields that were decoded from JSON format cannot be re-encoded to binary \ - unless the object they hold is a well-known type or a type registered via \ - `Google_Protobuf_Any.register()`. Type URL is \(typeURL). - """, - location: SourceLocation(function: function, file: file, line: line) - ) - } - } - /// Errors arising from binary decoding of data into protobufs. public enum BinaryDecoding { /// Message is too large. Bytes and Strings have a max size of 2GB. @@ -320,26 +238,4 @@ extension SwiftProtobufError { ) } } - - /// Errors arising from encoding protobufs into JSON. - public enum JSONEncoding { - /// Any fields that were decoded from binary format cannot be re-encoded into JSON unless the - /// object they hold is a well-known type or a type registered via `Google_Protobuf_Any.register()`. - public static func anyTypeURLNotRegistered( - typeURL: String, - function: String = #function, - file: String = #fileID, - line: Int = #line - ) -> SwiftProtobufError { - SwiftProtobufError( - code: .anyTypeURLNotRegistered(typeURL: typeURL), - message: """ - Any fields that were decoded from binary format cannot be re-encoded into JSON \ - unless the object they hold is a well-known type or a type registered via \ - `Google_Protobuf_Any.register()`. Type URL is \(typeURL). - """, - location: SourceLocation(function: function, file: file, line: line) - ) - } - } } diff --git a/Tests/SwiftProtobufTests/Test_AllTypes.swift b/Tests/SwiftProtobufTests/Test_AllTypes.swift index d5c319fbe..9f3d5160c 100644 --- a/Tests/SwiftProtobufTests/Test_AllTypes.swift +++ b/Tests/SwiftProtobufTests/Test_AllTypes.swift @@ -824,7 +824,7 @@ final class Test_AllTypes: XCTestCase, PBTestHelpers { // Don't need all the bytes, want some to let the length issue trigger. 0x01, 0x02, 0x03, ])) { - XCTAssertTrue(self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .BinaryDecoding.tooLarge())) + XCTAssertEqual($0 as! BinaryDecodingError, .malformedProtobuf) } let empty = MessageTestType() @@ -944,11 +944,11 @@ final class Test_AllTypes: XCTestCase, PBTestHelpers { // Ensure bytes over 2GB fail to decode according to spec. XCTAssertThrowsError(try MessageTestType(serializedBytes: [ - 122, 0xFF, 0xFF, 0xFF, 0xFF, 0x0F, + 122, 0xFF, 0xFF, 0xFF, 0xFF, 0x0F, // Don't need all the bytes, want some to let the length issue trigger. 0x01, 0x02, 0x03, ])) { - XCTAssertTrue(self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .BinaryDecoding.tooLarge())) + XCTAssertEqual($0 as! BinaryDecodingError, .malformedProtobuf) } let empty = MessageTestType() @@ -1000,7 +1000,7 @@ final class Test_AllTypes: XCTestCase, PBTestHelpers { // Don't need all the bytes, want some to let the length issue trigger. 0x01, 0x02, 0x03, ])) { - XCTAssertTrue(self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .BinaryDecoding.tooLarge())) + XCTAssertEqual($0 as! BinaryDecodingError, .malformedProtobuf) } // Ensure storage is uniqued for clear. @@ -1756,7 +1756,7 @@ final class Test_AllTypes: XCTestCase, PBTestHelpers { // Don't need all the bytes, want some to let the length issue trigger. 0x01, 0x02, 0x03, ])) { - XCTAssertTrue(self.isSwiftProtobufErrorEqual($0 as! SwiftProtobufError, .BinaryDecoding.tooLarge())) + XCTAssertEqual($0 as! BinaryDecodingError, .malformedProtobuf) } assertDebugDescription("SwiftProtobufTests.SwiftProtoTesting_TestAllTypes:\nrepeated_nested_message {\n bb: 1\n}\nrepeated_nested_message {\n bb: 2\n}\n") {(o: inout MessageTestType) in diff --git a/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift b/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift index 8931214ae..977b94276 100644 --- a/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift +++ b/Tests/SwiftProtobufTests/Test_BinaryDelimited.swift @@ -90,7 +90,7 @@ final class Test_BinaryDelimited: XCTestCase { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryStreamDecoding.tooLarge())) + XCTAssertEqual(error as! BinaryDecodingError, .malformedProtobuf) } } @@ -99,7 +99,7 @@ final class Test_BinaryDelimited: XCTestCase { XCTAssertThrowsError(try BinaryDelimited.parse(messageType: SwiftProtoTesting_TestAllTypes.self, from: istream)) { error in - XCTAssertTrue(self.isSwiftProtobufErrorEqual(error as! SwiftProtobufError, .BinaryStreamDecoding.malformedLength())) + XCTAssertEqual(error as! BinaryDecodingError, .malformedProtobuf) } } From b659cdfd8211ad9256859dde22fd6e1499ae5b9c Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Tue, 21 May 2024 15:19:04 +0100 Subject: [PATCH 18/19] Regenerate protos --- .../generated_swift_names_enum_cases.proto | 1962 ++-- .../generated_swift_names_enums.proto | 4 - .../generated_swift_names_fields.proto | 1962 ++-- .../generated_swift_names_messages.proto | 4 - .../generated_swift_names_enum_cases.pb.swift | 7852 ++++++++--------- .../generated_swift_names_enums.pb.swift | 144 - .../generated_swift_names_fields.pb.swift | 5926 ++++++------- .../generated_swift_names_messages.pb.swift | 176 - .../generated_swift_names_enum_cases.pb.swift | 7852 ++++++++--------- .../generated_swift_names_enums.pb.swift | 144 - .../generated_swift_names_fields.pb.swift | 5926 ++++++------- .../generated_swift_names_messages.pb.swift | 176 - 12 files changed, 15664 insertions(+), 16464 deletions(-) diff --git a/Protos/SwiftProtobufTests/generated_swift_names_enum_cases.proto b/Protos/SwiftProtobufTests/generated_swift_names_enum_cases.proto index 4d617a937..dd3d1dea4 100644 --- a/Protos/SwiftProtobufTests/generated_swift_names_enum_cases.proto +++ b/Protos/SwiftProtobufTests/generated_swift_names_enum_cases.proto @@ -16,987 +16,983 @@ enum GeneratedSwiftReservedEnum { AnyExtensionField = 9; AnyMessageExtension = 10; AnyMessageStorage = 11; - anyTypeURLNotRegistered = 12; - AnyUnpackError = 13; - Api = 14; - appended = 15; - appendUIntHex = 16; - appendUnknown = 17; - areAllInitialized = 18; - Array = 19; - arrayDepth = 20; - arrayLiteral = 21; - arraySeparator = 22; - as = 23; - asciiOpenCurlyBracket = 24; - asciiZero = 25; - async = 26; - AsyncIterator = 27; - AsyncIteratorProtocol = 28; - AsyncMessageSequence = 29; - available = 30; - b = 31; - Base = 32; - base64Values = 33; - baseAddress = 34; - BaseType = 35; - begin = 36; - binary = 37; - BinaryDecoder = 38; - BinaryDecoding = 39; - BinaryDecodingError = 40; - BinaryDecodingOptions = 41; - BinaryDelimited = 42; - BinaryEncoder = 43; - BinaryEncoding = 44; - BinaryEncodingError = 45; - BinaryEncodingMessageSetSizeVisitor = 46; - BinaryEncodingMessageSetVisitor = 47; - BinaryEncodingOptions = 48; - BinaryEncodingSizeVisitor = 49; - BinaryEncodingVisitor = 50; - binaryOptions = 51; - binaryProtobufDelimitedMessages = 52; - BinaryStreamDecoding = 53; - binaryStreamDecodingError = 54; - bitPattern = 55; - body = 56; - Bool = 57; - booleanLiteral = 58; - BooleanLiteralType = 59; - boolValue = 60; - buffer = 61; - bytes = 62; - bytesInGroup = 63; - bytesNeeded = 64; - bytesRead = 65; - BytesValue = 66; - c = 67; - capitalizeNext = 68; - cardinality = 69; - CaseIterable = 70; - ccEnableArenas = 71; - ccGenericServices = 72; - Character = 73; - chars = 74; - chunk = 75; - class = 76; - clearAggregateValue = 77; - clearAllowAlias = 78; - clearBegin = 79; - clearCcEnableArenas = 80; - clearCcGenericServices = 81; - clearClientStreaming = 82; - clearCsharpNamespace = 83; - clearCtype = 84; - clearDebugRedact = 85; - clearDefaultValue = 86; - clearDeprecated = 87; - clearDeprecatedLegacyJsonFieldConflicts = 88; - clearDeprecationWarning = 89; - clearDoubleValue = 90; - clearEdition = 91; - clearEditionDeprecated = 92; - clearEditionIntroduced = 93; - clearEditionRemoved = 94; - clearEnd = 95; - clearEnumType = 96; - clearExtendee = 97; - clearExtensionValue = 98; - clearFeatures = 99; - clearFeatureSupport = 100; - clearFieldPresence = 101; - clearFixedFeatures = 102; - clearFullName = 103; - clearGoPackage = 104; - clearIdempotencyLevel = 105; - clearIdentifierValue = 106; - clearInputType = 107; - clearIsExtension = 108; - clearJavaGenerateEqualsAndHash = 109; - clearJavaGenericServices = 110; - clearJavaMultipleFiles = 111; - clearJavaOuterClassname = 112; - clearJavaPackage = 113; - clearJavaStringCheckUtf8 = 114; - clearJsonFormat = 115; - clearJsonName = 116; - clearJstype = 117; - clearLabel = 118; - clearLazy = 119; - clearLeadingComments = 120; - clearMapEntry = 121; - clearMaximumEdition = 122; - clearMessageEncoding = 123; - clearMessageSetWireFormat = 124; - clearMinimumEdition = 125; - clearName = 126; - clearNamePart = 127; - clearNegativeIntValue = 128; - clearNoStandardDescriptorAccessor = 129; - clearNumber = 130; - clearObjcClassPrefix = 131; - clearOneofIndex = 132; - clearOptimizeFor = 133; - clearOptions = 134; - clearOutputType = 135; - clearOverridableFeatures = 136; - clearPackage = 137; - clearPacked = 138; - clearPhpClassPrefix = 139; - clearPhpMetadataNamespace = 140; - clearPhpNamespace = 141; - clearPositiveIntValue = 142; - clearProto3Optional = 143; - clearPyGenericServices = 144; - clearRepeated = 145; - clearRepeatedFieldEncoding = 146; - clearReserved = 147; - clearRetention = 148; - clearRubyPackage = 149; - clearSemantic = 150; - clearServerStreaming = 151; - clearSourceCodeInfo = 152; - clearSourceContext = 153; - clearSourceFile = 154; - clearStart = 155; - clearStringValue = 156; - clearSwiftPrefix = 157; - clearSyntax = 158; - clearTrailingComments = 159; - clearType = 160; - clearTypeName = 161; - clearUnverifiedLazy = 162; - clearUtf8Validation = 163; - clearValue = 164; - clearVerification = 165; - clearWeak = 166; - clientStreaming = 167; - code = 168; - codePoint = 169; - codeUnits = 170; - Collection = 171; - com = 172; - comma = 173; - consumedBytes = 174; - contentsOf = 175; - copy = 176; - count = 177; - countVarintsInBuffer = 178; - csharpNamespace = 179; - ctype = 180; - customCodable = 181; - CustomDebugStringConvertible = 182; - CustomStringConvertible = 183; - d = 184; - Data = 185; - dataResult = 186; - date = 187; - daySec = 188; - daysSinceEpoch = 189; - debugDescription = 190; - debugRedact = 191; - declaration = 192; - decoded = 193; - decodedFromJSONNull = 194; - decodeExtensionField = 195; - decodeExtensionFieldsAsMessageSet = 196; - decodeJSON = 197; - decodeMapField = 198; - decodeMessage = 199; - decoder = 200; - decodeRepeated = 201; - decodeRepeatedBoolField = 202; - decodeRepeatedBytesField = 203; - decodeRepeatedDoubleField = 204; - decodeRepeatedEnumField = 205; - decodeRepeatedFixed32Field = 206; - decodeRepeatedFixed64Field = 207; - decodeRepeatedFloatField = 208; - decodeRepeatedGroupField = 209; - decodeRepeatedInt32Field = 210; - decodeRepeatedInt64Field = 211; - decodeRepeatedMessageField = 212; - decodeRepeatedSFixed32Field = 213; - decodeRepeatedSFixed64Field = 214; - decodeRepeatedSInt32Field = 215; - decodeRepeatedSInt64Field = 216; - decodeRepeatedStringField = 217; - decodeRepeatedUInt32Field = 218; - decodeRepeatedUInt64Field = 219; - decodeSingular = 220; - decodeSingularBoolField = 221; - decodeSingularBytesField = 222; - decodeSingularDoubleField = 223; - decodeSingularEnumField = 224; - decodeSingularFixed32Field = 225; - decodeSingularFixed64Field = 226; - decodeSingularFloatField = 227; - decodeSingularGroupField = 228; - decodeSingularInt32Field = 229; - decodeSingularInt64Field = 230; - decodeSingularMessageField = 231; - decodeSingularSFixed32Field = 232; - decodeSingularSFixed64Field = 233; - decodeSingularSInt32Field = 234; - decodeSingularSInt64Field = 235; - decodeSingularStringField = 236; - decodeSingularUInt32Field = 237; - decodeSingularUInt64Field = 238; - decodeTextFormat = 239; - defaultAnyTypeURLPrefix = 240; - defaults = 241; - defaultValue = 242; - dependency = 243; - deprecated = 244; - deprecatedLegacyJsonFieldConflicts = 245; - deprecationWarning = 246; - description = 247; - DescriptorProto = 248; - Dictionary = 249; - dictionaryLiteral = 250; - digit = 251; - digit0 = 252; - digit1 = 253; - digitCount = 254; - digits = 255; - digitValue = 256; - discardableResult = 257; - discardUnknownFields = 258; - Double = 259; - doubleValue = 260; - Duration = 261; - E = 262; - edition = 263; - EditionDefault = 264; - editionDefaults = 265; - editionDeprecated = 266; - editionIntroduced = 267; - editionRemoved = 268; - Element = 269; - elements = 270; - emitExtensionFieldName = 271; - emitFieldName = 272; - emitFieldNumber = 273; - Empty = 274; - encodeAsBytes = 275; - encoded = 276; - encodedJSONString = 277; - encodedSize = 278; - encodeField = 279; - encoder = 280; - end = 281; - endArray = 282; - endMessageField = 283; - endObject = 284; - endRegularField = 285; - enum = 286; - EnumDescriptorProto = 287; - EnumOptions = 288; - EnumReservedRange = 289; - enumType = 290; - enumvalue = 291; - EnumValueDescriptorProto = 292; - EnumValueOptions = 293; - Equatable = 294; - Error = 295; - ExpressibleByArrayLiteral = 296; - ExpressibleByDictionaryLiteral = 297; - ext = 298; - extDecoder = 299; - extendedGraphemeClusterLiteral = 300; - ExtendedGraphemeClusterLiteralType = 301; - extendee = 302; - ExtensibleMessage = 303; - extension = 304; - ExtensionField = 305; - extensionFieldNumber = 306; - ExtensionFieldValueSet = 307; - ExtensionMap = 308; - extensionRange = 309; - ExtensionRangeOptions = 310; - extensions = 311; - extras = 312; - F = 313; - false = 314; - features = 315; - FeatureSet = 316; - FeatureSetDefaults = 317; - FeatureSetEditionDefault = 318; - featureSupport = 319; - field = 320; - fieldData = 321; - FieldDescriptorProto = 322; - FieldMask = 323; - fieldName = 324; - fieldNameCount = 325; - fieldNum = 326; - fieldNumber = 327; - fieldNumberForProto = 328; - FieldOptions = 329; - fieldPresence = 330; - fields = 331; - fieldSize = 332; - FieldTag = 333; - fieldType = 334; - file = 335; - FileDescriptorProto = 336; - FileDescriptorSet = 337; - fileName = 338; - FileOptions = 339; - filter = 340; - final = 341; - finiteOnly = 342; - first = 343; - firstItem = 344; - fixedFeatures = 345; - Float = 346; - floatLiteral = 347; - FloatLiteralType = 348; - FloatValue = 349; - forMessageName = 350; - formUnion = 351; - forReadingFrom = 352; - forTypeURL = 353; - ForwardParser = 354; - forWritingInto = 355; - from = 356; - fromAscii2 = 357; - fromAscii4 = 358; - fromByteOffset = 359; - fromHexDigit = 360; - fullName = 361; - func = 362; - function = 363; - G = 364; - GeneratedCodeInfo = 365; - get = 366; - getExtensionValue = 367; - googleapis = 368; - Google_Protobuf_Any = 369; - Google_Protobuf_Api = 370; - Google_Protobuf_BoolValue = 371; - Google_Protobuf_BytesValue = 372; - Google_Protobuf_DescriptorProto = 373; - Google_Protobuf_DoubleValue = 374; - Google_Protobuf_Duration = 375; - Google_Protobuf_Edition = 376; - Google_Protobuf_Empty = 377; - Google_Protobuf_Enum = 378; - Google_Protobuf_EnumDescriptorProto = 379; - Google_Protobuf_EnumOptions = 380; - Google_Protobuf_EnumValue = 381; - Google_Protobuf_EnumValueDescriptorProto = 382; - Google_Protobuf_EnumValueOptions = 383; - Google_Protobuf_ExtensionRangeOptions = 384; - Google_Protobuf_FeatureSet = 385; - Google_Protobuf_FeatureSetDefaults = 386; - Google_Protobuf_Field = 387; - Google_Protobuf_FieldDescriptorProto = 388; - Google_Protobuf_FieldMask = 389; - Google_Protobuf_FieldOptions = 390; - Google_Protobuf_FileDescriptorProto = 391; - Google_Protobuf_FileDescriptorSet = 392; - Google_Protobuf_FileOptions = 393; - Google_Protobuf_FloatValue = 394; - Google_Protobuf_GeneratedCodeInfo = 395; - Google_Protobuf_Int32Value = 396; - Google_Protobuf_Int64Value = 397; - Google_Protobuf_ListValue = 398; - Google_Protobuf_MessageOptions = 399; - Google_Protobuf_Method = 400; - Google_Protobuf_MethodDescriptorProto = 401; - Google_Protobuf_MethodOptions = 402; - Google_Protobuf_Mixin = 403; - Google_Protobuf_NullValue = 404; - Google_Protobuf_OneofDescriptorProto = 405; - Google_Protobuf_OneofOptions = 406; - Google_Protobuf_Option = 407; - Google_Protobuf_ServiceDescriptorProto = 408; - Google_Protobuf_ServiceOptions = 409; - Google_Protobuf_SourceCodeInfo = 410; - Google_Protobuf_SourceContext = 411; - Google_Protobuf_StringValue = 412; - Google_Protobuf_Struct = 413; - Google_Protobuf_Syntax = 414; - Google_Protobuf_Timestamp = 415; - Google_Protobuf_Type = 416; - Google_Protobuf_UInt32Value = 417; - Google_Protobuf_UInt64Value = 418; - Google_Protobuf_UninterpretedOption = 419; - Google_Protobuf_Value = 420; - goPackage = 421; - group = 422; - groupFieldNumberStack = 423; - groupSize = 424; - hadOneofValue = 425; - handleConflictingOneOf = 426; - hasAggregateValue = 427; - hasAllowAlias = 428; - hasBegin = 429; - hasCcEnableArenas = 430; - hasCcGenericServices = 431; - hasClientStreaming = 432; - hasCsharpNamespace = 433; - hasCtype = 434; - hasDebugRedact = 435; - hasDefaultValue = 436; - hasDeprecated = 437; - hasDeprecatedLegacyJsonFieldConflicts = 438; - hasDeprecationWarning = 439; - hasDoubleValue = 440; - hasEdition = 441; - hasEditionDeprecated = 442; - hasEditionIntroduced = 443; - hasEditionRemoved = 444; - hasEnd = 445; - hasEnumType = 446; - hasExtendee = 447; - hasExtensionValue = 448; - hasFeatures = 449; - hasFeatureSupport = 450; - hasFieldPresence = 451; - hasFixedFeatures = 452; - hasFullName = 453; - hasGoPackage = 454; - hash = 455; - Hashable = 456; - hasher = 457; - HashVisitor = 458; - hasIdempotencyLevel = 459; - hasIdentifierValue = 460; - hasInputType = 461; - hasIsExtension = 462; - hasJavaGenerateEqualsAndHash = 463; - hasJavaGenericServices = 464; - hasJavaMultipleFiles = 465; - hasJavaOuterClassname = 466; - hasJavaPackage = 467; - hasJavaStringCheckUtf8 = 468; - hasJsonFormat = 469; - hasJsonName = 470; - hasJstype = 471; - hasLabel = 472; - hasLazy = 473; - hasLeadingComments = 474; - hasMapEntry = 475; - hasMaximumEdition = 476; - hasMessageEncoding = 477; - hasMessageSetWireFormat = 478; - hasMinimumEdition = 479; - hasName = 480; - hasNamePart = 481; - hasNegativeIntValue = 482; - hasNoStandardDescriptorAccessor = 483; - hasNumber = 484; - hasObjcClassPrefix = 485; - hasOneofIndex = 486; - hasOptimizeFor = 487; - hasOptions = 488; - hasOutputType = 489; - hasOverridableFeatures = 490; - hasPackage = 491; - hasPacked = 492; - hasPhpClassPrefix = 493; - hasPhpMetadataNamespace = 494; - hasPhpNamespace = 495; - hasPositiveIntValue = 496; - hasProto3Optional = 497; - hasPyGenericServices = 498; - hasRepeated = 499; - hasRepeatedFieldEncoding = 500; - hasReserved = 501; - hasRetention = 502; - hasRubyPackage = 503; - hasSemantic = 504; - hasServerStreaming = 505; - hasSourceCodeInfo = 506; - hasSourceContext = 507; - hasSourceFile = 508; - hasStart = 509; - hasStringValue = 510; - hasSwiftPrefix = 511; - hasSyntax = 512; - hasTrailingComments = 513; - hasType = 514; - hasTypeName = 515; - hasUnverifiedLazy = 516; - hasUtf8Validation = 517; - hasValue = 518; - hasVerification = 519; - hasWeak = 520; - hour = 521; - i = 522; - idempotencyLevel = 523; - identifierValue = 524; - if = 525; - ignoreUnknownExtensionFields = 526; - ignoreUnknownFields = 527; - index = 528; - init = 529; - inout = 530; - inputType = 531; - insert = 532; - Int = 533; - Int32 = 534; - Int32Value = 535; - Int64 = 536; - Int64Value = 537; - Int8 = 538; - integerLiteral = 539; - IntegerLiteralType = 540; - intern = 541; - Internal = 542; - InternalState = 543; - into = 544; - ints = 545; - isA = 546; - isEqual = 547; - isEqualTo = 548; - isExtension = 549; - isInitialized = 550; - isNegative = 551; - itemTagsEncodedSize = 552; - iterator = 553; - javaGenerateEqualsAndHash = 554; - javaGenericServices = 555; - javaMultipleFiles = 556; - javaOuterClassname = 557; - javaPackage = 558; - javaStringCheckUtf8 = 559; - JSONDecoder = 560; - JSONDecodingError = 561; - JSONDecodingOptions = 562; - jsonEncoder = 563; - JSONEncoding = 564; - JSONEncodingError = 565; - JSONEncodingOptions = 566; - JSONEncodingVisitor = 567; - jsonFormat = 568; - JSONMapEncodingVisitor = 569; - jsonName = 570; - jsonPath = 571; - jsonPaths = 572; - JSONScanner = 573; - jsonString = 574; - jsonText = 575; - jsonUTF8Bytes = 576; - jsonUTF8Data = 577; - jstype = 578; - k = 579; - kChunkSize = 580; - Key = 581; - keyField = 582; - keyFieldOpt = 583; - KeyType = 584; - kind = 585; - l = 586; - label = 587; - lazy = 588; - leadingComments = 589; - leadingDetachedComments = 590; - length = 591; - lessThan = 592; - let = 593; - lhs = 594; - line = 595; - list = 596; - listOfMessages = 597; - listValue = 598; - littleEndian = 599; - load = 600; - localHasher = 601; - location = 602; - M = 603; - major = 604; - makeAsyncIterator = 605; - makeIterator = 606; - malformedLength = 607; - mapEntry = 608; - MapKeyType = 609; - mapToMessages = 610; - MapValueType = 611; - mapVisitor = 612; - maximumEdition = 613; - mdayStart = 614; - merge = 615; - message = 616; - messageDepthLimit = 617; - messageEncoding = 618; - MessageExtension = 619; - MessageImplementationBase = 620; - MessageOptions = 621; - MessageSet = 622; - messageSetWireFormat = 623; - messageSize = 624; - messageType = 625; - Method = 626; - MethodDescriptorProto = 627; - MethodOptions = 628; - methods = 629; - min = 630; - minimumEdition = 631; - minor = 632; - Mixin = 633; - mixins = 634; - modifier = 635; - modify = 636; - month = 637; - msgExtension = 638; - mutating = 639; - n = 640; - name = 641; - NameDescription = 642; - NameMap = 643; - NamePart = 644; - names = 645; - nanos = 646; - negativeIntValue = 647; - nestedType = 648; - newL = 649; - newList = 650; - newValue = 651; - next = 652; - nextByte = 653; - nextFieldNumber = 654; - nextVarInt = 655; - nil = 656; - nilLiteral = 657; - noBytesAvailable = 658; - noStandardDescriptorAccessor = 659; - nullValue = 660; - number = 661; - numberValue = 662; - objcClassPrefix = 663; - of = 664; - oneofDecl = 665; - OneofDescriptorProto = 666; - oneofIndex = 667; - OneofOptions = 668; - oneofs = 669; - OneOf_Kind = 670; - optimizeFor = 671; - OptimizeMode = 672; - Option = 673; - OptionalEnumExtensionField = 674; - OptionalExtensionField = 675; - OptionalGroupExtensionField = 676; - OptionalMessageExtensionField = 677; - OptionRetention = 678; - options = 679; - OptionTargetType = 680; - other = 681; - others = 682; - out = 683; - outputType = 684; - overridableFeatures = 685; - p = 686; - package = 687; - packed = 688; - PackedEnumExtensionField = 689; - PackedExtensionField = 690; - padding = 691; - parent = 692; - parse = 693; - path = 694; - paths = 695; - payload = 696; - payloadSize = 697; - phpClassPrefix = 698; - phpMetadataNamespace = 699; - phpNamespace = 700; - pos = 701; - positiveIntValue = 702; - prefix = 703; - preserveProtoFieldNames = 704; - preTraverse = 705; - printUnknownFields = 706; - proto2 = 707; - proto3DefaultValue = 708; - proto3Optional = 709; - ProtobufAPIVersionCheck = 710; - ProtobufAPIVersion_3 = 711; - ProtobufBool = 712; - ProtobufBytes = 713; - ProtobufDouble = 714; - ProtobufEnumMap = 715; - protobufExtension = 716; - ProtobufFixed32 = 717; - ProtobufFixed64 = 718; - ProtobufFloat = 719; - ProtobufInt32 = 720; - ProtobufInt64 = 721; - ProtobufMap = 722; - ProtobufMessageMap = 723; - ProtobufSFixed32 = 724; - ProtobufSFixed64 = 725; - ProtobufSInt32 = 726; - ProtobufSInt64 = 727; - ProtobufString = 728; - ProtobufUInt32 = 729; - ProtobufUInt64 = 730; - protobuf_extensionFieldValues = 731; - protobuf_fieldNumber = 732; - protobuf_generated_isEqualTo = 733; - protobuf_nameMap = 734; - protobuf_newField = 735; - protobuf_package = 736; - protocol = 737; - protoFieldName = 738; - protoMessageName = 739; - ProtoNameProviding = 740; - protoPaths = 741; - public = 742; - publicDependency = 743; - putBoolValue = 744; - putBytesValue = 745; - putDoubleValue = 746; - putEnumValue = 747; - putFixedUInt32 = 748; - putFixedUInt64 = 749; - putFloatValue = 750; - putInt64 = 751; - putStringValue = 752; - putUInt64 = 753; - putUInt64Hex = 754; - putVarInt = 755; - putZigZagVarInt = 756; - pyGenericServices = 757; - R = 758; - rawChars = 759; - RawRepresentable = 760; - RawValue = 761; - read4HexDigits = 762; - readBytes = 763; - register = 764; - repeated = 765; - RepeatedEnumExtensionField = 766; - RepeatedExtensionField = 767; - repeatedFieldEncoding = 768; - RepeatedGroupExtensionField = 769; - RepeatedMessageExtensionField = 770; - repeating = 771; - requestStreaming = 772; - requestTypeURL = 773; - requiredSize = 774; - responseStreaming = 775; - responseTypeURL = 776; - result = 777; - retention = 778; - rethrows = 779; - return = 780; - ReturnType = 781; - revision = 782; - rhs = 783; - root = 784; - rubyPackage = 785; - s = 786; - sawBackslash = 787; - sawSection4Characters = 788; - sawSection5Characters = 789; - scan = 790; - scanner = 791; - seconds = 792; - self = 793; - semantic = 794; - Sendable = 795; - separator = 796; - serialize = 797; - serializedBytes = 798; - serializedData = 799; - serializedSize = 800; - serverStreaming = 801; - service = 802; - ServiceDescriptorProto = 803; - ServiceOptions = 804; - set = 805; - setExtensionValue = 806; - shift = 807; - SimpleExtensionMap = 808; - size = 809; - sizer = 810; - source = 811; - sourceCodeInfo = 812; - sourceContext = 813; - sourceEncoding = 814; - sourceFile = 815; - SourceLocation = 816; - span = 817; - split = 818; - start = 819; - startArray = 820; - startArrayObject = 821; - startField = 822; - startIndex = 823; - startMessageField = 824; - startObject = 825; - startRegularField = 826; - state = 827; - static = 828; - StaticString = 829; - storage = 830; - String = 831; - stringLiteral = 832; - StringLiteralType = 833; - stringResult = 834; - stringValue = 835; - struct = 836; - structValue = 837; - subDecoder = 838; - subscript = 839; - subVisitor = 840; - Swift = 841; - swiftPrefix = 842; - SwiftProtobufContiguousBytes = 843; - SwiftProtobufError = 844; - syntax = 845; - T = 846; - tag = 847; - targets = 848; - terminator = 849; - testDecoder = 850; - text = 851; - textDecoder = 852; - TextFormatDecoder = 853; - TextFormatDecodingError = 854; - TextFormatDecodingOptions = 855; - TextFormatEncodingOptions = 856; - TextFormatEncodingVisitor = 857; - textFormatString = 858; - throwOrIgnore = 859; - throws = 860; - timeInterval = 861; - timeIntervalSince1970 = 862; - timeIntervalSinceReferenceDate = 863; - Timestamp = 864; - tooLarge = 865; - total = 866; - totalArrayDepth = 867; - totalSize = 868; - trailingComments = 869; - traverse = 870; - true = 871; - try = 872; - type = 873; - typealias = 874; - TypeEnum = 875; - typeName = 876; - typePrefix = 877; - typeStart = 878; - typeUnknown = 879; - typeURL = 880; - UInt32 = 881; - UInt32Value = 882; - UInt64 = 883; - UInt64Value = 884; - UInt8 = 885; - unchecked = 886; - unicodeScalarLiteral = 887; - UnicodeScalarLiteralType = 888; - unicodeScalars = 889; - UnicodeScalarView = 890; - uninterpretedOption = 891; - union = 892; - uniqueStorage = 893; - unknown = 894; - unknownFields = 895; - UnknownStorage = 896; - unpackTo = 897; - unregisteredTypeURL = 898; - UnsafeBufferPointer = 899; - UnsafeMutablePointer = 900; - UnsafeMutableRawBufferPointer = 901; - UnsafeRawBufferPointer = 902; - UnsafeRawPointer = 903; - unverifiedLazy = 904; - updatedOptions = 905; - url = 906; - useDeterministicOrdering = 907; - utf8 = 908; - utf8Ptr = 909; - utf8ToDouble = 910; - utf8Validation = 911; - UTF8View = 912; - v = 913; - value = 914; - valueField = 915; - values = 916; - ValueType = 917; - var = 918; - verification = 919; - VerificationState = 920; - Version = 921; - versionString = 922; - visitExtensionFields = 923; - visitExtensionFieldsAsMessageSet = 924; - visitMapField = 925; - visitor = 926; - visitPacked = 927; - visitPackedBoolField = 928; - visitPackedDoubleField = 929; - visitPackedEnumField = 930; - visitPackedFixed32Field = 931; - visitPackedFixed64Field = 932; - visitPackedFloatField = 933; - visitPackedInt32Field = 934; - visitPackedInt64Field = 935; - visitPackedSFixed32Field = 936; - visitPackedSFixed64Field = 937; - visitPackedSInt32Field = 938; - visitPackedSInt64Field = 939; - visitPackedUInt32Field = 940; - visitPackedUInt64Field = 941; - visitRepeated = 942; - visitRepeatedBoolField = 943; - visitRepeatedBytesField = 944; - visitRepeatedDoubleField = 945; - visitRepeatedEnumField = 946; - visitRepeatedFixed32Field = 947; - visitRepeatedFixed64Field = 948; - visitRepeatedFloatField = 949; - visitRepeatedGroupField = 950; - visitRepeatedInt32Field = 951; - visitRepeatedInt64Field = 952; - visitRepeatedMessageField = 953; - visitRepeatedSFixed32Field = 954; - visitRepeatedSFixed64Field = 955; - visitRepeatedSInt32Field = 956; - visitRepeatedSInt64Field = 957; - visitRepeatedStringField = 958; - visitRepeatedUInt32Field = 959; - visitRepeatedUInt64Field = 960; - visitSingular = 961; - visitSingularBoolField = 962; - visitSingularBytesField = 963; - visitSingularDoubleField = 964; - visitSingularEnumField = 965; - visitSingularFixed32Field = 966; - visitSingularFixed64Field = 967; - visitSingularFloatField = 968; - visitSingularGroupField = 969; - visitSingularInt32Field = 970; - visitSingularInt64Field = 971; - visitSingularMessageField = 972; - visitSingularSFixed32Field = 973; - visitSingularSFixed64Field = 974; - visitSingularSInt32Field = 975; - visitSingularSInt64Field = 976; - visitSingularStringField = 977; - visitSingularUInt32Field = 978; - visitSingularUInt64Field = 979; - visitUnknown = 980; - wasDecoded = 981; - weak = 982; - weakDependency = 983; - where = 984; - wireFormat = 985; - with = 986; - withUnsafeBytes = 987; - withUnsafeMutableBytes = 988; - work = 989; - Wrapped = 990; - WrappedType = 991; - wrappedValue = 992; - written = 993; - yday = 994; + AnyUnpackError = 12; + Api = 13; + appended = 14; + appendUIntHex = 15; + appendUnknown = 16; + areAllInitialized = 17; + Array = 18; + arrayDepth = 19; + arrayLiteral = 20; + arraySeparator = 21; + as = 22; + asciiOpenCurlyBracket = 23; + asciiZero = 24; + async = 25; + AsyncIterator = 26; + AsyncIteratorProtocol = 27; + AsyncMessageSequence = 28; + available = 29; + b = 30; + Base = 31; + base64Values = 32; + baseAddress = 33; + BaseType = 34; + begin = 35; + binary = 36; + BinaryDecoder = 37; + BinaryDecoding = 38; + BinaryDecodingError = 39; + BinaryDecodingOptions = 40; + BinaryDelimited = 41; + BinaryEncoder = 42; + BinaryEncodingError = 43; + BinaryEncodingMessageSetSizeVisitor = 44; + BinaryEncodingMessageSetVisitor = 45; + BinaryEncodingOptions = 46; + BinaryEncodingSizeVisitor = 47; + BinaryEncodingVisitor = 48; + binaryOptions = 49; + binaryProtobufDelimitedMessages = 50; + BinaryStreamDecoding = 51; + binaryStreamDecodingError = 52; + bitPattern = 53; + body = 54; + Bool = 55; + booleanLiteral = 56; + BooleanLiteralType = 57; + boolValue = 58; + buffer = 59; + bytes = 60; + bytesInGroup = 61; + bytesNeeded = 62; + bytesRead = 63; + BytesValue = 64; + c = 65; + capitalizeNext = 66; + cardinality = 67; + CaseIterable = 68; + ccEnableArenas = 69; + ccGenericServices = 70; + Character = 71; + chars = 72; + chunk = 73; + class = 74; + clearAggregateValue = 75; + clearAllowAlias = 76; + clearBegin = 77; + clearCcEnableArenas = 78; + clearCcGenericServices = 79; + clearClientStreaming = 80; + clearCsharpNamespace = 81; + clearCtype = 82; + clearDebugRedact = 83; + clearDefaultValue = 84; + clearDeprecated = 85; + clearDeprecatedLegacyJsonFieldConflicts = 86; + clearDeprecationWarning = 87; + clearDoubleValue = 88; + clearEdition = 89; + clearEditionDeprecated = 90; + clearEditionIntroduced = 91; + clearEditionRemoved = 92; + clearEnd = 93; + clearEnumType = 94; + clearExtendee = 95; + clearExtensionValue = 96; + clearFeatures = 97; + clearFeatureSupport = 98; + clearFieldPresence = 99; + clearFixedFeatures = 100; + clearFullName = 101; + clearGoPackage = 102; + clearIdempotencyLevel = 103; + clearIdentifierValue = 104; + clearInputType = 105; + clearIsExtension = 106; + clearJavaGenerateEqualsAndHash = 107; + clearJavaGenericServices = 108; + clearJavaMultipleFiles = 109; + clearJavaOuterClassname = 110; + clearJavaPackage = 111; + clearJavaStringCheckUtf8 = 112; + clearJsonFormat = 113; + clearJsonName = 114; + clearJstype = 115; + clearLabel = 116; + clearLazy = 117; + clearLeadingComments = 118; + clearMapEntry = 119; + clearMaximumEdition = 120; + clearMessageEncoding = 121; + clearMessageSetWireFormat = 122; + clearMinimumEdition = 123; + clearName = 124; + clearNamePart = 125; + clearNegativeIntValue = 126; + clearNoStandardDescriptorAccessor = 127; + clearNumber = 128; + clearObjcClassPrefix = 129; + clearOneofIndex = 130; + clearOptimizeFor = 131; + clearOptions = 132; + clearOutputType = 133; + clearOverridableFeatures = 134; + clearPackage = 135; + clearPacked = 136; + clearPhpClassPrefix = 137; + clearPhpMetadataNamespace = 138; + clearPhpNamespace = 139; + clearPositiveIntValue = 140; + clearProto3Optional = 141; + clearPyGenericServices = 142; + clearRepeated = 143; + clearRepeatedFieldEncoding = 144; + clearReserved = 145; + clearRetention = 146; + clearRubyPackage = 147; + clearSemantic = 148; + clearServerStreaming = 149; + clearSourceCodeInfo = 150; + clearSourceContext = 151; + clearSourceFile = 152; + clearStart = 153; + clearStringValue = 154; + clearSwiftPrefix = 155; + clearSyntax = 156; + clearTrailingComments = 157; + clearType = 158; + clearTypeName = 159; + clearUnverifiedLazy = 160; + clearUtf8Validation = 161; + clearValue = 162; + clearVerification = 163; + clearWeak = 164; + clientStreaming = 165; + code = 166; + codePoint = 167; + codeUnits = 168; + Collection = 169; + com = 170; + comma = 171; + consumedBytes = 172; + contentsOf = 173; + copy = 174; + count = 175; + countVarintsInBuffer = 176; + csharpNamespace = 177; + ctype = 178; + customCodable = 179; + CustomDebugStringConvertible = 180; + CustomStringConvertible = 181; + d = 182; + Data = 183; + dataResult = 184; + date = 185; + daySec = 186; + daysSinceEpoch = 187; + debugDescription = 188; + debugRedact = 189; + declaration = 190; + decoded = 191; + decodedFromJSONNull = 192; + decodeExtensionField = 193; + decodeExtensionFieldsAsMessageSet = 194; + decodeJSON = 195; + decodeMapField = 196; + decodeMessage = 197; + decoder = 198; + decodeRepeated = 199; + decodeRepeatedBoolField = 200; + decodeRepeatedBytesField = 201; + decodeRepeatedDoubleField = 202; + decodeRepeatedEnumField = 203; + decodeRepeatedFixed32Field = 204; + decodeRepeatedFixed64Field = 205; + decodeRepeatedFloatField = 206; + decodeRepeatedGroupField = 207; + decodeRepeatedInt32Field = 208; + decodeRepeatedInt64Field = 209; + decodeRepeatedMessageField = 210; + decodeRepeatedSFixed32Field = 211; + decodeRepeatedSFixed64Field = 212; + decodeRepeatedSInt32Field = 213; + decodeRepeatedSInt64Field = 214; + decodeRepeatedStringField = 215; + decodeRepeatedUInt32Field = 216; + decodeRepeatedUInt64Field = 217; + decodeSingular = 218; + decodeSingularBoolField = 219; + decodeSingularBytesField = 220; + decodeSingularDoubleField = 221; + decodeSingularEnumField = 222; + decodeSingularFixed32Field = 223; + decodeSingularFixed64Field = 224; + decodeSingularFloatField = 225; + decodeSingularGroupField = 226; + decodeSingularInt32Field = 227; + decodeSingularInt64Field = 228; + decodeSingularMessageField = 229; + decodeSingularSFixed32Field = 230; + decodeSingularSFixed64Field = 231; + decodeSingularSInt32Field = 232; + decodeSingularSInt64Field = 233; + decodeSingularStringField = 234; + decodeSingularUInt32Field = 235; + decodeSingularUInt64Field = 236; + decodeTextFormat = 237; + defaultAnyTypeURLPrefix = 238; + defaults = 239; + defaultValue = 240; + dependency = 241; + deprecated = 242; + deprecatedLegacyJsonFieldConflicts = 243; + deprecationWarning = 244; + description = 245; + DescriptorProto = 246; + Dictionary = 247; + dictionaryLiteral = 248; + digit = 249; + digit0 = 250; + digit1 = 251; + digitCount = 252; + digits = 253; + digitValue = 254; + discardableResult = 255; + discardUnknownFields = 256; + Double = 257; + doubleValue = 258; + Duration = 259; + E = 260; + edition = 261; + EditionDefault = 262; + editionDefaults = 263; + editionDeprecated = 264; + editionIntroduced = 265; + editionRemoved = 266; + Element = 267; + elements = 268; + emitExtensionFieldName = 269; + emitFieldName = 270; + emitFieldNumber = 271; + Empty = 272; + encodeAsBytes = 273; + encoded = 274; + encodedJSONString = 275; + encodedSize = 276; + encodeField = 277; + encoder = 278; + end = 279; + endArray = 280; + endMessageField = 281; + endObject = 282; + endRegularField = 283; + enum = 284; + EnumDescriptorProto = 285; + EnumOptions = 286; + EnumReservedRange = 287; + enumType = 288; + enumvalue = 289; + EnumValueDescriptorProto = 290; + EnumValueOptions = 291; + Equatable = 292; + Error = 293; + ExpressibleByArrayLiteral = 294; + ExpressibleByDictionaryLiteral = 295; + ext = 296; + extDecoder = 297; + extendedGraphemeClusterLiteral = 298; + ExtendedGraphemeClusterLiteralType = 299; + extendee = 300; + ExtensibleMessage = 301; + extension = 302; + ExtensionField = 303; + extensionFieldNumber = 304; + ExtensionFieldValueSet = 305; + ExtensionMap = 306; + extensionRange = 307; + ExtensionRangeOptions = 308; + extensions = 309; + extras = 310; + F = 311; + false = 312; + features = 313; + FeatureSet = 314; + FeatureSetDefaults = 315; + FeatureSetEditionDefault = 316; + featureSupport = 317; + field = 318; + fieldData = 319; + FieldDescriptorProto = 320; + FieldMask = 321; + fieldName = 322; + fieldNameCount = 323; + fieldNum = 324; + fieldNumber = 325; + fieldNumberForProto = 326; + FieldOptions = 327; + fieldPresence = 328; + fields = 329; + fieldSize = 330; + FieldTag = 331; + fieldType = 332; + file = 333; + FileDescriptorProto = 334; + FileDescriptorSet = 335; + fileName = 336; + FileOptions = 337; + filter = 338; + final = 339; + finiteOnly = 340; + first = 341; + firstItem = 342; + fixedFeatures = 343; + Float = 344; + floatLiteral = 345; + FloatLiteralType = 346; + FloatValue = 347; + forMessageName = 348; + formUnion = 349; + forReadingFrom = 350; + forTypeURL = 351; + ForwardParser = 352; + forWritingInto = 353; + from = 354; + fromAscii2 = 355; + fromAscii4 = 356; + fromByteOffset = 357; + fromHexDigit = 358; + fullName = 359; + func = 360; + function = 361; + G = 362; + GeneratedCodeInfo = 363; + get = 364; + getExtensionValue = 365; + googleapis = 366; + Google_Protobuf_Any = 367; + Google_Protobuf_Api = 368; + Google_Protobuf_BoolValue = 369; + Google_Protobuf_BytesValue = 370; + Google_Protobuf_DescriptorProto = 371; + Google_Protobuf_DoubleValue = 372; + Google_Protobuf_Duration = 373; + Google_Protobuf_Edition = 374; + Google_Protobuf_Empty = 375; + Google_Protobuf_Enum = 376; + Google_Protobuf_EnumDescriptorProto = 377; + Google_Protobuf_EnumOptions = 378; + Google_Protobuf_EnumValue = 379; + Google_Protobuf_EnumValueDescriptorProto = 380; + Google_Protobuf_EnumValueOptions = 381; + Google_Protobuf_ExtensionRangeOptions = 382; + Google_Protobuf_FeatureSet = 383; + Google_Protobuf_FeatureSetDefaults = 384; + Google_Protobuf_Field = 385; + Google_Protobuf_FieldDescriptorProto = 386; + Google_Protobuf_FieldMask = 387; + Google_Protobuf_FieldOptions = 388; + Google_Protobuf_FileDescriptorProto = 389; + Google_Protobuf_FileDescriptorSet = 390; + Google_Protobuf_FileOptions = 391; + Google_Protobuf_FloatValue = 392; + Google_Protobuf_GeneratedCodeInfo = 393; + Google_Protobuf_Int32Value = 394; + Google_Protobuf_Int64Value = 395; + Google_Protobuf_ListValue = 396; + Google_Protobuf_MessageOptions = 397; + Google_Protobuf_Method = 398; + Google_Protobuf_MethodDescriptorProto = 399; + Google_Protobuf_MethodOptions = 400; + Google_Protobuf_Mixin = 401; + Google_Protobuf_NullValue = 402; + Google_Protobuf_OneofDescriptorProto = 403; + Google_Protobuf_OneofOptions = 404; + Google_Protobuf_Option = 405; + Google_Protobuf_ServiceDescriptorProto = 406; + Google_Protobuf_ServiceOptions = 407; + Google_Protobuf_SourceCodeInfo = 408; + Google_Protobuf_SourceContext = 409; + Google_Protobuf_StringValue = 410; + Google_Protobuf_Struct = 411; + Google_Protobuf_Syntax = 412; + Google_Protobuf_Timestamp = 413; + Google_Protobuf_Type = 414; + Google_Protobuf_UInt32Value = 415; + Google_Protobuf_UInt64Value = 416; + Google_Protobuf_UninterpretedOption = 417; + Google_Protobuf_Value = 418; + goPackage = 419; + group = 420; + groupFieldNumberStack = 421; + groupSize = 422; + hadOneofValue = 423; + handleConflictingOneOf = 424; + hasAggregateValue = 425; + hasAllowAlias = 426; + hasBegin = 427; + hasCcEnableArenas = 428; + hasCcGenericServices = 429; + hasClientStreaming = 430; + hasCsharpNamespace = 431; + hasCtype = 432; + hasDebugRedact = 433; + hasDefaultValue = 434; + hasDeprecated = 435; + hasDeprecatedLegacyJsonFieldConflicts = 436; + hasDeprecationWarning = 437; + hasDoubleValue = 438; + hasEdition = 439; + hasEditionDeprecated = 440; + hasEditionIntroduced = 441; + hasEditionRemoved = 442; + hasEnd = 443; + hasEnumType = 444; + hasExtendee = 445; + hasExtensionValue = 446; + hasFeatures = 447; + hasFeatureSupport = 448; + hasFieldPresence = 449; + hasFixedFeatures = 450; + hasFullName = 451; + hasGoPackage = 452; + hash = 453; + Hashable = 454; + hasher = 455; + HashVisitor = 456; + hasIdempotencyLevel = 457; + hasIdentifierValue = 458; + hasInputType = 459; + hasIsExtension = 460; + hasJavaGenerateEqualsAndHash = 461; + hasJavaGenericServices = 462; + hasJavaMultipleFiles = 463; + hasJavaOuterClassname = 464; + hasJavaPackage = 465; + hasJavaStringCheckUtf8 = 466; + hasJsonFormat = 467; + hasJsonName = 468; + hasJstype = 469; + hasLabel = 470; + hasLazy = 471; + hasLeadingComments = 472; + hasMapEntry = 473; + hasMaximumEdition = 474; + hasMessageEncoding = 475; + hasMessageSetWireFormat = 476; + hasMinimumEdition = 477; + hasName = 478; + hasNamePart = 479; + hasNegativeIntValue = 480; + hasNoStandardDescriptorAccessor = 481; + hasNumber = 482; + hasObjcClassPrefix = 483; + hasOneofIndex = 484; + hasOptimizeFor = 485; + hasOptions = 486; + hasOutputType = 487; + hasOverridableFeatures = 488; + hasPackage = 489; + hasPacked = 490; + hasPhpClassPrefix = 491; + hasPhpMetadataNamespace = 492; + hasPhpNamespace = 493; + hasPositiveIntValue = 494; + hasProto3Optional = 495; + hasPyGenericServices = 496; + hasRepeated = 497; + hasRepeatedFieldEncoding = 498; + hasReserved = 499; + hasRetention = 500; + hasRubyPackage = 501; + hasSemantic = 502; + hasServerStreaming = 503; + hasSourceCodeInfo = 504; + hasSourceContext = 505; + hasSourceFile = 506; + hasStart = 507; + hasStringValue = 508; + hasSwiftPrefix = 509; + hasSyntax = 510; + hasTrailingComments = 511; + hasType = 512; + hasTypeName = 513; + hasUnverifiedLazy = 514; + hasUtf8Validation = 515; + hasValue = 516; + hasVerification = 517; + hasWeak = 518; + hour = 519; + i = 520; + idempotencyLevel = 521; + identifierValue = 522; + if = 523; + ignoreUnknownExtensionFields = 524; + ignoreUnknownFields = 525; + index = 526; + init = 527; + inout = 528; + inputType = 529; + insert = 530; + Int = 531; + Int32 = 532; + Int32Value = 533; + Int64 = 534; + Int64Value = 535; + Int8 = 536; + integerLiteral = 537; + IntegerLiteralType = 538; + intern = 539; + Internal = 540; + InternalState = 541; + into = 542; + ints = 543; + isA = 544; + isEqual = 545; + isEqualTo = 546; + isExtension = 547; + isInitialized = 548; + isNegative = 549; + itemTagsEncodedSize = 550; + iterator = 551; + javaGenerateEqualsAndHash = 552; + javaGenericServices = 553; + javaMultipleFiles = 554; + javaOuterClassname = 555; + javaPackage = 556; + javaStringCheckUtf8 = 557; + JSONDecoder = 558; + JSONDecodingError = 559; + JSONDecodingOptions = 560; + jsonEncoder = 561; + JSONEncodingError = 562; + JSONEncodingOptions = 563; + JSONEncodingVisitor = 564; + jsonFormat = 565; + JSONMapEncodingVisitor = 566; + jsonName = 567; + jsonPath = 568; + jsonPaths = 569; + JSONScanner = 570; + jsonString = 571; + jsonText = 572; + jsonUTF8Bytes = 573; + jsonUTF8Data = 574; + jstype = 575; + k = 576; + kChunkSize = 577; + Key = 578; + keyField = 579; + keyFieldOpt = 580; + KeyType = 581; + kind = 582; + l = 583; + label = 584; + lazy = 585; + leadingComments = 586; + leadingDetachedComments = 587; + length = 588; + lessThan = 589; + let = 590; + lhs = 591; + line = 592; + list = 593; + listOfMessages = 594; + listValue = 595; + littleEndian = 596; + load = 597; + localHasher = 598; + location = 599; + M = 600; + major = 601; + makeAsyncIterator = 602; + makeIterator = 603; + malformedLength = 604; + mapEntry = 605; + MapKeyType = 606; + mapToMessages = 607; + MapValueType = 608; + mapVisitor = 609; + maximumEdition = 610; + mdayStart = 611; + merge = 612; + message = 613; + messageDepthLimit = 614; + messageEncoding = 615; + MessageExtension = 616; + MessageImplementationBase = 617; + MessageOptions = 618; + MessageSet = 619; + messageSetWireFormat = 620; + messageSize = 621; + messageType = 622; + Method = 623; + MethodDescriptorProto = 624; + MethodOptions = 625; + methods = 626; + min = 627; + minimumEdition = 628; + minor = 629; + Mixin = 630; + mixins = 631; + modifier = 632; + modify = 633; + month = 634; + msgExtension = 635; + mutating = 636; + n = 637; + name = 638; + NameDescription = 639; + NameMap = 640; + NamePart = 641; + names = 642; + nanos = 643; + negativeIntValue = 644; + nestedType = 645; + newL = 646; + newList = 647; + newValue = 648; + next = 649; + nextByte = 650; + nextFieldNumber = 651; + nextVarInt = 652; + nil = 653; + nilLiteral = 654; + noBytesAvailable = 655; + noStandardDescriptorAccessor = 656; + nullValue = 657; + number = 658; + numberValue = 659; + objcClassPrefix = 660; + of = 661; + oneofDecl = 662; + OneofDescriptorProto = 663; + oneofIndex = 664; + OneofOptions = 665; + oneofs = 666; + OneOf_Kind = 667; + optimizeFor = 668; + OptimizeMode = 669; + Option = 670; + OptionalEnumExtensionField = 671; + OptionalExtensionField = 672; + OptionalGroupExtensionField = 673; + OptionalMessageExtensionField = 674; + OptionRetention = 675; + options = 676; + OptionTargetType = 677; + other = 678; + others = 679; + out = 680; + outputType = 681; + overridableFeatures = 682; + p = 683; + package = 684; + packed = 685; + PackedEnumExtensionField = 686; + PackedExtensionField = 687; + padding = 688; + parent = 689; + parse = 690; + path = 691; + paths = 692; + payload = 693; + payloadSize = 694; + phpClassPrefix = 695; + phpMetadataNamespace = 696; + phpNamespace = 697; + pos = 698; + positiveIntValue = 699; + prefix = 700; + preserveProtoFieldNames = 701; + preTraverse = 702; + printUnknownFields = 703; + proto2 = 704; + proto3DefaultValue = 705; + proto3Optional = 706; + ProtobufAPIVersionCheck = 707; + ProtobufAPIVersion_3 = 708; + ProtobufBool = 709; + ProtobufBytes = 710; + ProtobufDouble = 711; + ProtobufEnumMap = 712; + protobufExtension = 713; + ProtobufFixed32 = 714; + ProtobufFixed64 = 715; + ProtobufFloat = 716; + ProtobufInt32 = 717; + ProtobufInt64 = 718; + ProtobufMap = 719; + ProtobufMessageMap = 720; + ProtobufSFixed32 = 721; + ProtobufSFixed64 = 722; + ProtobufSInt32 = 723; + ProtobufSInt64 = 724; + ProtobufString = 725; + ProtobufUInt32 = 726; + ProtobufUInt64 = 727; + protobuf_extensionFieldValues = 728; + protobuf_fieldNumber = 729; + protobuf_generated_isEqualTo = 730; + protobuf_nameMap = 731; + protobuf_newField = 732; + protobuf_package = 733; + protocol = 734; + protoFieldName = 735; + protoMessageName = 736; + ProtoNameProviding = 737; + protoPaths = 738; + public = 739; + publicDependency = 740; + putBoolValue = 741; + putBytesValue = 742; + putDoubleValue = 743; + putEnumValue = 744; + putFixedUInt32 = 745; + putFixedUInt64 = 746; + putFloatValue = 747; + putInt64 = 748; + putStringValue = 749; + putUInt64 = 750; + putUInt64Hex = 751; + putVarInt = 752; + putZigZagVarInt = 753; + pyGenericServices = 754; + R = 755; + rawChars = 756; + RawRepresentable = 757; + RawValue = 758; + read4HexDigits = 759; + readBytes = 760; + register = 761; + repeated = 762; + RepeatedEnumExtensionField = 763; + RepeatedExtensionField = 764; + repeatedFieldEncoding = 765; + RepeatedGroupExtensionField = 766; + RepeatedMessageExtensionField = 767; + repeating = 768; + requestStreaming = 769; + requestTypeURL = 770; + requiredSize = 771; + responseStreaming = 772; + responseTypeURL = 773; + result = 774; + retention = 775; + rethrows = 776; + return = 777; + ReturnType = 778; + revision = 779; + rhs = 780; + root = 781; + rubyPackage = 782; + s = 783; + sawBackslash = 784; + sawSection4Characters = 785; + sawSection5Characters = 786; + scan = 787; + scanner = 788; + seconds = 789; + self = 790; + semantic = 791; + Sendable = 792; + separator = 793; + serialize = 794; + serializedBytes = 795; + serializedData = 796; + serializedSize = 797; + serverStreaming = 798; + service = 799; + ServiceDescriptorProto = 800; + ServiceOptions = 801; + set = 802; + setExtensionValue = 803; + shift = 804; + SimpleExtensionMap = 805; + size = 806; + sizer = 807; + source = 808; + sourceCodeInfo = 809; + sourceContext = 810; + sourceEncoding = 811; + sourceFile = 812; + SourceLocation = 813; + span = 814; + split = 815; + start = 816; + startArray = 817; + startArrayObject = 818; + startField = 819; + startIndex = 820; + startMessageField = 821; + startObject = 822; + startRegularField = 823; + state = 824; + static = 825; + StaticString = 826; + storage = 827; + String = 828; + stringLiteral = 829; + StringLiteralType = 830; + stringResult = 831; + stringValue = 832; + struct = 833; + structValue = 834; + subDecoder = 835; + subscript = 836; + subVisitor = 837; + Swift = 838; + swiftPrefix = 839; + SwiftProtobufContiguousBytes = 840; + SwiftProtobufError = 841; + syntax = 842; + T = 843; + tag = 844; + targets = 845; + terminator = 846; + testDecoder = 847; + text = 848; + textDecoder = 849; + TextFormatDecoder = 850; + TextFormatDecodingError = 851; + TextFormatDecodingOptions = 852; + TextFormatEncodingOptions = 853; + TextFormatEncodingVisitor = 854; + textFormatString = 855; + throwOrIgnore = 856; + throws = 857; + timeInterval = 858; + timeIntervalSince1970 = 859; + timeIntervalSinceReferenceDate = 860; + Timestamp = 861; + tooLarge = 862; + total = 863; + totalArrayDepth = 864; + totalSize = 865; + trailingComments = 866; + traverse = 867; + true = 868; + try = 869; + type = 870; + typealias = 871; + TypeEnum = 872; + typeName = 873; + typePrefix = 874; + typeStart = 875; + typeUnknown = 876; + typeURL = 877; + UInt32 = 878; + UInt32Value = 879; + UInt64 = 880; + UInt64Value = 881; + UInt8 = 882; + unchecked = 883; + unicodeScalarLiteral = 884; + UnicodeScalarLiteralType = 885; + unicodeScalars = 886; + UnicodeScalarView = 887; + uninterpretedOption = 888; + union = 889; + uniqueStorage = 890; + unknown = 891; + unknownFields = 892; + UnknownStorage = 893; + unpackTo = 894; + UnsafeBufferPointer = 895; + UnsafeMutablePointer = 896; + UnsafeMutableRawBufferPointer = 897; + UnsafeRawBufferPointer = 898; + UnsafeRawPointer = 899; + unverifiedLazy = 900; + updatedOptions = 901; + url = 902; + useDeterministicOrdering = 903; + utf8 = 904; + utf8Ptr = 905; + utf8ToDouble = 906; + utf8Validation = 907; + UTF8View = 908; + v = 909; + value = 910; + valueField = 911; + values = 912; + ValueType = 913; + var = 914; + verification = 915; + VerificationState = 916; + Version = 917; + versionString = 918; + visitExtensionFields = 919; + visitExtensionFieldsAsMessageSet = 920; + visitMapField = 921; + visitor = 922; + visitPacked = 923; + visitPackedBoolField = 924; + visitPackedDoubleField = 925; + visitPackedEnumField = 926; + visitPackedFixed32Field = 927; + visitPackedFixed64Field = 928; + visitPackedFloatField = 929; + visitPackedInt32Field = 930; + visitPackedInt64Field = 931; + visitPackedSFixed32Field = 932; + visitPackedSFixed64Field = 933; + visitPackedSInt32Field = 934; + visitPackedSInt64Field = 935; + visitPackedUInt32Field = 936; + visitPackedUInt64Field = 937; + visitRepeated = 938; + visitRepeatedBoolField = 939; + visitRepeatedBytesField = 940; + visitRepeatedDoubleField = 941; + visitRepeatedEnumField = 942; + visitRepeatedFixed32Field = 943; + visitRepeatedFixed64Field = 944; + visitRepeatedFloatField = 945; + visitRepeatedGroupField = 946; + visitRepeatedInt32Field = 947; + visitRepeatedInt64Field = 948; + visitRepeatedMessageField = 949; + visitRepeatedSFixed32Field = 950; + visitRepeatedSFixed64Field = 951; + visitRepeatedSInt32Field = 952; + visitRepeatedSInt64Field = 953; + visitRepeatedStringField = 954; + visitRepeatedUInt32Field = 955; + visitRepeatedUInt64Field = 956; + visitSingular = 957; + visitSingularBoolField = 958; + visitSingularBytesField = 959; + visitSingularDoubleField = 960; + visitSingularEnumField = 961; + visitSingularFixed32Field = 962; + visitSingularFixed64Field = 963; + visitSingularFloatField = 964; + visitSingularGroupField = 965; + visitSingularInt32Field = 966; + visitSingularInt64Field = 967; + visitSingularMessageField = 968; + visitSingularSFixed32Field = 969; + visitSingularSFixed64Field = 970; + visitSingularSInt32Field = 971; + visitSingularSInt64Field = 972; + visitSingularStringField = 973; + visitSingularUInt32Field = 974; + visitSingularUInt64Field = 975; + visitUnknown = 976; + wasDecoded = 977; + weak = 978; + weakDependency = 979; + where = 980; + wireFormat = 981; + with = 982; + withUnsafeBytes = 983; + withUnsafeMutableBytes = 984; + work = 985; + Wrapped = 986; + WrappedType = 987; + wrappedValue = 988; + written = 989; + yday = 990; } diff --git a/Protos/SwiftProtobufTests/generated_swift_names_enums.proto b/Protos/SwiftProtobufTests/generated_swift_names_enums.proto index 7c1d341c3..320cda548 100644 --- a/Protos/SwiftProtobufTests/generated_swift_names_enums.proto +++ b/Protos/SwiftProtobufTests/generated_swift_names_enums.proto @@ -15,7 +15,6 @@ message GeneratedSwiftReservedEnums { enum AnyExtensionField { NONE_AnyExtensionField = 0; } enum AnyMessageExtension { NONE_AnyMessageExtension = 0; } enum AnyMessageStorage { NONE_AnyMessageStorage = 0; } - enum anyTypeURLNotRegistered { NONE_anyTypeURLNotRegistered = 0; } enum AnyUnpackError { NONE_AnyUnpackError = 0; } enum Api { NONE_Api = 0; } enum appended { NONE_appended = 0; } @@ -47,7 +46,6 @@ message GeneratedSwiftReservedEnums { enum BinaryDecodingOptions { NONE_BinaryDecodingOptions = 0; } enum BinaryDelimited { NONE_BinaryDelimited = 0; } enum BinaryEncoder { NONE_BinaryEncoder = 0; } - enum BinaryEncoding { NONE_BinaryEncoding = 0; } enum BinaryEncodingError { NONE_BinaryEncodingError = 0; } enum BinaryEncodingMessageSetSizeVisitor { NONE_BinaryEncodingMessageSetSizeVisitor = 0; } enum BinaryEncodingMessageSetVisitor { NONE_BinaryEncodingMessageSetVisitor = 0; } @@ -567,7 +565,6 @@ message GeneratedSwiftReservedEnums { enum JSONDecodingError { NONE_JSONDecodingError = 0; } enum JSONDecodingOptions { NONE_JSONDecodingOptions = 0; } enum jsonEncoder { NONE_jsonEncoder = 0; } - enum JSONEncoding { NONE_JSONEncoding = 0; } enum JSONEncodingError { NONE_JSONEncodingError = 0; } enum JSONEncodingOptions { NONE_JSONEncodingOptions = 0; } enum JSONEncodingVisitor { NONE_JSONEncodingVisitor = 0; } @@ -901,7 +898,6 @@ message GeneratedSwiftReservedEnums { enum unknownFields { NONE_unknownFields = 0; } enum UnknownStorage { NONE_UnknownStorage = 0; } enum unpackTo { NONE_unpackTo = 0; } - enum unregisteredTypeURL { NONE_unregisteredTypeURL = 0; } enum UnsafeBufferPointer { NONE_UnsafeBufferPointer = 0; } enum UnsafeMutablePointer { NONE_UnsafeMutablePointer = 0; } enum UnsafeMutableRawBufferPointer { NONE_UnsafeMutableRawBufferPointer = 0; } diff --git a/Protos/SwiftProtobufTests/generated_swift_names_fields.proto b/Protos/SwiftProtobufTests/generated_swift_names_fields.proto index 2b545d461..f2e9815f7 100644 --- a/Protos/SwiftProtobufTests/generated_swift_names_fields.proto +++ b/Protos/SwiftProtobufTests/generated_swift_names_fields.proto @@ -15,987 +15,983 @@ message GeneratedSwiftReservedFields { int32 AnyExtensionField = 9; int32 AnyMessageExtension = 10; int32 AnyMessageStorage = 11; - int32 anyTypeURLNotRegistered = 12; - int32 AnyUnpackError = 13; - int32 Api = 14; - int32 appended = 15; - int32 appendUIntHex = 16; - int32 appendUnknown = 17; - int32 areAllInitialized = 18; - int32 Array = 19; - int32 arrayDepth = 20; - int32 arrayLiteral = 21; - int32 arraySeparator = 22; - int32 as = 23; - int32 asciiOpenCurlyBracket = 24; - int32 asciiZero = 25; - int32 async = 26; - int32 AsyncIterator = 27; - int32 AsyncIteratorProtocol = 28; - int32 AsyncMessageSequence = 29; - int32 available = 30; - int32 b = 31; - int32 Base = 32; - int32 base64Values = 33; - int32 baseAddress = 34; - int32 BaseType = 35; - int32 begin = 36; - int32 binary = 37; - int32 BinaryDecoder = 38; - int32 BinaryDecoding = 39; - int32 BinaryDecodingError = 40; - int32 BinaryDecodingOptions = 41; - int32 BinaryDelimited = 42; - int32 BinaryEncoder = 43; - int32 BinaryEncoding = 44; - int32 BinaryEncodingError = 45; - int32 BinaryEncodingMessageSetSizeVisitor = 46; - int32 BinaryEncodingMessageSetVisitor = 47; - int32 BinaryEncodingOptions = 48; - int32 BinaryEncodingSizeVisitor = 49; - int32 BinaryEncodingVisitor = 50; - int32 binaryOptions = 51; - int32 binaryProtobufDelimitedMessages = 52; - int32 BinaryStreamDecoding = 53; - int32 binaryStreamDecodingError = 54; - int32 bitPattern = 55; - int32 body = 56; - int32 Bool = 57; - int32 booleanLiteral = 58; - int32 BooleanLiteralType = 59; - int32 boolValue = 60; - int32 buffer = 61; - int32 bytes = 62; - int32 bytesInGroup = 63; - int32 bytesNeeded = 64; - int32 bytesRead = 65; - int32 BytesValue = 66; - int32 c = 67; - int32 capitalizeNext = 68; - int32 cardinality = 69; - int32 CaseIterable = 70; - int32 ccEnableArenas = 71; - int32 ccGenericServices = 72; - int32 Character = 73; - int32 chars = 74; - int32 chunk = 75; - int32 class = 76; - int32 clearAggregateValue = 77; - int32 clearAllowAlias = 78; - int32 clearBegin = 79; - int32 clearCcEnableArenas = 80; - int32 clearCcGenericServices = 81; - int32 clearClientStreaming = 82; - int32 clearCsharpNamespace = 83; - int32 clearCtype = 84; - int32 clearDebugRedact = 85; - int32 clearDefaultValue = 86; - int32 clearDeprecated = 87; - int32 clearDeprecatedLegacyJsonFieldConflicts = 88; - int32 clearDeprecationWarning = 89; - int32 clearDoubleValue = 90; - int32 clearEdition = 91; - int32 clearEditionDeprecated = 92; - int32 clearEditionIntroduced = 93; - int32 clearEditionRemoved = 94; - int32 clearEnd = 95; - int32 clearEnumType = 96; - int32 clearExtendee = 97; - int32 clearExtensionValue = 98; - int32 clearFeatures = 99; - int32 clearFeatureSupport = 100; - int32 clearFieldPresence = 101; - int32 clearFixedFeatures = 102; - int32 clearFullName = 103; - int32 clearGoPackage = 104; - int32 clearIdempotencyLevel = 105; - int32 clearIdentifierValue = 106; - int32 clearInputType = 107; - int32 clearIsExtension = 108; - int32 clearJavaGenerateEqualsAndHash = 109; - int32 clearJavaGenericServices = 110; - int32 clearJavaMultipleFiles = 111; - int32 clearJavaOuterClassname = 112; - int32 clearJavaPackage = 113; - int32 clearJavaStringCheckUtf8 = 114; - int32 clearJsonFormat = 115; - int32 clearJsonName = 116; - int32 clearJstype = 117; - int32 clearLabel = 118; - int32 clearLazy = 119; - int32 clearLeadingComments = 120; - int32 clearMapEntry = 121; - int32 clearMaximumEdition = 122; - int32 clearMessageEncoding = 123; - int32 clearMessageSetWireFormat = 124; - int32 clearMinimumEdition = 125; - int32 clearName = 126; - int32 clearNamePart = 127; - int32 clearNegativeIntValue = 128; - int32 clearNoStandardDescriptorAccessor = 129; - int32 clearNumber = 130; - int32 clearObjcClassPrefix = 131; - int32 clearOneofIndex = 132; - int32 clearOptimizeFor = 133; - int32 clearOptions = 134; - int32 clearOutputType = 135; - int32 clearOverridableFeatures = 136; - int32 clearPackage = 137; - int32 clearPacked = 138; - int32 clearPhpClassPrefix = 139; - int32 clearPhpMetadataNamespace = 140; - int32 clearPhpNamespace = 141; - int32 clearPositiveIntValue = 142; - int32 clearProto3Optional = 143; - int32 clearPyGenericServices = 144; - int32 clearRepeated = 145; - int32 clearRepeatedFieldEncoding = 146; - int32 clearReserved = 147; - int32 clearRetention = 148; - int32 clearRubyPackage = 149; - int32 clearSemantic = 150; - int32 clearServerStreaming = 151; - int32 clearSourceCodeInfo = 152; - int32 clearSourceContext = 153; - int32 clearSourceFile = 154; - int32 clearStart = 155; - int32 clearStringValue = 156; - int32 clearSwiftPrefix = 157; - int32 clearSyntax = 158; - int32 clearTrailingComments = 159; - int32 clearType = 160; - int32 clearTypeName = 161; - int32 clearUnverifiedLazy = 162; - int32 clearUtf8Validation = 163; - int32 clearValue = 164; - int32 clearVerification = 165; - int32 clearWeak = 166; - int32 clientStreaming = 167; - int32 code = 168; - int32 codePoint = 169; - int32 codeUnits = 170; - int32 Collection = 171; - int32 com = 172; - int32 comma = 173; - int32 consumedBytes = 174; - int32 contentsOf = 175; - int32 copy = 176; - int32 count = 177; - int32 countVarintsInBuffer = 178; - int32 csharpNamespace = 179; - int32 ctype = 180; - int32 customCodable = 181; - int32 CustomDebugStringConvertible = 182; - int32 CustomStringConvertible = 183; - int32 d = 184; - int32 Data = 185; - int32 dataResult = 186; - int32 date = 187; - int32 daySec = 188; - int32 daysSinceEpoch = 189; - int32 debugDescription = 190; - int32 debugRedact = 191; - int32 declaration = 192; - int32 decoded = 193; - int32 decodedFromJSONNull = 194; - int32 decodeExtensionField = 195; - int32 decodeExtensionFieldsAsMessageSet = 196; - int32 decodeJSON = 197; - int32 decodeMapField = 198; - int32 decodeMessage = 199; - int32 decoder = 200; - int32 decodeRepeated = 201; - int32 decodeRepeatedBoolField = 202; - int32 decodeRepeatedBytesField = 203; - int32 decodeRepeatedDoubleField = 204; - int32 decodeRepeatedEnumField = 205; - int32 decodeRepeatedFixed32Field = 206; - int32 decodeRepeatedFixed64Field = 207; - int32 decodeRepeatedFloatField = 208; - int32 decodeRepeatedGroupField = 209; - int32 decodeRepeatedInt32Field = 210; - int32 decodeRepeatedInt64Field = 211; - int32 decodeRepeatedMessageField = 212; - int32 decodeRepeatedSFixed32Field = 213; - int32 decodeRepeatedSFixed64Field = 214; - int32 decodeRepeatedSInt32Field = 215; - int32 decodeRepeatedSInt64Field = 216; - int32 decodeRepeatedStringField = 217; - int32 decodeRepeatedUInt32Field = 218; - int32 decodeRepeatedUInt64Field = 219; - int32 decodeSingular = 220; - int32 decodeSingularBoolField = 221; - int32 decodeSingularBytesField = 222; - int32 decodeSingularDoubleField = 223; - int32 decodeSingularEnumField = 224; - int32 decodeSingularFixed32Field = 225; - int32 decodeSingularFixed64Field = 226; - int32 decodeSingularFloatField = 227; - int32 decodeSingularGroupField = 228; - int32 decodeSingularInt32Field = 229; - int32 decodeSingularInt64Field = 230; - int32 decodeSingularMessageField = 231; - int32 decodeSingularSFixed32Field = 232; - int32 decodeSingularSFixed64Field = 233; - int32 decodeSingularSInt32Field = 234; - int32 decodeSingularSInt64Field = 235; - int32 decodeSingularStringField = 236; - int32 decodeSingularUInt32Field = 237; - int32 decodeSingularUInt64Field = 238; - int32 decodeTextFormat = 239; - int32 defaultAnyTypeURLPrefix = 240; - int32 defaults = 241; - int32 defaultValue = 242; - int32 dependency = 243; - int32 deprecated = 244; - int32 deprecatedLegacyJsonFieldConflicts = 245; - int32 deprecationWarning = 246; - int32 description = 247; - int32 DescriptorProto = 248; - int32 Dictionary = 249; - int32 dictionaryLiteral = 250; - int32 digit = 251; - int32 digit0 = 252; - int32 digit1 = 253; - int32 digitCount = 254; - int32 digits = 255; - int32 digitValue = 256; - int32 discardableResult = 257; - int32 discardUnknownFields = 258; - int32 Double = 259; - int32 doubleValue = 260; - int32 Duration = 261; - int32 E = 262; - int32 edition = 263; - int32 EditionDefault = 264; - int32 editionDefaults = 265; - int32 editionDeprecated = 266; - int32 editionIntroduced = 267; - int32 editionRemoved = 268; - int32 Element = 269; - int32 elements = 270; - int32 emitExtensionFieldName = 271; - int32 emitFieldName = 272; - int32 emitFieldNumber = 273; - int32 Empty = 274; - int32 encodeAsBytes = 275; - int32 encoded = 276; - int32 encodedJSONString = 277; - int32 encodedSize = 278; - int32 encodeField = 279; - int32 encoder = 280; - int32 end = 281; - int32 endArray = 282; - int32 endMessageField = 283; - int32 endObject = 284; - int32 endRegularField = 285; - int32 enum = 286; - int32 EnumDescriptorProto = 287; - int32 EnumOptions = 288; - int32 EnumReservedRange = 289; - int32 enumType = 290; - int32 enumvalue = 291; - int32 EnumValueDescriptorProto = 292; - int32 EnumValueOptions = 293; - int32 Equatable = 294; - int32 Error = 295; - int32 ExpressibleByArrayLiteral = 296; - int32 ExpressibleByDictionaryLiteral = 297; - int32 ext = 298; - int32 extDecoder = 299; - int32 extendedGraphemeClusterLiteral = 300; - int32 ExtendedGraphemeClusterLiteralType = 301; - int32 extendee = 302; - int32 ExtensibleMessage = 303; - int32 extension = 304; - int32 ExtensionField = 305; - int32 extensionFieldNumber = 306; - int32 ExtensionFieldValueSet = 307; - int32 ExtensionMap = 308; - int32 extensionRange = 309; - int32 ExtensionRangeOptions = 310; - int32 extensions = 311; - int32 extras = 312; - int32 F = 313; - int32 false = 314; - int32 features = 315; - int32 FeatureSet = 316; - int32 FeatureSetDefaults = 317; - int32 FeatureSetEditionDefault = 318; - int32 featureSupport = 319; - int32 field = 320; - int32 fieldData = 321; - int32 FieldDescriptorProto = 322; - int32 FieldMask = 323; - int32 fieldName = 324; - int32 fieldNameCount = 325; - int32 fieldNum = 326; - int32 fieldNumber = 327; - int32 fieldNumberForProto = 328; - int32 FieldOptions = 329; - int32 fieldPresence = 330; - int32 fields = 331; - int32 fieldSize = 332; - int32 FieldTag = 333; - int32 fieldType = 334; - int32 file = 335; - int32 FileDescriptorProto = 336; - int32 FileDescriptorSet = 337; - int32 fileName = 338; - int32 FileOptions = 339; - int32 filter = 340; - int32 final = 341; - int32 finiteOnly = 342; - int32 first = 343; - int32 firstItem = 344; - int32 fixedFeatures = 345; - int32 Float = 346; - int32 floatLiteral = 347; - int32 FloatLiteralType = 348; - int32 FloatValue = 349; - int32 forMessageName = 350; - int32 formUnion = 351; - int32 forReadingFrom = 352; - int32 forTypeURL = 353; - int32 ForwardParser = 354; - int32 forWritingInto = 355; - int32 from = 356; - int32 fromAscii2 = 357; - int32 fromAscii4 = 358; - int32 fromByteOffset = 359; - int32 fromHexDigit = 360; - int32 fullName = 361; - int32 func = 362; - int32 function = 363; - int32 G = 364; - int32 GeneratedCodeInfo = 365; - int32 get = 366; - int32 getExtensionValue = 367; - int32 googleapis = 368; - int32 Google_Protobuf_Any = 369; - int32 Google_Protobuf_Api = 370; - int32 Google_Protobuf_BoolValue = 371; - int32 Google_Protobuf_BytesValue = 372; - int32 Google_Protobuf_DescriptorProto = 373; - int32 Google_Protobuf_DoubleValue = 374; - int32 Google_Protobuf_Duration = 375; - int32 Google_Protobuf_Edition = 376; - int32 Google_Protobuf_Empty = 377; - int32 Google_Protobuf_Enum = 378; - int32 Google_Protobuf_EnumDescriptorProto = 379; - int32 Google_Protobuf_EnumOptions = 380; - int32 Google_Protobuf_EnumValue = 381; - int32 Google_Protobuf_EnumValueDescriptorProto = 382; - int32 Google_Protobuf_EnumValueOptions = 383; - int32 Google_Protobuf_ExtensionRangeOptions = 384; - int32 Google_Protobuf_FeatureSet = 385; - int32 Google_Protobuf_FeatureSetDefaults = 386; - int32 Google_Protobuf_Field = 387; - int32 Google_Protobuf_FieldDescriptorProto = 388; - int32 Google_Protobuf_FieldMask = 389; - int32 Google_Protobuf_FieldOptions = 390; - int32 Google_Protobuf_FileDescriptorProto = 391; - int32 Google_Protobuf_FileDescriptorSet = 392; - int32 Google_Protobuf_FileOptions = 393; - int32 Google_Protobuf_FloatValue = 394; - int32 Google_Protobuf_GeneratedCodeInfo = 395; - int32 Google_Protobuf_Int32Value = 396; - int32 Google_Protobuf_Int64Value = 397; - int32 Google_Protobuf_ListValue = 398; - int32 Google_Protobuf_MessageOptions = 399; - int32 Google_Protobuf_Method = 400; - int32 Google_Protobuf_MethodDescriptorProto = 401; - int32 Google_Protobuf_MethodOptions = 402; - int32 Google_Protobuf_Mixin = 403; - int32 Google_Protobuf_NullValue = 404; - int32 Google_Protobuf_OneofDescriptorProto = 405; - int32 Google_Protobuf_OneofOptions = 406; - int32 Google_Protobuf_Option = 407; - int32 Google_Protobuf_ServiceDescriptorProto = 408; - int32 Google_Protobuf_ServiceOptions = 409; - int32 Google_Protobuf_SourceCodeInfo = 410; - int32 Google_Protobuf_SourceContext = 411; - int32 Google_Protobuf_StringValue = 412; - int32 Google_Protobuf_Struct = 413; - int32 Google_Protobuf_Syntax = 414; - int32 Google_Protobuf_Timestamp = 415; - int32 Google_Protobuf_Type = 416; - int32 Google_Protobuf_UInt32Value = 417; - int32 Google_Protobuf_UInt64Value = 418; - int32 Google_Protobuf_UninterpretedOption = 419; - int32 Google_Protobuf_Value = 420; - int32 goPackage = 421; - int32 group = 422; - int32 groupFieldNumberStack = 423; - int32 groupSize = 424; - int32 hadOneofValue = 425; - int32 handleConflictingOneOf = 426; - int32 hasAggregateValue = 427; - int32 hasAllowAlias = 428; - int32 hasBegin = 429; - int32 hasCcEnableArenas = 430; - int32 hasCcGenericServices = 431; - int32 hasClientStreaming = 432; - int32 hasCsharpNamespace = 433; - int32 hasCtype = 434; - int32 hasDebugRedact = 435; - int32 hasDefaultValue = 436; - int32 hasDeprecated = 437; - int32 hasDeprecatedLegacyJsonFieldConflicts = 438; - int32 hasDeprecationWarning = 439; - int32 hasDoubleValue = 440; - int32 hasEdition = 441; - int32 hasEditionDeprecated = 442; - int32 hasEditionIntroduced = 443; - int32 hasEditionRemoved = 444; - int32 hasEnd = 445; - int32 hasEnumType = 446; - int32 hasExtendee = 447; - int32 hasExtensionValue = 448; - int32 hasFeatures = 449; - int32 hasFeatureSupport = 450; - int32 hasFieldPresence = 451; - int32 hasFixedFeatures = 452; - int32 hasFullName = 453; - int32 hasGoPackage = 454; - int32 hash = 455; - int32 Hashable = 456; - int32 hasher = 457; - int32 HashVisitor = 458; - int32 hasIdempotencyLevel = 459; - int32 hasIdentifierValue = 460; - int32 hasInputType = 461; - int32 hasIsExtension = 462; - int32 hasJavaGenerateEqualsAndHash = 463; - int32 hasJavaGenericServices = 464; - int32 hasJavaMultipleFiles = 465; - int32 hasJavaOuterClassname = 466; - int32 hasJavaPackage = 467; - int32 hasJavaStringCheckUtf8 = 468; - int32 hasJsonFormat = 469; - int32 hasJsonName = 470; - int32 hasJstype = 471; - int32 hasLabel = 472; - int32 hasLazy = 473; - int32 hasLeadingComments = 474; - int32 hasMapEntry = 475; - int32 hasMaximumEdition = 476; - int32 hasMessageEncoding = 477; - int32 hasMessageSetWireFormat = 478; - int32 hasMinimumEdition = 479; - int32 hasName = 480; - int32 hasNamePart = 481; - int32 hasNegativeIntValue = 482; - int32 hasNoStandardDescriptorAccessor = 483; - int32 hasNumber = 484; - int32 hasObjcClassPrefix = 485; - int32 hasOneofIndex = 486; - int32 hasOptimizeFor = 487; - int32 hasOptions = 488; - int32 hasOutputType = 489; - int32 hasOverridableFeatures = 490; - int32 hasPackage = 491; - int32 hasPacked = 492; - int32 hasPhpClassPrefix = 493; - int32 hasPhpMetadataNamespace = 494; - int32 hasPhpNamespace = 495; - int32 hasPositiveIntValue = 496; - int32 hasProto3Optional = 497; - int32 hasPyGenericServices = 498; - int32 hasRepeated = 499; - int32 hasRepeatedFieldEncoding = 500; - int32 hasReserved = 501; - int32 hasRetention = 502; - int32 hasRubyPackage = 503; - int32 hasSemantic = 504; - int32 hasServerStreaming = 505; - int32 hasSourceCodeInfo = 506; - int32 hasSourceContext = 507; - int32 hasSourceFile = 508; - int32 hasStart = 509; - int32 hasStringValue = 510; - int32 hasSwiftPrefix = 511; - int32 hasSyntax = 512; - int32 hasTrailingComments = 513; - int32 hasType = 514; - int32 hasTypeName = 515; - int32 hasUnverifiedLazy = 516; - int32 hasUtf8Validation = 517; - int32 hasValue = 518; - int32 hasVerification = 519; - int32 hasWeak = 520; - int32 hour = 521; - int32 i = 522; - int32 idempotencyLevel = 523; - int32 identifierValue = 524; - int32 if = 525; - int32 ignoreUnknownExtensionFields = 526; - int32 ignoreUnknownFields = 527; - int32 index = 528; - int32 init = 529; - int32 inout = 530; - int32 inputType = 531; - int32 insert = 532; - int32 Int = 533; - int32 Int32 = 534; - int32 Int32Value = 535; - int32 Int64 = 536; - int32 Int64Value = 537; - int32 Int8 = 538; - int32 integerLiteral = 539; - int32 IntegerLiteralType = 540; - int32 intern = 541; - int32 Internal = 542; - int32 InternalState = 543; - int32 into = 544; - int32 ints = 545; - int32 isA = 546; - int32 isEqual = 547; - int32 isEqualTo = 548; - int32 isExtension = 549; - int32 isInitialized = 550; - int32 isNegative = 551; - int32 itemTagsEncodedSize = 552; - int32 iterator = 553; - int32 javaGenerateEqualsAndHash = 554; - int32 javaGenericServices = 555; - int32 javaMultipleFiles = 556; - int32 javaOuterClassname = 557; - int32 javaPackage = 558; - int32 javaStringCheckUtf8 = 559; - int32 JSONDecoder = 560; - int32 JSONDecodingError = 561; - int32 JSONDecodingOptions = 562; - int32 jsonEncoder = 563; - int32 JSONEncoding = 564; - int32 JSONEncodingError = 565; - int32 JSONEncodingOptions = 566; - int32 JSONEncodingVisitor = 567; - int32 jsonFormat = 568; - int32 JSONMapEncodingVisitor = 569; - int32 jsonName = 570; - int32 jsonPath = 571; - int32 jsonPaths = 572; - int32 JSONScanner = 573; - int32 jsonString = 574; - int32 jsonText = 575; - int32 jsonUTF8Bytes = 576; - int32 jsonUTF8Data = 577; - int32 jstype = 578; - int32 k = 579; - int32 kChunkSize = 580; - int32 Key = 581; - int32 keyField = 582; - int32 keyFieldOpt = 583; - int32 KeyType = 584; - int32 kind = 585; - int32 l = 586; - int32 label = 587; - int32 lazy = 588; - int32 leadingComments = 589; - int32 leadingDetachedComments = 590; - int32 length = 591; - int32 lessThan = 592; - int32 let = 593; - int32 lhs = 594; - int32 line = 595; - int32 list = 596; - int32 listOfMessages = 597; - int32 listValue = 598; - int32 littleEndian = 599; - int32 load = 600; - int32 localHasher = 601; - int32 location = 602; - int32 M = 603; - int32 major = 604; - int32 makeAsyncIterator = 605; - int32 makeIterator = 606; - int32 malformedLength = 607; - int32 mapEntry = 608; - int32 MapKeyType = 609; - int32 mapToMessages = 610; - int32 MapValueType = 611; - int32 mapVisitor = 612; - int32 maximumEdition = 613; - int32 mdayStart = 614; - int32 merge = 615; - int32 message = 616; - int32 messageDepthLimit = 617; - int32 messageEncoding = 618; - int32 MessageExtension = 619; - int32 MessageImplementationBase = 620; - int32 MessageOptions = 621; - int32 MessageSet = 622; - int32 messageSetWireFormat = 623; - int32 messageSize = 624; - int32 messageType = 625; - int32 Method = 626; - int32 MethodDescriptorProto = 627; - int32 MethodOptions = 628; - int32 methods = 629; - int32 min = 630; - int32 minimumEdition = 631; - int32 minor = 632; - int32 Mixin = 633; - int32 mixins = 634; - int32 modifier = 635; - int32 modify = 636; - int32 month = 637; - int32 msgExtension = 638; - int32 mutating = 639; - int32 n = 640; - int32 name = 641; - int32 NameDescription = 642; - int32 NameMap = 643; - int32 NamePart = 644; - int32 names = 645; - int32 nanos = 646; - int32 negativeIntValue = 647; - int32 nestedType = 648; - int32 newL = 649; - int32 newList = 650; - int32 newValue = 651; - int32 next = 652; - int32 nextByte = 653; - int32 nextFieldNumber = 654; - int32 nextVarInt = 655; - int32 nil = 656; - int32 nilLiteral = 657; - int32 noBytesAvailable = 658; - int32 noStandardDescriptorAccessor = 659; - int32 nullValue = 660; - int32 number = 661; - int32 numberValue = 662; - int32 objcClassPrefix = 663; - int32 of = 664; - int32 oneofDecl = 665; - int32 OneofDescriptorProto = 666; - int32 oneofIndex = 667; - int32 OneofOptions = 668; - int32 oneofs = 669; - int32 OneOf_Kind = 670; - int32 optimizeFor = 671; - int32 OptimizeMode = 672; - int32 Option = 673; - int32 OptionalEnumExtensionField = 674; - int32 OptionalExtensionField = 675; - int32 OptionalGroupExtensionField = 676; - int32 OptionalMessageExtensionField = 677; - int32 OptionRetention = 678; - int32 options = 679; - int32 OptionTargetType = 680; - int32 other = 681; - int32 others = 682; - int32 out = 683; - int32 outputType = 684; - int32 overridableFeatures = 685; - int32 p = 686; - int32 package = 687; - int32 packed = 688; - int32 PackedEnumExtensionField = 689; - int32 PackedExtensionField = 690; - int32 padding = 691; - int32 parent = 692; - int32 parse = 693; - int32 path = 694; - int32 paths = 695; - int32 payload = 696; - int32 payloadSize = 697; - int32 phpClassPrefix = 698; - int32 phpMetadataNamespace = 699; - int32 phpNamespace = 700; - int32 pos = 701; - int32 positiveIntValue = 702; - int32 prefix = 703; - int32 preserveProtoFieldNames = 704; - int32 preTraverse = 705; - int32 printUnknownFields = 706; - int32 proto2 = 707; - int32 proto3DefaultValue = 708; - int32 proto3Optional = 709; - int32 ProtobufAPIVersionCheck = 710; - int32 ProtobufAPIVersion_3 = 711; - int32 ProtobufBool = 712; - int32 ProtobufBytes = 713; - int32 ProtobufDouble = 714; - int32 ProtobufEnumMap = 715; - int32 protobufExtension = 716; - int32 ProtobufFixed32 = 717; - int32 ProtobufFixed64 = 718; - int32 ProtobufFloat = 719; - int32 ProtobufInt32 = 720; - int32 ProtobufInt64 = 721; - int32 ProtobufMap = 722; - int32 ProtobufMessageMap = 723; - int32 ProtobufSFixed32 = 724; - int32 ProtobufSFixed64 = 725; - int32 ProtobufSInt32 = 726; - int32 ProtobufSInt64 = 727; - int32 ProtobufString = 728; - int32 ProtobufUInt32 = 729; - int32 ProtobufUInt64 = 730; - int32 protobuf_extensionFieldValues = 731; - int32 protobuf_fieldNumber = 732; - int32 protobuf_generated_isEqualTo = 733; - int32 protobuf_nameMap = 734; - int32 protobuf_newField = 735; - int32 protobuf_package = 736; - int32 protocol = 737; - int32 protoFieldName = 738; - int32 protoMessageName = 739; - int32 ProtoNameProviding = 740; - int32 protoPaths = 741; - int32 public = 742; - int32 publicDependency = 743; - int32 putBoolValue = 744; - int32 putBytesValue = 745; - int32 putDoubleValue = 746; - int32 putEnumValue = 747; - int32 putFixedUInt32 = 748; - int32 putFixedUInt64 = 749; - int32 putFloatValue = 750; - int32 putInt64 = 751; - int32 putStringValue = 752; - int32 putUInt64 = 753; - int32 putUInt64Hex = 754; - int32 putVarInt = 755; - int32 putZigZagVarInt = 756; - int32 pyGenericServices = 757; - int32 R = 758; - int32 rawChars = 759; - int32 RawRepresentable = 760; - int32 RawValue = 761; - int32 read4HexDigits = 762; - int32 readBytes = 763; - int32 register = 764; - int32 repeated = 765; - int32 RepeatedEnumExtensionField = 766; - int32 RepeatedExtensionField = 767; - int32 repeatedFieldEncoding = 768; - int32 RepeatedGroupExtensionField = 769; - int32 RepeatedMessageExtensionField = 770; - int32 repeating = 771; - int32 requestStreaming = 772; - int32 requestTypeURL = 773; - int32 requiredSize = 774; - int32 responseStreaming = 775; - int32 responseTypeURL = 776; - int32 result = 777; - int32 retention = 778; - int32 rethrows = 779; - int32 return = 780; - int32 ReturnType = 781; - int32 revision = 782; - int32 rhs = 783; - int32 root = 784; - int32 rubyPackage = 785; - int32 s = 786; - int32 sawBackslash = 787; - int32 sawSection4Characters = 788; - int32 sawSection5Characters = 789; - int32 scan = 790; - int32 scanner = 791; - int32 seconds = 792; - int32 self = 793; - int32 semantic = 794; - int32 Sendable = 795; - int32 separator = 796; - int32 serialize = 797; - int32 serializedBytes = 798; - int32 serializedData = 799; - int32 serializedSize = 800; - int32 serverStreaming = 801; - int32 service = 802; - int32 ServiceDescriptorProto = 803; - int32 ServiceOptions = 804; - int32 set = 805; - int32 setExtensionValue = 806; - int32 shift = 807; - int32 SimpleExtensionMap = 808; - int32 size = 809; - int32 sizer = 810; - int32 source = 811; - int32 sourceCodeInfo = 812; - int32 sourceContext = 813; - int32 sourceEncoding = 814; - int32 sourceFile = 815; - int32 SourceLocation = 816; - int32 span = 817; - int32 split = 818; - int32 start = 819; - int32 startArray = 820; - int32 startArrayObject = 821; - int32 startField = 822; - int32 startIndex = 823; - int32 startMessageField = 824; - int32 startObject = 825; - int32 startRegularField = 826; - int32 state = 827; - int32 static = 828; - int32 StaticString = 829; - int32 storage = 830; - int32 String = 831; - int32 stringLiteral = 832; - int32 StringLiteralType = 833; - int32 stringResult = 834; - int32 stringValue = 835; - int32 struct = 836; - int32 structValue = 837; - int32 subDecoder = 838; - int32 subscript = 839; - int32 subVisitor = 840; - int32 Swift = 841; - int32 swiftPrefix = 842; - int32 SwiftProtobufContiguousBytes = 843; - int32 SwiftProtobufError = 844; - int32 syntax = 845; - int32 T = 846; - int32 tag = 847; - int32 targets = 848; - int32 terminator = 849; - int32 testDecoder = 850; - int32 text = 851; - int32 textDecoder = 852; - int32 TextFormatDecoder = 853; - int32 TextFormatDecodingError = 854; - int32 TextFormatDecodingOptions = 855; - int32 TextFormatEncodingOptions = 856; - int32 TextFormatEncodingVisitor = 857; - int32 textFormatString = 858; - int32 throwOrIgnore = 859; - int32 throws = 860; - int32 timeInterval = 861; - int32 timeIntervalSince1970 = 862; - int32 timeIntervalSinceReferenceDate = 863; - int32 Timestamp = 864; - int32 tooLarge = 865; - int32 total = 866; - int32 totalArrayDepth = 867; - int32 totalSize = 868; - int32 trailingComments = 869; - int32 traverse = 870; - int32 true = 871; - int32 try = 872; - int32 type = 873; - int32 typealias = 874; - int32 TypeEnum = 875; - int32 typeName = 876; - int32 typePrefix = 877; - int32 typeStart = 878; - int32 typeUnknown = 879; - int32 typeURL = 880; - int32 UInt32 = 881; - int32 UInt32Value = 882; - int32 UInt64 = 883; - int32 UInt64Value = 884; - int32 UInt8 = 885; - int32 unchecked = 886; - int32 unicodeScalarLiteral = 887; - int32 UnicodeScalarLiteralType = 888; - int32 unicodeScalars = 889; - int32 UnicodeScalarView = 890; - int32 uninterpretedOption = 891; - int32 union = 892; - int32 uniqueStorage = 893; - int32 unknown = 894; - int32 unknownFields = 895; - int32 UnknownStorage = 896; - int32 unpackTo = 897; - int32 unregisteredTypeURL = 898; - int32 UnsafeBufferPointer = 899; - int32 UnsafeMutablePointer = 900; - int32 UnsafeMutableRawBufferPointer = 901; - int32 UnsafeRawBufferPointer = 902; - int32 UnsafeRawPointer = 903; - int32 unverifiedLazy = 904; - int32 updatedOptions = 905; - int32 url = 906; - int32 useDeterministicOrdering = 907; - int32 utf8 = 908; - int32 utf8Ptr = 909; - int32 utf8ToDouble = 910; - int32 utf8Validation = 911; - int32 UTF8View = 912; - int32 v = 913; - int32 value = 914; - int32 valueField = 915; - int32 values = 916; - int32 ValueType = 917; - int32 var = 918; - int32 verification = 919; - int32 VerificationState = 920; - int32 Version = 921; - int32 versionString = 922; - int32 visitExtensionFields = 923; - int32 visitExtensionFieldsAsMessageSet = 924; - int32 visitMapField = 925; - int32 visitor = 926; - int32 visitPacked = 927; - int32 visitPackedBoolField = 928; - int32 visitPackedDoubleField = 929; - int32 visitPackedEnumField = 930; - int32 visitPackedFixed32Field = 931; - int32 visitPackedFixed64Field = 932; - int32 visitPackedFloatField = 933; - int32 visitPackedInt32Field = 934; - int32 visitPackedInt64Field = 935; - int32 visitPackedSFixed32Field = 936; - int32 visitPackedSFixed64Field = 937; - int32 visitPackedSInt32Field = 938; - int32 visitPackedSInt64Field = 939; - int32 visitPackedUInt32Field = 940; - int32 visitPackedUInt64Field = 941; - int32 visitRepeated = 942; - int32 visitRepeatedBoolField = 943; - int32 visitRepeatedBytesField = 944; - int32 visitRepeatedDoubleField = 945; - int32 visitRepeatedEnumField = 946; - int32 visitRepeatedFixed32Field = 947; - int32 visitRepeatedFixed64Field = 948; - int32 visitRepeatedFloatField = 949; - int32 visitRepeatedGroupField = 950; - int32 visitRepeatedInt32Field = 951; - int32 visitRepeatedInt64Field = 952; - int32 visitRepeatedMessageField = 953; - int32 visitRepeatedSFixed32Field = 954; - int32 visitRepeatedSFixed64Field = 955; - int32 visitRepeatedSInt32Field = 956; - int32 visitRepeatedSInt64Field = 957; - int32 visitRepeatedStringField = 958; - int32 visitRepeatedUInt32Field = 959; - int32 visitRepeatedUInt64Field = 960; - int32 visitSingular = 961; - int32 visitSingularBoolField = 962; - int32 visitSingularBytesField = 963; - int32 visitSingularDoubleField = 964; - int32 visitSingularEnumField = 965; - int32 visitSingularFixed32Field = 966; - int32 visitSingularFixed64Field = 967; - int32 visitSingularFloatField = 968; - int32 visitSingularGroupField = 969; - int32 visitSingularInt32Field = 970; - int32 visitSingularInt64Field = 971; - int32 visitSingularMessageField = 972; - int32 visitSingularSFixed32Field = 973; - int32 visitSingularSFixed64Field = 974; - int32 visitSingularSInt32Field = 975; - int32 visitSingularSInt64Field = 976; - int32 visitSingularStringField = 977; - int32 visitSingularUInt32Field = 978; - int32 visitSingularUInt64Field = 979; - int32 visitUnknown = 980; - int32 wasDecoded = 981; - int32 weak = 982; - int32 weakDependency = 983; - int32 where = 984; - int32 wireFormat = 985; - int32 with = 986; - int32 withUnsafeBytes = 987; - int32 withUnsafeMutableBytes = 988; - int32 work = 989; - int32 Wrapped = 990; - int32 WrappedType = 991; - int32 wrappedValue = 992; - int32 written = 993; - int32 yday = 994; + int32 AnyUnpackError = 12; + int32 Api = 13; + int32 appended = 14; + int32 appendUIntHex = 15; + int32 appendUnknown = 16; + int32 areAllInitialized = 17; + int32 Array = 18; + int32 arrayDepth = 19; + int32 arrayLiteral = 20; + int32 arraySeparator = 21; + int32 as = 22; + int32 asciiOpenCurlyBracket = 23; + int32 asciiZero = 24; + int32 async = 25; + int32 AsyncIterator = 26; + int32 AsyncIteratorProtocol = 27; + int32 AsyncMessageSequence = 28; + int32 available = 29; + int32 b = 30; + int32 Base = 31; + int32 base64Values = 32; + int32 baseAddress = 33; + int32 BaseType = 34; + int32 begin = 35; + int32 binary = 36; + int32 BinaryDecoder = 37; + int32 BinaryDecoding = 38; + int32 BinaryDecodingError = 39; + int32 BinaryDecodingOptions = 40; + int32 BinaryDelimited = 41; + int32 BinaryEncoder = 42; + int32 BinaryEncodingError = 43; + int32 BinaryEncodingMessageSetSizeVisitor = 44; + int32 BinaryEncodingMessageSetVisitor = 45; + int32 BinaryEncodingOptions = 46; + int32 BinaryEncodingSizeVisitor = 47; + int32 BinaryEncodingVisitor = 48; + int32 binaryOptions = 49; + int32 binaryProtobufDelimitedMessages = 50; + int32 BinaryStreamDecoding = 51; + int32 binaryStreamDecodingError = 52; + int32 bitPattern = 53; + int32 body = 54; + int32 Bool = 55; + int32 booleanLiteral = 56; + int32 BooleanLiteralType = 57; + int32 boolValue = 58; + int32 buffer = 59; + int32 bytes = 60; + int32 bytesInGroup = 61; + int32 bytesNeeded = 62; + int32 bytesRead = 63; + int32 BytesValue = 64; + int32 c = 65; + int32 capitalizeNext = 66; + int32 cardinality = 67; + int32 CaseIterable = 68; + int32 ccEnableArenas = 69; + int32 ccGenericServices = 70; + int32 Character = 71; + int32 chars = 72; + int32 chunk = 73; + int32 class = 74; + int32 clearAggregateValue = 75; + int32 clearAllowAlias = 76; + int32 clearBegin = 77; + int32 clearCcEnableArenas = 78; + int32 clearCcGenericServices = 79; + int32 clearClientStreaming = 80; + int32 clearCsharpNamespace = 81; + int32 clearCtype = 82; + int32 clearDebugRedact = 83; + int32 clearDefaultValue = 84; + int32 clearDeprecated = 85; + int32 clearDeprecatedLegacyJsonFieldConflicts = 86; + int32 clearDeprecationWarning = 87; + int32 clearDoubleValue = 88; + int32 clearEdition = 89; + int32 clearEditionDeprecated = 90; + int32 clearEditionIntroduced = 91; + int32 clearEditionRemoved = 92; + int32 clearEnd = 93; + int32 clearEnumType = 94; + int32 clearExtendee = 95; + int32 clearExtensionValue = 96; + int32 clearFeatures = 97; + int32 clearFeatureSupport = 98; + int32 clearFieldPresence = 99; + int32 clearFixedFeatures = 100; + int32 clearFullName = 101; + int32 clearGoPackage = 102; + int32 clearIdempotencyLevel = 103; + int32 clearIdentifierValue = 104; + int32 clearInputType = 105; + int32 clearIsExtension = 106; + int32 clearJavaGenerateEqualsAndHash = 107; + int32 clearJavaGenericServices = 108; + int32 clearJavaMultipleFiles = 109; + int32 clearJavaOuterClassname = 110; + int32 clearJavaPackage = 111; + int32 clearJavaStringCheckUtf8 = 112; + int32 clearJsonFormat = 113; + int32 clearJsonName = 114; + int32 clearJstype = 115; + int32 clearLabel = 116; + int32 clearLazy = 117; + int32 clearLeadingComments = 118; + int32 clearMapEntry = 119; + int32 clearMaximumEdition = 120; + int32 clearMessageEncoding = 121; + int32 clearMessageSetWireFormat = 122; + int32 clearMinimumEdition = 123; + int32 clearName = 124; + int32 clearNamePart = 125; + int32 clearNegativeIntValue = 126; + int32 clearNoStandardDescriptorAccessor = 127; + int32 clearNumber = 128; + int32 clearObjcClassPrefix = 129; + int32 clearOneofIndex = 130; + int32 clearOptimizeFor = 131; + int32 clearOptions = 132; + int32 clearOutputType = 133; + int32 clearOverridableFeatures = 134; + int32 clearPackage = 135; + int32 clearPacked = 136; + int32 clearPhpClassPrefix = 137; + int32 clearPhpMetadataNamespace = 138; + int32 clearPhpNamespace = 139; + int32 clearPositiveIntValue = 140; + int32 clearProto3Optional = 141; + int32 clearPyGenericServices = 142; + int32 clearRepeated = 143; + int32 clearRepeatedFieldEncoding = 144; + int32 clearReserved = 145; + int32 clearRetention = 146; + int32 clearRubyPackage = 147; + int32 clearSemantic = 148; + int32 clearServerStreaming = 149; + int32 clearSourceCodeInfo = 150; + int32 clearSourceContext = 151; + int32 clearSourceFile = 152; + int32 clearStart = 153; + int32 clearStringValue = 154; + int32 clearSwiftPrefix = 155; + int32 clearSyntax = 156; + int32 clearTrailingComments = 157; + int32 clearType = 158; + int32 clearTypeName = 159; + int32 clearUnverifiedLazy = 160; + int32 clearUtf8Validation = 161; + int32 clearValue = 162; + int32 clearVerification = 163; + int32 clearWeak = 164; + int32 clientStreaming = 165; + int32 code = 166; + int32 codePoint = 167; + int32 codeUnits = 168; + int32 Collection = 169; + int32 com = 170; + int32 comma = 171; + int32 consumedBytes = 172; + int32 contentsOf = 173; + int32 copy = 174; + int32 count = 175; + int32 countVarintsInBuffer = 176; + int32 csharpNamespace = 177; + int32 ctype = 178; + int32 customCodable = 179; + int32 CustomDebugStringConvertible = 180; + int32 CustomStringConvertible = 181; + int32 d = 182; + int32 Data = 183; + int32 dataResult = 184; + int32 date = 185; + int32 daySec = 186; + int32 daysSinceEpoch = 187; + int32 debugDescription = 188; + int32 debugRedact = 189; + int32 declaration = 190; + int32 decoded = 191; + int32 decodedFromJSONNull = 192; + int32 decodeExtensionField = 193; + int32 decodeExtensionFieldsAsMessageSet = 194; + int32 decodeJSON = 195; + int32 decodeMapField = 196; + int32 decodeMessage = 197; + int32 decoder = 198; + int32 decodeRepeated = 199; + int32 decodeRepeatedBoolField = 200; + int32 decodeRepeatedBytesField = 201; + int32 decodeRepeatedDoubleField = 202; + int32 decodeRepeatedEnumField = 203; + int32 decodeRepeatedFixed32Field = 204; + int32 decodeRepeatedFixed64Field = 205; + int32 decodeRepeatedFloatField = 206; + int32 decodeRepeatedGroupField = 207; + int32 decodeRepeatedInt32Field = 208; + int32 decodeRepeatedInt64Field = 209; + int32 decodeRepeatedMessageField = 210; + int32 decodeRepeatedSFixed32Field = 211; + int32 decodeRepeatedSFixed64Field = 212; + int32 decodeRepeatedSInt32Field = 213; + int32 decodeRepeatedSInt64Field = 214; + int32 decodeRepeatedStringField = 215; + int32 decodeRepeatedUInt32Field = 216; + int32 decodeRepeatedUInt64Field = 217; + int32 decodeSingular = 218; + int32 decodeSingularBoolField = 219; + int32 decodeSingularBytesField = 220; + int32 decodeSingularDoubleField = 221; + int32 decodeSingularEnumField = 222; + int32 decodeSingularFixed32Field = 223; + int32 decodeSingularFixed64Field = 224; + int32 decodeSingularFloatField = 225; + int32 decodeSingularGroupField = 226; + int32 decodeSingularInt32Field = 227; + int32 decodeSingularInt64Field = 228; + int32 decodeSingularMessageField = 229; + int32 decodeSingularSFixed32Field = 230; + int32 decodeSingularSFixed64Field = 231; + int32 decodeSingularSInt32Field = 232; + int32 decodeSingularSInt64Field = 233; + int32 decodeSingularStringField = 234; + int32 decodeSingularUInt32Field = 235; + int32 decodeSingularUInt64Field = 236; + int32 decodeTextFormat = 237; + int32 defaultAnyTypeURLPrefix = 238; + int32 defaults = 239; + int32 defaultValue = 240; + int32 dependency = 241; + int32 deprecated = 242; + int32 deprecatedLegacyJsonFieldConflicts = 243; + int32 deprecationWarning = 244; + int32 description = 245; + int32 DescriptorProto = 246; + int32 Dictionary = 247; + int32 dictionaryLiteral = 248; + int32 digit = 249; + int32 digit0 = 250; + int32 digit1 = 251; + int32 digitCount = 252; + int32 digits = 253; + int32 digitValue = 254; + int32 discardableResult = 255; + int32 discardUnknownFields = 256; + int32 Double = 257; + int32 doubleValue = 258; + int32 Duration = 259; + int32 E = 260; + int32 edition = 261; + int32 EditionDefault = 262; + int32 editionDefaults = 263; + int32 editionDeprecated = 264; + int32 editionIntroduced = 265; + int32 editionRemoved = 266; + int32 Element = 267; + int32 elements = 268; + int32 emitExtensionFieldName = 269; + int32 emitFieldName = 270; + int32 emitFieldNumber = 271; + int32 Empty = 272; + int32 encodeAsBytes = 273; + int32 encoded = 274; + int32 encodedJSONString = 275; + int32 encodedSize = 276; + int32 encodeField = 277; + int32 encoder = 278; + int32 end = 279; + int32 endArray = 280; + int32 endMessageField = 281; + int32 endObject = 282; + int32 endRegularField = 283; + int32 enum = 284; + int32 EnumDescriptorProto = 285; + int32 EnumOptions = 286; + int32 EnumReservedRange = 287; + int32 enumType = 288; + int32 enumvalue = 289; + int32 EnumValueDescriptorProto = 290; + int32 EnumValueOptions = 291; + int32 Equatable = 292; + int32 Error = 293; + int32 ExpressibleByArrayLiteral = 294; + int32 ExpressibleByDictionaryLiteral = 295; + int32 ext = 296; + int32 extDecoder = 297; + int32 extendedGraphemeClusterLiteral = 298; + int32 ExtendedGraphemeClusterLiteralType = 299; + int32 extendee = 300; + int32 ExtensibleMessage = 301; + int32 extension = 302; + int32 ExtensionField = 303; + int32 extensionFieldNumber = 304; + int32 ExtensionFieldValueSet = 305; + int32 ExtensionMap = 306; + int32 extensionRange = 307; + int32 ExtensionRangeOptions = 308; + int32 extensions = 309; + int32 extras = 310; + int32 F = 311; + int32 false = 312; + int32 features = 313; + int32 FeatureSet = 314; + int32 FeatureSetDefaults = 315; + int32 FeatureSetEditionDefault = 316; + int32 featureSupport = 317; + int32 field = 318; + int32 fieldData = 319; + int32 FieldDescriptorProto = 320; + int32 FieldMask = 321; + int32 fieldName = 322; + int32 fieldNameCount = 323; + int32 fieldNum = 324; + int32 fieldNumber = 325; + int32 fieldNumberForProto = 326; + int32 FieldOptions = 327; + int32 fieldPresence = 328; + int32 fields = 329; + int32 fieldSize = 330; + int32 FieldTag = 331; + int32 fieldType = 332; + int32 file = 333; + int32 FileDescriptorProto = 334; + int32 FileDescriptorSet = 335; + int32 fileName = 336; + int32 FileOptions = 337; + int32 filter = 338; + int32 final = 339; + int32 finiteOnly = 340; + int32 first = 341; + int32 firstItem = 342; + int32 fixedFeatures = 343; + int32 Float = 344; + int32 floatLiteral = 345; + int32 FloatLiteralType = 346; + int32 FloatValue = 347; + int32 forMessageName = 348; + int32 formUnion = 349; + int32 forReadingFrom = 350; + int32 forTypeURL = 351; + int32 ForwardParser = 352; + int32 forWritingInto = 353; + int32 from = 354; + int32 fromAscii2 = 355; + int32 fromAscii4 = 356; + int32 fromByteOffset = 357; + int32 fromHexDigit = 358; + int32 fullName = 359; + int32 func = 360; + int32 function = 361; + int32 G = 362; + int32 GeneratedCodeInfo = 363; + int32 get = 364; + int32 getExtensionValue = 365; + int32 googleapis = 366; + int32 Google_Protobuf_Any = 367; + int32 Google_Protobuf_Api = 368; + int32 Google_Protobuf_BoolValue = 369; + int32 Google_Protobuf_BytesValue = 370; + int32 Google_Protobuf_DescriptorProto = 371; + int32 Google_Protobuf_DoubleValue = 372; + int32 Google_Protobuf_Duration = 373; + int32 Google_Protobuf_Edition = 374; + int32 Google_Protobuf_Empty = 375; + int32 Google_Protobuf_Enum = 376; + int32 Google_Protobuf_EnumDescriptorProto = 377; + int32 Google_Protobuf_EnumOptions = 378; + int32 Google_Protobuf_EnumValue = 379; + int32 Google_Protobuf_EnumValueDescriptorProto = 380; + int32 Google_Protobuf_EnumValueOptions = 381; + int32 Google_Protobuf_ExtensionRangeOptions = 382; + int32 Google_Protobuf_FeatureSet = 383; + int32 Google_Protobuf_FeatureSetDefaults = 384; + int32 Google_Protobuf_Field = 385; + int32 Google_Protobuf_FieldDescriptorProto = 386; + int32 Google_Protobuf_FieldMask = 387; + int32 Google_Protobuf_FieldOptions = 388; + int32 Google_Protobuf_FileDescriptorProto = 389; + int32 Google_Protobuf_FileDescriptorSet = 390; + int32 Google_Protobuf_FileOptions = 391; + int32 Google_Protobuf_FloatValue = 392; + int32 Google_Protobuf_GeneratedCodeInfo = 393; + int32 Google_Protobuf_Int32Value = 394; + int32 Google_Protobuf_Int64Value = 395; + int32 Google_Protobuf_ListValue = 396; + int32 Google_Protobuf_MessageOptions = 397; + int32 Google_Protobuf_Method = 398; + int32 Google_Protobuf_MethodDescriptorProto = 399; + int32 Google_Protobuf_MethodOptions = 400; + int32 Google_Protobuf_Mixin = 401; + int32 Google_Protobuf_NullValue = 402; + int32 Google_Protobuf_OneofDescriptorProto = 403; + int32 Google_Protobuf_OneofOptions = 404; + int32 Google_Protobuf_Option = 405; + int32 Google_Protobuf_ServiceDescriptorProto = 406; + int32 Google_Protobuf_ServiceOptions = 407; + int32 Google_Protobuf_SourceCodeInfo = 408; + int32 Google_Protobuf_SourceContext = 409; + int32 Google_Protobuf_StringValue = 410; + int32 Google_Protobuf_Struct = 411; + int32 Google_Protobuf_Syntax = 412; + int32 Google_Protobuf_Timestamp = 413; + int32 Google_Protobuf_Type = 414; + int32 Google_Protobuf_UInt32Value = 415; + int32 Google_Protobuf_UInt64Value = 416; + int32 Google_Protobuf_UninterpretedOption = 417; + int32 Google_Protobuf_Value = 418; + int32 goPackage = 419; + int32 group = 420; + int32 groupFieldNumberStack = 421; + int32 groupSize = 422; + int32 hadOneofValue = 423; + int32 handleConflictingOneOf = 424; + int32 hasAggregateValue = 425; + int32 hasAllowAlias = 426; + int32 hasBegin = 427; + int32 hasCcEnableArenas = 428; + int32 hasCcGenericServices = 429; + int32 hasClientStreaming = 430; + int32 hasCsharpNamespace = 431; + int32 hasCtype = 432; + int32 hasDebugRedact = 433; + int32 hasDefaultValue = 434; + int32 hasDeprecated = 435; + int32 hasDeprecatedLegacyJsonFieldConflicts = 436; + int32 hasDeprecationWarning = 437; + int32 hasDoubleValue = 438; + int32 hasEdition = 439; + int32 hasEditionDeprecated = 440; + int32 hasEditionIntroduced = 441; + int32 hasEditionRemoved = 442; + int32 hasEnd = 443; + int32 hasEnumType = 444; + int32 hasExtendee = 445; + int32 hasExtensionValue = 446; + int32 hasFeatures = 447; + int32 hasFeatureSupport = 448; + int32 hasFieldPresence = 449; + int32 hasFixedFeatures = 450; + int32 hasFullName = 451; + int32 hasGoPackage = 452; + int32 hash = 453; + int32 Hashable = 454; + int32 hasher = 455; + int32 HashVisitor = 456; + int32 hasIdempotencyLevel = 457; + int32 hasIdentifierValue = 458; + int32 hasInputType = 459; + int32 hasIsExtension = 460; + int32 hasJavaGenerateEqualsAndHash = 461; + int32 hasJavaGenericServices = 462; + int32 hasJavaMultipleFiles = 463; + int32 hasJavaOuterClassname = 464; + int32 hasJavaPackage = 465; + int32 hasJavaStringCheckUtf8 = 466; + int32 hasJsonFormat = 467; + int32 hasJsonName = 468; + int32 hasJstype = 469; + int32 hasLabel = 470; + int32 hasLazy = 471; + int32 hasLeadingComments = 472; + int32 hasMapEntry = 473; + int32 hasMaximumEdition = 474; + int32 hasMessageEncoding = 475; + int32 hasMessageSetWireFormat = 476; + int32 hasMinimumEdition = 477; + int32 hasName = 478; + int32 hasNamePart = 479; + int32 hasNegativeIntValue = 480; + int32 hasNoStandardDescriptorAccessor = 481; + int32 hasNumber = 482; + int32 hasObjcClassPrefix = 483; + int32 hasOneofIndex = 484; + int32 hasOptimizeFor = 485; + int32 hasOptions = 486; + int32 hasOutputType = 487; + int32 hasOverridableFeatures = 488; + int32 hasPackage = 489; + int32 hasPacked = 490; + int32 hasPhpClassPrefix = 491; + int32 hasPhpMetadataNamespace = 492; + int32 hasPhpNamespace = 493; + int32 hasPositiveIntValue = 494; + int32 hasProto3Optional = 495; + int32 hasPyGenericServices = 496; + int32 hasRepeated = 497; + int32 hasRepeatedFieldEncoding = 498; + int32 hasReserved = 499; + int32 hasRetention = 500; + int32 hasRubyPackage = 501; + int32 hasSemantic = 502; + int32 hasServerStreaming = 503; + int32 hasSourceCodeInfo = 504; + int32 hasSourceContext = 505; + int32 hasSourceFile = 506; + int32 hasStart = 507; + int32 hasStringValue = 508; + int32 hasSwiftPrefix = 509; + int32 hasSyntax = 510; + int32 hasTrailingComments = 511; + int32 hasType = 512; + int32 hasTypeName = 513; + int32 hasUnverifiedLazy = 514; + int32 hasUtf8Validation = 515; + int32 hasValue = 516; + int32 hasVerification = 517; + int32 hasWeak = 518; + int32 hour = 519; + int32 i = 520; + int32 idempotencyLevel = 521; + int32 identifierValue = 522; + int32 if = 523; + int32 ignoreUnknownExtensionFields = 524; + int32 ignoreUnknownFields = 525; + int32 index = 526; + int32 init = 527; + int32 inout = 528; + int32 inputType = 529; + int32 insert = 530; + int32 Int = 531; + int32 Int32 = 532; + int32 Int32Value = 533; + int32 Int64 = 534; + int32 Int64Value = 535; + int32 Int8 = 536; + int32 integerLiteral = 537; + int32 IntegerLiteralType = 538; + int32 intern = 539; + int32 Internal = 540; + int32 InternalState = 541; + int32 into = 542; + int32 ints = 543; + int32 isA = 544; + int32 isEqual = 545; + int32 isEqualTo = 546; + int32 isExtension = 547; + int32 isInitialized = 548; + int32 isNegative = 549; + int32 itemTagsEncodedSize = 550; + int32 iterator = 551; + int32 javaGenerateEqualsAndHash = 552; + int32 javaGenericServices = 553; + int32 javaMultipleFiles = 554; + int32 javaOuterClassname = 555; + int32 javaPackage = 556; + int32 javaStringCheckUtf8 = 557; + int32 JSONDecoder = 558; + int32 JSONDecodingError = 559; + int32 JSONDecodingOptions = 560; + int32 jsonEncoder = 561; + int32 JSONEncodingError = 562; + int32 JSONEncodingOptions = 563; + int32 JSONEncodingVisitor = 564; + int32 jsonFormat = 565; + int32 JSONMapEncodingVisitor = 566; + int32 jsonName = 567; + int32 jsonPath = 568; + int32 jsonPaths = 569; + int32 JSONScanner = 570; + int32 jsonString = 571; + int32 jsonText = 572; + int32 jsonUTF8Bytes = 573; + int32 jsonUTF8Data = 574; + int32 jstype = 575; + int32 k = 576; + int32 kChunkSize = 577; + int32 Key = 578; + int32 keyField = 579; + int32 keyFieldOpt = 580; + int32 KeyType = 581; + int32 kind = 582; + int32 l = 583; + int32 label = 584; + int32 lazy = 585; + int32 leadingComments = 586; + int32 leadingDetachedComments = 587; + int32 length = 588; + int32 lessThan = 589; + int32 let = 590; + int32 lhs = 591; + int32 line = 592; + int32 list = 593; + int32 listOfMessages = 594; + int32 listValue = 595; + int32 littleEndian = 596; + int32 load = 597; + int32 localHasher = 598; + int32 location = 599; + int32 M = 600; + int32 major = 601; + int32 makeAsyncIterator = 602; + int32 makeIterator = 603; + int32 malformedLength = 604; + int32 mapEntry = 605; + int32 MapKeyType = 606; + int32 mapToMessages = 607; + int32 MapValueType = 608; + int32 mapVisitor = 609; + int32 maximumEdition = 610; + int32 mdayStart = 611; + int32 merge = 612; + int32 message = 613; + int32 messageDepthLimit = 614; + int32 messageEncoding = 615; + int32 MessageExtension = 616; + int32 MessageImplementationBase = 617; + int32 MessageOptions = 618; + int32 MessageSet = 619; + int32 messageSetWireFormat = 620; + int32 messageSize = 621; + int32 messageType = 622; + int32 Method = 623; + int32 MethodDescriptorProto = 624; + int32 MethodOptions = 625; + int32 methods = 626; + int32 min = 627; + int32 minimumEdition = 628; + int32 minor = 629; + int32 Mixin = 630; + int32 mixins = 631; + int32 modifier = 632; + int32 modify = 633; + int32 month = 634; + int32 msgExtension = 635; + int32 mutating = 636; + int32 n = 637; + int32 name = 638; + int32 NameDescription = 639; + int32 NameMap = 640; + int32 NamePart = 641; + int32 names = 642; + int32 nanos = 643; + int32 negativeIntValue = 644; + int32 nestedType = 645; + int32 newL = 646; + int32 newList = 647; + int32 newValue = 648; + int32 next = 649; + int32 nextByte = 650; + int32 nextFieldNumber = 651; + int32 nextVarInt = 652; + int32 nil = 653; + int32 nilLiteral = 654; + int32 noBytesAvailable = 655; + int32 noStandardDescriptorAccessor = 656; + int32 nullValue = 657; + int32 number = 658; + int32 numberValue = 659; + int32 objcClassPrefix = 660; + int32 of = 661; + int32 oneofDecl = 662; + int32 OneofDescriptorProto = 663; + int32 oneofIndex = 664; + int32 OneofOptions = 665; + int32 oneofs = 666; + int32 OneOf_Kind = 667; + int32 optimizeFor = 668; + int32 OptimizeMode = 669; + int32 Option = 670; + int32 OptionalEnumExtensionField = 671; + int32 OptionalExtensionField = 672; + int32 OptionalGroupExtensionField = 673; + int32 OptionalMessageExtensionField = 674; + int32 OptionRetention = 675; + int32 options = 676; + int32 OptionTargetType = 677; + int32 other = 678; + int32 others = 679; + int32 out = 680; + int32 outputType = 681; + int32 overridableFeatures = 682; + int32 p = 683; + int32 package = 684; + int32 packed = 685; + int32 PackedEnumExtensionField = 686; + int32 PackedExtensionField = 687; + int32 padding = 688; + int32 parent = 689; + int32 parse = 690; + int32 path = 691; + int32 paths = 692; + int32 payload = 693; + int32 payloadSize = 694; + int32 phpClassPrefix = 695; + int32 phpMetadataNamespace = 696; + int32 phpNamespace = 697; + int32 pos = 698; + int32 positiveIntValue = 699; + int32 prefix = 700; + int32 preserveProtoFieldNames = 701; + int32 preTraverse = 702; + int32 printUnknownFields = 703; + int32 proto2 = 704; + int32 proto3DefaultValue = 705; + int32 proto3Optional = 706; + int32 ProtobufAPIVersionCheck = 707; + int32 ProtobufAPIVersion_3 = 708; + int32 ProtobufBool = 709; + int32 ProtobufBytes = 710; + int32 ProtobufDouble = 711; + int32 ProtobufEnumMap = 712; + int32 protobufExtension = 713; + int32 ProtobufFixed32 = 714; + int32 ProtobufFixed64 = 715; + int32 ProtobufFloat = 716; + int32 ProtobufInt32 = 717; + int32 ProtobufInt64 = 718; + int32 ProtobufMap = 719; + int32 ProtobufMessageMap = 720; + int32 ProtobufSFixed32 = 721; + int32 ProtobufSFixed64 = 722; + int32 ProtobufSInt32 = 723; + int32 ProtobufSInt64 = 724; + int32 ProtobufString = 725; + int32 ProtobufUInt32 = 726; + int32 ProtobufUInt64 = 727; + int32 protobuf_extensionFieldValues = 728; + int32 protobuf_fieldNumber = 729; + int32 protobuf_generated_isEqualTo = 730; + int32 protobuf_nameMap = 731; + int32 protobuf_newField = 732; + int32 protobuf_package = 733; + int32 protocol = 734; + int32 protoFieldName = 735; + int32 protoMessageName = 736; + int32 ProtoNameProviding = 737; + int32 protoPaths = 738; + int32 public = 739; + int32 publicDependency = 740; + int32 putBoolValue = 741; + int32 putBytesValue = 742; + int32 putDoubleValue = 743; + int32 putEnumValue = 744; + int32 putFixedUInt32 = 745; + int32 putFixedUInt64 = 746; + int32 putFloatValue = 747; + int32 putInt64 = 748; + int32 putStringValue = 749; + int32 putUInt64 = 750; + int32 putUInt64Hex = 751; + int32 putVarInt = 752; + int32 putZigZagVarInt = 753; + int32 pyGenericServices = 754; + int32 R = 755; + int32 rawChars = 756; + int32 RawRepresentable = 757; + int32 RawValue = 758; + int32 read4HexDigits = 759; + int32 readBytes = 760; + int32 register = 761; + int32 repeated = 762; + int32 RepeatedEnumExtensionField = 763; + int32 RepeatedExtensionField = 764; + int32 repeatedFieldEncoding = 765; + int32 RepeatedGroupExtensionField = 766; + int32 RepeatedMessageExtensionField = 767; + int32 repeating = 768; + int32 requestStreaming = 769; + int32 requestTypeURL = 770; + int32 requiredSize = 771; + int32 responseStreaming = 772; + int32 responseTypeURL = 773; + int32 result = 774; + int32 retention = 775; + int32 rethrows = 776; + int32 return = 777; + int32 ReturnType = 778; + int32 revision = 779; + int32 rhs = 780; + int32 root = 781; + int32 rubyPackage = 782; + int32 s = 783; + int32 sawBackslash = 784; + int32 sawSection4Characters = 785; + int32 sawSection5Characters = 786; + int32 scan = 787; + int32 scanner = 788; + int32 seconds = 789; + int32 self = 790; + int32 semantic = 791; + int32 Sendable = 792; + int32 separator = 793; + int32 serialize = 794; + int32 serializedBytes = 795; + int32 serializedData = 796; + int32 serializedSize = 797; + int32 serverStreaming = 798; + int32 service = 799; + int32 ServiceDescriptorProto = 800; + int32 ServiceOptions = 801; + int32 set = 802; + int32 setExtensionValue = 803; + int32 shift = 804; + int32 SimpleExtensionMap = 805; + int32 size = 806; + int32 sizer = 807; + int32 source = 808; + int32 sourceCodeInfo = 809; + int32 sourceContext = 810; + int32 sourceEncoding = 811; + int32 sourceFile = 812; + int32 SourceLocation = 813; + int32 span = 814; + int32 split = 815; + int32 start = 816; + int32 startArray = 817; + int32 startArrayObject = 818; + int32 startField = 819; + int32 startIndex = 820; + int32 startMessageField = 821; + int32 startObject = 822; + int32 startRegularField = 823; + int32 state = 824; + int32 static = 825; + int32 StaticString = 826; + int32 storage = 827; + int32 String = 828; + int32 stringLiteral = 829; + int32 StringLiteralType = 830; + int32 stringResult = 831; + int32 stringValue = 832; + int32 struct = 833; + int32 structValue = 834; + int32 subDecoder = 835; + int32 subscript = 836; + int32 subVisitor = 837; + int32 Swift = 838; + int32 swiftPrefix = 839; + int32 SwiftProtobufContiguousBytes = 840; + int32 SwiftProtobufError = 841; + int32 syntax = 842; + int32 T = 843; + int32 tag = 844; + int32 targets = 845; + int32 terminator = 846; + int32 testDecoder = 847; + int32 text = 848; + int32 textDecoder = 849; + int32 TextFormatDecoder = 850; + int32 TextFormatDecodingError = 851; + int32 TextFormatDecodingOptions = 852; + int32 TextFormatEncodingOptions = 853; + int32 TextFormatEncodingVisitor = 854; + int32 textFormatString = 855; + int32 throwOrIgnore = 856; + int32 throws = 857; + int32 timeInterval = 858; + int32 timeIntervalSince1970 = 859; + int32 timeIntervalSinceReferenceDate = 860; + int32 Timestamp = 861; + int32 tooLarge = 862; + int32 total = 863; + int32 totalArrayDepth = 864; + int32 totalSize = 865; + int32 trailingComments = 866; + int32 traverse = 867; + int32 true = 868; + int32 try = 869; + int32 type = 870; + int32 typealias = 871; + int32 TypeEnum = 872; + int32 typeName = 873; + int32 typePrefix = 874; + int32 typeStart = 875; + int32 typeUnknown = 876; + int32 typeURL = 877; + int32 UInt32 = 878; + int32 UInt32Value = 879; + int32 UInt64 = 880; + int32 UInt64Value = 881; + int32 UInt8 = 882; + int32 unchecked = 883; + int32 unicodeScalarLiteral = 884; + int32 UnicodeScalarLiteralType = 885; + int32 unicodeScalars = 886; + int32 UnicodeScalarView = 887; + int32 uninterpretedOption = 888; + int32 union = 889; + int32 uniqueStorage = 890; + int32 unknown = 891; + int32 unknownFields = 892; + int32 UnknownStorage = 893; + int32 unpackTo = 894; + int32 UnsafeBufferPointer = 895; + int32 UnsafeMutablePointer = 896; + int32 UnsafeMutableRawBufferPointer = 897; + int32 UnsafeRawBufferPointer = 898; + int32 UnsafeRawPointer = 899; + int32 unverifiedLazy = 900; + int32 updatedOptions = 901; + int32 url = 902; + int32 useDeterministicOrdering = 903; + int32 utf8 = 904; + int32 utf8Ptr = 905; + int32 utf8ToDouble = 906; + int32 utf8Validation = 907; + int32 UTF8View = 908; + int32 v = 909; + int32 value = 910; + int32 valueField = 911; + int32 values = 912; + int32 ValueType = 913; + int32 var = 914; + int32 verification = 915; + int32 VerificationState = 916; + int32 Version = 917; + int32 versionString = 918; + int32 visitExtensionFields = 919; + int32 visitExtensionFieldsAsMessageSet = 920; + int32 visitMapField = 921; + int32 visitor = 922; + int32 visitPacked = 923; + int32 visitPackedBoolField = 924; + int32 visitPackedDoubleField = 925; + int32 visitPackedEnumField = 926; + int32 visitPackedFixed32Field = 927; + int32 visitPackedFixed64Field = 928; + int32 visitPackedFloatField = 929; + int32 visitPackedInt32Field = 930; + int32 visitPackedInt64Field = 931; + int32 visitPackedSFixed32Field = 932; + int32 visitPackedSFixed64Field = 933; + int32 visitPackedSInt32Field = 934; + int32 visitPackedSInt64Field = 935; + int32 visitPackedUInt32Field = 936; + int32 visitPackedUInt64Field = 937; + int32 visitRepeated = 938; + int32 visitRepeatedBoolField = 939; + int32 visitRepeatedBytesField = 940; + int32 visitRepeatedDoubleField = 941; + int32 visitRepeatedEnumField = 942; + int32 visitRepeatedFixed32Field = 943; + int32 visitRepeatedFixed64Field = 944; + int32 visitRepeatedFloatField = 945; + int32 visitRepeatedGroupField = 946; + int32 visitRepeatedInt32Field = 947; + int32 visitRepeatedInt64Field = 948; + int32 visitRepeatedMessageField = 949; + int32 visitRepeatedSFixed32Field = 950; + int32 visitRepeatedSFixed64Field = 951; + int32 visitRepeatedSInt32Field = 952; + int32 visitRepeatedSInt64Field = 953; + int32 visitRepeatedStringField = 954; + int32 visitRepeatedUInt32Field = 955; + int32 visitRepeatedUInt64Field = 956; + int32 visitSingular = 957; + int32 visitSingularBoolField = 958; + int32 visitSingularBytesField = 959; + int32 visitSingularDoubleField = 960; + int32 visitSingularEnumField = 961; + int32 visitSingularFixed32Field = 962; + int32 visitSingularFixed64Field = 963; + int32 visitSingularFloatField = 964; + int32 visitSingularGroupField = 965; + int32 visitSingularInt32Field = 966; + int32 visitSingularInt64Field = 967; + int32 visitSingularMessageField = 968; + int32 visitSingularSFixed32Field = 969; + int32 visitSingularSFixed64Field = 970; + int32 visitSingularSInt32Field = 971; + int32 visitSingularSInt64Field = 972; + int32 visitSingularStringField = 973; + int32 visitSingularUInt32Field = 974; + int32 visitSingularUInt64Field = 975; + int32 visitUnknown = 976; + int32 wasDecoded = 977; + int32 weak = 978; + int32 weakDependency = 979; + int32 where = 980; + int32 wireFormat = 981; + int32 with = 982; + int32 withUnsafeBytes = 983; + int32 withUnsafeMutableBytes = 984; + int32 work = 985; + int32 Wrapped = 986; + int32 WrappedType = 987; + int32 wrappedValue = 988; + int32 written = 989; + int32 yday = 990; } diff --git a/Protos/SwiftProtobufTests/generated_swift_names_messages.proto b/Protos/SwiftProtobufTests/generated_swift_names_messages.proto index 006e911cd..60c7a4530 100644 --- a/Protos/SwiftProtobufTests/generated_swift_names_messages.proto +++ b/Protos/SwiftProtobufTests/generated_swift_names_messages.proto @@ -15,7 +15,6 @@ message GeneratedSwiftReservedMessages { message AnyExtensionField { int32 AnyExtensionField = 1; } message AnyMessageExtension { int32 AnyMessageExtension = 1; } message AnyMessageStorage { int32 AnyMessageStorage = 1; } - message anyTypeURLNotRegistered { int32 anyTypeURLNotRegistered = 1; } message AnyUnpackError { int32 AnyUnpackError = 1; } message Api { int32 Api = 1; } message appended { int32 appended = 1; } @@ -47,7 +46,6 @@ message GeneratedSwiftReservedMessages { message BinaryDecodingOptions { int32 BinaryDecodingOptions = 1; } message BinaryDelimited { int32 BinaryDelimited = 1; } message BinaryEncoder { int32 BinaryEncoder = 1; } - message BinaryEncoding { int32 BinaryEncoding = 1; } message BinaryEncodingError { int32 BinaryEncodingError = 1; } message BinaryEncodingMessageSetSizeVisitor { int32 BinaryEncodingMessageSetSizeVisitor = 1; } message BinaryEncodingMessageSetVisitor { int32 BinaryEncodingMessageSetVisitor = 1; } @@ -567,7 +565,6 @@ message GeneratedSwiftReservedMessages { message JSONDecodingError { int32 JSONDecodingError = 1; } message JSONDecodingOptions { int32 JSONDecodingOptions = 1; } message jsonEncoder { int32 jsonEncoder = 1; } - message JSONEncoding { int32 JSONEncoding = 1; } message JSONEncodingError { int32 JSONEncodingError = 1; } message JSONEncodingOptions { int32 JSONEncodingOptions = 1; } message JSONEncodingVisitor { int32 JSONEncodingVisitor = 1; } @@ -901,7 +898,6 @@ message GeneratedSwiftReservedMessages { message unknownFields { int32 unknownFields = 1; } message UnknownStorage { int32 UnknownStorage = 1; } message unpackTo { int32 unpackTo = 1; } - message unregisteredTypeURL { int32 unregisteredTypeURL = 1; } message UnsafeBufferPointer { int32 UnsafeBufferPointer = 1; } message UnsafeMutablePointer { int32 UnsafeMutablePointer = 1; } message UnsafeMutableRawBufferPointer { int32 UnsafeMutableRawBufferPointer = 1; } diff --git a/Reference/SwiftProtobufTests/generated_swift_names_enum_cases.pb.swift b/Reference/SwiftProtobufTests/generated_swift_names_enum_cases.pb.swift index a05747e62..30b0ebb4a 100644 --- a/Reference/SwiftProtobufTests/generated_swift_names_enum_cases.pb.swift +++ b/Reference/SwiftProtobufTests/generated_swift_names_enum_cases.pb.swift @@ -38,989 +38,985 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, case anyExtensionField // = 9 case anyMessageExtension // = 10 case anyMessageStorage // = 11 - case anyTypeUrlnotRegistered // = 12 - case anyUnpackError // = 13 - case api // = 14 - case appended // = 15 - case appendUintHex // = 16 - case appendUnknown // = 17 - case areAllInitialized // = 18 - case array // = 19 - case arrayDepth // = 20 - case arrayLiteral // = 21 - case arraySeparator // = 22 - case `as` // = 23 - case asciiOpenCurlyBracket // = 24 - case asciiZero // = 25 - case async // = 26 - case asyncIterator // = 27 - case asyncIteratorProtocol // = 28 - case asyncMessageSequence // = 29 - case available // = 30 - case b // = 31 - case base // = 32 - case base64Values // = 33 - case baseAddress // = 34 - case baseType // = 35 - case begin // = 36 - case binary // = 37 - case binaryDecoder // = 38 - case binaryDecoding // = 39 - case binaryDecodingError // = 40 - case binaryDecodingOptions // = 41 - case binaryDelimited // = 42 - case binaryEncoder // = 43 - case binaryEncoding // = 44 - case binaryEncodingError // = 45 - case binaryEncodingMessageSetSizeVisitor // = 46 - case binaryEncodingMessageSetVisitor // = 47 - case binaryEncodingOptions // = 48 - case binaryEncodingSizeVisitor // = 49 - case binaryEncodingVisitor // = 50 - case binaryOptions // = 51 - case binaryProtobufDelimitedMessages // = 52 - case binaryStreamDecoding // = 53 - case binaryStreamDecodingError // = 54 - case bitPattern // = 55 - case body // = 56 - case bool // = 57 - case booleanLiteral // = 58 - case booleanLiteralType // = 59 - case boolValue // = 60 - case buffer // = 61 - case bytes // = 62 - case bytesInGroup // = 63 - case bytesNeeded // = 64 - case bytesRead // = 65 - case bytesValue // = 66 - case c // = 67 - case capitalizeNext // = 68 - case cardinality // = 69 - case caseIterable // = 70 - case ccEnableArenas // = 71 - case ccGenericServices // = 72 - case character // = 73 - case chars // = 74 - case chunk // = 75 - case `class` // = 76 - case clearAggregateValue // = 77 - case clearAllowAlias // = 78 - case clearBegin // = 79 - case clearCcEnableArenas // = 80 - case clearCcGenericServices // = 81 - case clearClientStreaming // = 82 - case clearCsharpNamespace // = 83 - case clearCtype // = 84 - case clearDebugRedact // = 85 - case clearDefaultValue // = 86 - case clearDeprecated // = 87 - case clearDeprecatedLegacyJsonFieldConflicts // = 88 - case clearDeprecationWarning // = 89 - case clearDoubleValue // = 90 - case clearEdition // = 91 - case clearEditionDeprecated // = 92 - case clearEditionIntroduced // = 93 - case clearEditionRemoved // = 94 - case clearEnd // = 95 - case clearEnumType // = 96 - case clearExtendee // = 97 - case clearExtensionValue // = 98 - case clearFeatures // = 99 - case clearFeatureSupport // = 100 - case clearFieldPresence // = 101 - case clearFixedFeatures // = 102 - case clearFullName // = 103 - case clearGoPackage // = 104 - case clearIdempotencyLevel // = 105 - case clearIdentifierValue // = 106 - case clearInputType // = 107 - case clearIsExtension // = 108 - case clearJavaGenerateEqualsAndHash // = 109 - case clearJavaGenericServices // = 110 - case clearJavaMultipleFiles // = 111 - case clearJavaOuterClassname // = 112 - case clearJavaPackage // = 113 - case clearJavaStringCheckUtf8 // = 114 - case clearJsonFormat // = 115 - case clearJsonName // = 116 - case clearJstype // = 117 - case clearLabel // = 118 - case clearLazy // = 119 - case clearLeadingComments // = 120 - case clearMapEntry // = 121 - case clearMaximumEdition // = 122 - case clearMessageEncoding // = 123 - case clearMessageSetWireFormat // = 124 - case clearMinimumEdition // = 125 - case clearName // = 126 - case clearNamePart // = 127 - case clearNegativeIntValue // = 128 - case clearNoStandardDescriptorAccessor // = 129 - case clearNumber // = 130 - case clearObjcClassPrefix // = 131 - case clearOneofIndex // = 132 - case clearOptimizeFor // = 133 - case clearOptions // = 134 - case clearOutputType // = 135 - case clearOverridableFeatures // = 136 - case clearPackage // = 137 - case clearPacked // = 138 - case clearPhpClassPrefix // = 139 - case clearPhpMetadataNamespace // = 140 - case clearPhpNamespace // = 141 - case clearPositiveIntValue // = 142 - case clearProto3Optional // = 143 - case clearPyGenericServices // = 144 - case clearRepeated // = 145 - case clearRepeatedFieldEncoding // = 146 - case clearReserved // = 147 - case clearRetention // = 148 - case clearRubyPackage // = 149 - case clearSemantic // = 150 - case clearServerStreaming // = 151 - case clearSourceCodeInfo // = 152 - case clearSourceContext // = 153 - case clearSourceFile // = 154 - case clearStart // = 155 - case clearStringValue // = 156 - case clearSwiftPrefix // = 157 - case clearSyntax // = 158 - case clearTrailingComments // = 159 - case clearType // = 160 - case clearTypeName // = 161 - case clearUnverifiedLazy // = 162 - case clearUtf8Validation // = 163 - case clearValue // = 164 - case clearVerification // = 165 - case clearWeak // = 166 - case clientStreaming // = 167 - case code // = 168 - case codePoint // = 169 - case codeUnits // = 170 - case collection // = 171 - case com // = 172 - case comma // = 173 - case consumedBytes // = 174 - case contentsOf // = 175 - case copy // = 176 - case count // = 177 - case countVarintsInBuffer // = 178 - case csharpNamespace // = 179 - case ctype // = 180 - case customCodable // = 181 - case customDebugStringConvertible // = 182 - case customStringConvertible // = 183 - case d // = 184 - case data // = 185 - case dataResult // = 186 - case date // = 187 - case daySec // = 188 - case daysSinceEpoch // = 189 - case debugDescription_ // = 190 - case debugRedact // = 191 - case declaration // = 192 - case decoded // = 193 - case decodedFromJsonnull // = 194 - case decodeExtensionField // = 195 - case decodeExtensionFieldsAsMessageSet // = 196 - case decodeJson // = 197 - case decodeMapField // = 198 - case decodeMessage // = 199 - case decoder // = 200 - case decodeRepeated // = 201 - case decodeRepeatedBoolField // = 202 - case decodeRepeatedBytesField // = 203 - case decodeRepeatedDoubleField // = 204 - case decodeRepeatedEnumField // = 205 - case decodeRepeatedFixed32Field // = 206 - case decodeRepeatedFixed64Field // = 207 - case decodeRepeatedFloatField // = 208 - case decodeRepeatedGroupField // = 209 - case decodeRepeatedInt32Field // = 210 - case decodeRepeatedInt64Field // = 211 - case decodeRepeatedMessageField // = 212 - case decodeRepeatedSfixed32Field // = 213 - case decodeRepeatedSfixed64Field // = 214 - case decodeRepeatedSint32Field // = 215 - case decodeRepeatedSint64Field // = 216 - case decodeRepeatedStringField // = 217 - case decodeRepeatedUint32Field // = 218 - case decodeRepeatedUint64Field // = 219 - case decodeSingular // = 220 - case decodeSingularBoolField // = 221 - case decodeSingularBytesField // = 222 - case decodeSingularDoubleField // = 223 - case decodeSingularEnumField // = 224 - case decodeSingularFixed32Field // = 225 - case decodeSingularFixed64Field // = 226 - case decodeSingularFloatField // = 227 - case decodeSingularGroupField // = 228 - case decodeSingularInt32Field // = 229 - case decodeSingularInt64Field // = 230 - case decodeSingularMessageField // = 231 - case decodeSingularSfixed32Field // = 232 - case decodeSingularSfixed64Field // = 233 - case decodeSingularSint32Field // = 234 - case decodeSingularSint64Field // = 235 - case decodeSingularStringField // = 236 - case decodeSingularUint32Field // = 237 - case decodeSingularUint64Field // = 238 - case decodeTextFormat // = 239 - case defaultAnyTypeUrlprefix // = 240 - case defaults // = 241 - case defaultValue // = 242 - case dependency // = 243 - case deprecated // = 244 - case deprecatedLegacyJsonFieldConflicts // = 245 - case deprecationWarning // = 246 - case description_ // = 247 - case descriptorProto // = 248 - case dictionary // = 249 - case dictionaryLiteral // = 250 - case digit // = 251 - case digit0 // = 252 - case digit1 // = 253 - case digitCount // = 254 - case digits // = 255 - case digitValue // = 256 - case discardableResult // = 257 - case discardUnknownFields // = 258 - case double // = 259 - case doubleValue // = 260 - case duration // = 261 - case e // = 262 - case edition // = 263 - case editionDefault // = 264 - case editionDefaults // = 265 - case editionDeprecated // = 266 - case editionIntroduced // = 267 - case editionRemoved // = 268 - case element // = 269 - case elements // = 270 - case emitExtensionFieldName // = 271 - case emitFieldName // = 272 - case emitFieldNumber // = 273 - case empty // = 274 - case encodeAsBytes // = 275 - case encoded // = 276 - case encodedJsonstring // = 277 - case encodedSize // = 278 - case encodeField // = 279 - case encoder // = 280 - case end // = 281 - case endArray // = 282 - case endMessageField // = 283 - case endObject // = 284 - case endRegularField // = 285 - case `enum` // = 286 - case enumDescriptorProto // = 287 - case enumOptions // = 288 - case enumReservedRange // = 289 - case enumType // = 290 - case enumvalue // = 291 - case enumValueDescriptorProto // = 292 - case enumValueOptions // = 293 - case equatable // = 294 - case error // = 295 - case expressibleByArrayLiteral // = 296 - case expressibleByDictionaryLiteral // = 297 - case ext // = 298 - case extDecoder // = 299 - case extendedGraphemeClusterLiteral // = 300 - case extendedGraphemeClusterLiteralType // = 301 - case extendee // = 302 - case extensibleMessage // = 303 - case `extension` // = 304 - case extensionField // = 305 - case extensionFieldNumber // = 306 - case extensionFieldValueSet // = 307 - case extensionMap // = 308 - case extensionRange // = 309 - case extensionRangeOptions // = 310 - case extensions // = 311 - case extras // = 312 - case f // = 313 - case `false` // = 314 - case features // = 315 - case featureSet // = 316 - case featureSetDefaults // = 317 - case featureSetEditionDefault // = 318 - case featureSupport // = 319 - case field // = 320 - case fieldData // = 321 - case fieldDescriptorProto // = 322 - case fieldMask // = 323 - case fieldName // = 324 - case fieldNameCount // = 325 - case fieldNum // = 326 - case fieldNumber // = 327 - case fieldNumberForProto // = 328 - case fieldOptions // = 329 - case fieldPresence // = 330 - case fields // = 331 - case fieldSize // = 332 - case fieldTag // = 333 - case fieldType // = 334 - case file // = 335 - case fileDescriptorProto // = 336 - case fileDescriptorSet // = 337 - case fileName // = 338 - case fileOptions // = 339 - case filter // = 340 - case final // = 341 - case finiteOnly // = 342 - case first // = 343 - case firstItem // = 344 - case fixedFeatures // = 345 - case float // = 346 - case floatLiteral // = 347 - case floatLiteralType // = 348 - case floatValue // = 349 - case forMessageName // = 350 - case formUnion // = 351 - case forReadingFrom // = 352 - case forTypeURL // = 353 - case forwardParser // = 354 - case forWritingInto // = 355 - case from // = 356 - case fromAscii2 // = 357 - case fromAscii4 // = 358 - case fromByteOffset // = 359 - case fromHexDigit // = 360 - case fullName // = 361 - case `func` // = 362 - case function // = 363 - case g // = 364 - case generatedCodeInfo // = 365 - case get // = 366 - case getExtensionValue // = 367 - case googleapis // = 368 - case googleProtobufAny // = 369 - case googleProtobufApi // = 370 - case googleProtobufBoolValue // = 371 - case googleProtobufBytesValue // = 372 - case googleProtobufDescriptorProto // = 373 - case googleProtobufDoubleValue // = 374 - case googleProtobufDuration // = 375 - case googleProtobufEdition // = 376 - case googleProtobufEmpty // = 377 - case googleProtobufEnum // = 378 - case googleProtobufEnumDescriptorProto // = 379 - case googleProtobufEnumOptions // = 380 - case googleProtobufEnumValue // = 381 - case googleProtobufEnumValueDescriptorProto // = 382 - case googleProtobufEnumValueOptions // = 383 - case googleProtobufExtensionRangeOptions // = 384 - case googleProtobufFeatureSet // = 385 - case googleProtobufFeatureSetDefaults // = 386 - case googleProtobufField // = 387 - case googleProtobufFieldDescriptorProto // = 388 - case googleProtobufFieldMask // = 389 - case googleProtobufFieldOptions // = 390 - case googleProtobufFileDescriptorProto // = 391 - case googleProtobufFileDescriptorSet // = 392 - case googleProtobufFileOptions // = 393 - case googleProtobufFloatValue // = 394 - case googleProtobufGeneratedCodeInfo // = 395 - case googleProtobufInt32Value // = 396 - case googleProtobufInt64Value // = 397 - case googleProtobufListValue // = 398 - case googleProtobufMessageOptions // = 399 - case googleProtobufMethod // = 400 - case googleProtobufMethodDescriptorProto // = 401 - case googleProtobufMethodOptions // = 402 - case googleProtobufMixin // = 403 - case googleProtobufNullValue // = 404 - case googleProtobufOneofDescriptorProto // = 405 - case googleProtobufOneofOptions // = 406 - case googleProtobufOption // = 407 - case googleProtobufServiceDescriptorProto // = 408 - case googleProtobufServiceOptions // = 409 - case googleProtobufSourceCodeInfo // = 410 - case googleProtobufSourceContext // = 411 - case googleProtobufStringValue // = 412 - case googleProtobufStruct // = 413 - case googleProtobufSyntax // = 414 - case googleProtobufTimestamp // = 415 - case googleProtobufType // = 416 - case googleProtobufUint32Value // = 417 - case googleProtobufUint64Value // = 418 - case googleProtobufUninterpretedOption // = 419 - case googleProtobufValue // = 420 - case goPackage // = 421 - case group // = 422 - case groupFieldNumberStack // = 423 - case groupSize // = 424 - case hadOneofValue // = 425 - case handleConflictingOneOf // = 426 - case hasAggregateValue // = 427 - case hasAllowAlias // = 428 - case hasBegin // = 429 - case hasCcEnableArenas // = 430 - case hasCcGenericServices // = 431 - case hasClientStreaming // = 432 - case hasCsharpNamespace // = 433 - case hasCtype // = 434 - case hasDebugRedact // = 435 - case hasDefaultValue // = 436 - case hasDeprecated // = 437 - case hasDeprecatedLegacyJsonFieldConflicts // = 438 - case hasDeprecationWarning // = 439 - case hasDoubleValue // = 440 - case hasEdition // = 441 - case hasEditionDeprecated // = 442 - case hasEditionIntroduced // = 443 - case hasEditionRemoved // = 444 - case hasEnd // = 445 - case hasEnumType // = 446 - case hasExtendee // = 447 - case hasExtensionValue // = 448 - case hasFeatures // = 449 - case hasFeatureSupport // = 450 - case hasFieldPresence // = 451 - case hasFixedFeatures // = 452 - case hasFullName // = 453 - case hasGoPackage // = 454 - case hash // = 455 - case hashable // = 456 - case hasher // = 457 - case hashVisitor // = 458 - case hasIdempotencyLevel // = 459 - case hasIdentifierValue // = 460 - case hasInputType // = 461 - case hasIsExtension // = 462 - case hasJavaGenerateEqualsAndHash // = 463 - case hasJavaGenericServices // = 464 - case hasJavaMultipleFiles // = 465 - case hasJavaOuterClassname // = 466 - case hasJavaPackage // = 467 - case hasJavaStringCheckUtf8 // = 468 - case hasJsonFormat // = 469 - case hasJsonName // = 470 - case hasJstype // = 471 - case hasLabel // = 472 - case hasLazy // = 473 - case hasLeadingComments // = 474 - case hasMapEntry // = 475 - case hasMaximumEdition // = 476 - case hasMessageEncoding // = 477 - case hasMessageSetWireFormat // = 478 - case hasMinimumEdition // = 479 - case hasName // = 480 - case hasNamePart // = 481 - case hasNegativeIntValue // = 482 - case hasNoStandardDescriptorAccessor // = 483 - case hasNumber // = 484 - case hasObjcClassPrefix // = 485 - case hasOneofIndex // = 486 - case hasOptimizeFor // = 487 - case hasOptions // = 488 - case hasOutputType // = 489 - case hasOverridableFeatures // = 490 - case hasPackage // = 491 - case hasPacked // = 492 - case hasPhpClassPrefix // = 493 - case hasPhpMetadataNamespace // = 494 - case hasPhpNamespace // = 495 - case hasPositiveIntValue // = 496 - case hasProto3Optional // = 497 - case hasPyGenericServices // = 498 - case hasRepeated // = 499 - case hasRepeatedFieldEncoding // = 500 - case hasReserved // = 501 - case hasRetention // = 502 - case hasRubyPackage // = 503 - case hasSemantic // = 504 - case hasServerStreaming // = 505 - case hasSourceCodeInfo // = 506 - case hasSourceContext // = 507 - case hasSourceFile // = 508 - case hasStart // = 509 - case hasStringValue // = 510 - case hasSwiftPrefix // = 511 - case hasSyntax // = 512 - case hasTrailingComments // = 513 - case hasType // = 514 - case hasTypeName // = 515 - case hasUnverifiedLazy // = 516 - case hasUtf8Validation // = 517 - case hasValue // = 518 - case hasVerification // = 519 - case hasWeak // = 520 - case hour // = 521 - case i // = 522 - case idempotencyLevel // = 523 - case identifierValue // = 524 - case `if` // = 525 - case ignoreUnknownExtensionFields // = 526 - case ignoreUnknownFields // = 527 - case index // = 528 - case init_ // = 529 - case `inout` // = 530 - case inputType // = 531 - case insert // = 532 - case int // = 533 - case int32 // = 534 - case int32Value // = 535 - case int64 // = 536 - case int64Value // = 537 - case int8 // = 538 - case integerLiteral // = 539 - case integerLiteralType // = 540 - case intern // = 541 - case `internal` // = 542 - case internalState // = 543 - case into // = 544 - case ints // = 545 - case isA // = 546 - case isEqual // = 547 - case isEqualTo // = 548 - case isExtension // = 549 - case isInitialized // = 550 - case isNegative // = 551 - case itemTagsEncodedSize // = 552 - case iterator // = 553 - case javaGenerateEqualsAndHash // = 554 - case javaGenericServices // = 555 - case javaMultipleFiles // = 556 - case javaOuterClassname // = 557 - case javaPackage // = 558 - case javaStringCheckUtf8 // = 559 - case jsondecoder // = 560 - case jsondecodingError // = 561 - case jsondecodingOptions // = 562 - case jsonEncoder // = 563 - case jsonencoding // = 564 - case jsonencodingError // = 565 - case jsonencodingOptions // = 566 - case jsonencodingVisitor // = 567 - case jsonFormat // = 568 - case jsonmapEncodingVisitor // = 569 - case jsonName // = 570 - case jsonPath // = 571 - case jsonPaths // = 572 - case jsonscanner // = 573 - case jsonString // = 574 - case jsonText // = 575 - case jsonUtf8Bytes // = 576 - case jsonUtf8Data // = 577 - case jstype // = 578 - case k // = 579 - case kChunkSize // = 580 - case key // = 581 - case keyField // = 582 - case keyFieldOpt // = 583 - case keyType // = 584 - case kind // = 585 - case l // = 586 - case label // = 587 - case lazy // = 588 - case leadingComments // = 589 - case leadingDetachedComments // = 590 - case length // = 591 - case lessThan // = 592 - case `let` // = 593 - case lhs // = 594 - case line // = 595 - case list // = 596 - case listOfMessages // = 597 - case listValue // = 598 - case littleEndian // = 599 - case load // = 600 - case localHasher // = 601 - case location // = 602 - case m // = 603 - case major // = 604 - case makeAsyncIterator // = 605 - case makeIterator // = 606 - case malformedLength // = 607 - case mapEntry // = 608 - case mapKeyType // = 609 - case mapToMessages // = 610 - case mapValueType // = 611 - case mapVisitor // = 612 - case maximumEdition // = 613 - case mdayStart // = 614 - case merge // = 615 - case message // = 616 - case messageDepthLimit // = 617 - case messageEncoding // = 618 - case messageExtension // = 619 - case messageImplementationBase // = 620 - case messageOptions // = 621 - case messageSet // = 622 - case messageSetWireFormat // = 623 - case messageSize // = 624 - case messageType // = 625 - case method // = 626 - case methodDescriptorProto // = 627 - case methodOptions // = 628 - case methods // = 629 - case min // = 630 - case minimumEdition // = 631 - case minor // = 632 - case mixin // = 633 - case mixins // = 634 - case modifier // = 635 - case modify // = 636 - case month // = 637 - case msgExtension // = 638 - case mutating // = 639 - case n // = 640 - case name // = 641 - case nameDescription // = 642 - case nameMap // = 643 - case namePart // = 644 - case names // = 645 - case nanos // = 646 - case negativeIntValue // = 647 - case nestedType // = 648 - case newL // = 649 - case newList // = 650 - case newValue // = 651 - case next // = 652 - case nextByte // = 653 - case nextFieldNumber // = 654 - case nextVarInt // = 655 - case `nil` // = 656 - case nilLiteral // = 657 - case noBytesAvailable // = 658 - case noStandardDescriptorAccessor // = 659 - case nullValue // = 660 - case number // = 661 - case numberValue // = 662 - case objcClassPrefix // = 663 - case of // = 664 - case oneofDecl // = 665 - case oneofDescriptorProto // = 666 - case oneofIndex // = 667 - case oneofOptions // = 668 - case oneofs // = 669 - case oneOfKind // = 670 - case optimizeFor // = 671 - case optimizeMode // = 672 - case option // = 673 - case optionalEnumExtensionField // = 674 - case optionalExtensionField // = 675 - case optionalGroupExtensionField // = 676 - case optionalMessageExtensionField // = 677 - case optionRetention // = 678 - case options // = 679 - case optionTargetType // = 680 - case other // = 681 - case others // = 682 - case out // = 683 - case outputType // = 684 - case overridableFeatures // = 685 - case p // = 686 - case package // = 687 - case packed // = 688 - case packedEnumExtensionField // = 689 - case packedExtensionField // = 690 - case padding // = 691 - case parent // = 692 - case parse // = 693 - case path // = 694 - case paths // = 695 - case payload // = 696 - case payloadSize // = 697 - case phpClassPrefix // = 698 - case phpMetadataNamespace // = 699 - case phpNamespace // = 700 - case pos // = 701 - case positiveIntValue // = 702 - case prefix // = 703 - case preserveProtoFieldNames // = 704 - case preTraverse // = 705 - case printUnknownFields // = 706 - case proto2 // = 707 - case proto3DefaultValue // = 708 - case proto3Optional // = 709 - case protobufApiversionCheck // = 710 - case protobufApiversion3 // = 711 - case protobufBool // = 712 - case protobufBytes // = 713 - case protobufDouble // = 714 - case protobufEnumMap // = 715 - case protobufExtension // = 716 - case protobufFixed32 // = 717 - case protobufFixed64 // = 718 - case protobufFloat // = 719 - case protobufInt32 // = 720 - case protobufInt64 // = 721 - case protobufMap // = 722 - case protobufMessageMap // = 723 - case protobufSfixed32 // = 724 - case protobufSfixed64 // = 725 - case protobufSint32 // = 726 - case protobufSint64 // = 727 - case protobufString // = 728 - case protobufUint32 // = 729 - case protobufUint64 // = 730 - case protobufExtensionFieldValues // = 731 - case protobufFieldNumber // = 732 - case protobufGeneratedIsEqualTo // = 733 - case protobufNameMap // = 734 - case protobufNewField // = 735 - case protobufPackage // = 736 - case `protocol` // = 737 - case protoFieldName // = 738 - case protoMessageName // = 739 - case protoNameProviding // = 740 - case protoPaths // = 741 - case `public` // = 742 - case publicDependency // = 743 - case putBoolValue // = 744 - case putBytesValue // = 745 - case putDoubleValue // = 746 - case putEnumValue // = 747 - case putFixedUint32 // = 748 - case putFixedUint64 // = 749 - case putFloatValue // = 750 - case putInt64 // = 751 - case putStringValue // = 752 - case putUint64 // = 753 - case putUint64Hex // = 754 - case putVarInt // = 755 - case putZigZagVarInt // = 756 - case pyGenericServices // = 757 - case r // = 758 - case rawChars // = 759 - case rawRepresentable // = 760 - case rawValue_ // = 761 - case read4HexDigits // = 762 - case readBytes // = 763 - case register // = 764 - case repeated // = 765 - case repeatedEnumExtensionField // = 766 - case repeatedExtensionField // = 767 - case repeatedFieldEncoding // = 768 - case repeatedGroupExtensionField // = 769 - case repeatedMessageExtensionField // = 770 - case repeating // = 771 - case requestStreaming // = 772 - case requestTypeURL // = 773 - case requiredSize // = 774 - case responseStreaming // = 775 - case responseTypeURL // = 776 - case result // = 777 - case retention // = 778 - case `rethrows` // = 779 - case `return` // = 780 - case returnType // = 781 - case revision // = 782 - case rhs // = 783 - case root // = 784 - case rubyPackage // = 785 - case s // = 786 - case sawBackslash // = 787 - case sawSection4Characters // = 788 - case sawSection5Characters // = 789 - case scan // = 790 - case scanner // = 791 - case seconds // = 792 - case self_ // = 793 - case semantic // = 794 - case sendable // = 795 - case separator // = 796 - case serialize // = 797 - case serializedBytes // = 798 - case serializedData // = 799 - case serializedSize // = 800 - case serverStreaming // = 801 - case service // = 802 - case serviceDescriptorProto // = 803 - case serviceOptions // = 804 - case set // = 805 - case setExtensionValue // = 806 - case shift // = 807 - case simpleExtensionMap // = 808 - case size // = 809 - case sizer // = 810 - case source // = 811 - case sourceCodeInfo // = 812 - case sourceContext // = 813 - case sourceEncoding // = 814 - case sourceFile // = 815 - case sourceLocation // = 816 - case span // = 817 - case split // = 818 - case start // = 819 - case startArray // = 820 - case startArrayObject // = 821 - case startField // = 822 - case startIndex // = 823 - case startMessageField // = 824 - case startObject // = 825 - case startRegularField // = 826 - case state // = 827 - case `static` // = 828 - case staticString // = 829 - case storage // = 830 - case string // = 831 - case stringLiteral // = 832 - case stringLiteralType // = 833 - case stringResult // = 834 - case stringValue // = 835 - case `struct` // = 836 - case structValue // = 837 - case subDecoder // = 838 - case `subscript` // = 839 - case subVisitor // = 840 - case swift // = 841 - case swiftPrefix // = 842 - case swiftProtobufContiguousBytes // = 843 - case swiftProtobufError // = 844 - case syntax // = 845 - case t // = 846 - case tag // = 847 - case targets // = 848 - case terminator // = 849 - case testDecoder // = 850 - case text // = 851 - case textDecoder // = 852 - case textFormatDecoder // = 853 - case textFormatDecodingError // = 854 - case textFormatDecodingOptions // = 855 - case textFormatEncodingOptions // = 856 - case textFormatEncodingVisitor // = 857 - case textFormatString // = 858 - case throwOrIgnore // = 859 - case `throws` // = 860 - case timeInterval // = 861 - case timeIntervalSince1970 // = 862 - case timeIntervalSinceReferenceDate // = 863 - case timestamp // = 864 - case tooLarge // = 865 - case total // = 866 - case totalArrayDepth // = 867 - case totalSize // = 868 - case trailingComments // = 869 - case traverse // = 870 - case `true` // = 871 - case `try` // = 872 - case type // = 873 - case `typealias` // = 874 - case typeEnum // = 875 - case typeName // = 876 - case typePrefix // = 877 - case typeStart // = 878 - case typeUnknown // = 879 - case typeURL // = 880 - case uint32 // = 881 - case uint32Value // = 882 - case uint64 // = 883 - case uint64Value // = 884 - case uint8 // = 885 - case unchecked // = 886 - case unicodeScalarLiteral // = 887 - case unicodeScalarLiteralType // = 888 - case unicodeScalars // = 889 - case unicodeScalarView // = 890 - case uninterpretedOption // = 891 - case union // = 892 - case uniqueStorage // = 893 - case unknown // = 894 - case unknownFields // = 895 - case unknownStorage // = 896 - case unpackTo // = 897 - case unregisteredTypeURL // = 898 - case unsafeBufferPointer // = 899 - case unsafeMutablePointer // = 900 - case unsafeMutableRawBufferPointer // = 901 - case unsafeRawBufferPointer // = 902 - case unsafeRawPointer // = 903 - case unverifiedLazy // = 904 - case updatedOptions // = 905 - case url // = 906 - case useDeterministicOrdering // = 907 - case utf8 // = 908 - case utf8Ptr // = 909 - case utf8ToDouble // = 910 - case utf8Validation // = 911 - case utf8View // = 912 - case v // = 913 - case value // = 914 - case valueField // = 915 - case values // = 916 - case valueType // = 917 - case `var` // = 918 - case verification // = 919 - case verificationState // = 920 - case version // = 921 - case versionString // = 922 - case visitExtensionFields // = 923 - case visitExtensionFieldsAsMessageSet // = 924 - case visitMapField // = 925 - case visitor // = 926 - case visitPacked // = 927 - case visitPackedBoolField // = 928 - case visitPackedDoubleField // = 929 - case visitPackedEnumField // = 930 - case visitPackedFixed32Field // = 931 - case visitPackedFixed64Field // = 932 - case visitPackedFloatField // = 933 - case visitPackedInt32Field // = 934 - case visitPackedInt64Field // = 935 - case visitPackedSfixed32Field // = 936 - case visitPackedSfixed64Field // = 937 - case visitPackedSint32Field // = 938 - case visitPackedSint64Field // = 939 - case visitPackedUint32Field // = 940 - case visitPackedUint64Field // = 941 - case visitRepeated // = 942 - case visitRepeatedBoolField // = 943 - case visitRepeatedBytesField // = 944 - case visitRepeatedDoubleField // = 945 - case visitRepeatedEnumField // = 946 - case visitRepeatedFixed32Field // = 947 - case visitRepeatedFixed64Field // = 948 - case visitRepeatedFloatField // = 949 - case visitRepeatedGroupField // = 950 - case visitRepeatedInt32Field // = 951 - case visitRepeatedInt64Field // = 952 - case visitRepeatedMessageField // = 953 - case visitRepeatedSfixed32Field // = 954 - case visitRepeatedSfixed64Field // = 955 - case visitRepeatedSint32Field // = 956 - case visitRepeatedSint64Field // = 957 - case visitRepeatedStringField // = 958 - case visitRepeatedUint32Field // = 959 - case visitRepeatedUint64Field // = 960 - case visitSingular // = 961 - case visitSingularBoolField // = 962 - case visitSingularBytesField // = 963 - case visitSingularDoubleField // = 964 - case visitSingularEnumField // = 965 - case visitSingularFixed32Field // = 966 - case visitSingularFixed64Field // = 967 - case visitSingularFloatField // = 968 - case visitSingularGroupField // = 969 - case visitSingularInt32Field // = 970 - case visitSingularInt64Field // = 971 - case visitSingularMessageField // = 972 - case visitSingularSfixed32Field // = 973 - case visitSingularSfixed64Field // = 974 - case visitSingularSint32Field // = 975 - case visitSingularSint64Field // = 976 - case visitSingularStringField // = 977 - case visitSingularUint32Field // = 978 - case visitSingularUint64Field // = 979 - case visitUnknown // = 980 - case wasDecoded // = 981 - case weak // = 982 - case weakDependency // = 983 - case `where` // = 984 - case wireFormat // = 985 - case with // = 986 - case withUnsafeBytes // = 987 - case withUnsafeMutableBytes // = 988 - case work // = 989 - case wrapped // = 990 - case wrappedType // = 991 - case wrappedValue // = 992 - case written // = 993 - case yday // = 994 + case anyUnpackError // = 12 + case api // = 13 + case appended // = 14 + case appendUintHex // = 15 + case appendUnknown // = 16 + case areAllInitialized // = 17 + case array // = 18 + case arrayDepth // = 19 + case arrayLiteral // = 20 + case arraySeparator // = 21 + case `as` // = 22 + case asciiOpenCurlyBracket // = 23 + case asciiZero // = 24 + case async // = 25 + case asyncIterator // = 26 + case asyncIteratorProtocol // = 27 + case asyncMessageSequence // = 28 + case available // = 29 + case b // = 30 + case base // = 31 + case base64Values // = 32 + case baseAddress // = 33 + case baseType // = 34 + case begin // = 35 + case binary // = 36 + case binaryDecoder // = 37 + case binaryDecoding // = 38 + case binaryDecodingError // = 39 + case binaryDecodingOptions // = 40 + case binaryDelimited // = 41 + case binaryEncoder // = 42 + case binaryEncodingError // = 43 + case binaryEncodingMessageSetSizeVisitor // = 44 + case binaryEncodingMessageSetVisitor // = 45 + case binaryEncodingOptions // = 46 + case binaryEncodingSizeVisitor // = 47 + case binaryEncodingVisitor // = 48 + case binaryOptions // = 49 + case binaryProtobufDelimitedMessages // = 50 + case binaryStreamDecoding // = 51 + case binaryStreamDecodingError // = 52 + case bitPattern // = 53 + case body // = 54 + case bool // = 55 + case booleanLiteral // = 56 + case booleanLiteralType // = 57 + case boolValue // = 58 + case buffer // = 59 + case bytes // = 60 + case bytesInGroup // = 61 + case bytesNeeded // = 62 + case bytesRead // = 63 + case bytesValue // = 64 + case c // = 65 + case capitalizeNext // = 66 + case cardinality // = 67 + case caseIterable // = 68 + case ccEnableArenas // = 69 + case ccGenericServices // = 70 + case character // = 71 + case chars // = 72 + case chunk // = 73 + case `class` // = 74 + case clearAggregateValue // = 75 + case clearAllowAlias // = 76 + case clearBegin // = 77 + case clearCcEnableArenas // = 78 + case clearCcGenericServices // = 79 + case clearClientStreaming // = 80 + case clearCsharpNamespace // = 81 + case clearCtype // = 82 + case clearDebugRedact // = 83 + case clearDefaultValue // = 84 + case clearDeprecated // = 85 + case clearDeprecatedLegacyJsonFieldConflicts // = 86 + case clearDeprecationWarning // = 87 + case clearDoubleValue // = 88 + case clearEdition // = 89 + case clearEditionDeprecated // = 90 + case clearEditionIntroduced // = 91 + case clearEditionRemoved // = 92 + case clearEnd // = 93 + case clearEnumType // = 94 + case clearExtendee // = 95 + case clearExtensionValue // = 96 + case clearFeatures // = 97 + case clearFeatureSupport // = 98 + case clearFieldPresence // = 99 + case clearFixedFeatures // = 100 + case clearFullName // = 101 + case clearGoPackage // = 102 + case clearIdempotencyLevel // = 103 + case clearIdentifierValue // = 104 + case clearInputType // = 105 + case clearIsExtension // = 106 + case clearJavaGenerateEqualsAndHash // = 107 + case clearJavaGenericServices // = 108 + case clearJavaMultipleFiles // = 109 + case clearJavaOuterClassname // = 110 + case clearJavaPackage // = 111 + case clearJavaStringCheckUtf8 // = 112 + case clearJsonFormat // = 113 + case clearJsonName // = 114 + case clearJstype // = 115 + case clearLabel // = 116 + case clearLazy // = 117 + case clearLeadingComments // = 118 + case clearMapEntry // = 119 + case clearMaximumEdition // = 120 + case clearMessageEncoding // = 121 + case clearMessageSetWireFormat // = 122 + case clearMinimumEdition // = 123 + case clearName // = 124 + case clearNamePart // = 125 + case clearNegativeIntValue // = 126 + case clearNoStandardDescriptorAccessor // = 127 + case clearNumber // = 128 + case clearObjcClassPrefix // = 129 + case clearOneofIndex // = 130 + case clearOptimizeFor // = 131 + case clearOptions // = 132 + case clearOutputType // = 133 + case clearOverridableFeatures // = 134 + case clearPackage // = 135 + case clearPacked // = 136 + case clearPhpClassPrefix // = 137 + case clearPhpMetadataNamespace // = 138 + case clearPhpNamespace // = 139 + case clearPositiveIntValue // = 140 + case clearProto3Optional // = 141 + case clearPyGenericServices // = 142 + case clearRepeated // = 143 + case clearRepeatedFieldEncoding // = 144 + case clearReserved // = 145 + case clearRetention // = 146 + case clearRubyPackage // = 147 + case clearSemantic // = 148 + case clearServerStreaming // = 149 + case clearSourceCodeInfo // = 150 + case clearSourceContext // = 151 + case clearSourceFile // = 152 + case clearStart // = 153 + case clearStringValue // = 154 + case clearSwiftPrefix // = 155 + case clearSyntax // = 156 + case clearTrailingComments // = 157 + case clearType // = 158 + case clearTypeName // = 159 + case clearUnverifiedLazy // = 160 + case clearUtf8Validation // = 161 + case clearValue // = 162 + case clearVerification // = 163 + case clearWeak // = 164 + case clientStreaming // = 165 + case code // = 166 + case codePoint // = 167 + case codeUnits // = 168 + case collection // = 169 + case com // = 170 + case comma // = 171 + case consumedBytes // = 172 + case contentsOf // = 173 + case copy // = 174 + case count // = 175 + case countVarintsInBuffer // = 176 + case csharpNamespace // = 177 + case ctype // = 178 + case customCodable // = 179 + case customDebugStringConvertible // = 180 + case customStringConvertible // = 181 + case d // = 182 + case data // = 183 + case dataResult // = 184 + case date // = 185 + case daySec // = 186 + case daysSinceEpoch // = 187 + case debugDescription_ // = 188 + case debugRedact // = 189 + case declaration // = 190 + case decoded // = 191 + case decodedFromJsonnull // = 192 + case decodeExtensionField // = 193 + case decodeExtensionFieldsAsMessageSet // = 194 + case decodeJson // = 195 + case decodeMapField // = 196 + case decodeMessage // = 197 + case decoder // = 198 + case decodeRepeated // = 199 + case decodeRepeatedBoolField // = 200 + case decodeRepeatedBytesField // = 201 + case decodeRepeatedDoubleField // = 202 + case decodeRepeatedEnumField // = 203 + case decodeRepeatedFixed32Field // = 204 + case decodeRepeatedFixed64Field // = 205 + case decodeRepeatedFloatField // = 206 + case decodeRepeatedGroupField // = 207 + case decodeRepeatedInt32Field // = 208 + case decodeRepeatedInt64Field // = 209 + case decodeRepeatedMessageField // = 210 + case decodeRepeatedSfixed32Field // = 211 + case decodeRepeatedSfixed64Field // = 212 + case decodeRepeatedSint32Field // = 213 + case decodeRepeatedSint64Field // = 214 + case decodeRepeatedStringField // = 215 + case decodeRepeatedUint32Field // = 216 + case decodeRepeatedUint64Field // = 217 + case decodeSingular // = 218 + case decodeSingularBoolField // = 219 + case decodeSingularBytesField // = 220 + case decodeSingularDoubleField // = 221 + case decodeSingularEnumField // = 222 + case decodeSingularFixed32Field // = 223 + case decodeSingularFixed64Field // = 224 + case decodeSingularFloatField // = 225 + case decodeSingularGroupField // = 226 + case decodeSingularInt32Field // = 227 + case decodeSingularInt64Field // = 228 + case decodeSingularMessageField // = 229 + case decodeSingularSfixed32Field // = 230 + case decodeSingularSfixed64Field // = 231 + case decodeSingularSint32Field // = 232 + case decodeSingularSint64Field // = 233 + case decodeSingularStringField // = 234 + case decodeSingularUint32Field // = 235 + case decodeSingularUint64Field // = 236 + case decodeTextFormat // = 237 + case defaultAnyTypeUrlprefix // = 238 + case defaults // = 239 + case defaultValue // = 240 + case dependency // = 241 + case deprecated // = 242 + case deprecatedLegacyJsonFieldConflicts // = 243 + case deprecationWarning // = 244 + case description_ // = 245 + case descriptorProto // = 246 + case dictionary // = 247 + case dictionaryLiteral // = 248 + case digit // = 249 + case digit0 // = 250 + case digit1 // = 251 + case digitCount // = 252 + case digits // = 253 + case digitValue // = 254 + case discardableResult // = 255 + case discardUnknownFields // = 256 + case double // = 257 + case doubleValue // = 258 + case duration // = 259 + case e // = 260 + case edition // = 261 + case editionDefault // = 262 + case editionDefaults // = 263 + case editionDeprecated // = 264 + case editionIntroduced // = 265 + case editionRemoved // = 266 + case element // = 267 + case elements // = 268 + case emitExtensionFieldName // = 269 + case emitFieldName // = 270 + case emitFieldNumber // = 271 + case empty // = 272 + case encodeAsBytes // = 273 + case encoded // = 274 + case encodedJsonstring // = 275 + case encodedSize // = 276 + case encodeField // = 277 + case encoder // = 278 + case end // = 279 + case endArray // = 280 + case endMessageField // = 281 + case endObject // = 282 + case endRegularField // = 283 + case `enum` // = 284 + case enumDescriptorProto // = 285 + case enumOptions // = 286 + case enumReservedRange // = 287 + case enumType // = 288 + case enumvalue // = 289 + case enumValueDescriptorProto // = 290 + case enumValueOptions // = 291 + case equatable // = 292 + case error // = 293 + case expressibleByArrayLiteral // = 294 + case expressibleByDictionaryLiteral // = 295 + case ext // = 296 + case extDecoder // = 297 + case extendedGraphemeClusterLiteral // = 298 + case extendedGraphemeClusterLiteralType // = 299 + case extendee // = 300 + case extensibleMessage // = 301 + case `extension` // = 302 + case extensionField // = 303 + case extensionFieldNumber // = 304 + case extensionFieldValueSet // = 305 + case extensionMap // = 306 + case extensionRange // = 307 + case extensionRangeOptions // = 308 + case extensions // = 309 + case extras // = 310 + case f // = 311 + case `false` // = 312 + case features // = 313 + case featureSet // = 314 + case featureSetDefaults // = 315 + case featureSetEditionDefault // = 316 + case featureSupport // = 317 + case field // = 318 + case fieldData // = 319 + case fieldDescriptorProto // = 320 + case fieldMask // = 321 + case fieldName // = 322 + case fieldNameCount // = 323 + case fieldNum // = 324 + case fieldNumber // = 325 + case fieldNumberForProto // = 326 + case fieldOptions // = 327 + case fieldPresence // = 328 + case fields // = 329 + case fieldSize // = 330 + case fieldTag // = 331 + case fieldType // = 332 + case file // = 333 + case fileDescriptorProto // = 334 + case fileDescriptorSet // = 335 + case fileName // = 336 + case fileOptions // = 337 + case filter // = 338 + case final // = 339 + case finiteOnly // = 340 + case first // = 341 + case firstItem // = 342 + case fixedFeatures // = 343 + case float // = 344 + case floatLiteral // = 345 + case floatLiteralType // = 346 + case floatValue // = 347 + case forMessageName // = 348 + case formUnion // = 349 + case forReadingFrom // = 350 + case forTypeURL // = 351 + case forwardParser // = 352 + case forWritingInto // = 353 + case from // = 354 + case fromAscii2 // = 355 + case fromAscii4 // = 356 + case fromByteOffset // = 357 + case fromHexDigit // = 358 + case fullName // = 359 + case `func` // = 360 + case function // = 361 + case g // = 362 + case generatedCodeInfo // = 363 + case get // = 364 + case getExtensionValue // = 365 + case googleapis // = 366 + case googleProtobufAny // = 367 + case googleProtobufApi // = 368 + case googleProtobufBoolValue // = 369 + case googleProtobufBytesValue // = 370 + case googleProtobufDescriptorProto // = 371 + case googleProtobufDoubleValue // = 372 + case googleProtobufDuration // = 373 + case googleProtobufEdition // = 374 + case googleProtobufEmpty // = 375 + case googleProtobufEnum // = 376 + case googleProtobufEnumDescriptorProto // = 377 + case googleProtobufEnumOptions // = 378 + case googleProtobufEnumValue // = 379 + case googleProtobufEnumValueDescriptorProto // = 380 + case googleProtobufEnumValueOptions // = 381 + case googleProtobufExtensionRangeOptions // = 382 + case googleProtobufFeatureSet // = 383 + case googleProtobufFeatureSetDefaults // = 384 + case googleProtobufField // = 385 + case googleProtobufFieldDescriptorProto // = 386 + case googleProtobufFieldMask // = 387 + case googleProtobufFieldOptions // = 388 + case googleProtobufFileDescriptorProto // = 389 + case googleProtobufFileDescriptorSet // = 390 + case googleProtobufFileOptions // = 391 + case googleProtobufFloatValue // = 392 + case googleProtobufGeneratedCodeInfo // = 393 + case googleProtobufInt32Value // = 394 + case googleProtobufInt64Value // = 395 + case googleProtobufListValue // = 396 + case googleProtobufMessageOptions // = 397 + case googleProtobufMethod // = 398 + case googleProtobufMethodDescriptorProto // = 399 + case googleProtobufMethodOptions // = 400 + case googleProtobufMixin // = 401 + case googleProtobufNullValue // = 402 + case googleProtobufOneofDescriptorProto // = 403 + case googleProtobufOneofOptions // = 404 + case googleProtobufOption // = 405 + case googleProtobufServiceDescriptorProto // = 406 + case googleProtobufServiceOptions // = 407 + case googleProtobufSourceCodeInfo // = 408 + case googleProtobufSourceContext // = 409 + case googleProtobufStringValue // = 410 + case googleProtobufStruct // = 411 + case googleProtobufSyntax // = 412 + case googleProtobufTimestamp // = 413 + case googleProtobufType // = 414 + case googleProtobufUint32Value // = 415 + case googleProtobufUint64Value // = 416 + case googleProtobufUninterpretedOption // = 417 + case googleProtobufValue // = 418 + case goPackage // = 419 + case group // = 420 + case groupFieldNumberStack // = 421 + case groupSize // = 422 + case hadOneofValue // = 423 + case handleConflictingOneOf // = 424 + case hasAggregateValue // = 425 + case hasAllowAlias // = 426 + case hasBegin // = 427 + case hasCcEnableArenas // = 428 + case hasCcGenericServices // = 429 + case hasClientStreaming // = 430 + case hasCsharpNamespace // = 431 + case hasCtype // = 432 + case hasDebugRedact // = 433 + case hasDefaultValue // = 434 + case hasDeprecated // = 435 + case hasDeprecatedLegacyJsonFieldConflicts // = 436 + case hasDeprecationWarning // = 437 + case hasDoubleValue // = 438 + case hasEdition // = 439 + case hasEditionDeprecated // = 440 + case hasEditionIntroduced // = 441 + case hasEditionRemoved // = 442 + case hasEnd // = 443 + case hasEnumType // = 444 + case hasExtendee // = 445 + case hasExtensionValue // = 446 + case hasFeatures // = 447 + case hasFeatureSupport // = 448 + case hasFieldPresence // = 449 + case hasFixedFeatures // = 450 + case hasFullName // = 451 + case hasGoPackage // = 452 + case hash // = 453 + case hashable // = 454 + case hasher // = 455 + case hashVisitor // = 456 + case hasIdempotencyLevel // = 457 + case hasIdentifierValue // = 458 + case hasInputType // = 459 + case hasIsExtension // = 460 + case hasJavaGenerateEqualsAndHash // = 461 + case hasJavaGenericServices // = 462 + case hasJavaMultipleFiles // = 463 + case hasJavaOuterClassname // = 464 + case hasJavaPackage // = 465 + case hasJavaStringCheckUtf8 // = 466 + case hasJsonFormat // = 467 + case hasJsonName // = 468 + case hasJstype // = 469 + case hasLabel // = 470 + case hasLazy // = 471 + case hasLeadingComments // = 472 + case hasMapEntry // = 473 + case hasMaximumEdition // = 474 + case hasMessageEncoding // = 475 + case hasMessageSetWireFormat // = 476 + case hasMinimumEdition // = 477 + case hasName // = 478 + case hasNamePart // = 479 + case hasNegativeIntValue // = 480 + case hasNoStandardDescriptorAccessor // = 481 + case hasNumber // = 482 + case hasObjcClassPrefix // = 483 + case hasOneofIndex // = 484 + case hasOptimizeFor // = 485 + case hasOptions // = 486 + case hasOutputType // = 487 + case hasOverridableFeatures // = 488 + case hasPackage // = 489 + case hasPacked // = 490 + case hasPhpClassPrefix // = 491 + case hasPhpMetadataNamespace // = 492 + case hasPhpNamespace // = 493 + case hasPositiveIntValue // = 494 + case hasProto3Optional // = 495 + case hasPyGenericServices // = 496 + case hasRepeated // = 497 + case hasRepeatedFieldEncoding // = 498 + case hasReserved // = 499 + case hasRetention // = 500 + case hasRubyPackage // = 501 + case hasSemantic // = 502 + case hasServerStreaming // = 503 + case hasSourceCodeInfo // = 504 + case hasSourceContext // = 505 + case hasSourceFile // = 506 + case hasStart // = 507 + case hasStringValue // = 508 + case hasSwiftPrefix // = 509 + case hasSyntax // = 510 + case hasTrailingComments // = 511 + case hasType // = 512 + case hasTypeName // = 513 + case hasUnverifiedLazy // = 514 + case hasUtf8Validation // = 515 + case hasValue // = 516 + case hasVerification // = 517 + case hasWeak // = 518 + case hour // = 519 + case i // = 520 + case idempotencyLevel // = 521 + case identifierValue // = 522 + case `if` // = 523 + case ignoreUnknownExtensionFields // = 524 + case ignoreUnknownFields // = 525 + case index // = 526 + case init_ // = 527 + case `inout` // = 528 + case inputType // = 529 + case insert // = 530 + case int // = 531 + case int32 // = 532 + case int32Value // = 533 + case int64 // = 534 + case int64Value // = 535 + case int8 // = 536 + case integerLiteral // = 537 + case integerLiteralType // = 538 + case intern // = 539 + case `internal` // = 540 + case internalState // = 541 + case into // = 542 + case ints // = 543 + case isA // = 544 + case isEqual // = 545 + case isEqualTo // = 546 + case isExtension // = 547 + case isInitialized // = 548 + case isNegative // = 549 + case itemTagsEncodedSize // = 550 + case iterator // = 551 + case javaGenerateEqualsAndHash // = 552 + case javaGenericServices // = 553 + case javaMultipleFiles // = 554 + case javaOuterClassname // = 555 + case javaPackage // = 556 + case javaStringCheckUtf8 // = 557 + case jsondecoder // = 558 + case jsondecodingError // = 559 + case jsondecodingOptions // = 560 + case jsonEncoder // = 561 + case jsonencodingError // = 562 + case jsonencodingOptions // = 563 + case jsonencodingVisitor // = 564 + case jsonFormat // = 565 + case jsonmapEncodingVisitor // = 566 + case jsonName // = 567 + case jsonPath // = 568 + case jsonPaths // = 569 + case jsonscanner // = 570 + case jsonString // = 571 + case jsonText // = 572 + case jsonUtf8Bytes // = 573 + case jsonUtf8Data // = 574 + case jstype // = 575 + case k // = 576 + case kChunkSize // = 577 + case key // = 578 + case keyField // = 579 + case keyFieldOpt // = 580 + case keyType // = 581 + case kind // = 582 + case l // = 583 + case label // = 584 + case lazy // = 585 + case leadingComments // = 586 + case leadingDetachedComments // = 587 + case length // = 588 + case lessThan // = 589 + case `let` // = 590 + case lhs // = 591 + case line // = 592 + case list // = 593 + case listOfMessages // = 594 + case listValue // = 595 + case littleEndian // = 596 + case load // = 597 + case localHasher // = 598 + case location // = 599 + case m // = 600 + case major // = 601 + case makeAsyncIterator // = 602 + case makeIterator // = 603 + case malformedLength // = 604 + case mapEntry // = 605 + case mapKeyType // = 606 + case mapToMessages // = 607 + case mapValueType // = 608 + case mapVisitor // = 609 + case maximumEdition // = 610 + case mdayStart // = 611 + case merge // = 612 + case message // = 613 + case messageDepthLimit // = 614 + case messageEncoding // = 615 + case messageExtension // = 616 + case messageImplementationBase // = 617 + case messageOptions // = 618 + case messageSet // = 619 + case messageSetWireFormat // = 620 + case messageSize // = 621 + case messageType // = 622 + case method // = 623 + case methodDescriptorProto // = 624 + case methodOptions // = 625 + case methods // = 626 + case min // = 627 + case minimumEdition // = 628 + case minor // = 629 + case mixin // = 630 + case mixins // = 631 + case modifier // = 632 + case modify // = 633 + case month // = 634 + case msgExtension // = 635 + case mutating // = 636 + case n // = 637 + case name // = 638 + case nameDescription // = 639 + case nameMap // = 640 + case namePart // = 641 + case names // = 642 + case nanos // = 643 + case negativeIntValue // = 644 + case nestedType // = 645 + case newL // = 646 + case newList // = 647 + case newValue // = 648 + case next // = 649 + case nextByte // = 650 + case nextFieldNumber // = 651 + case nextVarInt // = 652 + case `nil` // = 653 + case nilLiteral // = 654 + case noBytesAvailable // = 655 + case noStandardDescriptorAccessor // = 656 + case nullValue // = 657 + case number // = 658 + case numberValue // = 659 + case objcClassPrefix // = 660 + case of // = 661 + case oneofDecl // = 662 + case oneofDescriptorProto // = 663 + case oneofIndex // = 664 + case oneofOptions // = 665 + case oneofs // = 666 + case oneOfKind // = 667 + case optimizeFor // = 668 + case optimizeMode // = 669 + case option // = 670 + case optionalEnumExtensionField // = 671 + case optionalExtensionField // = 672 + case optionalGroupExtensionField // = 673 + case optionalMessageExtensionField // = 674 + case optionRetention // = 675 + case options // = 676 + case optionTargetType // = 677 + case other // = 678 + case others // = 679 + case out // = 680 + case outputType // = 681 + case overridableFeatures // = 682 + case p // = 683 + case package // = 684 + case packed // = 685 + case packedEnumExtensionField // = 686 + case packedExtensionField // = 687 + case padding // = 688 + case parent // = 689 + case parse // = 690 + case path // = 691 + case paths // = 692 + case payload // = 693 + case payloadSize // = 694 + case phpClassPrefix // = 695 + case phpMetadataNamespace // = 696 + case phpNamespace // = 697 + case pos // = 698 + case positiveIntValue // = 699 + case prefix // = 700 + case preserveProtoFieldNames // = 701 + case preTraverse // = 702 + case printUnknownFields // = 703 + case proto2 // = 704 + case proto3DefaultValue // = 705 + case proto3Optional // = 706 + case protobufApiversionCheck // = 707 + case protobufApiversion3 // = 708 + case protobufBool // = 709 + case protobufBytes // = 710 + case protobufDouble // = 711 + case protobufEnumMap // = 712 + case protobufExtension // = 713 + case protobufFixed32 // = 714 + case protobufFixed64 // = 715 + case protobufFloat // = 716 + case protobufInt32 // = 717 + case protobufInt64 // = 718 + case protobufMap // = 719 + case protobufMessageMap // = 720 + case protobufSfixed32 // = 721 + case protobufSfixed64 // = 722 + case protobufSint32 // = 723 + case protobufSint64 // = 724 + case protobufString // = 725 + case protobufUint32 // = 726 + case protobufUint64 // = 727 + case protobufExtensionFieldValues // = 728 + case protobufFieldNumber // = 729 + case protobufGeneratedIsEqualTo // = 730 + case protobufNameMap // = 731 + case protobufNewField // = 732 + case protobufPackage // = 733 + case `protocol` // = 734 + case protoFieldName // = 735 + case protoMessageName // = 736 + case protoNameProviding // = 737 + case protoPaths // = 738 + case `public` // = 739 + case publicDependency // = 740 + case putBoolValue // = 741 + case putBytesValue // = 742 + case putDoubleValue // = 743 + case putEnumValue // = 744 + case putFixedUint32 // = 745 + case putFixedUint64 // = 746 + case putFloatValue // = 747 + case putInt64 // = 748 + case putStringValue // = 749 + case putUint64 // = 750 + case putUint64Hex // = 751 + case putVarInt // = 752 + case putZigZagVarInt // = 753 + case pyGenericServices // = 754 + case r // = 755 + case rawChars // = 756 + case rawRepresentable // = 757 + case rawValue_ // = 758 + case read4HexDigits // = 759 + case readBytes // = 760 + case register // = 761 + case repeated // = 762 + case repeatedEnumExtensionField // = 763 + case repeatedExtensionField // = 764 + case repeatedFieldEncoding // = 765 + case repeatedGroupExtensionField // = 766 + case repeatedMessageExtensionField // = 767 + case repeating // = 768 + case requestStreaming // = 769 + case requestTypeURL // = 770 + case requiredSize // = 771 + case responseStreaming // = 772 + case responseTypeURL // = 773 + case result // = 774 + case retention // = 775 + case `rethrows` // = 776 + case `return` // = 777 + case returnType // = 778 + case revision // = 779 + case rhs // = 780 + case root // = 781 + case rubyPackage // = 782 + case s // = 783 + case sawBackslash // = 784 + case sawSection4Characters // = 785 + case sawSection5Characters // = 786 + case scan // = 787 + case scanner // = 788 + case seconds // = 789 + case self_ // = 790 + case semantic // = 791 + case sendable // = 792 + case separator // = 793 + case serialize // = 794 + case serializedBytes // = 795 + case serializedData // = 796 + case serializedSize // = 797 + case serverStreaming // = 798 + case service // = 799 + case serviceDescriptorProto // = 800 + case serviceOptions // = 801 + case set // = 802 + case setExtensionValue // = 803 + case shift // = 804 + case simpleExtensionMap // = 805 + case size // = 806 + case sizer // = 807 + case source // = 808 + case sourceCodeInfo // = 809 + case sourceContext // = 810 + case sourceEncoding // = 811 + case sourceFile // = 812 + case sourceLocation // = 813 + case span // = 814 + case split // = 815 + case start // = 816 + case startArray // = 817 + case startArrayObject // = 818 + case startField // = 819 + case startIndex // = 820 + case startMessageField // = 821 + case startObject // = 822 + case startRegularField // = 823 + case state // = 824 + case `static` // = 825 + case staticString // = 826 + case storage // = 827 + case string // = 828 + case stringLiteral // = 829 + case stringLiteralType // = 830 + case stringResult // = 831 + case stringValue // = 832 + case `struct` // = 833 + case structValue // = 834 + case subDecoder // = 835 + case `subscript` // = 836 + case subVisitor // = 837 + case swift // = 838 + case swiftPrefix // = 839 + case swiftProtobufContiguousBytes // = 840 + case swiftProtobufError // = 841 + case syntax // = 842 + case t // = 843 + case tag // = 844 + case targets // = 845 + case terminator // = 846 + case testDecoder // = 847 + case text // = 848 + case textDecoder // = 849 + case textFormatDecoder // = 850 + case textFormatDecodingError // = 851 + case textFormatDecodingOptions // = 852 + case textFormatEncodingOptions // = 853 + case textFormatEncodingVisitor // = 854 + case textFormatString // = 855 + case throwOrIgnore // = 856 + case `throws` // = 857 + case timeInterval // = 858 + case timeIntervalSince1970 // = 859 + case timeIntervalSinceReferenceDate // = 860 + case timestamp // = 861 + case tooLarge // = 862 + case total // = 863 + case totalArrayDepth // = 864 + case totalSize // = 865 + case trailingComments // = 866 + case traverse // = 867 + case `true` // = 868 + case `try` // = 869 + case type // = 870 + case `typealias` // = 871 + case typeEnum // = 872 + case typeName // = 873 + case typePrefix // = 874 + case typeStart // = 875 + case typeUnknown // = 876 + case typeURL // = 877 + case uint32 // = 878 + case uint32Value // = 879 + case uint64 // = 880 + case uint64Value // = 881 + case uint8 // = 882 + case unchecked // = 883 + case unicodeScalarLiteral // = 884 + case unicodeScalarLiteralType // = 885 + case unicodeScalars // = 886 + case unicodeScalarView // = 887 + case uninterpretedOption // = 888 + case union // = 889 + case uniqueStorage // = 890 + case unknown // = 891 + case unknownFields // = 892 + case unknownStorage // = 893 + case unpackTo // = 894 + case unsafeBufferPointer // = 895 + case unsafeMutablePointer // = 896 + case unsafeMutableRawBufferPointer // = 897 + case unsafeRawBufferPointer // = 898 + case unsafeRawPointer // = 899 + case unverifiedLazy // = 900 + case updatedOptions // = 901 + case url // = 902 + case useDeterministicOrdering // = 903 + case utf8 // = 904 + case utf8Ptr // = 905 + case utf8ToDouble // = 906 + case utf8Validation // = 907 + case utf8View // = 908 + case v // = 909 + case value // = 910 + case valueField // = 911 + case values // = 912 + case valueType // = 913 + case `var` // = 914 + case verification // = 915 + case verificationState // = 916 + case version // = 917 + case versionString // = 918 + case visitExtensionFields // = 919 + case visitExtensionFieldsAsMessageSet // = 920 + case visitMapField // = 921 + case visitor // = 922 + case visitPacked // = 923 + case visitPackedBoolField // = 924 + case visitPackedDoubleField // = 925 + case visitPackedEnumField // = 926 + case visitPackedFixed32Field // = 927 + case visitPackedFixed64Field // = 928 + case visitPackedFloatField // = 929 + case visitPackedInt32Field // = 930 + case visitPackedInt64Field // = 931 + case visitPackedSfixed32Field // = 932 + case visitPackedSfixed64Field // = 933 + case visitPackedSint32Field // = 934 + case visitPackedSint64Field // = 935 + case visitPackedUint32Field // = 936 + case visitPackedUint64Field // = 937 + case visitRepeated // = 938 + case visitRepeatedBoolField // = 939 + case visitRepeatedBytesField // = 940 + case visitRepeatedDoubleField // = 941 + case visitRepeatedEnumField // = 942 + case visitRepeatedFixed32Field // = 943 + case visitRepeatedFixed64Field // = 944 + case visitRepeatedFloatField // = 945 + case visitRepeatedGroupField // = 946 + case visitRepeatedInt32Field // = 947 + case visitRepeatedInt64Field // = 948 + case visitRepeatedMessageField // = 949 + case visitRepeatedSfixed32Field // = 950 + case visitRepeatedSfixed64Field // = 951 + case visitRepeatedSint32Field // = 952 + case visitRepeatedSint64Field // = 953 + case visitRepeatedStringField // = 954 + case visitRepeatedUint32Field // = 955 + case visitRepeatedUint64Field // = 956 + case visitSingular // = 957 + case visitSingularBoolField // = 958 + case visitSingularBytesField // = 959 + case visitSingularDoubleField // = 960 + case visitSingularEnumField // = 961 + case visitSingularFixed32Field // = 962 + case visitSingularFixed64Field // = 963 + case visitSingularFloatField // = 964 + case visitSingularGroupField // = 965 + case visitSingularInt32Field // = 966 + case visitSingularInt64Field // = 967 + case visitSingularMessageField // = 968 + case visitSingularSfixed32Field // = 969 + case visitSingularSfixed64Field // = 970 + case visitSingularSint32Field // = 971 + case visitSingularSint64Field // = 972 + case visitSingularStringField // = 973 + case visitSingularUint32Field // = 974 + case visitSingularUint64Field // = 975 + case visitUnknown // = 976 + case wasDecoded // = 977 + case weak // = 978 + case weakDependency // = 979 + case `where` // = 980 + case wireFormat // = 981 + case with // = 982 + case withUnsafeBytes // = 983 + case withUnsafeMutableBytes // = 984 + case work // = 985 + case wrapped // = 986 + case wrappedType // = 987 + case wrappedValue // = 988 + case written // = 989 + case yday // = 990 case UNRECOGNIZED(Int) init() { @@ -1041,989 +1037,985 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, case 9: self = .anyExtensionField case 10: self = .anyMessageExtension case 11: self = .anyMessageStorage - case 12: self = .anyTypeUrlnotRegistered - case 13: self = .anyUnpackError - case 14: self = .api - case 15: self = .appended - case 16: self = .appendUintHex - case 17: self = .appendUnknown - case 18: self = .areAllInitialized - case 19: self = .array - case 20: self = .arrayDepth - case 21: self = .arrayLiteral - case 22: self = .arraySeparator - case 23: self = .as - case 24: self = .asciiOpenCurlyBracket - case 25: self = .asciiZero - case 26: self = .async - case 27: self = .asyncIterator - case 28: self = .asyncIteratorProtocol - case 29: self = .asyncMessageSequence - case 30: self = .available - case 31: self = .b - case 32: self = .base - case 33: self = .base64Values - case 34: self = .baseAddress - case 35: self = .baseType - case 36: self = .begin - case 37: self = .binary - case 38: self = .binaryDecoder - case 39: self = .binaryDecoding - case 40: self = .binaryDecodingError - case 41: self = .binaryDecodingOptions - case 42: self = .binaryDelimited - case 43: self = .binaryEncoder - case 44: self = .binaryEncoding - case 45: self = .binaryEncodingError - case 46: self = .binaryEncodingMessageSetSizeVisitor - case 47: self = .binaryEncodingMessageSetVisitor - case 48: self = .binaryEncodingOptions - case 49: self = .binaryEncodingSizeVisitor - case 50: self = .binaryEncodingVisitor - case 51: self = .binaryOptions - case 52: self = .binaryProtobufDelimitedMessages - case 53: self = .binaryStreamDecoding - case 54: self = .binaryStreamDecodingError - case 55: self = .bitPattern - case 56: self = .body - case 57: self = .bool - case 58: self = .booleanLiteral - case 59: self = .booleanLiteralType - case 60: self = .boolValue - case 61: self = .buffer - case 62: self = .bytes - case 63: self = .bytesInGroup - case 64: self = .bytesNeeded - case 65: self = .bytesRead - case 66: self = .bytesValue - case 67: self = .c - case 68: self = .capitalizeNext - case 69: self = .cardinality - case 70: self = .caseIterable - case 71: self = .ccEnableArenas - case 72: self = .ccGenericServices - case 73: self = .character - case 74: self = .chars - case 75: self = .chunk - case 76: self = .class - case 77: self = .clearAggregateValue - case 78: self = .clearAllowAlias - case 79: self = .clearBegin - case 80: self = .clearCcEnableArenas - case 81: self = .clearCcGenericServices - case 82: self = .clearClientStreaming - case 83: self = .clearCsharpNamespace - case 84: self = .clearCtype - case 85: self = .clearDebugRedact - case 86: self = .clearDefaultValue - case 87: self = .clearDeprecated - case 88: self = .clearDeprecatedLegacyJsonFieldConflicts - case 89: self = .clearDeprecationWarning - case 90: self = .clearDoubleValue - case 91: self = .clearEdition - case 92: self = .clearEditionDeprecated - case 93: self = .clearEditionIntroduced - case 94: self = .clearEditionRemoved - case 95: self = .clearEnd - case 96: self = .clearEnumType - case 97: self = .clearExtendee - case 98: self = .clearExtensionValue - case 99: self = .clearFeatures - case 100: self = .clearFeatureSupport - case 101: self = .clearFieldPresence - case 102: self = .clearFixedFeatures - case 103: self = .clearFullName - case 104: self = .clearGoPackage - case 105: self = .clearIdempotencyLevel - case 106: self = .clearIdentifierValue - case 107: self = .clearInputType - case 108: self = .clearIsExtension - case 109: self = .clearJavaGenerateEqualsAndHash - case 110: self = .clearJavaGenericServices - case 111: self = .clearJavaMultipleFiles - case 112: self = .clearJavaOuterClassname - case 113: self = .clearJavaPackage - case 114: self = .clearJavaStringCheckUtf8 - case 115: self = .clearJsonFormat - case 116: self = .clearJsonName - case 117: self = .clearJstype - case 118: self = .clearLabel - case 119: self = .clearLazy - case 120: self = .clearLeadingComments - case 121: self = .clearMapEntry - case 122: self = .clearMaximumEdition - case 123: self = .clearMessageEncoding - case 124: self = .clearMessageSetWireFormat - case 125: self = .clearMinimumEdition - case 126: self = .clearName - case 127: self = .clearNamePart - case 128: self = .clearNegativeIntValue - case 129: self = .clearNoStandardDescriptorAccessor - case 130: self = .clearNumber - case 131: self = .clearObjcClassPrefix - case 132: self = .clearOneofIndex - case 133: self = .clearOptimizeFor - case 134: self = .clearOptions - case 135: self = .clearOutputType - case 136: self = .clearOverridableFeatures - case 137: self = .clearPackage - case 138: self = .clearPacked - case 139: self = .clearPhpClassPrefix - case 140: self = .clearPhpMetadataNamespace - case 141: self = .clearPhpNamespace - case 142: self = .clearPositiveIntValue - case 143: self = .clearProto3Optional - case 144: self = .clearPyGenericServices - case 145: self = .clearRepeated - case 146: self = .clearRepeatedFieldEncoding - case 147: self = .clearReserved - case 148: self = .clearRetention - case 149: self = .clearRubyPackage - case 150: self = .clearSemantic - case 151: self = .clearServerStreaming - case 152: self = .clearSourceCodeInfo - case 153: self = .clearSourceContext - case 154: self = .clearSourceFile - case 155: self = .clearStart - case 156: self = .clearStringValue - case 157: self = .clearSwiftPrefix - case 158: self = .clearSyntax - case 159: self = .clearTrailingComments - case 160: self = .clearType - case 161: self = .clearTypeName - case 162: self = .clearUnverifiedLazy - case 163: self = .clearUtf8Validation - case 164: self = .clearValue - case 165: self = .clearVerification - case 166: self = .clearWeak - case 167: self = .clientStreaming - case 168: self = .code - case 169: self = .codePoint - case 170: self = .codeUnits - case 171: self = .collection - case 172: self = .com - case 173: self = .comma - case 174: self = .consumedBytes - case 175: self = .contentsOf - case 176: self = .copy - case 177: self = .count - case 178: self = .countVarintsInBuffer - case 179: self = .csharpNamespace - case 180: self = .ctype - case 181: self = .customCodable - case 182: self = .customDebugStringConvertible - case 183: self = .customStringConvertible - case 184: self = .d - case 185: self = .data - case 186: self = .dataResult - case 187: self = .date - case 188: self = .daySec - case 189: self = .daysSinceEpoch - case 190: self = .debugDescription_ - case 191: self = .debugRedact - case 192: self = .declaration - case 193: self = .decoded - case 194: self = .decodedFromJsonnull - case 195: self = .decodeExtensionField - case 196: self = .decodeExtensionFieldsAsMessageSet - case 197: self = .decodeJson - case 198: self = .decodeMapField - case 199: self = .decodeMessage - case 200: self = .decoder - case 201: self = .decodeRepeated - case 202: self = .decodeRepeatedBoolField - case 203: self = .decodeRepeatedBytesField - case 204: self = .decodeRepeatedDoubleField - case 205: self = .decodeRepeatedEnumField - case 206: self = .decodeRepeatedFixed32Field - case 207: self = .decodeRepeatedFixed64Field - case 208: self = .decodeRepeatedFloatField - case 209: self = .decodeRepeatedGroupField - case 210: self = .decodeRepeatedInt32Field - case 211: self = .decodeRepeatedInt64Field - case 212: self = .decodeRepeatedMessageField - case 213: self = .decodeRepeatedSfixed32Field - case 214: self = .decodeRepeatedSfixed64Field - case 215: self = .decodeRepeatedSint32Field - case 216: self = .decodeRepeatedSint64Field - case 217: self = .decodeRepeatedStringField - case 218: self = .decodeRepeatedUint32Field - case 219: self = .decodeRepeatedUint64Field - case 220: self = .decodeSingular - case 221: self = .decodeSingularBoolField - case 222: self = .decodeSingularBytesField - case 223: self = .decodeSingularDoubleField - case 224: self = .decodeSingularEnumField - case 225: self = .decodeSingularFixed32Field - case 226: self = .decodeSingularFixed64Field - case 227: self = .decodeSingularFloatField - case 228: self = .decodeSingularGroupField - case 229: self = .decodeSingularInt32Field - case 230: self = .decodeSingularInt64Field - case 231: self = .decodeSingularMessageField - case 232: self = .decodeSingularSfixed32Field - case 233: self = .decodeSingularSfixed64Field - case 234: self = .decodeSingularSint32Field - case 235: self = .decodeSingularSint64Field - case 236: self = .decodeSingularStringField - case 237: self = .decodeSingularUint32Field - case 238: self = .decodeSingularUint64Field - case 239: self = .decodeTextFormat - case 240: self = .defaultAnyTypeUrlprefix - case 241: self = .defaults - case 242: self = .defaultValue - case 243: self = .dependency - case 244: self = .deprecated - case 245: self = .deprecatedLegacyJsonFieldConflicts - case 246: self = .deprecationWarning - case 247: self = .description_ - case 248: self = .descriptorProto - case 249: self = .dictionary - case 250: self = .dictionaryLiteral - case 251: self = .digit - case 252: self = .digit0 - case 253: self = .digit1 - case 254: self = .digitCount - case 255: self = .digits - case 256: self = .digitValue - case 257: self = .discardableResult - case 258: self = .discardUnknownFields - case 259: self = .double - case 260: self = .doubleValue - case 261: self = .duration - case 262: self = .e - case 263: self = .edition - case 264: self = .editionDefault - case 265: self = .editionDefaults - case 266: self = .editionDeprecated - case 267: self = .editionIntroduced - case 268: self = .editionRemoved - case 269: self = .element - case 270: self = .elements - case 271: self = .emitExtensionFieldName - case 272: self = .emitFieldName - case 273: self = .emitFieldNumber - case 274: self = .empty - case 275: self = .encodeAsBytes - case 276: self = .encoded - case 277: self = .encodedJsonstring - case 278: self = .encodedSize - case 279: self = .encodeField - case 280: self = .encoder - case 281: self = .end - case 282: self = .endArray - case 283: self = .endMessageField - case 284: self = .endObject - case 285: self = .endRegularField - case 286: self = .enum - case 287: self = .enumDescriptorProto - case 288: self = .enumOptions - case 289: self = .enumReservedRange - case 290: self = .enumType - case 291: self = .enumvalue - case 292: self = .enumValueDescriptorProto - case 293: self = .enumValueOptions - case 294: self = .equatable - case 295: self = .error - case 296: self = .expressibleByArrayLiteral - case 297: self = .expressibleByDictionaryLiteral - case 298: self = .ext - case 299: self = .extDecoder - case 300: self = .extendedGraphemeClusterLiteral - case 301: self = .extendedGraphemeClusterLiteralType - case 302: self = .extendee - case 303: self = .extensibleMessage - case 304: self = .extension - case 305: self = .extensionField - case 306: self = .extensionFieldNumber - case 307: self = .extensionFieldValueSet - case 308: self = .extensionMap - case 309: self = .extensionRange - case 310: self = .extensionRangeOptions - case 311: self = .extensions - case 312: self = .extras - case 313: self = .f - case 314: self = .false - case 315: self = .features - case 316: self = .featureSet - case 317: self = .featureSetDefaults - case 318: self = .featureSetEditionDefault - case 319: self = .featureSupport - case 320: self = .field - case 321: self = .fieldData - case 322: self = .fieldDescriptorProto - case 323: self = .fieldMask - case 324: self = .fieldName - case 325: self = .fieldNameCount - case 326: self = .fieldNum - case 327: self = .fieldNumber - case 328: self = .fieldNumberForProto - case 329: self = .fieldOptions - case 330: self = .fieldPresence - case 331: self = .fields - case 332: self = .fieldSize - case 333: self = .fieldTag - case 334: self = .fieldType - case 335: self = .file - case 336: self = .fileDescriptorProto - case 337: self = .fileDescriptorSet - case 338: self = .fileName - case 339: self = .fileOptions - case 340: self = .filter - case 341: self = .final - case 342: self = .finiteOnly - case 343: self = .first - case 344: self = .firstItem - case 345: self = .fixedFeatures - case 346: self = .float - case 347: self = .floatLiteral - case 348: self = .floatLiteralType - case 349: self = .floatValue - case 350: self = .forMessageName - case 351: self = .formUnion - case 352: self = .forReadingFrom - case 353: self = .forTypeURL - case 354: self = .forwardParser - case 355: self = .forWritingInto - case 356: self = .from - case 357: self = .fromAscii2 - case 358: self = .fromAscii4 - case 359: self = .fromByteOffset - case 360: self = .fromHexDigit - case 361: self = .fullName - case 362: self = .func - case 363: self = .function - case 364: self = .g - case 365: self = .generatedCodeInfo - case 366: self = .get - case 367: self = .getExtensionValue - case 368: self = .googleapis - case 369: self = .googleProtobufAny - case 370: self = .googleProtobufApi - case 371: self = .googleProtobufBoolValue - case 372: self = .googleProtobufBytesValue - case 373: self = .googleProtobufDescriptorProto - case 374: self = .googleProtobufDoubleValue - case 375: self = .googleProtobufDuration - case 376: self = .googleProtobufEdition - case 377: self = .googleProtobufEmpty - case 378: self = .googleProtobufEnum - case 379: self = .googleProtobufEnumDescriptorProto - case 380: self = .googleProtobufEnumOptions - case 381: self = .googleProtobufEnumValue - case 382: self = .googleProtobufEnumValueDescriptorProto - case 383: self = .googleProtobufEnumValueOptions - case 384: self = .googleProtobufExtensionRangeOptions - case 385: self = .googleProtobufFeatureSet - case 386: self = .googleProtobufFeatureSetDefaults - case 387: self = .googleProtobufField - case 388: self = .googleProtobufFieldDescriptorProto - case 389: self = .googleProtobufFieldMask - case 390: self = .googleProtobufFieldOptions - case 391: self = .googleProtobufFileDescriptorProto - case 392: self = .googleProtobufFileDescriptorSet - case 393: self = .googleProtobufFileOptions - case 394: self = .googleProtobufFloatValue - case 395: self = .googleProtobufGeneratedCodeInfo - case 396: self = .googleProtobufInt32Value - case 397: self = .googleProtobufInt64Value - case 398: self = .googleProtobufListValue - case 399: self = .googleProtobufMessageOptions - case 400: self = .googleProtobufMethod - case 401: self = .googleProtobufMethodDescriptorProto - case 402: self = .googleProtobufMethodOptions - case 403: self = .googleProtobufMixin - case 404: self = .googleProtobufNullValue - case 405: self = .googleProtobufOneofDescriptorProto - case 406: self = .googleProtobufOneofOptions - case 407: self = .googleProtobufOption - case 408: self = .googleProtobufServiceDescriptorProto - case 409: self = .googleProtobufServiceOptions - case 410: self = .googleProtobufSourceCodeInfo - case 411: self = .googleProtobufSourceContext - case 412: self = .googleProtobufStringValue - case 413: self = .googleProtobufStruct - case 414: self = .googleProtobufSyntax - case 415: self = .googleProtobufTimestamp - case 416: self = .googleProtobufType - case 417: self = .googleProtobufUint32Value - case 418: self = .googleProtobufUint64Value - case 419: self = .googleProtobufUninterpretedOption - case 420: self = .googleProtobufValue - case 421: self = .goPackage - case 422: self = .group - case 423: self = .groupFieldNumberStack - case 424: self = .groupSize - case 425: self = .hadOneofValue - case 426: self = .handleConflictingOneOf - case 427: self = .hasAggregateValue - case 428: self = .hasAllowAlias - case 429: self = .hasBegin - case 430: self = .hasCcEnableArenas - case 431: self = .hasCcGenericServices - case 432: self = .hasClientStreaming - case 433: self = .hasCsharpNamespace - case 434: self = .hasCtype - case 435: self = .hasDebugRedact - case 436: self = .hasDefaultValue - case 437: self = .hasDeprecated - case 438: self = .hasDeprecatedLegacyJsonFieldConflicts - case 439: self = .hasDeprecationWarning - case 440: self = .hasDoubleValue - case 441: self = .hasEdition - case 442: self = .hasEditionDeprecated - case 443: self = .hasEditionIntroduced - case 444: self = .hasEditionRemoved - case 445: self = .hasEnd - case 446: self = .hasEnumType - case 447: self = .hasExtendee - case 448: self = .hasExtensionValue - case 449: self = .hasFeatures - case 450: self = .hasFeatureSupport - case 451: self = .hasFieldPresence - case 452: self = .hasFixedFeatures - case 453: self = .hasFullName - case 454: self = .hasGoPackage - case 455: self = .hash - case 456: self = .hashable - case 457: self = .hasher - case 458: self = .hashVisitor - case 459: self = .hasIdempotencyLevel - case 460: self = .hasIdentifierValue - case 461: self = .hasInputType - case 462: self = .hasIsExtension - case 463: self = .hasJavaGenerateEqualsAndHash - case 464: self = .hasJavaGenericServices - case 465: self = .hasJavaMultipleFiles - case 466: self = .hasJavaOuterClassname - case 467: self = .hasJavaPackage - case 468: self = .hasJavaStringCheckUtf8 - case 469: self = .hasJsonFormat - case 470: self = .hasJsonName - case 471: self = .hasJstype - case 472: self = .hasLabel - case 473: self = .hasLazy - case 474: self = .hasLeadingComments - case 475: self = .hasMapEntry - case 476: self = .hasMaximumEdition - case 477: self = .hasMessageEncoding - case 478: self = .hasMessageSetWireFormat - case 479: self = .hasMinimumEdition - case 480: self = .hasName - case 481: self = .hasNamePart - case 482: self = .hasNegativeIntValue - case 483: self = .hasNoStandardDescriptorAccessor - case 484: self = .hasNumber - case 485: self = .hasObjcClassPrefix - case 486: self = .hasOneofIndex - case 487: self = .hasOptimizeFor - case 488: self = .hasOptions - case 489: self = .hasOutputType - case 490: self = .hasOverridableFeatures - case 491: self = .hasPackage - case 492: self = .hasPacked - case 493: self = .hasPhpClassPrefix - case 494: self = .hasPhpMetadataNamespace - case 495: self = .hasPhpNamespace - case 496: self = .hasPositiveIntValue - case 497: self = .hasProto3Optional - case 498: self = .hasPyGenericServices - case 499: self = .hasRepeated - case 500: self = .hasRepeatedFieldEncoding - case 501: self = .hasReserved - case 502: self = .hasRetention - case 503: self = .hasRubyPackage - case 504: self = .hasSemantic - case 505: self = .hasServerStreaming - case 506: self = .hasSourceCodeInfo - case 507: self = .hasSourceContext - case 508: self = .hasSourceFile - case 509: self = .hasStart - case 510: self = .hasStringValue - case 511: self = .hasSwiftPrefix - case 512: self = .hasSyntax - case 513: self = .hasTrailingComments - case 514: self = .hasType - case 515: self = .hasTypeName - case 516: self = .hasUnverifiedLazy - case 517: self = .hasUtf8Validation - case 518: self = .hasValue - case 519: self = .hasVerification - case 520: self = .hasWeak - case 521: self = .hour - case 522: self = .i - case 523: self = .idempotencyLevel - case 524: self = .identifierValue - case 525: self = .if - case 526: self = .ignoreUnknownExtensionFields - case 527: self = .ignoreUnknownFields - case 528: self = .index - case 529: self = .init_ - case 530: self = .inout - case 531: self = .inputType - case 532: self = .insert - case 533: self = .int - case 534: self = .int32 - case 535: self = .int32Value - case 536: self = .int64 - case 537: self = .int64Value - case 538: self = .int8 - case 539: self = .integerLiteral - case 540: self = .integerLiteralType - case 541: self = .intern - case 542: self = .internal - case 543: self = .internalState - case 544: self = .into - case 545: self = .ints - case 546: self = .isA - case 547: self = .isEqual - case 548: self = .isEqualTo - case 549: self = .isExtension - case 550: self = .isInitialized - case 551: self = .isNegative - case 552: self = .itemTagsEncodedSize - case 553: self = .iterator - case 554: self = .javaGenerateEqualsAndHash - case 555: self = .javaGenericServices - case 556: self = .javaMultipleFiles - case 557: self = .javaOuterClassname - case 558: self = .javaPackage - case 559: self = .javaStringCheckUtf8 - case 560: self = .jsondecoder - case 561: self = .jsondecodingError - case 562: self = .jsondecodingOptions - case 563: self = .jsonEncoder - case 564: self = .jsonencoding - case 565: self = .jsonencodingError - case 566: self = .jsonencodingOptions - case 567: self = .jsonencodingVisitor - case 568: self = .jsonFormat - case 569: self = .jsonmapEncodingVisitor - case 570: self = .jsonName - case 571: self = .jsonPath - case 572: self = .jsonPaths - case 573: self = .jsonscanner - case 574: self = .jsonString - case 575: self = .jsonText - case 576: self = .jsonUtf8Bytes - case 577: self = .jsonUtf8Data - case 578: self = .jstype - case 579: self = .k - case 580: self = .kChunkSize - case 581: self = .key - case 582: self = .keyField - case 583: self = .keyFieldOpt - case 584: self = .keyType - case 585: self = .kind - case 586: self = .l - case 587: self = .label - case 588: self = .lazy - case 589: self = .leadingComments - case 590: self = .leadingDetachedComments - case 591: self = .length - case 592: self = .lessThan - case 593: self = .let - case 594: self = .lhs - case 595: self = .line - case 596: self = .list - case 597: self = .listOfMessages - case 598: self = .listValue - case 599: self = .littleEndian - case 600: self = .load - case 601: self = .localHasher - case 602: self = .location - case 603: self = .m - case 604: self = .major - case 605: self = .makeAsyncIterator - case 606: self = .makeIterator - case 607: self = .malformedLength - case 608: self = .mapEntry - case 609: self = .mapKeyType - case 610: self = .mapToMessages - case 611: self = .mapValueType - case 612: self = .mapVisitor - case 613: self = .maximumEdition - case 614: self = .mdayStart - case 615: self = .merge - case 616: self = .message - case 617: self = .messageDepthLimit - case 618: self = .messageEncoding - case 619: self = .messageExtension - case 620: self = .messageImplementationBase - case 621: self = .messageOptions - case 622: self = .messageSet - case 623: self = .messageSetWireFormat - case 624: self = .messageSize - case 625: self = .messageType - case 626: self = .method - case 627: self = .methodDescriptorProto - case 628: self = .methodOptions - case 629: self = .methods - case 630: self = .min - case 631: self = .minimumEdition - case 632: self = .minor - case 633: self = .mixin - case 634: self = .mixins - case 635: self = .modifier - case 636: self = .modify - case 637: self = .month - case 638: self = .msgExtension - case 639: self = .mutating - case 640: self = .n - case 641: self = .name - case 642: self = .nameDescription - case 643: self = .nameMap - case 644: self = .namePart - case 645: self = .names - case 646: self = .nanos - case 647: self = .negativeIntValue - case 648: self = .nestedType - case 649: self = .newL - case 650: self = .newList - case 651: self = .newValue - case 652: self = .next - case 653: self = .nextByte - case 654: self = .nextFieldNumber - case 655: self = .nextVarInt - case 656: self = .nil - case 657: self = .nilLiteral - case 658: self = .noBytesAvailable - case 659: self = .noStandardDescriptorAccessor - case 660: self = .nullValue - case 661: self = .number - case 662: self = .numberValue - case 663: self = .objcClassPrefix - case 664: self = .of - case 665: self = .oneofDecl - case 666: self = .oneofDescriptorProto - case 667: self = .oneofIndex - case 668: self = .oneofOptions - case 669: self = .oneofs - case 670: self = .oneOfKind - case 671: self = .optimizeFor - case 672: self = .optimizeMode - case 673: self = .option - case 674: self = .optionalEnumExtensionField - case 675: self = .optionalExtensionField - case 676: self = .optionalGroupExtensionField - case 677: self = .optionalMessageExtensionField - case 678: self = .optionRetention - case 679: self = .options - case 680: self = .optionTargetType - case 681: self = .other - case 682: self = .others - case 683: self = .out - case 684: self = .outputType - case 685: self = .overridableFeatures - case 686: self = .p - case 687: self = .package - case 688: self = .packed - case 689: self = .packedEnumExtensionField - case 690: self = .packedExtensionField - case 691: self = .padding - case 692: self = .parent - case 693: self = .parse - case 694: self = .path - case 695: self = .paths - case 696: self = .payload - case 697: self = .payloadSize - case 698: self = .phpClassPrefix - case 699: self = .phpMetadataNamespace - case 700: self = .phpNamespace - case 701: self = .pos - case 702: self = .positiveIntValue - case 703: self = .prefix - case 704: self = .preserveProtoFieldNames - case 705: self = .preTraverse - case 706: self = .printUnknownFields - case 707: self = .proto2 - case 708: self = .proto3DefaultValue - case 709: self = .proto3Optional - case 710: self = .protobufApiversionCheck - case 711: self = .protobufApiversion3 - case 712: self = .protobufBool - case 713: self = .protobufBytes - case 714: self = .protobufDouble - case 715: self = .protobufEnumMap - case 716: self = .protobufExtension - case 717: self = .protobufFixed32 - case 718: self = .protobufFixed64 - case 719: self = .protobufFloat - case 720: self = .protobufInt32 - case 721: self = .protobufInt64 - case 722: self = .protobufMap - case 723: self = .protobufMessageMap - case 724: self = .protobufSfixed32 - case 725: self = .protobufSfixed64 - case 726: self = .protobufSint32 - case 727: self = .protobufSint64 - case 728: self = .protobufString - case 729: self = .protobufUint32 - case 730: self = .protobufUint64 - case 731: self = .protobufExtensionFieldValues - case 732: self = .protobufFieldNumber - case 733: self = .protobufGeneratedIsEqualTo - case 734: self = .protobufNameMap - case 735: self = .protobufNewField - case 736: self = .protobufPackage - case 737: self = .protocol - case 738: self = .protoFieldName - case 739: self = .protoMessageName - case 740: self = .protoNameProviding - case 741: self = .protoPaths - case 742: self = .public - case 743: self = .publicDependency - case 744: self = .putBoolValue - case 745: self = .putBytesValue - case 746: self = .putDoubleValue - case 747: self = .putEnumValue - case 748: self = .putFixedUint32 - case 749: self = .putFixedUint64 - case 750: self = .putFloatValue - case 751: self = .putInt64 - case 752: self = .putStringValue - case 753: self = .putUint64 - case 754: self = .putUint64Hex - case 755: self = .putVarInt - case 756: self = .putZigZagVarInt - case 757: self = .pyGenericServices - case 758: self = .r - case 759: self = .rawChars - case 760: self = .rawRepresentable - case 761: self = .rawValue_ - case 762: self = .read4HexDigits - case 763: self = .readBytes - case 764: self = .register - case 765: self = .repeated - case 766: self = .repeatedEnumExtensionField - case 767: self = .repeatedExtensionField - case 768: self = .repeatedFieldEncoding - case 769: self = .repeatedGroupExtensionField - case 770: self = .repeatedMessageExtensionField - case 771: self = .repeating - case 772: self = .requestStreaming - case 773: self = .requestTypeURL - case 774: self = .requiredSize - case 775: self = .responseStreaming - case 776: self = .responseTypeURL - case 777: self = .result - case 778: self = .retention - case 779: self = .rethrows - case 780: self = .return - case 781: self = .returnType - case 782: self = .revision - case 783: self = .rhs - case 784: self = .root - case 785: self = .rubyPackage - case 786: self = .s - case 787: self = .sawBackslash - case 788: self = .sawSection4Characters - case 789: self = .sawSection5Characters - case 790: self = .scan - case 791: self = .scanner - case 792: self = .seconds - case 793: self = .self_ - case 794: self = .semantic - case 795: self = .sendable - case 796: self = .separator - case 797: self = .serialize - case 798: self = .serializedBytes - case 799: self = .serializedData - case 800: self = .serializedSize - case 801: self = .serverStreaming - case 802: self = .service - case 803: self = .serviceDescriptorProto - case 804: self = .serviceOptions - case 805: self = .set - case 806: self = .setExtensionValue - case 807: self = .shift - case 808: self = .simpleExtensionMap - case 809: self = .size - case 810: self = .sizer - case 811: self = .source - case 812: self = .sourceCodeInfo - case 813: self = .sourceContext - case 814: self = .sourceEncoding - case 815: self = .sourceFile - case 816: self = .sourceLocation - case 817: self = .span - case 818: self = .split - case 819: self = .start - case 820: self = .startArray - case 821: self = .startArrayObject - case 822: self = .startField - case 823: self = .startIndex - case 824: self = .startMessageField - case 825: self = .startObject - case 826: self = .startRegularField - case 827: self = .state - case 828: self = .static - case 829: self = .staticString - case 830: self = .storage - case 831: self = .string - case 832: self = .stringLiteral - case 833: self = .stringLiteralType - case 834: self = .stringResult - case 835: self = .stringValue - case 836: self = .struct - case 837: self = .structValue - case 838: self = .subDecoder - case 839: self = .subscript - case 840: self = .subVisitor - case 841: self = .swift - case 842: self = .swiftPrefix - case 843: self = .swiftProtobufContiguousBytes - case 844: self = .swiftProtobufError - case 845: self = .syntax - case 846: self = .t - case 847: self = .tag - case 848: self = .targets - case 849: self = .terminator - case 850: self = .testDecoder - case 851: self = .text - case 852: self = .textDecoder - case 853: self = .textFormatDecoder - case 854: self = .textFormatDecodingError - case 855: self = .textFormatDecodingOptions - case 856: self = .textFormatEncodingOptions - case 857: self = .textFormatEncodingVisitor - case 858: self = .textFormatString - case 859: self = .throwOrIgnore - case 860: self = .throws - case 861: self = .timeInterval - case 862: self = .timeIntervalSince1970 - case 863: self = .timeIntervalSinceReferenceDate - case 864: self = .timestamp - case 865: self = .tooLarge - case 866: self = .total - case 867: self = .totalArrayDepth - case 868: self = .totalSize - case 869: self = .trailingComments - case 870: self = .traverse - case 871: self = .true - case 872: self = .try - case 873: self = .type - case 874: self = .typealias - case 875: self = .typeEnum - case 876: self = .typeName - case 877: self = .typePrefix - case 878: self = .typeStart - case 879: self = .typeUnknown - case 880: self = .typeURL - case 881: self = .uint32 - case 882: self = .uint32Value - case 883: self = .uint64 - case 884: self = .uint64Value - case 885: self = .uint8 - case 886: self = .unchecked - case 887: self = .unicodeScalarLiteral - case 888: self = .unicodeScalarLiteralType - case 889: self = .unicodeScalars - case 890: self = .unicodeScalarView - case 891: self = .uninterpretedOption - case 892: self = .union - case 893: self = .uniqueStorage - case 894: self = .unknown - case 895: self = .unknownFields - case 896: self = .unknownStorage - case 897: self = .unpackTo - case 898: self = .unregisteredTypeURL - case 899: self = .unsafeBufferPointer - case 900: self = .unsafeMutablePointer - case 901: self = .unsafeMutableRawBufferPointer - case 902: self = .unsafeRawBufferPointer - case 903: self = .unsafeRawPointer - case 904: self = .unverifiedLazy - case 905: self = .updatedOptions - case 906: self = .url - case 907: self = .useDeterministicOrdering - case 908: self = .utf8 - case 909: self = .utf8Ptr - case 910: self = .utf8ToDouble - case 911: self = .utf8Validation - case 912: self = .utf8View - case 913: self = .v - case 914: self = .value - case 915: self = .valueField - case 916: self = .values - case 917: self = .valueType - case 918: self = .var - case 919: self = .verification - case 920: self = .verificationState - case 921: self = .version - case 922: self = .versionString - case 923: self = .visitExtensionFields - case 924: self = .visitExtensionFieldsAsMessageSet - case 925: self = .visitMapField - case 926: self = .visitor - case 927: self = .visitPacked - case 928: self = .visitPackedBoolField - case 929: self = .visitPackedDoubleField - case 930: self = .visitPackedEnumField - case 931: self = .visitPackedFixed32Field - case 932: self = .visitPackedFixed64Field - case 933: self = .visitPackedFloatField - case 934: self = .visitPackedInt32Field - case 935: self = .visitPackedInt64Field - case 936: self = .visitPackedSfixed32Field - case 937: self = .visitPackedSfixed64Field - case 938: self = .visitPackedSint32Field - case 939: self = .visitPackedSint64Field - case 940: self = .visitPackedUint32Field - case 941: self = .visitPackedUint64Field - case 942: self = .visitRepeated - case 943: self = .visitRepeatedBoolField - case 944: self = .visitRepeatedBytesField - case 945: self = .visitRepeatedDoubleField - case 946: self = .visitRepeatedEnumField - case 947: self = .visitRepeatedFixed32Field - case 948: self = .visitRepeatedFixed64Field - case 949: self = .visitRepeatedFloatField - case 950: self = .visitRepeatedGroupField - case 951: self = .visitRepeatedInt32Field - case 952: self = .visitRepeatedInt64Field - case 953: self = .visitRepeatedMessageField - case 954: self = .visitRepeatedSfixed32Field - case 955: self = .visitRepeatedSfixed64Field - case 956: self = .visitRepeatedSint32Field - case 957: self = .visitRepeatedSint64Field - case 958: self = .visitRepeatedStringField - case 959: self = .visitRepeatedUint32Field - case 960: self = .visitRepeatedUint64Field - case 961: self = .visitSingular - case 962: self = .visitSingularBoolField - case 963: self = .visitSingularBytesField - case 964: self = .visitSingularDoubleField - case 965: self = .visitSingularEnumField - case 966: self = .visitSingularFixed32Field - case 967: self = .visitSingularFixed64Field - case 968: self = .visitSingularFloatField - case 969: self = .visitSingularGroupField - case 970: self = .visitSingularInt32Field - case 971: self = .visitSingularInt64Field - case 972: self = .visitSingularMessageField - case 973: self = .visitSingularSfixed32Field - case 974: self = .visitSingularSfixed64Field - case 975: self = .visitSingularSint32Field - case 976: self = .visitSingularSint64Field - case 977: self = .visitSingularStringField - case 978: self = .visitSingularUint32Field - case 979: self = .visitSingularUint64Field - case 980: self = .visitUnknown - case 981: self = .wasDecoded - case 982: self = .weak - case 983: self = .weakDependency - case 984: self = .where - case 985: self = .wireFormat - case 986: self = .with - case 987: self = .withUnsafeBytes - case 988: self = .withUnsafeMutableBytes - case 989: self = .work - case 990: self = .wrapped - case 991: self = .wrappedType - case 992: self = .wrappedValue - case 993: self = .written - case 994: self = .yday + case 12: self = .anyUnpackError + case 13: self = .api + case 14: self = .appended + case 15: self = .appendUintHex + case 16: self = .appendUnknown + case 17: self = .areAllInitialized + case 18: self = .array + case 19: self = .arrayDepth + case 20: self = .arrayLiteral + case 21: self = .arraySeparator + case 22: self = .as + case 23: self = .asciiOpenCurlyBracket + case 24: self = .asciiZero + case 25: self = .async + case 26: self = .asyncIterator + case 27: self = .asyncIteratorProtocol + case 28: self = .asyncMessageSequence + case 29: self = .available + case 30: self = .b + case 31: self = .base + case 32: self = .base64Values + case 33: self = .baseAddress + case 34: self = .baseType + case 35: self = .begin + case 36: self = .binary + case 37: self = .binaryDecoder + case 38: self = .binaryDecoding + case 39: self = .binaryDecodingError + case 40: self = .binaryDecodingOptions + case 41: self = .binaryDelimited + case 42: self = .binaryEncoder + case 43: self = .binaryEncodingError + case 44: self = .binaryEncodingMessageSetSizeVisitor + case 45: self = .binaryEncodingMessageSetVisitor + case 46: self = .binaryEncodingOptions + case 47: self = .binaryEncodingSizeVisitor + case 48: self = .binaryEncodingVisitor + case 49: self = .binaryOptions + case 50: self = .binaryProtobufDelimitedMessages + case 51: self = .binaryStreamDecoding + case 52: self = .binaryStreamDecodingError + case 53: self = .bitPattern + case 54: self = .body + case 55: self = .bool + case 56: self = .booleanLiteral + case 57: self = .booleanLiteralType + case 58: self = .boolValue + case 59: self = .buffer + case 60: self = .bytes + case 61: self = .bytesInGroup + case 62: self = .bytesNeeded + case 63: self = .bytesRead + case 64: self = .bytesValue + case 65: self = .c + case 66: self = .capitalizeNext + case 67: self = .cardinality + case 68: self = .caseIterable + case 69: self = .ccEnableArenas + case 70: self = .ccGenericServices + case 71: self = .character + case 72: self = .chars + case 73: self = .chunk + case 74: self = .class + case 75: self = .clearAggregateValue + case 76: self = .clearAllowAlias + case 77: self = .clearBegin + case 78: self = .clearCcEnableArenas + case 79: self = .clearCcGenericServices + case 80: self = .clearClientStreaming + case 81: self = .clearCsharpNamespace + case 82: self = .clearCtype + case 83: self = .clearDebugRedact + case 84: self = .clearDefaultValue + case 85: self = .clearDeprecated + case 86: self = .clearDeprecatedLegacyJsonFieldConflicts + case 87: self = .clearDeprecationWarning + case 88: self = .clearDoubleValue + case 89: self = .clearEdition + case 90: self = .clearEditionDeprecated + case 91: self = .clearEditionIntroduced + case 92: self = .clearEditionRemoved + case 93: self = .clearEnd + case 94: self = .clearEnumType + case 95: self = .clearExtendee + case 96: self = .clearExtensionValue + case 97: self = .clearFeatures + case 98: self = .clearFeatureSupport + case 99: self = .clearFieldPresence + case 100: self = .clearFixedFeatures + case 101: self = .clearFullName + case 102: self = .clearGoPackage + case 103: self = .clearIdempotencyLevel + case 104: self = .clearIdentifierValue + case 105: self = .clearInputType + case 106: self = .clearIsExtension + case 107: self = .clearJavaGenerateEqualsAndHash + case 108: self = .clearJavaGenericServices + case 109: self = .clearJavaMultipleFiles + case 110: self = .clearJavaOuterClassname + case 111: self = .clearJavaPackage + case 112: self = .clearJavaStringCheckUtf8 + case 113: self = .clearJsonFormat + case 114: self = .clearJsonName + case 115: self = .clearJstype + case 116: self = .clearLabel + case 117: self = .clearLazy + case 118: self = .clearLeadingComments + case 119: self = .clearMapEntry + case 120: self = .clearMaximumEdition + case 121: self = .clearMessageEncoding + case 122: self = .clearMessageSetWireFormat + case 123: self = .clearMinimumEdition + case 124: self = .clearName + case 125: self = .clearNamePart + case 126: self = .clearNegativeIntValue + case 127: self = .clearNoStandardDescriptorAccessor + case 128: self = .clearNumber + case 129: self = .clearObjcClassPrefix + case 130: self = .clearOneofIndex + case 131: self = .clearOptimizeFor + case 132: self = .clearOptions + case 133: self = .clearOutputType + case 134: self = .clearOverridableFeatures + case 135: self = .clearPackage + case 136: self = .clearPacked + case 137: self = .clearPhpClassPrefix + case 138: self = .clearPhpMetadataNamespace + case 139: self = .clearPhpNamespace + case 140: self = .clearPositiveIntValue + case 141: self = .clearProto3Optional + case 142: self = .clearPyGenericServices + case 143: self = .clearRepeated + case 144: self = .clearRepeatedFieldEncoding + case 145: self = .clearReserved + case 146: self = .clearRetention + case 147: self = .clearRubyPackage + case 148: self = .clearSemantic + case 149: self = .clearServerStreaming + case 150: self = .clearSourceCodeInfo + case 151: self = .clearSourceContext + case 152: self = .clearSourceFile + case 153: self = .clearStart + case 154: self = .clearStringValue + case 155: self = .clearSwiftPrefix + case 156: self = .clearSyntax + case 157: self = .clearTrailingComments + case 158: self = .clearType + case 159: self = .clearTypeName + case 160: self = .clearUnverifiedLazy + case 161: self = .clearUtf8Validation + case 162: self = .clearValue + case 163: self = .clearVerification + case 164: self = .clearWeak + case 165: self = .clientStreaming + case 166: self = .code + case 167: self = .codePoint + case 168: self = .codeUnits + case 169: self = .collection + case 170: self = .com + case 171: self = .comma + case 172: self = .consumedBytes + case 173: self = .contentsOf + case 174: self = .copy + case 175: self = .count + case 176: self = .countVarintsInBuffer + case 177: self = .csharpNamespace + case 178: self = .ctype + case 179: self = .customCodable + case 180: self = .customDebugStringConvertible + case 181: self = .customStringConvertible + case 182: self = .d + case 183: self = .data + case 184: self = .dataResult + case 185: self = .date + case 186: self = .daySec + case 187: self = .daysSinceEpoch + case 188: self = .debugDescription_ + case 189: self = .debugRedact + case 190: self = .declaration + case 191: self = .decoded + case 192: self = .decodedFromJsonnull + case 193: self = .decodeExtensionField + case 194: self = .decodeExtensionFieldsAsMessageSet + case 195: self = .decodeJson + case 196: self = .decodeMapField + case 197: self = .decodeMessage + case 198: self = .decoder + case 199: self = .decodeRepeated + case 200: self = .decodeRepeatedBoolField + case 201: self = .decodeRepeatedBytesField + case 202: self = .decodeRepeatedDoubleField + case 203: self = .decodeRepeatedEnumField + case 204: self = .decodeRepeatedFixed32Field + case 205: self = .decodeRepeatedFixed64Field + case 206: self = .decodeRepeatedFloatField + case 207: self = .decodeRepeatedGroupField + case 208: self = .decodeRepeatedInt32Field + case 209: self = .decodeRepeatedInt64Field + case 210: self = .decodeRepeatedMessageField + case 211: self = .decodeRepeatedSfixed32Field + case 212: self = .decodeRepeatedSfixed64Field + case 213: self = .decodeRepeatedSint32Field + case 214: self = .decodeRepeatedSint64Field + case 215: self = .decodeRepeatedStringField + case 216: self = .decodeRepeatedUint32Field + case 217: self = .decodeRepeatedUint64Field + case 218: self = .decodeSingular + case 219: self = .decodeSingularBoolField + case 220: self = .decodeSingularBytesField + case 221: self = .decodeSingularDoubleField + case 222: self = .decodeSingularEnumField + case 223: self = .decodeSingularFixed32Field + case 224: self = .decodeSingularFixed64Field + case 225: self = .decodeSingularFloatField + case 226: self = .decodeSingularGroupField + case 227: self = .decodeSingularInt32Field + case 228: self = .decodeSingularInt64Field + case 229: self = .decodeSingularMessageField + case 230: self = .decodeSingularSfixed32Field + case 231: self = .decodeSingularSfixed64Field + case 232: self = .decodeSingularSint32Field + case 233: self = .decodeSingularSint64Field + case 234: self = .decodeSingularStringField + case 235: self = .decodeSingularUint32Field + case 236: self = .decodeSingularUint64Field + case 237: self = .decodeTextFormat + case 238: self = .defaultAnyTypeUrlprefix + case 239: self = .defaults + case 240: self = .defaultValue + case 241: self = .dependency + case 242: self = .deprecated + case 243: self = .deprecatedLegacyJsonFieldConflicts + case 244: self = .deprecationWarning + case 245: self = .description_ + case 246: self = .descriptorProto + case 247: self = .dictionary + case 248: self = .dictionaryLiteral + case 249: self = .digit + case 250: self = .digit0 + case 251: self = .digit1 + case 252: self = .digitCount + case 253: self = .digits + case 254: self = .digitValue + case 255: self = .discardableResult + case 256: self = .discardUnknownFields + case 257: self = .double + case 258: self = .doubleValue + case 259: self = .duration + case 260: self = .e + case 261: self = .edition + case 262: self = .editionDefault + case 263: self = .editionDefaults + case 264: self = .editionDeprecated + case 265: self = .editionIntroduced + case 266: self = .editionRemoved + case 267: self = .element + case 268: self = .elements + case 269: self = .emitExtensionFieldName + case 270: self = .emitFieldName + case 271: self = .emitFieldNumber + case 272: self = .empty + case 273: self = .encodeAsBytes + case 274: self = .encoded + case 275: self = .encodedJsonstring + case 276: self = .encodedSize + case 277: self = .encodeField + case 278: self = .encoder + case 279: self = .end + case 280: self = .endArray + case 281: self = .endMessageField + case 282: self = .endObject + case 283: self = .endRegularField + case 284: self = .enum + case 285: self = .enumDescriptorProto + case 286: self = .enumOptions + case 287: self = .enumReservedRange + case 288: self = .enumType + case 289: self = .enumvalue + case 290: self = .enumValueDescriptorProto + case 291: self = .enumValueOptions + case 292: self = .equatable + case 293: self = .error + case 294: self = .expressibleByArrayLiteral + case 295: self = .expressibleByDictionaryLiteral + case 296: self = .ext + case 297: self = .extDecoder + case 298: self = .extendedGraphemeClusterLiteral + case 299: self = .extendedGraphemeClusterLiteralType + case 300: self = .extendee + case 301: self = .extensibleMessage + case 302: self = .extension + case 303: self = .extensionField + case 304: self = .extensionFieldNumber + case 305: self = .extensionFieldValueSet + case 306: self = .extensionMap + case 307: self = .extensionRange + case 308: self = .extensionRangeOptions + case 309: self = .extensions + case 310: self = .extras + case 311: self = .f + case 312: self = .false + case 313: self = .features + case 314: self = .featureSet + case 315: self = .featureSetDefaults + case 316: self = .featureSetEditionDefault + case 317: self = .featureSupport + case 318: self = .field + case 319: self = .fieldData + case 320: self = .fieldDescriptorProto + case 321: self = .fieldMask + case 322: self = .fieldName + case 323: self = .fieldNameCount + case 324: self = .fieldNum + case 325: self = .fieldNumber + case 326: self = .fieldNumberForProto + case 327: self = .fieldOptions + case 328: self = .fieldPresence + case 329: self = .fields + case 330: self = .fieldSize + case 331: self = .fieldTag + case 332: self = .fieldType + case 333: self = .file + case 334: self = .fileDescriptorProto + case 335: self = .fileDescriptorSet + case 336: self = .fileName + case 337: self = .fileOptions + case 338: self = .filter + case 339: self = .final + case 340: self = .finiteOnly + case 341: self = .first + case 342: self = .firstItem + case 343: self = .fixedFeatures + case 344: self = .float + case 345: self = .floatLiteral + case 346: self = .floatLiteralType + case 347: self = .floatValue + case 348: self = .forMessageName + case 349: self = .formUnion + case 350: self = .forReadingFrom + case 351: self = .forTypeURL + case 352: self = .forwardParser + case 353: self = .forWritingInto + case 354: self = .from + case 355: self = .fromAscii2 + case 356: self = .fromAscii4 + case 357: self = .fromByteOffset + case 358: self = .fromHexDigit + case 359: self = .fullName + case 360: self = .func + case 361: self = .function + case 362: self = .g + case 363: self = .generatedCodeInfo + case 364: self = .get + case 365: self = .getExtensionValue + case 366: self = .googleapis + case 367: self = .googleProtobufAny + case 368: self = .googleProtobufApi + case 369: self = .googleProtobufBoolValue + case 370: self = .googleProtobufBytesValue + case 371: self = .googleProtobufDescriptorProto + case 372: self = .googleProtobufDoubleValue + case 373: self = .googleProtobufDuration + case 374: self = .googleProtobufEdition + case 375: self = .googleProtobufEmpty + case 376: self = .googleProtobufEnum + case 377: self = .googleProtobufEnumDescriptorProto + case 378: self = .googleProtobufEnumOptions + case 379: self = .googleProtobufEnumValue + case 380: self = .googleProtobufEnumValueDescriptorProto + case 381: self = .googleProtobufEnumValueOptions + case 382: self = .googleProtobufExtensionRangeOptions + case 383: self = .googleProtobufFeatureSet + case 384: self = .googleProtobufFeatureSetDefaults + case 385: self = .googleProtobufField + case 386: self = .googleProtobufFieldDescriptorProto + case 387: self = .googleProtobufFieldMask + case 388: self = .googleProtobufFieldOptions + case 389: self = .googleProtobufFileDescriptorProto + case 390: self = .googleProtobufFileDescriptorSet + case 391: self = .googleProtobufFileOptions + case 392: self = .googleProtobufFloatValue + case 393: self = .googleProtobufGeneratedCodeInfo + case 394: self = .googleProtobufInt32Value + case 395: self = .googleProtobufInt64Value + case 396: self = .googleProtobufListValue + case 397: self = .googleProtobufMessageOptions + case 398: self = .googleProtobufMethod + case 399: self = .googleProtobufMethodDescriptorProto + case 400: self = .googleProtobufMethodOptions + case 401: self = .googleProtobufMixin + case 402: self = .googleProtobufNullValue + case 403: self = .googleProtobufOneofDescriptorProto + case 404: self = .googleProtobufOneofOptions + case 405: self = .googleProtobufOption + case 406: self = .googleProtobufServiceDescriptorProto + case 407: self = .googleProtobufServiceOptions + case 408: self = .googleProtobufSourceCodeInfo + case 409: self = .googleProtobufSourceContext + case 410: self = .googleProtobufStringValue + case 411: self = .googleProtobufStruct + case 412: self = .googleProtobufSyntax + case 413: self = .googleProtobufTimestamp + case 414: self = .googleProtobufType + case 415: self = .googleProtobufUint32Value + case 416: self = .googleProtobufUint64Value + case 417: self = .googleProtobufUninterpretedOption + case 418: self = .googleProtobufValue + case 419: self = .goPackage + case 420: self = .group + case 421: self = .groupFieldNumberStack + case 422: self = .groupSize + case 423: self = .hadOneofValue + case 424: self = .handleConflictingOneOf + case 425: self = .hasAggregateValue + case 426: self = .hasAllowAlias + case 427: self = .hasBegin + case 428: self = .hasCcEnableArenas + case 429: self = .hasCcGenericServices + case 430: self = .hasClientStreaming + case 431: self = .hasCsharpNamespace + case 432: self = .hasCtype + case 433: self = .hasDebugRedact + case 434: self = .hasDefaultValue + case 435: self = .hasDeprecated + case 436: self = .hasDeprecatedLegacyJsonFieldConflicts + case 437: self = .hasDeprecationWarning + case 438: self = .hasDoubleValue + case 439: self = .hasEdition + case 440: self = .hasEditionDeprecated + case 441: self = .hasEditionIntroduced + case 442: self = .hasEditionRemoved + case 443: self = .hasEnd + case 444: self = .hasEnumType + case 445: self = .hasExtendee + case 446: self = .hasExtensionValue + case 447: self = .hasFeatures + case 448: self = .hasFeatureSupport + case 449: self = .hasFieldPresence + case 450: self = .hasFixedFeatures + case 451: self = .hasFullName + case 452: self = .hasGoPackage + case 453: self = .hash + case 454: self = .hashable + case 455: self = .hasher + case 456: self = .hashVisitor + case 457: self = .hasIdempotencyLevel + case 458: self = .hasIdentifierValue + case 459: self = .hasInputType + case 460: self = .hasIsExtension + case 461: self = .hasJavaGenerateEqualsAndHash + case 462: self = .hasJavaGenericServices + case 463: self = .hasJavaMultipleFiles + case 464: self = .hasJavaOuterClassname + case 465: self = .hasJavaPackage + case 466: self = .hasJavaStringCheckUtf8 + case 467: self = .hasJsonFormat + case 468: self = .hasJsonName + case 469: self = .hasJstype + case 470: self = .hasLabel + case 471: self = .hasLazy + case 472: self = .hasLeadingComments + case 473: self = .hasMapEntry + case 474: self = .hasMaximumEdition + case 475: self = .hasMessageEncoding + case 476: self = .hasMessageSetWireFormat + case 477: self = .hasMinimumEdition + case 478: self = .hasName + case 479: self = .hasNamePart + case 480: self = .hasNegativeIntValue + case 481: self = .hasNoStandardDescriptorAccessor + case 482: self = .hasNumber + case 483: self = .hasObjcClassPrefix + case 484: self = .hasOneofIndex + case 485: self = .hasOptimizeFor + case 486: self = .hasOptions + case 487: self = .hasOutputType + case 488: self = .hasOverridableFeatures + case 489: self = .hasPackage + case 490: self = .hasPacked + case 491: self = .hasPhpClassPrefix + case 492: self = .hasPhpMetadataNamespace + case 493: self = .hasPhpNamespace + case 494: self = .hasPositiveIntValue + case 495: self = .hasProto3Optional + case 496: self = .hasPyGenericServices + case 497: self = .hasRepeated + case 498: self = .hasRepeatedFieldEncoding + case 499: self = .hasReserved + case 500: self = .hasRetention + case 501: self = .hasRubyPackage + case 502: self = .hasSemantic + case 503: self = .hasServerStreaming + case 504: self = .hasSourceCodeInfo + case 505: self = .hasSourceContext + case 506: self = .hasSourceFile + case 507: self = .hasStart + case 508: self = .hasStringValue + case 509: self = .hasSwiftPrefix + case 510: self = .hasSyntax + case 511: self = .hasTrailingComments + case 512: self = .hasType + case 513: self = .hasTypeName + case 514: self = .hasUnverifiedLazy + case 515: self = .hasUtf8Validation + case 516: self = .hasValue + case 517: self = .hasVerification + case 518: self = .hasWeak + case 519: self = .hour + case 520: self = .i + case 521: self = .idempotencyLevel + case 522: self = .identifierValue + case 523: self = .if + case 524: self = .ignoreUnknownExtensionFields + case 525: self = .ignoreUnknownFields + case 526: self = .index + case 527: self = .init_ + case 528: self = .inout + case 529: self = .inputType + case 530: self = .insert + case 531: self = .int + case 532: self = .int32 + case 533: self = .int32Value + case 534: self = .int64 + case 535: self = .int64Value + case 536: self = .int8 + case 537: self = .integerLiteral + case 538: self = .integerLiteralType + case 539: self = .intern + case 540: self = .internal + case 541: self = .internalState + case 542: self = .into + case 543: self = .ints + case 544: self = .isA + case 545: self = .isEqual + case 546: self = .isEqualTo + case 547: self = .isExtension + case 548: self = .isInitialized + case 549: self = .isNegative + case 550: self = .itemTagsEncodedSize + case 551: self = .iterator + case 552: self = .javaGenerateEqualsAndHash + case 553: self = .javaGenericServices + case 554: self = .javaMultipleFiles + case 555: self = .javaOuterClassname + case 556: self = .javaPackage + case 557: self = .javaStringCheckUtf8 + case 558: self = .jsondecoder + case 559: self = .jsondecodingError + case 560: self = .jsondecodingOptions + case 561: self = .jsonEncoder + case 562: self = .jsonencodingError + case 563: self = .jsonencodingOptions + case 564: self = .jsonencodingVisitor + case 565: self = .jsonFormat + case 566: self = .jsonmapEncodingVisitor + case 567: self = .jsonName + case 568: self = .jsonPath + case 569: self = .jsonPaths + case 570: self = .jsonscanner + case 571: self = .jsonString + case 572: self = .jsonText + case 573: self = .jsonUtf8Bytes + case 574: self = .jsonUtf8Data + case 575: self = .jstype + case 576: self = .k + case 577: self = .kChunkSize + case 578: self = .key + case 579: self = .keyField + case 580: self = .keyFieldOpt + case 581: self = .keyType + case 582: self = .kind + case 583: self = .l + case 584: self = .label + case 585: self = .lazy + case 586: self = .leadingComments + case 587: self = .leadingDetachedComments + case 588: self = .length + case 589: self = .lessThan + case 590: self = .let + case 591: self = .lhs + case 592: self = .line + case 593: self = .list + case 594: self = .listOfMessages + case 595: self = .listValue + case 596: self = .littleEndian + case 597: self = .load + case 598: self = .localHasher + case 599: self = .location + case 600: self = .m + case 601: self = .major + case 602: self = .makeAsyncIterator + case 603: self = .makeIterator + case 604: self = .malformedLength + case 605: self = .mapEntry + case 606: self = .mapKeyType + case 607: self = .mapToMessages + case 608: self = .mapValueType + case 609: self = .mapVisitor + case 610: self = .maximumEdition + case 611: self = .mdayStart + case 612: self = .merge + case 613: self = .message + case 614: self = .messageDepthLimit + case 615: self = .messageEncoding + case 616: self = .messageExtension + case 617: self = .messageImplementationBase + case 618: self = .messageOptions + case 619: self = .messageSet + case 620: self = .messageSetWireFormat + case 621: self = .messageSize + case 622: self = .messageType + case 623: self = .method + case 624: self = .methodDescriptorProto + case 625: self = .methodOptions + case 626: self = .methods + case 627: self = .min + case 628: self = .minimumEdition + case 629: self = .minor + case 630: self = .mixin + case 631: self = .mixins + case 632: self = .modifier + case 633: self = .modify + case 634: self = .month + case 635: self = .msgExtension + case 636: self = .mutating + case 637: self = .n + case 638: self = .name + case 639: self = .nameDescription + case 640: self = .nameMap + case 641: self = .namePart + case 642: self = .names + case 643: self = .nanos + case 644: self = .negativeIntValue + case 645: self = .nestedType + case 646: self = .newL + case 647: self = .newList + case 648: self = .newValue + case 649: self = .next + case 650: self = .nextByte + case 651: self = .nextFieldNumber + case 652: self = .nextVarInt + case 653: self = .nil + case 654: self = .nilLiteral + case 655: self = .noBytesAvailable + case 656: self = .noStandardDescriptorAccessor + case 657: self = .nullValue + case 658: self = .number + case 659: self = .numberValue + case 660: self = .objcClassPrefix + case 661: self = .of + case 662: self = .oneofDecl + case 663: self = .oneofDescriptorProto + case 664: self = .oneofIndex + case 665: self = .oneofOptions + case 666: self = .oneofs + case 667: self = .oneOfKind + case 668: self = .optimizeFor + case 669: self = .optimizeMode + case 670: self = .option + case 671: self = .optionalEnumExtensionField + case 672: self = .optionalExtensionField + case 673: self = .optionalGroupExtensionField + case 674: self = .optionalMessageExtensionField + case 675: self = .optionRetention + case 676: self = .options + case 677: self = .optionTargetType + case 678: self = .other + case 679: self = .others + case 680: self = .out + case 681: self = .outputType + case 682: self = .overridableFeatures + case 683: self = .p + case 684: self = .package + case 685: self = .packed + case 686: self = .packedEnumExtensionField + case 687: self = .packedExtensionField + case 688: self = .padding + case 689: self = .parent + case 690: self = .parse + case 691: self = .path + case 692: self = .paths + case 693: self = .payload + case 694: self = .payloadSize + case 695: self = .phpClassPrefix + case 696: self = .phpMetadataNamespace + case 697: self = .phpNamespace + case 698: self = .pos + case 699: self = .positiveIntValue + case 700: self = .prefix + case 701: self = .preserveProtoFieldNames + case 702: self = .preTraverse + case 703: self = .printUnknownFields + case 704: self = .proto2 + case 705: self = .proto3DefaultValue + case 706: self = .proto3Optional + case 707: self = .protobufApiversionCheck + case 708: self = .protobufApiversion3 + case 709: self = .protobufBool + case 710: self = .protobufBytes + case 711: self = .protobufDouble + case 712: self = .protobufEnumMap + case 713: self = .protobufExtension + case 714: self = .protobufFixed32 + case 715: self = .protobufFixed64 + case 716: self = .protobufFloat + case 717: self = .protobufInt32 + case 718: self = .protobufInt64 + case 719: self = .protobufMap + case 720: self = .protobufMessageMap + case 721: self = .protobufSfixed32 + case 722: self = .protobufSfixed64 + case 723: self = .protobufSint32 + case 724: self = .protobufSint64 + case 725: self = .protobufString + case 726: self = .protobufUint32 + case 727: self = .protobufUint64 + case 728: self = .protobufExtensionFieldValues + case 729: self = .protobufFieldNumber + case 730: self = .protobufGeneratedIsEqualTo + case 731: self = .protobufNameMap + case 732: self = .protobufNewField + case 733: self = .protobufPackage + case 734: self = .protocol + case 735: self = .protoFieldName + case 736: self = .protoMessageName + case 737: self = .protoNameProviding + case 738: self = .protoPaths + case 739: self = .public + case 740: self = .publicDependency + case 741: self = .putBoolValue + case 742: self = .putBytesValue + case 743: self = .putDoubleValue + case 744: self = .putEnumValue + case 745: self = .putFixedUint32 + case 746: self = .putFixedUint64 + case 747: self = .putFloatValue + case 748: self = .putInt64 + case 749: self = .putStringValue + case 750: self = .putUint64 + case 751: self = .putUint64Hex + case 752: self = .putVarInt + case 753: self = .putZigZagVarInt + case 754: self = .pyGenericServices + case 755: self = .r + case 756: self = .rawChars + case 757: self = .rawRepresentable + case 758: self = .rawValue_ + case 759: self = .read4HexDigits + case 760: self = .readBytes + case 761: self = .register + case 762: self = .repeated + case 763: self = .repeatedEnumExtensionField + case 764: self = .repeatedExtensionField + case 765: self = .repeatedFieldEncoding + case 766: self = .repeatedGroupExtensionField + case 767: self = .repeatedMessageExtensionField + case 768: self = .repeating + case 769: self = .requestStreaming + case 770: self = .requestTypeURL + case 771: self = .requiredSize + case 772: self = .responseStreaming + case 773: self = .responseTypeURL + case 774: self = .result + case 775: self = .retention + case 776: self = .rethrows + case 777: self = .return + case 778: self = .returnType + case 779: self = .revision + case 780: self = .rhs + case 781: self = .root + case 782: self = .rubyPackage + case 783: self = .s + case 784: self = .sawBackslash + case 785: self = .sawSection4Characters + case 786: self = .sawSection5Characters + case 787: self = .scan + case 788: self = .scanner + case 789: self = .seconds + case 790: self = .self_ + case 791: self = .semantic + case 792: self = .sendable + case 793: self = .separator + case 794: self = .serialize + case 795: self = .serializedBytes + case 796: self = .serializedData + case 797: self = .serializedSize + case 798: self = .serverStreaming + case 799: self = .service + case 800: self = .serviceDescriptorProto + case 801: self = .serviceOptions + case 802: self = .set + case 803: self = .setExtensionValue + case 804: self = .shift + case 805: self = .simpleExtensionMap + case 806: self = .size + case 807: self = .sizer + case 808: self = .source + case 809: self = .sourceCodeInfo + case 810: self = .sourceContext + case 811: self = .sourceEncoding + case 812: self = .sourceFile + case 813: self = .sourceLocation + case 814: self = .span + case 815: self = .split + case 816: self = .start + case 817: self = .startArray + case 818: self = .startArrayObject + case 819: self = .startField + case 820: self = .startIndex + case 821: self = .startMessageField + case 822: self = .startObject + case 823: self = .startRegularField + case 824: self = .state + case 825: self = .static + case 826: self = .staticString + case 827: self = .storage + case 828: self = .string + case 829: self = .stringLiteral + case 830: self = .stringLiteralType + case 831: self = .stringResult + case 832: self = .stringValue + case 833: self = .struct + case 834: self = .structValue + case 835: self = .subDecoder + case 836: self = .subscript + case 837: self = .subVisitor + case 838: self = .swift + case 839: self = .swiftPrefix + case 840: self = .swiftProtobufContiguousBytes + case 841: self = .swiftProtobufError + case 842: self = .syntax + case 843: self = .t + case 844: self = .tag + case 845: self = .targets + case 846: self = .terminator + case 847: self = .testDecoder + case 848: self = .text + case 849: self = .textDecoder + case 850: self = .textFormatDecoder + case 851: self = .textFormatDecodingError + case 852: self = .textFormatDecodingOptions + case 853: self = .textFormatEncodingOptions + case 854: self = .textFormatEncodingVisitor + case 855: self = .textFormatString + case 856: self = .throwOrIgnore + case 857: self = .throws + case 858: self = .timeInterval + case 859: self = .timeIntervalSince1970 + case 860: self = .timeIntervalSinceReferenceDate + case 861: self = .timestamp + case 862: self = .tooLarge + case 863: self = .total + case 864: self = .totalArrayDepth + case 865: self = .totalSize + case 866: self = .trailingComments + case 867: self = .traverse + case 868: self = .true + case 869: self = .try + case 870: self = .type + case 871: self = .typealias + case 872: self = .typeEnum + case 873: self = .typeName + case 874: self = .typePrefix + case 875: self = .typeStart + case 876: self = .typeUnknown + case 877: self = .typeURL + case 878: self = .uint32 + case 879: self = .uint32Value + case 880: self = .uint64 + case 881: self = .uint64Value + case 882: self = .uint8 + case 883: self = .unchecked + case 884: self = .unicodeScalarLiteral + case 885: self = .unicodeScalarLiteralType + case 886: self = .unicodeScalars + case 887: self = .unicodeScalarView + case 888: self = .uninterpretedOption + case 889: self = .union + case 890: self = .uniqueStorage + case 891: self = .unknown + case 892: self = .unknownFields + case 893: self = .unknownStorage + case 894: self = .unpackTo + case 895: self = .unsafeBufferPointer + case 896: self = .unsafeMutablePointer + case 897: self = .unsafeMutableRawBufferPointer + case 898: self = .unsafeRawBufferPointer + case 899: self = .unsafeRawPointer + case 900: self = .unverifiedLazy + case 901: self = .updatedOptions + case 902: self = .url + case 903: self = .useDeterministicOrdering + case 904: self = .utf8 + case 905: self = .utf8Ptr + case 906: self = .utf8ToDouble + case 907: self = .utf8Validation + case 908: self = .utf8View + case 909: self = .v + case 910: self = .value + case 911: self = .valueField + case 912: self = .values + case 913: self = .valueType + case 914: self = .var + case 915: self = .verification + case 916: self = .verificationState + case 917: self = .version + case 918: self = .versionString + case 919: self = .visitExtensionFields + case 920: self = .visitExtensionFieldsAsMessageSet + case 921: self = .visitMapField + case 922: self = .visitor + case 923: self = .visitPacked + case 924: self = .visitPackedBoolField + case 925: self = .visitPackedDoubleField + case 926: self = .visitPackedEnumField + case 927: self = .visitPackedFixed32Field + case 928: self = .visitPackedFixed64Field + case 929: self = .visitPackedFloatField + case 930: self = .visitPackedInt32Field + case 931: self = .visitPackedInt64Field + case 932: self = .visitPackedSfixed32Field + case 933: self = .visitPackedSfixed64Field + case 934: self = .visitPackedSint32Field + case 935: self = .visitPackedSint64Field + case 936: self = .visitPackedUint32Field + case 937: self = .visitPackedUint64Field + case 938: self = .visitRepeated + case 939: self = .visitRepeatedBoolField + case 940: self = .visitRepeatedBytesField + case 941: self = .visitRepeatedDoubleField + case 942: self = .visitRepeatedEnumField + case 943: self = .visitRepeatedFixed32Field + case 944: self = .visitRepeatedFixed64Field + case 945: self = .visitRepeatedFloatField + case 946: self = .visitRepeatedGroupField + case 947: self = .visitRepeatedInt32Field + case 948: self = .visitRepeatedInt64Field + case 949: self = .visitRepeatedMessageField + case 950: self = .visitRepeatedSfixed32Field + case 951: self = .visitRepeatedSfixed64Field + case 952: self = .visitRepeatedSint32Field + case 953: self = .visitRepeatedSint64Field + case 954: self = .visitRepeatedStringField + case 955: self = .visitRepeatedUint32Field + case 956: self = .visitRepeatedUint64Field + case 957: self = .visitSingular + case 958: self = .visitSingularBoolField + case 959: self = .visitSingularBytesField + case 960: self = .visitSingularDoubleField + case 961: self = .visitSingularEnumField + case 962: self = .visitSingularFixed32Field + case 963: self = .visitSingularFixed64Field + case 964: self = .visitSingularFloatField + case 965: self = .visitSingularGroupField + case 966: self = .visitSingularInt32Field + case 967: self = .visitSingularInt64Field + case 968: self = .visitSingularMessageField + case 969: self = .visitSingularSfixed32Field + case 970: self = .visitSingularSfixed64Field + case 971: self = .visitSingularSint32Field + case 972: self = .visitSingularSint64Field + case 973: self = .visitSingularStringField + case 974: self = .visitSingularUint32Field + case 975: self = .visitSingularUint64Field + case 976: self = .visitUnknown + case 977: self = .wasDecoded + case 978: self = .weak + case 979: self = .weakDependency + case 980: self = .where + case 981: self = .wireFormat + case 982: self = .with + case 983: self = .withUnsafeBytes + case 984: self = .withUnsafeMutableBytes + case 985: self = .work + case 986: self = .wrapped + case 987: self = .wrappedType + case 988: self = .wrappedValue + case 989: self = .written + case 990: self = .yday default: self = .UNRECOGNIZED(rawValue) } } @@ -2042,992 +2034,988 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, case .anyExtensionField: return 9 case .anyMessageExtension: return 10 case .anyMessageStorage: return 11 - case .anyTypeUrlnotRegistered: return 12 - case .anyUnpackError: return 13 - case .api: return 14 - case .appended: return 15 - case .appendUintHex: return 16 - case .appendUnknown: return 17 - case .areAllInitialized: return 18 - case .array: return 19 - case .arrayDepth: return 20 - case .arrayLiteral: return 21 - case .arraySeparator: return 22 - case .as: return 23 - case .asciiOpenCurlyBracket: return 24 - case .asciiZero: return 25 - case .async: return 26 - case .asyncIterator: return 27 - case .asyncIteratorProtocol: return 28 - case .asyncMessageSequence: return 29 - case .available: return 30 - case .b: return 31 - case .base: return 32 - case .base64Values: return 33 - case .baseAddress: return 34 - case .baseType: return 35 - case .begin: return 36 - case .binary: return 37 - case .binaryDecoder: return 38 - case .binaryDecoding: return 39 - case .binaryDecodingError: return 40 - case .binaryDecodingOptions: return 41 - case .binaryDelimited: return 42 - case .binaryEncoder: return 43 - case .binaryEncoding: return 44 - case .binaryEncodingError: return 45 - case .binaryEncodingMessageSetSizeVisitor: return 46 - case .binaryEncodingMessageSetVisitor: return 47 - case .binaryEncodingOptions: return 48 - case .binaryEncodingSizeVisitor: return 49 - case .binaryEncodingVisitor: return 50 - case .binaryOptions: return 51 - case .binaryProtobufDelimitedMessages: return 52 - case .binaryStreamDecoding: return 53 - case .binaryStreamDecodingError: return 54 - case .bitPattern: return 55 - case .body: return 56 - case .bool: return 57 - case .booleanLiteral: return 58 - case .booleanLiteralType: return 59 - case .boolValue: return 60 - case .buffer: return 61 - case .bytes: return 62 - case .bytesInGroup: return 63 - case .bytesNeeded: return 64 - case .bytesRead: return 65 - case .bytesValue: return 66 - case .c: return 67 - case .capitalizeNext: return 68 - case .cardinality: return 69 - case .caseIterable: return 70 - case .ccEnableArenas: return 71 - case .ccGenericServices: return 72 - case .character: return 73 - case .chars: return 74 - case .chunk: return 75 - case .class: return 76 - case .clearAggregateValue: return 77 - case .clearAllowAlias: return 78 - case .clearBegin: return 79 - case .clearCcEnableArenas: return 80 - case .clearCcGenericServices: return 81 - case .clearClientStreaming: return 82 - case .clearCsharpNamespace: return 83 - case .clearCtype: return 84 - case .clearDebugRedact: return 85 - case .clearDefaultValue: return 86 - case .clearDeprecated: return 87 - case .clearDeprecatedLegacyJsonFieldConflicts: return 88 - case .clearDeprecationWarning: return 89 - case .clearDoubleValue: return 90 - case .clearEdition: return 91 - case .clearEditionDeprecated: return 92 - case .clearEditionIntroduced: return 93 - case .clearEditionRemoved: return 94 - case .clearEnd: return 95 - case .clearEnumType: return 96 - case .clearExtendee: return 97 - case .clearExtensionValue: return 98 - case .clearFeatures: return 99 - case .clearFeatureSupport: return 100 - case .clearFieldPresence: return 101 - case .clearFixedFeatures: return 102 - case .clearFullName: return 103 - case .clearGoPackage: return 104 - case .clearIdempotencyLevel: return 105 - case .clearIdentifierValue: return 106 - case .clearInputType: return 107 - case .clearIsExtension: return 108 - case .clearJavaGenerateEqualsAndHash: return 109 - case .clearJavaGenericServices: return 110 - case .clearJavaMultipleFiles: return 111 - case .clearJavaOuterClassname: return 112 - case .clearJavaPackage: return 113 - case .clearJavaStringCheckUtf8: return 114 - case .clearJsonFormat: return 115 - case .clearJsonName: return 116 - case .clearJstype: return 117 - case .clearLabel: return 118 - case .clearLazy: return 119 - case .clearLeadingComments: return 120 - case .clearMapEntry: return 121 - case .clearMaximumEdition: return 122 - case .clearMessageEncoding: return 123 - case .clearMessageSetWireFormat: return 124 - case .clearMinimumEdition: return 125 - case .clearName: return 126 - case .clearNamePart: return 127 - case .clearNegativeIntValue: return 128 - case .clearNoStandardDescriptorAccessor: return 129 - case .clearNumber: return 130 - case .clearObjcClassPrefix: return 131 - case .clearOneofIndex: return 132 - case .clearOptimizeFor: return 133 - case .clearOptions: return 134 - case .clearOutputType: return 135 - case .clearOverridableFeatures: return 136 - case .clearPackage: return 137 - case .clearPacked: return 138 - case .clearPhpClassPrefix: return 139 - case .clearPhpMetadataNamespace: return 140 - case .clearPhpNamespace: return 141 - case .clearPositiveIntValue: return 142 - case .clearProto3Optional: return 143 - case .clearPyGenericServices: return 144 - case .clearRepeated: return 145 - case .clearRepeatedFieldEncoding: return 146 - case .clearReserved: return 147 - case .clearRetention: return 148 - case .clearRubyPackage: return 149 - case .clearSemantic: return 150 - case .clearServerStreaming: return 151 - case .clearSourceCodeInfo: return 152 - case .clearSourceContext: return 153 - case .clearSourceFile: return 154 - case .clearStart: return 155 - case .clearStringValue: return 156 - case .clearSwiftPrefix: return 157 - case .clearSyntax: return 158 - case .clearTrailingComments: return 159 - case .clearType: return 160 - case .clearTypeName: return 161 - case .clearUnverifiedLazy: return 162 - case .clearUtf8Validation: return 163 - case .clearValue: return 164 - case .clearVerification: return 165 - case .clearWeak: return 166 - case .clientStreaming: return 167 - case .code: return 168 - case .codePoint: return 169 - case .codeUnits: return 170 - case .collection: return 171 - case .com: return 172 - case .comma: return 173 - case .consumedBytes: return 174 - case .contentsOf: return 175 - case .copy: return 176 - case .count: return 177 - case .countVarintsInBuffer: return 178 - case .csharpNamespace: return 179 - case .ctype: return 180 - case .customCodable: return 181 - case .customDebugStringConvertible: return 182 - case .customStringConvertible: return 183 - case .d: return 184 - case .data: return 185 - case .dataResult: return 186 - case .date: return 187 - case .daySec: return 188 - case .daysSinceEpoch: return 189 - case .debugDescription_: return 190 - case .debugRedact: return 191 - case .declaration: return 192 - case .decoded: return 193 - case .decodedFromJsonnull: return 194 - case .decodeExtensionField: return 195 - case .decodeExtensionFieldsAsMessageSet: return 196 - case .decodeJson: return 197 - case .decodeMapField: return 198 - case .decodeMessage: return 199 - case .decoder: return 200 - case .decodeRepeated: return 201 - case .decodeRepeatedBoolField: return 202 - case .decodeRepeatedBytesField: return 203 - case .decodeRepeatedDoubleField: return 204 - case .decodeRepeatedEnumField: return 205 - case .decodeRepeatedFixed32Field: return 206 - case .decodeRepeatedFixed64Field: return 207 - case .decodeRepeatedFloatField: return 208 - case .decodeRepeatedGroupField: return 209 - case .decodeRepeatedInt32Field: return 210 - case .decodeRepeatedInt64Field: return 211 - case .decodeRepeatedMessageField: return 212 - case .decodeRepeatedSfixed32Field: return 213 - case .decodeRepeatedSfixed64Field: return 214 - case .decodeRepeatedSint32Field: return 215 - case .decodeRepeatedSint64Field: return 216 - case .decodeRepeatedStringField: return 217 - case .decodeRepeatedUint32Field: return 218 - case .decodeRepeatedUint64Field: return 219 - case .decodeSingular: return 220 - case .decodeSingularBoolField: return 221 - case .decodeSingularBytesField: return 222 - case .decodeSingularDoubleField: return 223 - case .decodeSingularEnumField: return 224 - case .decodeSingularFixed32Field: return 225 - case .decodeSingularFixed64Field: return 226 - case .decodeSingularFloatField: return 227 - case .decodeSingularGroupField: return 228 - case .decodeSingularInt32Field: return 229 - case .decodeSingularInt64Field: return 230 - case .decodeSingularMessageField: return 231 - case .decodeSingularSfixed32Field: return 232 - case .decodeSingularSfixed64Field: return 233 - case .decodeSingularSint32Field: return 234 - case .decodeSingularSint64Field: return 235 - case .decodeSingularStringField: return 236 - case .decodeSingularUint32Field: return 237 - case .decodeSingularUint64Field: return 238 - case .decodeTextFormat: return 239 - case .defaultAnyTypeUrlprefix: return 240 - case .defaults: return 241 - case .defaultValue: return 242 - case .dependency: return 243 - case .deprecated: return 244 - case .deprecatedLegacyJsonFieldConflicts: return 245 - case .deprecationWarning: return 246 - case .description_: return 247 - case .descriptorProto: return 248 - case .dictionary: return 249 - case .dictionaryLiteral: return 250 - case .digit: return 251 - case .digit0: return 252 - case .digit1: return 253 - case .digitCount: return 254 - case .digits: return 255 - case .digitValue: return 256 - case .discardableResult: return 257 - case .discardUnknownFields: return 258 - case .double: return 259 - case .doubleValue: return 260 - case .duration: return 261 - case .e: return 262 - case .edition: return 263 - case .editionDefault: return 264 - case .editionDefaults: return 265 - case .editionDeprecated: return 266 - case .editionIntroduced: return 267 - case .editionRemoved: return 268 - case .element: return 269 - case .elements: return 270 - case .emitExtensionFieldName: return 271 - case .emitFieldName: return 272 - case .emitFieldNumber: return 273 - case .empty: return 274 - case .encodeAsBytes: return 275 - case .encoded: return 276 - case .encodedJsonstring: return 277 - case .encodedSize: return 278 - case .encodeField: return 279 - case .encoder: return 280 - case .end: return 281 - case .endArray: return 282 - case .endMessageField: return 283 - case .endObject: return 284 - case .endRegularField: return 285 - case .enum: return 286 - case .enumDescriptorProto: return 287 - case .enumOptions: return 288 - case .enumReservedRange: return 289 - case .enumType: return 290 - case .enumvalue: return 291 - case .enumValueDescriptorProto: return 292 - case .enumValueOptions: return 293 - case .equatable: return 294 - case .error: return 295 - case .expressibleByArrayLiteral: return 296 - case .expressibleByDictionaryLiteral: return 297 - case .ext: return 298 - case .extDecoder: return 299 - case .extendedGraphemeClusterLiteral: return 300 - case .extendedGraphemeClusterLiteralType: return 301 - case .extendee: return 302 - case .extensibleMessage: return 303 - case .extension: return 304 - case .extensionField: return 305 - case .extensionFieldNumber: return 306 - case .extensionFieldValueSet: return 307 - case .extensionMap: return 308 - case .extensionRange: return 309 - case .extensionRangeOptions: return 310 - case .extensions: return 311 - case .extras: return 312 - case .f: return 313 - case .false: return 314 - case .features: return 315 - case .featureSet: return 316 - case .featureSetDefaults: return 317 - case .featureSetEditionDefault: return 318 - case .featureSupport: return 319 - case .field: return 320 - case .fieldData: return 321 - case .fieldDescriptorProto: return 322 - case .fieldMask: return 323 - case .fieldName: return 324 - case .fieldNameCount: return 325 - case .fieldNum: return 326 - case .fieldNumber: return 327 - case .fieldNumberForProto: return 328 - case .fieldOptions: return 329 - case .fieldPresence: return 330 - case .fields: return 331 - case .fieldSize: return 332 - case .fieldTag: return 333 - case .fieldType: return 334 - case .file: return 335 - case .fileDescriptorProto: return 336 - case .fileDescriptorSet: return 337 - case .fileName: return 338 - case .fileOptions: return 339 - case .filter: return 340 - case .final: return 341 - case .finiteOnly: return 342 - case .first: return 343 - case .firstItem: return 344 - case .fixedFeatures: return 345 - case .float: return 346 - case .floatLiteral: return 347 - case .floatLiteralType: return 348 - case .floatValue: return 349 - case .forMessageName: return 350 - case .formUnion: return 351 - case .forReadingFrom: return 352 - case .forTypeURL: return 353 - case .forwardParser: return 354 - case .forWritingInto: return 355 - case .from: return 356 - case .fromAscii2: return 357 - case .fromAscii4: return 358 - case .fromByteOffset: return 359 - case .fromHexDigit: return 360 - case .fullName: return 361 - case .func: return 362 - case .function: return 363 - case .g: return 364 - case .generatedCodeInfo: return 365 - case .get: return 366 - case .getExtensionValue: return 367 - case .googleapis: return 368 - case .googleProtobufAny: return 369 - case .googleProtobufApi: return 370 - case .googleProtobufBoolValue: return 371 - case .googleProtobufBytesValue: return 372 - case .googleProtobufDescriptorProto: return 373 - case .googleProtobufDoubleValue: return 374 - case .googleProtobufDuration: return 375 - case .googleProtobufEdition: return 376 - case .googleProtobufEmpty: return 377 - case .googleProtobufEnum: return 378 - case .googleProtobufEnumDescriptorProto: return 379 - case .googleProtobufEnumOptions: return 380 - case .googleProtobufEnumValue: return 381 - case .googleProtobufEnumValueDescriptorProto: return 382 - case .googleProtobufEnumValueOptions: return 383 - case .googleProtobufExtensionRangeOptions: return 384 - case .googleProtobufFeatureSet: return 385 - case .googleProtobufFeatureSetDefaults: return 386 - case .googleProtobufField: return 387 - case .googleProtobufFieldDescriptorProto: return 388 - case .googleProtobufFieldMask: return 389 - case .googleProtobufFieldOptions: return 390 - case .googleProtobufFileDescriptorProto: return 391 - case .googleProtobufFileDescriptorSet: return 392 - case .googleProtobufFileOptions: return 393 - case .googleProtobufFloatValue: return 394 - case .googleProtobufGeneratedCodeInfo: return 395 - case .googleProtobufInt32Value: return 396 - case .googleProtobufInt64Value: return 397 - case .googleProtobufListValue: return 398 - case .googleProtobufMessageOptions: return 399 - case .googleProtobufMethod: return 400 - case .googleProtobufMethodDescriptorProto: return 401 - case .googleProtobufMethodOptions: return 402 - case .googleProtobufMixin: return 403 - case .googleProtobufNullValue: return 404 - case .googleProtobufOneofDescriptorProto: return 405 - case .googleProtobufOneofOptions: return 406 - case .googleProtobufOption: return 407 - case .googleProtobufServiceDescriptorProto: return 408 - case .googleProtobufServiceOptions: return 409 - case .googleProtobufSourceCodeInfo: return 410 - case .googleProtobufSourceContext: return 411 - case .googleProtobufStringValue: return 412 - case .googleProtobufStruct: return 413 - case .googleProtobufSyntax: return 414 - case .googleProtobufTimestamp: return 415 - case .googleProtobufType: return 416 - case .googleProtobufUint32Value: return 417 - case .googleProtobufUint64Value: return 418 - case .googleProtobufUninterpretedOption: return 419 - case .googleProtobufValue: return 420 - case .goPackage: return 421 - case .group: return 422 - case .groupFieldNumberStack: return 423 - case .groupSize: return 424 - case .hadOneofValue: return 425 - case .handleConflictingOneOf: return 426 - case .hasAggregateValue: return 427 - case .hasAllowAlias: return 428 - case .hasBegin: return 429 - case .hasCcEnableArenas: return 430 - case .hasCcGenericServices: return 431 - case .hasClientStreaming: return 432 - case .hasCsharpNamespace: return 433 - case .hasCtype: return 434 - case .hasDebugRedact: return 435 - case .hasDefaultValue: return 436 - case .hasDeprecated: return 437 - case .hasDeprecatedLegacyJsonFieldConflicts: return 438 - case .hasDeprecationWarning: return 439 - case .hasDoubleValue: return 440 - case .hasEdition: return 441 - case .hasEditionDeprecated: return 442 - case .hasEditionIntroduced: return 443 - case .hasEditionRemoved: return 444 - case .hasEnd: return 445 - case .hasEnumType: return 446 - case .hasExtendee: return 447 - case .hasExtensionValue: return 448 - case .hasFeatures: return 449 - case .hasFeatureSupport: return 450 - case .hasFieldPresence: return 451 - case .hasFixedFeatures: return 452 - case .hasFullName: return 453 - case .hasGoPackage: return 454 - case .hash: return 455 - case .hashable: return 456 - case .hasher: return 457 - case .hashVisitor: return 458 - case .hasIdempotencyLevel: return 459 - case .hasIdentifierValue: return 460 - case .hasInputType: return 461 - case .hasIsExtension: return 462 - case .hasJavaGenerateEqualsAndHash: return 463 - case .hasJavaGenericServices: return 464 - case .hasJavaMultipleFiles: return 465 - case .hasJavaOuterClassname: return 466 - case .hasJavaPackage: return 467 - case .hasJavaStringCheckUtf8: return 468 - case .hasJsonFormat: return 469 - case .hasJsonName: return 470 - case .hasJstype: return 471 - case .hasLabel: return 472 - case .hasLazy: return 473 - case .hasLeadingComments: return 474 - case .hasMapEntry: return 475 - case .hasMaximumEdition: return 476 - case .hasMessageEncoding: return 477 - case .hasMessageSetWireFormat: return 478 - case .hasMinimumEdition: return 479 - case .hasName: return 480 - case .hasNamePart: return 481 - case .hasNegativeIntValue: return 482 - case .hasNoStandardDescriptorAccessor: return 483 - case .hasNumber: return 484 - case .hasObjcClassPrefix: return 485 - case .hasOneofIndex: return 486 - case .hasOptimizeFor: return 487 - case .hasOptions: return 488 - case .hasOutputType: return 489 - case .hasOverridableFeatures: return 490 - case .hasPackage: return 491 - case .hasPacked: return 492 - case .hasPhpClassPrefix: return 493 - case .hasPhpMetadataNamespace: return 494 - case .hasPhpNamespace: return 495 - case .hasPositiveIntValue: return 496 - case .hasProto3Optional: return 497 - case .hasPyGenericServices: return 498 - case .hasRepeated: return 499 + case .anyUnpackError: return 12 + case .api: return 13 + case .appended: return 14 + case .appendUintHex: return 15 + case .appendUnknown: return 16 + case .areAllInitialized: return 17 + case .array: return 18 + case .arrayDepth: return 19 + case .arrayLiteral: return 20 + case .arraySeparator: return 21 + case .as: return 22 + case .asciiOpenCurlyBracket: return 23 + case .asciiZero: return 24 + case .async: return 25 + case .asyncIterator: return 26 + case .asyncIteratorProtocol: return 27 + case .asyncMessageSequence: return 28 + case .available: return 29 + case .b: return 30 + case .base: return 31 + case .base64Values: return 32 + case .baseAddress: return 33 + case .baseType: return 34 + case .begin: return 35 + case .binary: return 36 + case .binaryDecoder: return 37 + case .binaryDecoding: return 38 + case .binaryDecodingError: return 39 + case .binaryDecodingOptions: return 40 + case .binaryDelimited: return 41 + case .binaryEncoder: return 42 + case .binaryEncodingError: return 43 + case .binaryEncodingMessageSetSizeVisitor: return 44 + case .binaryEncodingMessageSetVisitor: return 45 + case .binaryEncodingOptions: return 46 + case .binaryEncodingSizeVisitor: return 47 + case .binaryEncodingVisitor: return 48 + case .binaryOptions: return 49 + case .binaryProtobufDelimitedMessages: return 50 + case .binaryStreamDecoding: return 51 + case .binaryStreamDecodingError: return 52 + case .bitPattern: return 53 + case .body: return 54 + case .bool: return 55 + case .booleanLiteral: return 56 + case .booleanLiteralType: return 57 + case .boolValue: return 58 + case .buffer: return 59 + case .bytes: return 60 + case .bytesInGroup: return 61 + case .bytesNeeded: return 62 + case .bytesRead: return 63 + case .bytesValue: return 64 + case .c: return 65 + case .capitalizeNext: return 66 + case .cardinality: return 67 + case .caseIterable: return 68 + case .ccEnableArenas: return 69 + case .ccGenericServices: return 70 + case .character: return 71 + case .chars: return 72 + case .chunk: return 73 + case .class: return 74 + case .clearAggregateValue: return 75 + case .clearAllowAlias: return 76 + case .clearBegin: return 77 + case .clearCcEnableArenas: return 78 + case .clearCcGenericServices: return 79 + case .clearClientStreaming: return 80 + case .clearCsharpNamespace: return 81 + case .clearCtype: return 82 + case .clearDebugRedact: return 83 + case .clearDefaultValue: return 84 + case .clearDeprecated: return 85 + case .clearDeprecatedLegacyJsonFieldConflicts: return 86 + case .clearDeprecationWarning: return 87 + case .clearDoubleValue: return 88 + case .clearEdition: return 89 + case .clearEditionDeprecated: return 90 + case .clearEditionIntroduced: return 91 + case .clearEditionRemoved: return 92 + case .clearEnd: return 93 + case .clearEnumType: return 94 + case .clearExtendee: return 95 + case .clearExtensionValue: return 96 + case .clearFeatures: return 97 + case .clearFeatureSupport: return 98 + case .clearFieldPresence: return 99 + case .clearFixedFeatures: return 100 + case .clearFullName: return 101 + case .clearGoPackage: return 102 + case .clearIdempotencyLevel: return 103 + case .clearIdentifierValue: return 104 + case .clearInputType: return 105 + case .clearIsExtension: return 106 + case .clearJavaGenerateEqualsAndHash: return 107 + case .clearJavaGenericServices: return 108 + case .clearJavaMultipleFiles: return 109 + case .clearJavaOuterClassname: return 110 + case .clearJavaPackage: return 111 + case .clearJavaStringCheckUtf8: return 112 + case .clearJsonFormat: return 113 + case .clearJsonName: return 114 + case .clearJstype: return 115 + case .clearLabel: return 116 + case .clearLazy: return 117 + case .clearLeadingComments: return 118 + case .clearMapEntry: return 119 + case .clearMaximumEdition: return 120 + case .clearMessageEncoding: return 121 + case .clearMessageSetWireFormat: return 122 + case .clearMinimumEdition: return 123 + case .clearName: return 124 + case .clearNamePart: return 125 + case .clearNegativeIntValue: return 126 + case .clearNoStandardDescriptorAccessor: return 127 + case .clearNumber: return 128 + case .clearObjcClassPrefix: return 129 + case .clearOneofIndex: return 130 + case .clearOptimizeFor: return 131 + case .clearOptions: return 132 + case .clearOutputType: return 133 + case .clearOverridableFeatures: return 134 + case .clearPackage: return 135 + case .clearPacked: return 136 + case .clearPhpClassPrefix: return 137 + case .clearPhpMetadataNamespace: return 138 + case .clearPhpNamespace: return 139 + case .clearPositiveIntValue: return 140 + case .clearProto3Optional: return 141 + case .clearPyGenericServices: return 142 + case .clearRepeated: return 143 + case .clearRepeatedFieldEncoding: return 144 + case .clearReserved: return 145 + case .clearRetention: return 146 + case .clearRubyPackage: return 147 + case .clearSemantic: return 148 + case .clearServerStreaming: return 149 + case .clearSourceCodeInfo: return 150 + case .clearSourceContext: return 151 + case .clearSourceFile: return 152 + case .clearStart: return 153 + case .clearStringValue: return 154 + case .clearSwiftPrefix: return 155 + case .clearSyntax: return 156 + case .clearTrailingComments: return 157 + case .clearType: return 158 + case .clearTypeName: return 159 + case .clearUnverifiedLazy: return 160 + case .clearUtf8Validation: return 161 + case .clearValue: return 162 + case .clearVerification: return 163 + case .clearWeak: return 164 + case .clientStreaming: return 165 + case .code: return 166 + case .codePoint: return 167 + case .codeUnits: return 168 + case .collection: return 169 + case .com: return 170 + case .comma: return 171 + case .consumedBytes: return 172 + case .contentsOf: return 173 + case .copy: return 174 + case .count: return 175 + case .countVarintsInBuffer: return 176 + case .csharpNamespace: return 177 + case .ctype: return 178 + case .customCodable: return 179 + case .customDebugStringConvertible: return 180 + case .customStringConvertible: return 181 + case .d: return 182 + case .data: return 183 + case .dataResult: return 184 + case .date: return 185 + case .daySec: return 186 + case .daysSinceEpoch: return 187 + case .debugDescription_: return 188 + case .debugRedact: return 189 + case .declaration: return 190 + case .decoded: return 191 + case .decodedFromJsonnull: return 192 + case .decodeExtensionField: return 193 + case .decodeExtensionFieldsAsMessageSet: return 194 + case .decodeJson: return 195 + case .decodeMapField: return 196 + case .decodeMessage: return 197 + case .decoder: return 198 + case .decodeRepeated: return 199 + case .decodeRepeatedBoolField: return 200 + case .decodeRepeatedBytesField: return 201 + case .decodeRepeatedDoubleField: return 202 + case .decodeRepeatedEnumField: return 203 + case .decodeRepeatedFixed32Field: return 204 + case .decodeRepeatedFixed64Field: return 205 + case .decodeRepeatedFloatField: return 206 + case .decodeRepeatedGroupField: return 207 + case .decodeRepeatedInt32Field: return 208 + case .decodeRepeatedInt64Field: return 209 + case .decodeRepeatedMessageField: return 210 + case .decodeRepeatedSfixed32Field: return 211 + case .decodeRepeatedSfixed64Field: return 212 + case .decodeRepeatedSint32Field: return 213 + case .decodeRepeatedSint64Field: return 214 + case .decodeRepeatedStringField: return 215 + case .decodeRepeatedUint32Field: return 216 + case .decodeRepeatedUint64Field: return 217 + case .decodeSingular: return 218 + case .decodeSingularBoolField: return 219 + case .decodeSingularBytesField: return 220 + case .decodeSingularDoubleField: return 221 + case .decodeSingularEnumField: return 222 + case .decodeSingularFixed32Field: return 223 + case .decodeSingularFixed64Field: return 224 + case .decodeSingularFloatField: return 225 + case .decodeSingularGroupField: return 226 + case .decodeSingularInt32Field: return 227 + case .decodeSingularInt64Field: return 228 + case .decodeSingularMessageField: return 229 + case .decodeSingularSfixed32Field: return 230 + case .decodeSingularSfixed64Field: return 231 + case .decodeSingularSint32Field: return 232 + case .decodeSingularSint64Field: return 233 + case .decodeSingularStringField: return 234 + case .decodeSingularUint32Field: return 235 + case .decodeSingularUint64Field: return 236 + case .decodeTextFormat: return 237 + case .defaultAnyTypeUrlprefix: return 238 + case .defaults: return 239 + case .defaultValue: return 240 + case .dependency: return 241 + case .deprecated: return 242 + case .deprecatedLegacyJsonFieldConflicts: return 243 + case .deprecationWarning: return 244 + case .description_: return 245 + case .descriptorProto: return 246 + case .dictionary: return 247 + case .dictionaryLiteral: return 248 + case .digit: return 249 + case .digit0: return 250 + case .digit1: return 251 + case .digitCount: return 252 + case .digits: return 253 + case .digitValue: return 254 + case .discardableResult: return 255 + case .discardUnknownFields: return 256 + case .double: return 257 + case .doubleValue: return 258 + case .duration: return 259 + case .e: return 260 + case .edition: return 261 + case .editionDefault: return 262 + case .editionDefaults: return 263 + case .editionDeprecated: return 264 + case .editionIntroduced: return 265 + case .editionRemoved: return 266 + case .element: return 267 + case .elements: return 268 + case .emitExtensionFieldName: return 269 + case .emitFieldName: return 270 + case .emitFieldNumber: return 271 + case .empty: return 272 + case .encodeAsBytes: return 273 + case .encoded: return 274 + case .encodedJsonstring: return 275 + case .encodedSize: return 276 + case .encodeField: return 277 + case .encoder: return 278 + case .end: return 279 + case .endArray: return 280 + case .endMessageField: return 281 + case .endObject: return 282 + case .endRegularField: return 283 + case .enum: return 284 + case .enumDescriptorProto: return 285 + case .enumOptions: return 286 + case .enumReservedRange: return 287 + case .enumType: return 288 + case .enumvalue: return 289 + case .enumValueDescriptorProto: return 290 + case .enumValueOptions: return 291 + case .equatable: return 292 + case .error: return 293 + case .expressibleByArrayLiteral: return 294 + case .expressibleByDictionaryLiteral: return 295 + case .ext: return 296 + case .extDecoder: return 297 + case .extendedGraphemeClusterLiteral: return 298 + case .extendedGraphemeClusterLiteralType: return 299 + case .extendee: return 300 + case .extensibleMessage: return 301 + case .extension: return 302 + case .extensionField: return 303 + case .extensionFieldNumber: return 304 + case .extensionFieldValueSet: return 305 + case .extensionMap: return 306 + case .extensionRange: return 307 + case .extensionRangeOptions: return 308 + case .extensions: return 309 + case .extras: return 310 + case .f: return 311 + case .false: return 312 + case .features: return 313 + case .featureSet: return 314 + case .featureSetDefaults: return 315 + case .featureSetEditionDefault: return 316 + case .featureSupport: return 317 + case .field: return 318 + case .fieldData: return 319 + case .fieldDescriptorProto: return 320 + case .fieldMask: return 321 + case .fieldName: return 322 + case .fieldNameCount: return 323 + case .fieldNum: return 324 + case .fieldNumber: return 325 + case .fieldNumberForProto: return 326 + case .fieldOptions: return 327 + case .fieldPresence: return 328 + case .fields: return 329 + case .fieldSize: return 330 + case .fieldTag: return 331 + case .fieldType: return 332 + case .file: return 333 + case .fileDescriptorProto: return 334 + case .fileDescriptorSet: return 335 + case .fileName: return 336 + case .fileOptions: return 337 + case .filter: return 338 + case .final: return 339 + case .finiteOnly: return 340 + case .first: return 341 + case .firstItem: return 342 + case .fixedFeatures: return 343 + case .float: return 344 + case .floatLiteral: return 345 + case .floatLiteralType: return 346 + case .floatValue: return 347 + case .forMessageName: return 348 + case .formUnion: return 349 + case .forReadingFrom: return 350 + case .forTypeURL: return 351 + case .forwardParser: return 352 + case .forWritingInto: return 353 + case .from: return 354 + case .fromAscii2: return 355 + case .fromAscii4: return 356 + case .fromByteOffset: return 357 + case .fromHexDigit: return 358 + case .fullName: return 359 + case .func: return 360 + case .function: return 361 + case .g: return 362 + case .generatedCodeInfo: return 363 + case .get: return 364 + case .getExtensionValue: return 365 + case .googleapis: return 366 + case .googleProtobufAny: return 367 + case .googleProtobufApi: return 368 + case .googleProtobufBoolValue: return 369 + case .googleProtobufBytesValue: return 370 + case .googleProtobufDescriptorProto: return 371 + case .googleProtobufDoubleValue: return 372 + case .googleProtobufDuration: return 373 + case .googleProtobufEdition: return 374 + case .googleProtobufEmpty: return 375 + case .googleProtobufEnum: return 376 + case .googleProtobufEnumDescriptorProto: return 377 + case .googleProtobufEnumOptions: return 378 + case .googleProtobufEnumValue: return 379 + case .googleProtobufEnumValueDescriptorProto: return 380 + case .googleProtobufEnumValueOptions: return 381 + case .googleProtobufExtensionRangeOptions: return 382 + case .googleProtobufFeatureSet: return 383 + case .googleProtobufFeatureSetDefaults: return 384 + case .googleProtobufField: return 385 + case .googleProtobufFieldDescriptorProto: return 386 + case .googleProtobufFieldMask: return 387 + case .googleProtobufFieldOptions: return 388 + case .googleProtobufFileDescriptorProto: return 389 + case .googleProtobufFileDescriptorSet: return 390 + case .googleProtobufFileOptions: return 391 + case .googleProtobufFloatValue: return 392 + case .googleProtobufGeneratedCodeInfo: return 393 + case .googleProtobufInt32Value: return 394 + case .googleProtobufInt64Value: return 395 + case .googleProtobufListValue: return 396 + case .googleProtobufMessageOptions: return 397 + case .googleProtobufMethod: return 398 + case .googleProtobufMethodDescriptorProto: return 399 + case .googleProtobufMethodOptions: return 400 + case .googleProtobufMixin: return 401 + case .googleProtobufNullValue: return 402 + case .googleProtobufOneofDescriptorProto: return 403 + case .googleProtobufOneofOptions: return 404 + case .googleProtobufOption: return 405 + case .googleProtobufServiceDescriptorProto: return 406 + case .googleProtobufServiceOptions: return 407 + case .googleProtobufSourceCodeInfo: return 408 + case .googleProtobufSourceContext: return 409 + case .googleProtobufStringValue: return 410 + case .googleProtobufStruct: return 411 + case .googleProtobufSyntax: return 412 + case .googleProtobufTimestamp: return 413 + case .googleProtobufType: return 414 + case .googleProtobufUint32Value: return 415 + case .googleProtobufUint64Value: return 416 + case .googleProtobufUninterpretedOption: return 417 + case .googleProtobufValue: return 418 + case .goPackage: return 419 + case .group: return 420 + case .groupFieldNumberStack: return 421 + case .groupSize: return 422 + case .hadOneofValue: return 423 + case .handleConflictingOneOf: return 424 + case .hasAggregateValue: return 425 + case .hasAllowAlias: return 426 + case .hasBegin: return 427 + case .hasCcEnableArenas: return 428 + case .hasCcGenericServices: return 429 + case .hasClientStreaming: return 430 + case .hasCsharpNamespace: return 431 + case .hasCtype: return 432 + case .hasDebugRedact: return 433 + case .hasDefaultValue: return 434 + case .hasDeprecated: return 435 + case .hasDeprecatedLegacyJsonFieldConflicts: return 436 + case .hasDeprecationWarning: return 437 + case .hasDoubleValue: return 438 + case .hasEdition: return 439 + case .hasEditionDeprecated: return 440 + case .hasEditionIntroduced: return 441 + case .hasEditionRemoved: return 442 + case .hasEnd: return 443 + case .hasEnumType: return 444 + case .hasExtendee: return 445 + case .hasExtensionValue: return 446 + case .hasFeatures: return 447 + case .hasFeatureSupport: return 448 + case .hasFieldPresence: return 449 + case .hasFixedFeatures: return 450 + case .hasFullName: return 451 + case .hasGoPackage: return 452 + case .hash: return 453 + case .hashable: return 454 + case .hasher: return 455 + case .hashVisitor: return 456 + case .hasIdempotencyLevel: return 457 + case .hasIdentifierValue: return 458 + case .hasInputType: return 459 + case .hasIsExtension: return 460 + case .hasJavaGenerateEqualsAndHash: return 461 + case .hasJavaGenericServices: return 462 + case .hasJavaMultipleFiles: return 463 + case .hasJavaOuterClassname: return 464 + case .hasJavaPackage: return 465 + case .hasJavaStringCheckUtf8: return 466 + case .hasJsonFormat: return 467 + case .hasJsonName: return 468 + case .hasJstype: return 469 + case .hasLabel: return 470 + case .hasLazy: return 471 + case .hasLeadingComments: return 472 + case .hasMapEntry: return 473 + case .hasMaximumEdition: return 474 + case .hasMessageEncoding: return 475 + case .hasMessageSetWireFormat: return 476 + case .hasMinimumEdition: return 477 + case .hasName: return 478 + case .hasNamePart: return 479 + case .hasNegativeIntValue: return 480 + case .hasNoStandardDescriptorAccessor: return 481 + case .hasNumber: return 482 + case .hasObjcClassPrefix: return 483 + case .hasOneofIndex: return 484 + case .hasOptimizeFor: return 485 + case .hasOptions: return 486 + case .hasOutputType: return 487 + case .hasOverridableFeatures: return 488 + case .hasPackage: return 489 + case .hasPacked: return 490 + case .hasPhpClassPrefix: return 491 + case .hasPhpMetadataNamespace: return 492 + case .hasPhpNamespace: return 493 + case .hasPositiveIntValue: return 494 + case .hasProto3Optional: return 495 + case .hasPyGenericServices: return 496 + case .hasRepeated: return 497 + case .hasRepeatedFieldEncoding: return 498 + case .hasReserved: return 499 default: break } switch self { - case .hasRepeatedFieldEncoding: return 500 - case .hasReserved: return 501 - case .hasRetention: return 502 - case .hasRubyPackage: return 503 - case .hasSemantic: return 504 - case .hasServerStreaming: return 505 - case .hasSourceCodeInfo: return 506 - case .hasSourceContext: return 507 - case .hasSourceFile: return 508 - case .hasStart: return 509 - case .hasStringValue: return 510 - case .hasSwiftPrefix: return 511 - case .hasSyntax: return 512 - case .hasTrailingComments: return 513 - case .hasType: return 514 - case .hasTypeName: return 515 - case .hasUnverifiedLazy: return 516 - case .hasUtf8Validation: return 517 - case .hasValue: return 518 - case .hasVerification: return 519 - case .hasWeak: return 520 - case .hour: return 521 - case .i: return 522 - case .idempotencyLevel: return 523 - case .identifierValue: return 524 - case .if: return 525 - case .ignoreUnknownExtensionFields: return 526 - case .ignoreUnknownFields: return 527 - case .index: return 528 - case .init_: return 529 - case .inout: return 530 - case .inputType: return 531 - case .insert: return 532 - case .int: return 533 - case .int32: return 534 - case .int32Value: return 535 - case .int64: return 536 - case .int64Value: return 537 - case .int8: return 538 - case .integerLiteral: return 539 - case .integerLiteralType: return 540 - case .intern: return 541 - case .internal: return 542 - case .internalState: return 543 - case .into: return 544 - case .ints: return 545 - case .isA: return 546 - case .isEqual: return 547 - case .isEqualTo: return 548 - case .isExtension: return 549 - case .isInitialized: return 550 - case .isNegative: return 551 - case .itemTagsEncodedSize: return 552 - case .iterator: return 553 - case .javaGenerateEqualsAndHash: return 554 - case .javaGenericServices: return 555 - case .javaMultipleFiles: return 556 - case .javaOuterClassname: return 557 - case .javaPackage: return 558 - case .javaStringCheckUtf8: return 559 - case .jsondecoder: return 560 - case .jsondecodingError: return 561 - case .jsondecodingOptions: return 562 - case .jsonEncoder: return 563 - case .jsonencoding: return 564 - case .jsonencodingError: return 565 - case .jsonencodingOptions: return 566 - case .jsonencodingVisitor: return 567 - case .jsonFormat: return 568 - case .jsonmapEncodingVisitor: return 569 - case .jsonName: return 570 - case .jsonPath: return 571 - case .jsonPaths: return 572 - case .jsonscanner: return 573 - case .jsonString: return 574 - case .jsonText: return 575 - case .jsonUtf8Bytes: return 576 - case .jsonUtf8Data: return 577 - case .jstype: return 578 - case .k: return 579 - case .kChunkSize: return 580 - case .key: return 581 - case .keyField: return 582 - case .keyFieldOpt: return 583 - case .keyType: return 584 - case .kind: return 585 - case .l: return 586 - case .label: return 587 - case .lazy: return 588 - case .leadingComments: return 589 - case .leadingDetachedComments: return 590 - case .length: return 591 - case .lessThan: return 592 - case .let: return 593 - case .lhs: return 594 - case .line: return 595 - case .list: return 596 - case .listOfMessages: return 597 - case .listValue: return 598 - case .littleEndian: return 599 - case .load: return 600 - case .localHasher: return 601 - case .location: return 602 - case .m: return 603 - case .major: return 604 - case .makeAsyncIterator: return 605 - case .makeIterator: return 606 - case .malformedLength: return 607 - case .mapEntry: return 608 - case .mapKeyType: return 609 - case .mapToMessages: return 610 - case .mapValueType: return 611 - case .mapVisitor: return 612 - case .maximumEdition: return 613 - case .mdayStart: return 614 - case .merge: return 615 - case .message: return 616 - case .messageDepthLimit: return 617 - case .messageEncoding: return 618 - case .messageExtension: return 619 - case .messageImplementationBase: return 620 - case .messageOptions: return 621 - case .messageSet: return 622 - case .messageSetWireFormat: return 623 - case .messageSize: return 624 - case .messageType: return 625 - case .method: return 626 - case .methodDescriptorProto: return 627 - case .methodOptions: return 628 - case .methods: return 629 - case .min: return 630 - case .minimumEdition: return 631 - case .minor: return 632 - case .mixin: return 633 - case .mixins: return 634 - case .modifier: return 635 - case .modify: return 636 - case .month: return 637 - case .msgExtension: return 638 - case .mutating: return 639 - case .n: return 640 - case .name: return 641 - case .nameDescription: return 642 - case .nameMap: return 643 - case .namePart: return 644 - case .names: return 645 - case .nanos: return 646 - case .negativeIntValue: return 647 - case .nestedType: return 648 - case .newL: return 649 - case .newList: return 650 - case .newValue: return 651 - case .next: return 652 - case .nextByte: return 653 - case .nextFieldNumber: return 654 - case .nextVarInt: return 655 - case .nil: return 656 - case .nilLiteral: return 657 - case .noBytesAvailable: return 658 - case .noStandardDescriptorAccessor: return 659 - case .nullValue: return 660 - case .number: return 661 - case .numberValue: return 662 - case .objcClassPrefix: return 663 - case .of: return 664 - case .oneofDecl: return 665 - case .oneofDescriptorProto: return 666 - case .oneofIndex: return 667 - case .oneofOptions: return 668 - case .oneofs: return 669 - case .oneOfKind: return 670 - case .optimizeFor: return 671 - case .optimizeMode: return 672 - case .option: return 673 - case .optionalEnumExtensionField: return 674 - case .optionalExtensionField: return 675 - case .optionalGroupExtensionField: return 676 - case .optionalMessageExtensionField: return 677 - case .optionRetention: return 678 - case .options: return 679 - case .optionTargetType: return 680 - case .other: return 681 - case .others: return 682 - case .out: return 683 - case .outputType: return 684 - case .overridableFeatures: return 685 - case .p: return 686 - case .package: return 687 - case .packed: return 688 - case .packedEnumExtensionField: return 689 - case .packedExtensionField: return 690 - case .padding: return 691 - case .parent: return 692 - case .parse: return 693 - case .path: return 694 - case .paths: return 695 - case .payload: return 696 - case .payloadSize: return 697 - case .phpClassPrefix: return 698 - case .phpMetadataNamespace: return 699 - case .phpNamespace: return 700 - case .pos: return 701 - case .positiveIntValue: return 702 - case .prefix: return 703 - case .preserveProtoFieldNames: return 704 - case .preTraverse: return 705 - case .printUnknownFields: return 706 - case .proto2: return 707 - case .proto3DefaultValue: return 708 - case .proto3Optional: return 709 - case .protobufApiversionCheck: return 710 - case .protobufApiversion3: return 711 - case .protobufBool: return 712 - case .protobufBytes: return 713 - case .protobufDouble: return 714 - case .protobufEnumMap: return 715 - case .protobufExtension: return 716 - case .protobufFixed32: return 717 - case .protobufFixed64: return 718 - case .protobufFloat: return 719 - case .protobufInt32: return 720 - case .protobufInt64: return 721 - case .protobufMap: return 722 - case .protobufMessageMap: return 723 - case .protobufSfixed32: return 724 - case .protobufSfixed64: return 725 - case .protobufSint32: return 726 - case .protobufSint64: return 727 - case .protobufString: return 728 - case .protobufUint32: return 729 - case .protobufUint64: return 730 - case .protobufExtensionFieldValues: return 731 - case .protobufFieldNumber: return 732 - case .protobufGeneratedIsEqualTo: return 733 - case .protobufNameMap: return 734 - case .protobufNewField: return 735 - case .protobufPackage: return 736 - case .protocol: return 737 - case .protoFieldName: return 738 - case .protoMessageName: return 739 - case .protoNameProviding: return 740 - case .protoPaths: return 741 - case .public: return 742 - case .publicDependency: return 743 - case .putBoolValue: return 744 - case .putBytesValue: return 745 - case .putDoubleValue: return 746 - case .putEnumValue: return 747 - case .putFixedUint32: return 748 - case .putFixedUint64: return 749 - case .putFloatValue: return 750 - case .putInt64: return 751 - case .putStringValue: return 752 - case .putUint64: return 753 - case .putUint64Hex: return 754 - case .putVarInt: return 755 - case .putZigZagVarInt: return 756 - case .pyGenericServices: return 757 - case .r: return 758 - case .rawChars: return 759 - case .rawRepresentable: return 760 - case .rawValue_: return 761 - case .read4HexDigits: return 762 - case .readBytes: return 763 - case .register: return 764 - case .repeated: return 765 - case .repeatedEnumExtensionField: return 766 - case .repeatedExtensionField: return 767 - case .repeatedFieldEncoding: return 768 - case .repeatedGroupExtensionField: return 769 - case .repeatedMessageExtensionField: return 770 - case .repeating: return 771 - case .requestStreaming: return 772 - case .requestTypeURL: return 773 - case .requiredSize: return 774 - case .responseStreaming: return 775 - case .responseTypeURL: return 776 - case .result: return 777 - case .retention: return 778 - case .rethrows: return 779 - case .return: return 780 - case .returnType: return 781 - case .revision: return 782 - case .rhs: return 783 - case .root: return 784 - case .rubyPackage: return 785 - case .s: return 786 - case .sawBackslash: return 787 - case .sawSection4Characters: return 788 - case .sawSection5Characters: return 789 - case .scan: return 790 - case .scanner: return 791 - case .seconds: return 792 - case .self_: return 793 - case .semantic: return 794 - case .sendable: return 795 - case .separator: return 796 - case .serialize: return 797 - case .serializedBytes: return 798 - case .serializedData: return 799 - case .serializedSize: return 800 - case .serverStreaming: return 801 - case .service: return 802 - case .serviceDescriptorProto: return 803 - case .serviceOptions: return 804 - case .set: return 805 - case .setExtensionValue: return 806 - case .shift: return 807 - case .simpleExtensionMap: return 808 - case .size: return 809 - case .sizer: return 810 - case .source: return 811 - case .sourceCodeInfo: return 812 - case .sourceContext: return 813 - case .sourceEncoding: return 814 - case .sourceFile: return 815 - case .sourceLocation: return 816 - case .span: return 817 - case .split: return 818 - case .start: return 819 - case .startArray: return 820 - case .startArrayObject: return 821 - case .startField: return 822 - case .startIndex: return 823 - case .startMessageField: return 824 - case .startObject: return 825 - case .startRegularField: return 826 - case .state: return 827 - case .static: return 828 - case .staticString: return 829 - case .storage: return 830 - case .string: return 831 - case .stringLiteral: return 832 - case .stringLiteralType: return 833 - case .stringResult: return 834 - case .stringValue: return 835 - case .struct: return 836 - case .structValue: return 837 - case .subDecoder: return 838 - case .subscript: return 839 - case .subVisitor: return 840 - case .swift: return 841 - case .swiftPrefix: return 842 - case .swiftProtobufContiguousBytes: return 843 - case .swiftProtobufError: return 844 - case .syntax: return 845 - case .t: return 846 - case .tag: return 847 - case .targets: return 848 - case .terminator: return 849 - case .testDecoder: return 850 - case .text: return 851 - case .textDecoder: return 852 - case .textFormatDecoder: return 853 - case .textFormatDecodingError: return 854 - case .textFormatDecodingOptions: return 855 - case .textFormatEncodingOptions: return 856 - case .textFormatEncodingVisitor: return 857 - case .textFormatString: return 858 - case .throwOrIgnore: return 859 - case .throws: return 860 - case .timeInterval: return 861 - case .timeIntervalSince1970: return 862 - case .timeIntervalSinceReferenceDate: return 863 - case .timestamp: return 864 - case .tooLarge: return 865 - case .total: return 866 - case .totalArrayDepth: return 867 - case .totalSize: return 868 - case .trailingComments: return 869 - case .traverse: return 870 - case .true: return 871 - case .try: return 872 - case .type: return 873 - case .typealias: return 874 - case .typeEnum: return 875 - case .typeName: return 876 - case .typePrefix: return 877 - case .typeStart: return 878 - case .typeUnknown: return 879 - case .typeURL: return 880 - case .uint32: return 881 - case .uint32Value: return 882 - case .uint64: return 883 - case .uint64Value: return 884 - case .uint8: return 885 - case .unchecked: return 886 - case .unicodeScalarLiteral: return 887 - case .unicodeScalarLiteralType: return 888 - case .unicodeScalars: return 889 - case .unicodeScalarView: return 890 - case .uninterpretedOption: return 891 - case .union: return 892 - case .uniqueStorage: return 893 - case .unknown: return 894 - case .unknownFields: return 895 - case .unknownStorage: return 896 - case .unpackTo: return 897 - case .unregisteredTypeURL: return 898 - case .unsafeBufferPointer: return 899 - case .unsafeMutablePointer: return 900 - case .unsafeMutableRawBufferPointer: return 901 - case .unsafeRawBufferPointer: return 902 - case .unsafeRawPointer: return 903 - case .unverifiedLazy: return 904 - case .updatedOptions: return 905 - case .url: return 906 - case .useDeterministicOrdering: return 907 - case .utf8: return 908 - case .utf8Ptr: return 909 - case .utf8ToDouble: return 910 - case .utf8Validation: return 911 - case .utf8View: return 912 - case .v: return 913 - case .value: return 914 - case .valueField: return 915 - case .values: return 916 - case .valueType: return 917 - case .var: return 918 - case .verification: return 919 - case .verificationState: return 920 - case .version: return 921 - case .versionString: return 922 - case .visitExtensionFields: return 923 - case .visitExtensionFieldsAsMessageSet: return 924 - case .visitMapField: return 925 - case .visitor: return 926 - case .visitPacked: return 927 - case .visitPackedBoolField: return 928 - case .visitPackedDoubleField: return 929 - case .visitPackedEnumField: return 930 - case .visitPackedFixed32Field: return 931 - case .visitPackedFixed64Field: return 932 - case .visitPackedFloatField: return 933 - case .visitPackedInt32Field: return 934 - case .visitPackedInt64Field: return 935 - case .visitPackedSfixed32Field: return 936 - case .visitPackedSfixed64Field: return 937 - case .visitPackedSint32Field: return 938 - case .visitPackedSint64Field: return 939 - case .visitPackedUint32Field: return 940 - case .visitPackedUint64Field: return 941 - case .visitRepeated: return 942 - case .visitRepeatedBoolField: return 943 - case .visitRepeatedBytesField: return 944 - case .visitRepeatedDoubleField: return 945 - case .visitRepeatedEnumField: return 946 - case .visitRepeatedFixed32Field: return 947 - case .visitRepeatedFixed64Field: return 948 - case .visitRepeatedFloatField: return 949 - case .visitRepeatedGroupField: return 950 - case .visitRepeatedInt32Field: return 951 - case .visitRepeatedInt64Field: return 952 - case .visitRepeatedMessageField: return 953 - case .visitRepeatedSfixed32Field: return 954 - case .visitRepeatedSfixed64Field: return 955 - case .visitRepeatedSint32Field: return 956 - case .visitRepeatedSint64Field: return 957 - case .visitRepeatedStringField: return 958 - case .visitRepeatedUint32Field: return 959 - case .visitRepeatedUint64Field: return 960 - case .visitSingular: return 961 - case .visitSingularBoolField: return 962 - case .visitSingularBytesField: return 963 - case .visitSingularDoubleField: return 964 - case .visitSingularEnumField: return 965 - case .visitSingularFixed32Field: return 966 - case .visitSingularFixed64Field: return 967 - case .visitSingularFloatField: return 968 - case .visitSingularGroupField: return 969 - case .visitSingularInt32Field: return 970 - case .visitSingularInt64Field: return 971 - case .visitSingularMessageField: return 972 - case .visitSingularSfixed32Field: return 973 - case .visitSingularSfixed64Field: return 974 - case .visitSingularSint32Field: return 975 - case .visitSingularSint64Field: return 976 - case .visitSingularStringField: return 977 - case .visitSingularUint32Field: return 978 - case .visitSingularUint64Field: return 979 - case .visitUnknown: return 980 - case .wasDecoded: return 981 - case .weak: return 982 - case .weakDependency: return 983 - case .where: return 984 - case .wireFormat: return 985 - case .with: return 986 - case .withUnsafeBytes: return 987 - case .withUnsafeMutableBytes: return 988 - case .work: return 989 - case .wrapped: return 990 - case .wrappedType: return 991 - case .wrappedValue: return 992 - case .written: return 993 - case .yday: return 994 + case .hasRetention: return 500 + case .hasRubyPackage: return 501 + case .hasSemantic: return 502 + case .hasServerStreaming: return 503 + case .hasSourceCodeInfo: return 504 + case .hasSourceContext: return 505 + case .hasSourceFile: return 506 + case .hasStart: return 507 + case .hasStringValue: return 508 + case .hasSwiftPrefix: return 509 + case .hasSyntax: return 510 + case .hasTrailingComments: return 511 + case .hasType: return 512 + case .hasTypeName: return 513 + case .hasUnverifiedLazy: return 514 + case .hasUtf8Validation: return 515 + case .hasValue: return 516 + case .hasVerification: return 517 + case .hasWeak: return 518 + case .hour: return 519 + case .i: return 520 + case .idempotencyLevel: return 521 + case .identifierValue: return 522 + case .if: return 523 + case .ignoreUnknownExtensionFields: return 524 + case .ignoreUnknownFields: return 525 + case .index: return 526 + case .init_: return 527 + case .inout: return 528 + case .inputType: return 529 + case .insert: return 530 + case .int: return 531 + case .int32: return 532 + case .int32Value: return 533 + case .int64: return 534 + case .int64Value: return 535 + case .int8: return 536 + case .integerLiteral: return 537 + case .integerLiteralType: return 538 + case .intern: return 539 + case .internal: return 540 + case .internalState: return 541 + case .into: return 542 + case .ints: return 543 + case .isA: return 544 + case .isEqual: return 545 + case .isEqualTo: return 546 + case .isExtension: return 547 + case .isInitialized: return 548 + case .isNegative: return 549 + case .itemTagsEncodedSize: return 550 + case .iterator: return 551 + case .javaGenerateEqualsAndHash: return 552 + case .javaGenericServices: return 553 + case .javaMultipleFiles: return 554 + case .javaOuterClassname: return 555 + case .javaPackage: return 556 + case .javaStringCheckUtf8: return 557 + case .jsondecoder: return 558 + case .jsondecodingError: return 559 + case .jsondecodingOptions: return 560 + case .jsonEncoder: return 561 + case .jsonencodingError: return 562 + case .jsonencodingOptions: return 563 + case .jsonencodingVisitor: return 564 + case .jsonFormat: return 565 + case .jsonmapEncodingVisitor: return 566 + case .jsonName: return 567 + case .jsonPath: return 568 + case .jsonPaths: return 569 + case .jsonscanner: return 570 + case .jsonString: return 571 + case .jsonText: return 572 + case .jsonUtf8Bytes: return 573 + case .jsonUtf8Data: return 574 + case .jstype: return 575 + case .k: return 576 + case .kChunkSize: return 577 + case .key: return 578 + case .keyField: return 579 + case .keyFieldOpt: return 580 + case .keyType: return 581 + case .kind: return 582 + case .l: return 583 + case .label: return 584 + case .lazy: return 585 + case .leadingComments: return 586 + case .leadingDetachedComments: return 587 + case .length: return 588 + case .lessThan: return 589 + case .let: return 590 + case .lhs: return 591 + case .line: return 592 + case .list: return 593 + case .listOfMessages: return 594 + case .listValue: return 595 + case .littleEndian: return 596 + case .load: return 597 + case .localHasher: return 598 + case .location: return 599 + case .m: return 600 + case .major: return 601 + case .makeAsyncIterator: return 602 + case .makeIterator: return 603 + case .malformedLength: return 604 + case .mapEntry: return 605 + case .mapKeyType: return 606 + case .mapToMessages: return 607 + case .mapValueType: return 608 + case .mapVisitor: return 609 + case .maximumEdition: return 610 + case .mdayStart: return 611 + case .merge: return 612 + case .message: return 613 + case .messageDepthLimit: return 614 + case .messageEncoding: return 615 + case .messageExtension: return 616 + case .messageImplementationBase: return 617 + case .messageOptions: return 618 + case .messageSet: return 619 + case .messageSetWireFormat: return 620 + case .messageSize: return 621 + case .messageType: return 622 + case .method: return 623 + case .methodDescriptorProto: return 624 + case .methodOptions: return 625 + case .methods: return 626 + case .min: return 627 + case .minimumEdition: return 628 + case .minor: return 629 + case .mixin: return 630 + case .mixins: return 631 + case .modifier: return 632 + case .modify: return 633 + case .month: return 634 + case .msgExtension: return 635 + case .mutating: return 636 + case .n: return 637 + case .name: return 638 + case .nameDescription: return 639 + case .nameMap: return 640 + case .namePart: return 641 + case .names: return 642 + case .nanos: return 643 + case .negativeIntValue: return 644 + case .nestedType: return 645 + case .newL: return 646 + case .newList: return 647 + case .newValue: return 648 + case .next: return 649 + case .nextByte: return 650 + case .nextFieldNumber: return 651 + case .nextVarInt: return 652 + case .nil: return 653 + case .nilLiteral: return 654 + case .noBytesAvailable: return 655 + case .noStandardDescriptorAccessor: return 656 + case .nullValue: return 657 + case .number: return 658 + case .numberValue: return 659 + case .objcClassPrefix: return 660 + case .of: return 661 + case .oneofDecl: return 662 + case .oneofDescriptorProto: return 663 + case .oneofIndex: return 664 + case .oneofOptions: return 665 + case .oneofs: return 666 + case .oneOfKind: return 667 + case .optimizeFor: return 668 + case .optimizeMode: return 669 + case .option: return 670 + case .optionalEnumExtensionField: return 671 + case .optionalExtensionField: return 672 + case .optionalGroupExtensionField: return 673 + case .optionalMessageExtensionField: return 674 + case .optionRetention: return 675 + case .options: return 676 + case .optionTargetType: return 677 + case .other: return 678 + case .others: return 679 + case .out: return 680 + case .outputType: return 681 + case .overridableFeatures: return 682 + case .p: return 683 + case .package: return 684 + case .packed: return 685 + case .packedEnumExtensionField: return 686 + case .packedExtensionField: return 687 + case .padding: return 688 + case .parent: return 689 + case .parse: return 690 + case .path: return 691 + case .paths: return 692 + case .payload: return 693 + case .payloadSize: return 694 + case .phpClassPrefix: return 695 + case .phpMetadataNamespace: return 696 + case .phpNamespace: return 697 + case .pos: return 698 + case .positiveIntValue: return 699 + case .prefix: return 700 + case .preserveProtoFieldNames: return 701 + case .preTraverse: return 702 + case .printUnknownFields: return 703 + case .proto2: return 704 + case .proto3DefaultValue: return 705 + case .proto3Optional: return 706 + case .protobufApiversionCheck: return 707 + case .protobufApiversion3: return 708 + case .protobufBool: return 709 + case .protobufBytes: return 710 + case .protobufDouble: return 711 + case .protobufEnumMap: return 712 + case .protobufExtension: return 713 + case .protobufFixed32: return 714 + case .protobufFixed64: return 715 + case .protobufFloat: return 716 + case .protobufInt32: return 717 + case .protobufInt64: return 718 + case .protobufMap: return 719 + case .protobufMessageMap: return 720 + case .protobufSfixed32: return 721 + case .protobufSfixed64: return 722 + case .protobufSint32: return 723 + case .protobufSint64: return 724 + case .protobufString: return 725 + case .protobufUint32: return 726 + case .protobufUint64: return 727 + case .protobufExtensionFieldValues: return 728 + case .protobufFieldNumber: return 729 + case .protobufGeneratedIsEqualTo: return 730 + case .protobufNameMap: return 731 + case .protobufNewField: return 732 + case .protobufPackage: return 733 + case .protocol: return 734 + case .protoFieldName: return 735 + case .protoMessageName: return 736 + case .protoNameProviding: return 737 + case .protoPaths: return 738 + case .public: return 739 + case .publicDependency: return 740 + case .putBoolValue: return 741 + case .putBytesValue: return 742 + case .putDoubleValue: return 743 + case .putEnumValue: return 744 + case .putFixedUint32: return 745 + case .putFixedUint64: return 746 + case .putFloatValue: return 747 + case .putInt64: return 748 + case .putStringValue: return 749 + case .putUint64: return 750 + case .putUint64Hex: return 751 + case .putVarInt: return 752 + case .putZigZagVarInt: return 753 + case .pyGenericServices: return 754 + case .r: return 755 + case .rawChars: return 756 + case .rawRepresentable: return 757 + case .rawValue_: return 758 + case .read4HexDigits: return 759 + case .readBytes: return 760 + case .register: return 761 + case .repeated: return 762 + case .repeatedEnumExtensionField: return 763 + case .repeatedExtensionField: return 764 + case .repeatedFieldEncoding: return 765 + case .repeatedGroupExtensionField: return 766 + case .repeatedMessageExtensionField: return 767 + case .repeating: return 768 + case .requestStreaming: return 769 + case .requestTypeURL: return 770 + case .requiredSize: return 771 + case .responseStreaming: return 772 + case .responseTypeURL: return 773 + case .result: return 774 + case .retention: return 775 + case .rethrows: return 776 + case .return: return 777 + case .returnType: return 778 + case .revision: return 779 + case .rhs: return 780 + case .root: return 781 + case .rubyPackage: return 782 + case .s: return 783 + case .sawBackslash: return 784 + case .sawSection4Characters: return 785 + case .sawSection5Characters: return 786 + case .scan: return 787 + case .scanner: return 788 + case .seconds: return 789 + case .self_: return 790 + case .semantic: return 791 + case .sendable: return 792 + case .separator: return 793 + case .serialize: return 794 + case .serializedBytes: return 795 + case .serializedData: return 796 + case .serializedSize: return 797 + case .serverStreaming: return 798 + case .service: return 799 + case .serviceDescriptorProto: return 800 + case .serviceOptions: return 801 + case .set: return 802 + case .setExtensionValue: return 803 + case .shift: return 804 + case .simpleExtensionMap: return 805 + case .size: return 806 + case .sizer: return 807 + case .source: return 808 + case .sourceCodeInfo: return 809 + case .sourceContext: return 810 + case .sourceEncoding: return 811 + case .sourceFile: return 812 + case .sourceLocation: return 813 + case .span: return 814 + case .split: return 815 + case .start: return 816 + case .startArray: return 817 + case .startArrayObject: return 818 + case .startField: return 819 + case .startIndex: return 820 + case .startMessageField: return 821 + case .startObject: return 822 + case .startRegularField: return 823 + case .state: return 824 + case .static: return 825 + case .staticString: return 826 + case .storage: return 827 + case .string: return 828 + case .stringLiteral: return 829 + case .stringLiteralType: return 830 + case .stringResult: return 831 + case .stringValue: return 832 + case .struct: return 833 + case .structValue: return 834 + case .subDecoder: return 835 + case .subscript: return 836 + case .subVisitor: return 837 + case .swift: return 838 + case .swiftPrefix: return 839 + case .swiftProtobufContiguousBytes: return 840 + case .swiftProtobufError: return 841 + case .syntax: return 842 + case .t: return 843 + case .tag: return 844 + case .targets: return 845 + case .terminator: return 846 + case .testDecoder: return 847 + case .text: return 848 + case .textDecoder: return 849 + case .textFormatDecoder: return 850 + case .textFormatDecodingError: return 851 + case .textFormatDecodingOptions: return 852 + case .textFormatEncodingOptions: return 853 + case .textFormatEncodingVisitor: return 854 + case .textFormatString: return 855 + case .throwOrIgnore: return 856 + case .throws: return 857 + case .timeInterval: return 858 + case .timeIntervalSince1970: return 859 + case .timeIntervalSinceReferenceDate: return 860 + case .timestamp: return 861 + case .tooLarge: return 862 + case .total: return 863 + case .totalArrayDepth: return 864 + case .totalSize: return 865 + case .trailingComments: return 866 + case .traverse: return 867 + case .true: return 868 + case .try: return 869 + case .type: return 870 + case .typealias: return 871 + case .typeEnum: return 872 + case .typeName: return 873 + case .typePrefix: return 874 + case .typeStart: return 875 + case .typeUnknown: return 876 + case .typeURL: return 877 + case .uint32: return 878 + case .uint32Value: return 879 + case .uint64: return 880 + case .uint64Value: return 881 + case .uint8: return 882 + case .unchecked: return 883 + case .unicodeScalarLiteral: return 884 + case .unicodeScalarLiteralType: return 885 + case .unicodeScalars: return 886 + case .unicodeScalarView: return 887 + case .uninterpretedOption: return 888 + case .union: return 889 + case .uniqueStorage: return 890 + case .unknown: return 891 + case .unknownFields: return 892 + case .unknownStorage: return 893 + case .unpackTo: return 894 + case .unsafeBufferPointer: return 895 + case .unsafeMutablePointer: return 896 + case .unsafeMutableRawBufferPointer: return 897 + case .unsafeRawBufferPointer: return 898 + case .unsafeRawPointer: return 899 + case .unverifiedLazy: return 900 + case .updatedOptions: return 901 + case .url: return 902 + case .useDeterministicOrdering: return 903 + case .utf8: return 904 + case .utf8Ptr: return 905 + case .utf8ToDouble: return 906 + case .utf8Validation: return 907 + case .utf8View: return 908 + case .v: return 909 + case .value: return 910 + case .valueField: return 911 + case .values: return 912 + case .valueType: return 913 + case .var: return 914 + case .verification: return 915 + case .verificationState: return 916 + case .version: return 917 + case .versionString: return 918 + case .visitExtensionFields: return 919 + case .visitExtensionFieldsAsMessageSet: return 920 + case .visitMapField: return 921 + case .visitor: return 922 + case .visitPacked: return 923 + case .visitPackedBoolField: return 924 + case .visitPackedDoubleField: return 925 + case .visitPackedEnumField: return 926 + case .visitPackedFixed32Field: return 927 + case .visitPackedFixed64Field: return 928 + case .visitPackedFloatField: return 929 + case .visitPackedInt32Field: return 930 + case .visitPackedInt64Field: return 931 + case .visitPackedSfixed32Field: return 932 + case .visitPackedSfixed64Field: return 933 + case .visitPackedSint32Field: return 934 + case .visitPackedSint64Field: return 935 + case .visitPackedUint32Field: return 936 + case .visitPackedUint64Field: return 937 + case .visitRepeated: return 938 + case .visitRepeatedBoolField: return 939 + case .visitRepeatedBytesField: return 940 + case .visitRepeatedDoubleField: return 941 + case .visitRepeatedEnumField: return 942 + case .visitRepeatedFixed32Field: return 943 + case .visitRepeatedFixed64Field: return 944 + case .visitRepeatedFloatField: return 945 + case .visitRepeatedGroupField: return 946 + case .visitRepeatedInt32Field: return 947 + case .visitRepeatedInt64Field: return 948 + case .visitRepeatedMessageField: return 949 + case .visitRepeatedSfixed32Field: return 950 + case .visitRepeatedSfixed64Field: return 951 + case .visitRepeatedSint32Field: return 952 + case .visitRepeatedSint64Field: return 953 + case .visitRepeatedStringField: return 954 + case .visitRepeatedUint32Field: return 955 + case .visitRepeatedUint64Field: return 956 + case .visitSingular: return 957 + case .visitSingularBoolField: return 958 + case .visitSingularBytesField: return 959 + case .visitSingularDoubleField: return 960 + case .visitSingularEnumField: return 961 + case .visitSingularFixed32Field: return 962 + case .visitSingularFixed64Field: return 963 + case .visitSingularFloatField: return 964 + case .visitSingularGroupField: return 965 + case .visitSingularInt32Field: return 966 + case .visitSingularInt64Field: return 967 + case .visitSingularMessageField: return 968 + case .visitSingularSfixed32Field: return 969 + case .visitSingularSfixed64Field: return 970 + case .visitSingularSint32Field: return 971 + case .visitSingularSint64Field: return 972 + case .visitSingularStringField: return 973 + case .visitSingularUint32Field: return 974 + case .visitSingularUint64Field: return 975 + case .visitUnknown: return 976 + case .wasDecoded: return 977 + case .weak: return 978 + case .weakDependency: return 979 + case .where: return 980 + case .wireFormat: return 981 + case .with: return 982 + case .withUnsafeBytes: return 983 + case .withUnsafeMutableBytes: return 984 + case .work: return 985 + case .wrapped: return 986 + case .wrappedType: return 987 + case .wrappedValue: return 988 + case .written: return 989 + case .yday: return 990 case .UNRECOGNIZED(let i): return i default: break } @@ -3051,7 +3039,6 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .anyExtensionField, .anyMessageExtension, .anyMessageStorage, - .anyTypeUrlnotRegistered, .anyUnpackError, .api, .appended, @@ -3083,7 +3070,6 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .binaryDecodingOptions, .binaryDelimited, .binaryEncoder, - .binaryEncoding, .binaryEncodingError, .binaryEncodingMessageSetSizeVisitor, .binaryEncodingMessageSetVisitor, @@ -3603,7 +3589,6 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .jsondecodingError, .jsondecodingOptions, .jsonEncoder, - .jsonencoding, .jsonencodingError, .jsonencodingOptions, .jsonencodingVisitor, @@ -3937,7 +3922,6 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .unknownFields, .unknownStorage, .unpackTo, - .unregisteredTypeURL, .unsafeBufferPointer, .unsafeMutablePointer, .unsafeMutableRawBufferPointer, @@ -4054,988 +4038,984 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf. 9: .same(proto: "AnyExtensionField"), 10: .same(proto: "AnyMessageExtension"), 11: .same(proto: "AnyMessageStorage"), - 12: .same(proto: "anyTypeURLNotRegistered"), - 13: .same(proto: "AnyUnpackError"), - 14: .same(proto: "Api"), - 15: .same(proto: "appended"), - 16: .same(proto: "appendUIntHex"), - 17: .same(proto: "appendUnknown"), - 18: .same(proto: "areAllInitialized"), - 19: .same(proto: "Array"), - 20: .same(proto: "arrayDepth"), - 21: .same(proto: "arrayLiteral"), - 22: .same(proto: "arraySeparator"), - 23: .same(proto: "as"), - 24: .same(proto: "asciiOpenCurlyBracket"), - 25: .same(proto: "asciiZero"), - 26: .same(proto: "async"), - 27: .same(proto: "AsyncIterator"), - 28: .same(proto: "AsyncIteratorProtocol"), - 29: .same(proto: "AsyncMessageSequence"), - 30: .same(proto: "available"), - 31: .same(proto: "b"), - 32: .same(proto: "Base"), - 33: .same(proto: "base64Values"), - 34: .same(proto: "baseAddress"), - 35: .same(proto: "BaseType"), - 36: .same(proto: "begin"), - 37: .same(proto: "binary"), - 38: .same(proto: "BinaryDecoder"), - 39: .same(proto: "BinaryDecoding"), - 40: .same(proto: "BinaryDecodingError"), - 41: .same(proto: "BinaryDecodingOptions"), - 42: .same(proto: "BinaryDelimited"), - 43: .same(proto: "BinaryEncoder"), - 44: .same(proto: "BinaryEncoding"), - 45: .same(proto: "BinaryEncodingError"), - 46: .same(proto: "BinaryEncodingMessageSetSizeVisitor"), - 47: .same(proto: "BinaryEncodingMessageSetVisitor"), - 48: .same(proto: "BinaryEncodingOptions"), - 49: .same(proto: "BinaryEncodingSizeVisitor"), - 50: .same(proto: "BinaryEncodingVisitor"), - 51: .same(proto: "binaryOptions"), - 52: .same(proto: "binaryProtobufDelimitedMessages"), - 53: .same(proto: "BinaryStreamDecoding"), - 54: .same(proto: "binaryStreamDecodingError"), - 55: .same(proto: "bitPattern"), - 56: .same(proto: "body"), - 57: .same(proto: "Bool"), - 58: .same(proto: "booleanLiteral"), - 59: .same(proto: "BooleanLiteralType"), - 60: .same(proto: "boolValue"), - 61: .same(proto: "buffer"), - 62: .same(proto: "bytes"), - 63: .same(proto: "bytesInGroup"), - 64: .same(proto: "bytesNeeded"), - 65: .same(proto: "bytesRead"), - 66: .same(proto: "BytesValue"), - 67: .same(proto: "c"), - 68: .same(proto: "capitalizeNext"), - 69: .same(proto: "cardinality"), - 70: .same(proto: "CaseIterable"), - 71: .same(proto: "ccEnableArenas"), - 72: .same(proto: "ccGenericServices"), - 73: .same(proto: "Character"), - 74: .same(proto: "chars"), - 75: .same(proto: "chunk"), - 76: .same(proto: "class"), - 77: .same(proto: "clearAggregateValue"), - 78: .same(proto: "clearAllowAlias"), - 79: .same(proto: "clearBegin"), - 80: .same(proto: "clearCcEnableArenas"), - 81: .same(proto: "clearCcGenericServices"), - 82: .same(proto: "clearClientStreaming"), - 83: .same(proto: "clearCsharpNamespace"), - 84: .same(proto: "clearCtype"), - 85: .same(proto: "clearDebugRedact"), - 86: .same(proto: "clearDefaultValue"), - 87: .same(proto: "clearDeprecated"), - 88: .same(proto: "clearDeprecatedLegacyJsonFieldConflicts"), - 89: .same(proto: "clearDeprecationWarning"), - 90: .same(proto: "clearDoubleValue"), - 91: .same(proto: "clearEdition"), - 92: .same(proto: "clearEditionDeprecated"), - 93: .same(proto: "clearEditionIntroduced"), - 94: .same(proto: "clearEditionRemoved"), - 95: .same(proto: "clearEnd"), - 96: .same(proto: "clearEnumType"), - 97: .same(proto: "clearExtendee"), - 98: .same(proto: "clearExtensionValue"), - 99: .same(proto: "clearFeatures"), - 100: .same(proto: "clearFeatureSupport"), - 101: .same(proto: "clearFieldPresence"), - 102: .same(proto: "clearFixedFeatures"), - 103: .same(proto: "clearFullName"), - 104: .same(proto: "clearGoPackage"), - 105: .same(proto: "clearIdempotencyLevel"), - 106: .same(proto: "clearIdentifierValue"), - 107: .same(proto: "clearInputType"), - 108: .same(proto: "clearIsExtension"), - 109: .same(proto: "clearJavaGenerateEqualsAndHash"), - 110: .same(proto: "clearJavaGenericServices"), - 111: .same(proto: "clearJavaMultipleFiles"), - 112: .same(proto: "clearJavaOuterClassname"), - 113: .same(proto: "clearJavaPackage"), - 114: .same(proto: "clearJavaStringCheckUtf8"), - 115: .same(proto: "clearJsonFormat"), - 116: .same(proto: "clearJsonName"), - 117: .same(proto: "clearJstype"), - 118: .same(proto: "clearLabel"), - 119: .same(proto: "clearLazy"), - 120: .same(proto: "clearLeadingComments"), - 121: .same(proto: "clearMapEntry"), - 122: .same(proto: "clearMaximumEdition"), - 123: .same(proto: "clearMessageEncoding"), - 124: .same(proto: "clearMessageSetWireFormat"), - 125: .same(proto: "clearMinimumEdition"), - 126: .same(proto: "clearName"), - 127: .same(proto: "clearNamePart"), - 128: .same(proto: "clearNegativeIntValue"), - 129: .same(proto: "clearNoStandardDescriptorAccessor"), - 130: .same(proto: "clearNumber"), - 131: .same(proto: "clearObjcClassPrefix"), - 132: .same(proto: "clearOneofIndex"), - 133: .same(proto: "clearOptimizeFor"), - 134: .same(proto: "clearOptions"), - 135: .same(proto: "clearOutputType"), - 136: .same(proto: "clearOverridableFeatures"), - 137: .same(proto: "clearPackage"), - 138: .same(proto: "clearPacked"), - 139: .same(proto: "clearPhpClassPrefix"), - 140: .same(proto: "clearPhpMetadataNamespace"), - 141: .same(proto: "clearPhpNamespace"), - 142: .same(proto: "clearPositiveIntValue"), - 143: .same(proto: "clearProto3Optional"), - 144: .same(proto: "clearPyGenericServices"), - 145: .same(proto: "clearRepeated"), - 146: .same(proto: "clearRepeatedFieldEncoding"), - 147: .same(proto: "clearReserved"), - 148: .same(proto: "clearRetention"), - 149: .same(proto: "clearRubyPackage"), - 150: .same(proto: "clearSemantic"), - 151: .same(proto: "clearServerStreaming"), - 152: .same(proto: "clearSourceCodeInfo"), - 153: .same(proto: "clearSourceContext"), - 154: .same(proto: "clearSourceFile"), - 155: .same(proto: "clearStart"), - 156: .same(proto: "clearStringValue"), - 157: .same(proto: "clearSwiftPrefix"), - 158: .same(proto: "clearSyntax"), - 159: .same(proto: "clearTrailingComments"), - 160: .same(proto: "clearType"), - 161: .same(proto: "clearTypeName"), - 162: .same(proto: "clearUnverifiedLazy"), - 163: .same(proto: "clearUtf8Validation"), - 164: .same(proto: "clearValue"), - 165: .same(proto: "clearVerification"), - 166: .same(proto: "clearWeak"), - 167: .same(proto: "clientStreaming"), - 168: .same(proto: "code"), - 169: .same(proto: "codePoint"), - 170: .same(proto: "codeUnits"), - 171: .same(proto: "Collection"), - 172: .same(proto: "com"), - 173: .same(proto: "comma"), - 174: .same(proto: "consumedBytes"), - 175: .same(proto: "contentsOf"), - 176: .same(proto: "copy"), - 177: .same(proto: "count"), - 178: .same(proto: "countVarintsInBuffer"), - 179: .same(proto: "csharpNamespace"), - 180: .same(proto: "ctype"), - 181: .same(proto: "customCodable"), - 182: .same(proto: "CustomDebugStringConvertible"), - 183: .same(proto: "CustomStringConvertible"), - 184: .same(proto: "d"), - 185: .same(proto: "Data"), - 186: .same(proto: "dataResult"), - 187: .same(proto: "date"), - 188: .same(proto: "daySec"), - 189: .same(proto: "daysSinceEpoch"), - 190: .same(proto: "debugDescription"), - 191: .same(proto: "debugRedact"), - 192: .same(proto: "declaration"), - 193: .same(proto: "decoded"), - 194: .same(proto: "decodedFromJSONNull"), - 195: .same(proto: "decodeExtensionField"), - 196: .same(proto: "decodeExtensionFieldsAsMessageSet"), - 197: .same(proto: "decodeJSON"), - 198: .same(proto: "decodeMapField"), - 199: .same(proto: "decodeMessage"), - 200: .same(proto: "decoder"), - 201: .same(proto: "decodeRepeated"), - 202: .same(proto: "decodeRepeatedBoolField"), - 203: .same(proto: "decodeRepeatedBytesField"), - 204: .same(proto: "decodeRepeatedDoubleField"), - 205: .same(proto: "decodeRepeatedEnumField"), - 206: .same(proto: "decodeRepeatedFixed32Field"), - 207: .same(proto: "decodeRepeatedFixed64Field"), - 208: .same(proto: "decodeRepeatedFloatField"), - 209: .same(proto: "decodeRepeatedGroupField"), - 210: .same(proto: "decodeRepeatedInt32Field"), - 211: .same(proto: "decodeRepeatedInt64Field"), - 212: .same(proto: "decodeRepeatedMessageField"), - 213: .same(proto: "decodeRepeatedSFixed32Field"), - 214: .same(proto: "decodeRepeatedSFixed64Field"), - 215: .same(proto: "decodeRepeatedSInt32Field"), - 216: .same(proto: "decodeRepeatedSInt64Field"), - 217: .same(proto: "decodeRepeatedStringField"), - 218: .same(proto: "decodeRepeatedUInt32Field"), - 219: .same(proto: "decodeRepeatedUInt64Field"), - 220: .same(proto: "decodeSingular"), - 221: .same(proto: "decodeSingularBoolField"), - 222: .same(proto: "decodeSingularBytesField"), - 223: .same(proto: "decodeSingularDoubleField"), - 224: .same(proto: "decodeSingularEnumField"), - 225: .same(proto: "decodeSingularFixed32Field"), - 226: .same(proto: "decodeSingularFixed64Field"), - 227: .same(proto: "decodeSingularFloatField"), - 228: .same(proto: "decodeSingularGroupField"), - 229: .same(proto: "decodeSingularInt32Field"), - 230: .same(proto: "decodeSingularInt64Field"), - 231: .same(proto: "decodeSingularMessageField"), - 232: .same(proto: "decodeSingularSFixed32Field"), - 233: .same(proto: "decodeSingularSFixed64Field"), - 234: .same(proto: "decodeSingularSInt32Field"), - 235: .same(proto: "decodeSingularSInt64Field"), - 236: .same(proto: "decodeSingularStringField"), - 237: .same(proto: "decodeSingularUInt32Field"), - 238: .same(proto: "decodeSingularUInt64Field"), - 239: .same(proto: "decodeTextFormat"), - 240: .same(proto: "defaultAnyTypeURLPrefix"), - 241: .same(proto: "defaults"), - 242: .same(proto: "defaultValue"), - 243: .same(proto: "dependency"), - 244: .same(proto: "deprecated"), - 245: .same(proto: "deprecatedLegacyJsonFieldConflicts"), - 246: .same(proto: "deprecationWarning"), - 247: .same(proto: "description"), - 248: .same(proto: "DescriptorProto"), - 249: .same(proto: "Dictionary"), - 250: .same(proto: "dictionaryLiteral"), - 251: .same(proto: "digit"), - 252: .same(proto: "digit0"), - 253: .same(proto: "digit1"), - 254: .same(proto: "digitCount"), - 255: .same(proto: "digits"), - 256: .same(proto: "digitValue"), - 257: .same(proto: "discardableResult"), - 258: .same(proto: "discardUnknownFields"), - 259: .same(proto: "Double"), - 260: .same(proto: "doubleValue"), - 261: .same(proto: "Duration"), - 262: .same(proto: "E"), - 263: .same(proto: "edition"), - 264: .same(proto: "EditionDefault"), - 265: .same(proto: "editionDefaults"), - 266: .same(proto: "editionDeprecated"), - 267: .same(proto: "editionIntroduced"), - 268: .same(proto: "editionRemoved"), - 269: .same(proto: "Element"), - 270: .same(proto: "elements"), - 271: .same(proto: "emitExtensionFieldName"), - 272: .same(proto: "emitFieldName"), - 273: .same(proto: "emitFieldNumber"), - 274: .same(proto: "Empty"), - 275: .same(proto: "encodeAsBytes"), - 276: .same(proto: "encoded"), - 277: .same(proto: "encodedJSONString"), - 278: .same(proto: "encodedSize"), - 279: .same(proto: "encodeField"), - 280: .same(proto: "encoder"), - 281: .same(proto: "end"), - 282: .same(proto: "endArray"), - 283: .same(proto: "endMessageField"), - 284: .same(proto: "endObject"), - 285: .same(proto: "endRegularField"), - 286: .same(proto: "enum"), - 287: .same(proto: "EnumDescriptorProto"), - 288: .same(proto: "EnumOptions"), - 289: .same(proto: "EnumReservedRange"), - 290: .same(proto: "enumType"), - 291: .same(proto: "enumvalue"), - 292: .same(proto: "EnumValueDescriptorProto"), - 293: .same(proto: "EnumValueOptions"), - 294: .same(proto: "Equatable"), - 295: .same(proto: "Error"), - 296: .same(proto: "ExpressibleByArrayLiteral"), - 297: .same(proto: "ExpressibleByDictionaryLiteral"), - 298: .same(proto: "ext"), - 299: .same(proto: "extDecoder"), - 300: .same(proto: "extendedGraphemeClusterLiteral"), - 301: .same(proto: "ExtendedGraphemeClusterLiteralType"), - 302: .same(proto: "extendee"), - 303: .same(proto: "ExtensibleMessage"), - 304: .same(proto: "extension"), - 305: .same(proto: "ExtensionField"), - 306: .same(proto: "extensionFieldNumber"), - 307: .same(proto: "ExtensionFieldValueSet"), - 308: .same(proto: "ExtensionMap"), - 309: .same(proto: "extensionRange"), - 310: .same(proto: "ExtensionRangeOptions"), - 311: .same(proto: "extensions"), - 312: .same(proto: "extras"), - 313: .same(proto: "F"), - 314: .same(proto: "false"), - 315: .same(proto: "features"), - 316: .same(proto: "FeatureSet"), - 317: .same(proto: "FeatureSetDefaults"), - 318: .same(proto: "FeatureSetEditionDefault"), - 319: .same(proto: "featureSupport"), - 320: .same(proto: "field"), - 321: .same(proto: "fieldData"), - 322: .same(proto: "FieldDescriptorProto"), - 323: .same(proto: "FieldMask"), - 324: .same(proto: "fieldName"), - 325: .same(proto: "fieldNameCount"), - 326: .same(proto: "fieldNum"), - 327: .same(proto: "fieldNumber"), - 328: .same(proto: "fieldNumberForProto"), - 329: .same(proto: "FieldOptions"), - 330: .same(proto: "fieldPresence"), - 331: .same(proto: "fields"), - 332: .same(proto: "fieldSize"), - 333: .same(proto: "FieldTag"), - 334: .same(proto: "fieldType"), - 335: .same(proto: "file"), - 336: .same(proto: "FileDescriptorProto"), - 337: .same(proto: "FileDescriptorSet"), - 338: .same(proto: "fileName"), - 339: .same(proto: "FileOptions"), - 340: .same(proto: "filter"), - 341: .same(proto: "final"), - 342: .same(proto: "finiteOnly"), - 343: .same(proto: "first"), - 344: .same(proto: "firstItem"), - 345: .same(proto: "fixedFeatures"), - 346: .same(proto: "Float"), - 347: .same(proto: "floatLiteral"), - 348: .same(proto: "FloatLiteralType"), - 349: .same(proto: "FloatValue"), - 350: .same(proto: "forMessageName"), - 351: .same(proto: "formUnion"), - 352: .same(proto: "forReadingFrom"), - 353: .same(proto: "forTypeURL"), - 354: .same(proto: "ForwardParser"), - 355: .same(proto: "forWritingInto"), - 356: .same(proto: "from"), - 357: .same(proto: "fromAscii2"), - 358: .same(proto: "fromAscii4"), - 359: .same(proto: "fromByteOffset"), - 360: .same(proto: "fromHexDigit"), - 361: .same(proto: "fullName"), - 362: .same(proto: "func"), - 363: .same(proto: "function"), - 364: .same(proto: "G"), - 365: .same(proto: "GeneratedCodeInfo"), - 366: .same(proto: "get"), - 367: .same(proto: "getExtensionValue"), - 368: .same(proto: "googleapis"), - 369: .same(proto: "Google_Protobuf_Any"), - 370: .same(proto: "Google_Protobuf_Api"), - 371: .same(proto: "Google_Protobuf_BoolValue"), - 372: .same(proto: "Google_Protobuf_BytesValue"), - 373: .same(proto: "Google_Protobuf_DescriptorProto"), - 374: .same(proto: "Google_Protobuf_DoubleValue"), - 375: .same(proto: "Google_Protobuf_Duration"), - 376: .same(proto: "Google_Protobuf_Edition"), - 377: .same(proto: "Google_Protobuf_Empty"), - 378: .same(proto: "Google_Protobuf_Enum"), - 379: .same(proto: "Google_Protobuf_EnumDescriptorProto"), - 380: .same(proto: "Google_Protobuf_EnumOptions"), - 381: .same(proto: "Google_Protobuf_EnumValue"), - 382: .same(proto: "Google_Protobuf_EnumValueDescriptorProto"), - 383: .same(proto: "Google_Protobuf_EnumValueOptions"), - 384: .same(proto: "Google_Protobuf_ExtensionRangeOptions"), - 385: .same(proto: "Google_Protobuf_FeatureSet"), - 386: .same(proto: "Google_Protobuf_FeatureSetDefaults"), - 387: .same(proto: "Google_Protobuf_Field"), - 388: .same(proto: "Google_Protobuf_FieldDescriptorProto"), - 389: .same(proto: "Google_Protobuf_FieldMask"), - 390: .same(proto: "Google_Protobuf_FieldOptions"), - 391: .same(proto: "Google_Protobuf_FileDescriptorProto"), - 392: .same(proto: "Google_Protobuf_FileDescriptorSet"), - 393: .same(proto: "Google_Protobuf_FileOptions"), - 394: .same(proto: "Google_Protobuf_FloatValue"), - 395: .same(proto: "Google_Protobuf_GeneratedCodeInfo"), - 396: .same(proto: "Google_Protobuf_Int32Value"), - 397: .same(proto: "Google_Protobuf_Int64Value"), - 398: .same(proto: "Google_Protobuf_ListValue"), - 399: .same(proto: "Google_Protobuf_MessageOptions"), - 400: .same(proto: "Google_Protobuf_Method"), - 401: .same(proto: "Google_Protobuf_MethodDescriptorProto"), - 402: .same(proto: "Google_Protobuf_MethodOptions"), - 403: .same(proto: "Google_Protobuf_Mixin"), - 404: .same(proto: "Google_Protobuf_NullValue"), - 405: .same(proto: "Google_Protobuf_OneofDescriptorProto"), - 406: .same(proto: "Google_Protobuf_OneofOptions"), - 407: .same(proto: "Google_Protobuf_Option"), - 408: .same(proto: "Google_Protobuf_ServiceDescriptorProto"), - 409: .same(proto: "Google_Protobuf_ServiceOptions"), - 410: .same(proto: "Google_Protobuf_SourceCodeInfo"), - 411: .same(proto: "Google_Protobuf_SourceContext"), - 412: .same(proto: "Google_Protobuf_StringValue"), - 413: .same(proto: "Google_Protobuf_Struct"), - 414: .same(proto: "Google_Protobuf_Syntax"), - 415: .same(proto: "Google_Protobuf_Timestamp"), - 416: .same(proto: "Google_Protobuf_Type"), - 417: .same(proto: "Google_Protobuf_UInt32Value"), - 418: .same(proto: "Google_Protobuf_UInt64Value"), - 419: .same(proto: "Google_Protobuf_UninterpretedOption"), - 420: .same(proto: "Google_Protobuf_Value"), - 421: .same(proto: "goPackage"), - 422: .same(proto: "group"), - 423: .same(proto: "groupFieldNumberStack"), - 424: .same(proto: "groupSize"), - 425: .same(proto: "hadOneofValue"), - 426: .same(proto: "handleConflictingOneOf"), - 427: .same(proto: "hasAggregateValue"), - 428: .same(proto: "hasAllowAlias"), - 429: .same(proto: "hasBegin"), - 430: .same(proto: "hasCcEnableArenas"), - 431: .same(proto: "hasCcGenericServices"), - 432: .same(proto: "hasClientStreaming"), - 433: .same(proto: "hasCsharpNamespace"), - 434: .same(proto: "hasCtype"), - 435: .same(proto: "hasDebugRedact"), - 436: .same(proto: "hasDefaultValue"), - 437: .same(proto: "hasDeprecated"), - 438: .same(proto: "hasDeprecatedLegacyJsonFieldConflicts"), - 439: .same(proto: "hasDeprecationWarning"), - 440: .same(proto: "hasDoubleValue"), - 441: .same(proto: "hasEdition"), - 442: .same(proto: "hasEditionDeprecated"), - 443: .same(proto: "hasEditionIntroduced"), - 444: .same(proto: "hasEditionRemoved"), - 445: .same(proto: "hasEnd"), - 446: .same(proto: "hasEnumType"), - 447: .same(proto: "hasExtendee"), - 448: .same(proto: "hasExtensionValue"), - 449: .same(proto: "hasFeatures"), - 450: .same(proto: "hasFeatureSupport"), - 451: .same(proto: "hasFieldPresence"), - 452: .same(proto: "hasFixedFeatures"), - 453: .same(proto: "hasFullName"), - 454: .same(proto: "hasGoPackage"), - 455: .same(proto: "hash"), - 456: .same(proto: "Hashable"), - 457: .same(proto: "hasher"), - 458: .same(proto: "HashVisitor"), - 459: .same(proto: "hasIdempotencyLevel"), - 460: .same(proto: "hasIdentifierValue"), - 461: .same(proto: "hasInputType"), - 462: .same(proto: "hasIsExtension"), - 463: .same(proto: "hasJavaGenerateEqualsAndHash"), - 464: .same(proto: "hasJavaGenericServices"), - 465: .same(proto: "hasJavaMultipleFiles"), - 466: .same(proto: "hasJavaOuterClassname"), - 467: .same(proto: "hasJavaPackage"), - 468: .same(proto: "hasJavaStringCheckUtf8"), - 469: .same(proto: "hasJsonFormat"), - 470: .same(proto: "hasJsonName"), - 471: .same(proto: "hasJstype"), - 472: .same(proto: "hasLabel"), - 473: .same(proto: "hasLazy"), - 474: .same(proto: "hasLeadingComments"), - 475: .same(proto: "hasMapEntry"), - 476: .same(proto: "hasMaximumEdition"), - 477: .same(proto: "hasMessageEncoding"), - 478: .same(proto: "hasMessageSetWireFormat"), - 479: .same(proto: "hasMinimumEdition"), - 480: .same(proto: "hasName"), - 481: .same(proto: "hasNamePart"), - 482: .same(proto: "hasNegativeIntValue"), - 483: .same(proto: "hasNoStandardDescriptorAccessor"), - 484: .same(proto: "hasNumber"), - 485: .same(proto: "hasObjcClassPrefix"), - 486: .same(proto: "hasOneofIndex"), - 487: .same(proto: "hasOptimizeFor"), - 488: .same(proto: "hasOptions"), - 489: .same(proto: "hasOutputType"), - 490: .same(proto: "hasOverridableFeatures"), - 491: .same(proto: "hasPackage"), - 492: .same(proto: "hasPacked"), - 493: .same(proto: "hasPhpClassPrefix"), - 494: .same(proto: "hasPhpMetadataNamespace"), - 495: .same(proto: "hasPhpNamespace"), - 496: .same(proto: "hasPositiveIntValue"), - 497: .same(proto: "hasProto3Optional"), - 498: .same(proto: "hasPyGenericServices"), - 499: .same(proto: "hasRepeated"), - 500: .same(proto: "hasRepeatedFieldEncoding"), - 501: .same(proto: "hasReserved"), - 502: .same(proto: "hasRetention"), - 503: .same(proto: "hasRubyPackage"), - 504: .same(proto: "hasSemantic"), - 505: .same(proto: "hasServerStreaming"), - 506: .same(proto: "hasSourceCodeInfo"), - 507: .same(proto: "hasSourceContext"), - 508: .same(proto: "hasSourceFile"), - 509: .same(proto: "hasStart"), - 510: .same(proto: "hasStringValue"), - 511: .same(proto: "hasSwiftPrefix"), - 512: .same(proto: "hasSyntax"), - 513: .same(proto: "hasTrailingComments"), - 514: .same(proto: "hasType"), - 515: .same(proto: "hasTypeName"), - 516: .same(proto: "hasUnverifiedLazy"), - 517: .same(proto: "hasUtf8Validation"), - 518: .same(proto: "hasValue"), - 519: .same(proto: "hasVerification"), - 520: .same(proto: "hasWeak"), - 521: .same(proto: "hour"), - 522: .same(proto: "i"), - 523: .same(proto: "idempotencyLevel"), - 524: .same(proto: "identifierValue"), - 525: .same(proto: "if"), - 526: .same(proto: "ignoreUnknownExtensionFields"), - 527: .same(proto: "ignoreUnknownFields"), - 528: .same(proto: "index"), - 529: .same(proto: "init"), - 530: .same(proto: "inout"), - 531: .same(proto: "inputType"), - 532: .same(proto: "insert"), - 533: .same(proto: "Int"), - 534: .same(proto: "Int32"), - 535: .same(proto: "Int32Value"), - 536: .same(proto: "Int64"), - 537: .same(proto: "Int64Value"), - 538: .same(proto: "Int8"), - 539: .same(proto: "integerLiteral"), - 540: .same(proto: "IntegerLiteralType"), - 541: .same(proto: "intern"), - 542: .same(proto: "Internal"), - 543: .same(proto: "InternalState"), - 544: .same(proto: "into"), - 545: .same(proto: "ints"), - 546: .same(proto: "isA"), - 547: .same(proto: "isEqual"), - 548: .same(proto: "isEqualTo"), - 549: .same(proto: "isExtension"), - 550: .same(proto: "isInitialized"), - 551: .same(proto: "isNegative"), - 552: .same(proto: "itemTagsEncodedSize"), - 553: .same(proto: "iterator"), - 554: .same(proto: "javaGenerateEqualsAndHash"), - 555: .same(proto: "javaGenericServices"), - 556: .same(proto: "javaMultipleFiles"), - 557: .same(proto: "javaOuterClassname"), - 558: .same(proto: "javaPackage"), - 559: .same(proto: "javaStringCheckUtf8"), - 560: .same(proto: "JSONDecoder"), - 561: .same(proto: "JSONDecodingError"), - 562: .same(proto: "JSONDecodingOptions"), - 563: .same(proto: "jsonEncoder"), - 564: .same(proto: "JSONEncoding"), - 565: .same(proto: "JSONEncodingError"), - 566: .same(proto: "JSONEncodingOptions"), - 567: .same(proto: "JSONEncodingVisitor"), - 568: .same(proto: "jsonFormat"), - 569: .same(proto: "JSONMapEncodingVisitor"), - 570: .same(proto: "jsonName"), - 571: .same(proto: "jsonPath"), - 572: .same(proto: "jsonPaths"), - 573: .same(proto: "JSONScanner"), - 574: .same(proto: "jsonString"), - 575: .same(proto: "jsonText"), - 576: .same(proto: "jsonUTF8Bytes"), - 577: .same(proto: "jsonUTF8Data"), - 578: .same(proto: "jstype"), - 579: .same(proto: "k"), - 580: .same(proto: "kChunkSize"), - 581: .same(proto: "Key"), - 582: .same(proto: "keyField"), - 583: .same(proto: "keyFieldOpt"), - 584: .same(proto: "KeyType"), - 585: .same(proto: "kind"), - 586: .same(proto: "l"), - 587: .same(proto: "label"), - 588: .same(proto: "lazy"), - 589: .same(proto: "leadingComments"), - 590: .same(proto: "leadingDetachedComments"), - 591: .same(proto: "length"), - 592: .same(proto: "lessThan"), - 593: .same(proto: "let"), - 594: .same(proto: "lhs"), - 595: .same(proto: "line"), - 596: .same(proto: "list"), - 597: .same(proto: "listOfMessages"), - 598: .same(proto: "listValue"), - 599: .same(proto: "littleEndian"), - 600: .same(proto: "load"), - 601: .same(proto: "localHasher"), - 602: .same(proto: "location"), - 603: .same(proto: "M"), - 604: .same(proto: "major"), - 605: .same(proto: "makeAsyncIterator"), - 606: .same(proto: "makeIterator"), - 607: .same(proto: "malformedLength"), - 608: .same(proto: "mapEntry"), - 609: .same(proto: "MapKeyType"), - 610: .same(proto: "mapToMessages"), - 611: .same(proto: "MapValueType"), - 612: .same(proto: "mapVisitor"), - 613: .same(proto: "maximumEdition"), - 614: .same(proto: "mdayStart"), - 615: .same(proto: "merge"), - 616: .same(proto: "message"), - 617: .same(proto: "messageDepthLimit"), - 618: .same(proto: "messageEncoding"), - 619: .same(proto: "MessageExtension"), - 620: .same(proto: "MessageImplementationBase"), - 621: .same(proto: "MessageOptions"), - 622: .same(proto: "MessageSet"), - 623: .same(proto: "messageSetWireFormat"), - 624: .same(proto: "messageSize"), - 625: .same(proto: "messageType"), - 626: .same(proto: "Method"), - 627: .same(proto: "MethodDescriptorProto"), - 628: .same(proto: "MethodOptions"), - 629: .same(proto: "methods"), - 630: .same(proto: "min"), - 631: .same(proto: "minimumEdition"), - 632: .same(proto: "minor"), - 633: .same(proto: "Mixin"), - 634: .same(proto: "mixins"), - 635: .same(proto: "modifier"), - 636: .same(proto: "modify"), - 637: .same(proto: "month"), - 638: .same(proto: "msgExtension"), - 639: .same(proto: "mutating"), - 640: .same(proto: "n"), - 641: .same(proto: "name"), - 642: .same(proto: "NameDescription"), - 643: .same(proto: "NameMap"), - 644: .same(proto: "NamePart"), - 645: .same(proto: "names"), - 646: .same(proto: "nanos"), - 647: .same(proto: "negativeIntValue"), - 648: .same(proto: "nestedType"), - 649: .same(proto: "newL"), - 650: .same(proto: "newList"), - 651: .same(proto: "newValue"), - 652: .same(proto: "next"), - 653: .same(proto: "nextByte"), - 654: .same(proto: "nextFieldNumber"), - 655: .same(proto: "nextVarInt"), - 656: .same(proto: "nil"), - 657: .same(proto: "nilLiteral"), - 658: .same(proto: "noBytesAvailable"), - 659: .same(proto: "noStandardDescriptorAccessor"), - 660: .same(proto: "nullValue"), - 661: .same(proto: "number"), - 662: .same(proto: "numberValue"), - 663: .same(proto: "objcClassPrefix"), - 664: .same(proto: "of"), - 665: .same(proto: "oneofDecl"), - 666: .same(proto: "OneofDescriptorProto"), - 667: .same(proto: "oneofIndex"), - 668: .same(proto: "OneofOptions"), - 669: .same(proto: "oneofs"), - 670: .same(proto: "OneOf_Kind"), - 671: .same(proto: "optimizeFor"), - 672: .same(proto: "OptimizeMode"), - 673: .same(proto: "Option"), - 674: .same(proto: "OptionalEnumExtensionField"), - 675: .same(proto: "OptionalExtensionField"), - 676: .same(proto: "OptionalGroupExtensionField"), - 677: .same(proto: "OptionalMessageExtensionField"), - 678: .same(proto: "OptionRetention"), - 679: .same(proto: "options"), - 680: .same(proto: "OptionTargetType"), - 681: .same(proto: "other"), - 682: .same(proto: "others"), - 683: .same(proto: "out"), - 684: .same(proto: "outputType"), - 685: .same(proto: "overridableFeatures"), - 686: .same(proto: "p"), - 687: .same(proto: "package"), - 688: .same(proto: "packed"), - 689: .same(proto: "PackedEnumExtensionField"), - 690: .same(proto: "PackedExtensionField"), - 691: .same(proto: "padding"), - 692: .same(proto: "parent"), - 693: .same(proto: "parse"), - 694: .same(proto: "path"), - 695: .same(proto: "paths"), - 696: .same(proto: "payload"), - 697: .same(proto: "payloadSize"), - 698: .same(proto: "phpClassPrefix"), - 699: .same(proto: "phpMetadataNamespace"), - 700: .same(proto: "phpNamespace"), - 701: .same(proto: "pos"), - 702: .same(proto: "positiveIntValue"), - 703: .same(proto: "prefix"), - 704: .same(proto: "preserveProtoFieldNames"), - 705: .same(proto: "preTraverse"), - 706: .same(proto: "printUnknownFields"), - 707: .same(proto: "proto2"), - 708: .same(proto: "proto3DefaultValue"), - 709: .same(proto: "proto3Optional"), - 710: .same(proto: "ProtobufAPIVersionCheck"), - 711: .same(proto: "ProtobufAPIVersion_3"), - 712: .same(proto: "ProtobufBool"), - 713: .same(proto: "ProtobufBytes"), - 714: .same(proto: "ProtobufDouble"), - 715: .same(proto: "ProtobufEnumMap"), - 716: .same(proto: "protobufExtension"), - 717: .same(proto: "ProtobufFixed32"), - 718: .same(proto: "ProtobufFixed64"), - 719: .same(proto: "ProtobufFloat"), - 720: .same(proto: "ProtobufInt32"), - 721: .same(proto: "ProtobufInt64"), - 722: .same(proto: "ProtobufMap"), - 723: .same(proto: "ProtobufMessageMap"), - 724: .same(proto: "ProtobufSFixed32"), - 725: .same(proto: "ProtobufSFixed64"), - 726: .same(proto: "ProtobufSInt32"), - 727: .same(proto: "ProtobufSInt64"), - 728: .same(proto: "ProtobufString"), - 729: .same(proto: "ProtobufUInt32"), - 730: .same(proto: "ProtobufUInt64"), - 731: .same(proto: "protobuf_extensionFieldValues"), - 732: .same(proto: "protobuf_fieldNumber"), - 733: .same(proto: "protobuf_generated_isEqualTo"), - 734: .same(proto: "protobuf_nameMap"), - 735: .same(proto: "protobuf_newField"), - 736: .same(proto: "protobuf_package"), - 737: .same(proto: "protocol"), - 738: .same(proto: "protoFieldName"), - 739: .same(proto: "protoMessageName"), - 740: .same(proto: "ProtoNameProviding"), - 741: .same(proto: "protoPaths"), - 742: .same(proto: "public"), - 743: .same(proto: "publicDependency"), - 744: .same(proto: "putBoolValue"), - 745: .same(proto: "putBytesValue"), - 746: .same(proto: "putDoubleValue"), - 747: .same(proto: "putEnumValue"), - 748: .same(proto: "putFixedUInt32"), - 749: .same(proto: "putFixedUInt64"), - 750: .same(proto: "putFloatValue"), - 751: .same(proto: "putInt64"), - 752: .same(proto: "putStringValue"), - 753: .same(proto: "putUInt64"), - 754: .same(proto: "putUInt64Hex"), - 755: .same(proto: "putVarInt"), - 756: .same(proto: "putZigZagVarInt"), - 757: .same(proto: "pyGenericServices"), - 758: .same(proto: "R"), - 759: .same(proto: "rawChars"), - 760: .same(proto: "RawRepresentable"), - 761: .same(proto: "RawValue"), - 762: .same(proto: "read4HexDigits"), - 763: .same(proto: "readBytes"), - 764: .same(proto: "register"), - 765: .same(proto: "repeated"), - 766: .same(proto: "RepeatedEnumExtensionField"), - 767: .same(proto: "RepeatedExtensionField"), - 768: .same(proto: "repeatedFieldEncoding"), - 769: .same(proto: "RepeatedGroupExtensionField"), - 770: .same(proto: "RepeatedMessageExtensionField"), - 771: .same(proto: "repeating"), - 772: .same(proto: "requestStreaming"), - 773: .same(proto: "requestTypeURL"), - 774: .same(proto: "requiredSize"), - 775: .same(proto: "responseStreaming"), - 776: .same(proto: "responseTypeURL"), - 777: .same(proto: "result"), - 778: .same(proto: "retention"), - 779: .same(proto: "rethrows"), - 780: .same(proto: "return"), - 781: .same(proto: "ReturnType"), - 782: .same(proto: "revision"), - 783: .same(proto: "rhs"), - 784: .same(proto: "root"), - 785: .same(proto: "rubyPackage"), - 786: .same(proto: "s"), - 787: .same(proto: "sawBackslash"), - 788: .same(proto: "sawSection4Characters"), - 789: .same(proto: "sawSection5Characters"), - 790: .same(proto: "scan"), - 791: .same(proto: "scanner"), - 792: .same(proto: "seconds"), - 793: .same(proto: "self"), - 794: .same(proto: "semantic"), - 795: .same(proto: "Sendable"), - 796: .same(proto: "separator"), - 797: .same(proto: "serialize"), - 798: .same(proto: "serializedBytes"), - 799: .same(proto: "serializedData"), - 800: .same(proto: "serializedSize"), - 801: .same(proto: "serverStreaming"), - 802: .same(proto: "service"), - 803: .same(proto: "ServiceDescriptorProto"), - 804: .same(proto: "ServiceOptions"), - 805: .same(proto: "set"), - 806: .same(proto: "setExtensionValue"), - 807: .same(proto: "shift"), - 808: .same(proto: "SimpleExtensionMap"), - 809: .same(proto: "size"), - 810: .same(proto: "sizer"), - 811: .same(proto: "source"), - 812: .same(proto: "sourceCodeInfo"), - 813: .same(proto: "sourceContext"), - 814: .same(proto: "sourceEncoding"), - 815: .same(proto: "sourceFile"), - 816: .same(proto: "SourceLocation"), - 817: .same(proto: "span"), - 818: .same(proto: "split"), - 819: .same(proto: "start"), - 820: .same(proto: "startArray"), - 821: .same(proto: "startArrayObject"), - 822: .same(proto: "startField"), - 823: .same(proto: "startIndex"), - 824: .same(proto: "startMessageField"), - 825: .same(proto: "startObject"), - 826: .same(proto: "startRegularField"), - 827: .same(proto: "state"), - 828: .same(proto: "static"), - 829: .same(proto: "StaticString"), - 830: .same(proto: "storage"), - 831: .same(proto: "String"), - 832: .same(proto: "stringLiteral"), - 833: .same(proto: "StringLiteralType"), - 834: .same(proto: "stringResult"), - 835: .same(proto: "stringValue"), - 836: .same(proto: "struct"), - 837: .same(proto: "structValue"), - 838: .same(proto: "subDecoder"), - 839: .same(proto: "subscript"), - 840: .same(proto: "subVisitor"), - 841: .same(proto: "Swift"), - 842: .same(proto: "swiftPrefix"), - 843: .same(proto: "SwiftProtobufContiguousBytes"), - 844: .same(proto: "SwiftProtobufError"), - 845: .same(proto: "syntax"), - 846: .same(proto: "T"), - 847: .same(proto: "tag"), - 848: .same(proto: "targets"), - 849: .same(proto: "terminator"), - 850: .same(proto: "testDecoder"), - 851: .same(proto: "text"), - 852: .same(proto: "textDecoder"), - 853: .same(proto: "TextFormatDecoder"), - 854: .same(proto: "TextFormatDecodingError"), - 855: .same(proto: "TextFormatDecodingOptions"), - 856: .same(proto: "TextFormatEncodingOptions"), - 857: .same(proto: "TextFormatEncodingVisitor"), - 858: .same(proto: "textFormatString"), - 859: .same(proto: "throwOrIgnore"), - 860: .same(proto: "throws"), - 861: .same(proto: "timeInterval"), - 862: .same(proto: "timeIntervalSince1970"), - 863: .same(proto: "timeIntervalSinceReferenceDate"), - 864: .same(proto: "Timestamp"), - 865: .same(proto: "tooLarge"), - 866: .same(proto: "total"), - 867: .same(proto: "totalArrayDepth"), - 868: .same(proto: "totalSize"), - 869: .same(proto: "trailingComments"), - 870: .same(proto: "traverse"), - 871: .same(proto: "true"), - 872: .same(proto: "try"), - 873: .same(proto: "type"), - 874: .same(proto: "typealias"), - 875: .same(proto: "TypeEnum"), - 876: .same(proto: "typeName"), - 877: .same(proto: "typePrefix"), - 878: .same(proto: "typeStart"), - 879: .same(proto: "typeUnknown"), - 880: .same(proto: "typeURL"), - 881: .same(proto: "UInt32"), - 882: .same(proto: "UInt32Value"), - 883: .same(proto: "UInt64"), - 884: .same(proto: "UInt64Value"), - 885: .same(proto: "UInt8"), - 886: .same(proto: "unchecked"), - 887: .same(proto: "unicodeScalarLiteral"), - 888: .same(proto: "UnicodeScalarLiteralType"), - 889: .same(proto: "unicodeScalars"), - 890: .same(proto: "UnicodeScalarView"), - 891: .same(proto: "uninterpretedOption"), - 892: .same(proto: "union"), - 893: .same(proto: "uniqueStorage"), - 894: .same(proto: "unknown"), - 895: .same(proto: "unknownFields"), - 896: .same(proto: "UnknownStorage"), - 897: .same(proto: "unpackTo"), - 898: .same(proto: "unregisteredTypeURL"), - 899: .same(proto: "UnsafeBufferPointer"), - 900: .same(proto: "UnsafeMutablePointer"), - 901: .same(proto: "UnsafeMutableRawBufferPointer"), - 902: .same(proto: "UnsafeRawBufferPointer"), - 903: .same(proto: "UnsafeRawPointer"), - 904: .same(proto: "unverifiedLazy"), - 905: .same(proto: "updatedOptions"), - 906: .same(proto: "url"), - 907: .same(proto: "useDeterministicOrdering"), - 908: .same(proto: "utf8"), - 909: .same(proto: "utf8Ptr"), - 910: .same(proto: "utf8ToDouble"), - 911: .same(proto: "utf8Validation"), - 912: .same(proto: "UTF8View"), - 913: .same(proto: "v"), - 914: .same(proto: "value"), - 915: .same(proto: "valueField"), - 916: .same(proto: "values"), - 917: .same(proto: "ValueType"), - 918: .same(proto: "var"), - 919: .same(proto: "verification"), - 920: .same(proto: "VerificationState"), - 921: .same(proto: "Version"), - 922: .same(proto: "versionString"), - 923: .same(proto: "visitExtensionFields"), - 924: .same(proto: "visitExtensionFieldsAsMessageSet"), - 925: .same(proto: "visitMapField"), - 926: .same(proto: "visitor"), - 927: .same(proto: "visitPacked"), - 928: .same(proto: "visitPackedBoolField"), - 929: .same(proto: "visitPackedDoubleField"), - 930: .same(proto: "visitPackedEnumField"), - 931: .same(proto: "visitPackedFixed32Field"), - 932: .same(proto: "visitPackedFixed64Field"), - 933: .same(proto: "visitPackedFloatField"), - 934: .same(proto: "visitPackedInt32Field"), - 935: .same(proto: "visitPackedInt64Field"), - 936: .same(proto: "visitPackedSFixed32Field"), - 937: .same(proto: "visitPackedSFixed64Field"), - 938: .same(proto: "visitPackedSInt32Field"), - 939: .same(proto: "visitPackedSInt64Field"), - 940: .same(proto: "visitPackedUInt32Field"), - 941: .same(proto: "visitPackedUInt64Field"), - 942: .same(proto: "visitRepeated"), - 943: .same(proto: "visitRepeatedBoolField"), - 944: .same(proto: "visitRepeatedBytesField"), - 945: .same(proto: "visitRepeatedDoubleField"), - 946: .same(proto: "visitRepeatedEnumField"), - 947: .same(proto: "visitRepeatedFixed32Field"), - 948: .same(proto: "visitRepeatedFixed64Field"), - 949: .same(proto: "visitRepeatedFloatField"), - 950: .same(proto: "visitRepeatedGroupField"), - 951: .same(proto: "visitRepeatedInt32Field"), - 952: .same(proto: "visitRepeatedInt64Field"), - 953: .same(proto: "visitRepeatedMessageField"), - 954: .same(proto: "visitRepeatedSFixed32Field"), - 955: .same(proto: "visitRepeatedSFixed64Field"), - 956: .same(proto: "visitRepeatedSInt32Field"), - 957: .same(proto: "visitRepeatedSInt64Field"), - 958: .same(proto: "visitRepeatedStringField"), - 959: .same(proto: "visitRepeatedUInt32Field"), - 960: .same(proto: "visitRepeatedUInt64Field"), - 961: .same(proto: "visitSingular"), - 962: .same(proto: "visitSingularBoolField"), - 963: .same(proto: "visitSingularBytesField"), - 964: .same(proto: "visitSingularDoubleField"), - 965: .same(proto: "visitSingularEnumField"), - 966: .same(proto: "visitSingularFixed32Field"), - 967: .same(proto: "visitSingularFixed64Field"), - 968: .same(proto: "visitSingularFloatField"), - 969: .same(proto: "visitSingularGroupField"), - 970: .same(proto: "visitSingularInt32Field"), - 971: .same(proto: "visitSingularInt64Field"), - 972: .same(proto: "visitSingularMessageField"), - 973: .same(proto: "visitSingularSFixed32Field"), - 974: .same(proto: "visitSingularSFixed64Field"), - 975: .same(proto: "visitSingularSInt32Field"), - 976: .same(proto: "visitSingularSInt64Field"), - 977: .same(proto: "visitSingularStringField"), - 978: .same(proto: "visitSingularUInt32Field"), - 979: .same(proto: "visitSingularUInt64Field"), - 980: .same(proto: "visitUnknown"), - 981: .same(proto: "wasDecoded"), - 982: .same(proto: "weak"), - 983: .same(proto: "weakDependency"), - 984: .same(proto: "where"), - 985: .same(proto: "wireFormat"), - 986: .same(proto: "with"), - 987: .same(proto: "withUnsafeBytes"), - 988: .same(proto: "withUnsafeMutableBytes"), - 989: .same(proto: "work"), - 990: .same(proto: "Wrapped"), - 991: .same(proto: "WrappedType"), - 992: .same(proto: "wrappedValue"), - 993: .same(proto: "written"), - 994: .same(proto: "yday"), + 12: .same(proto: "AnyUnpackError"), + 13: .same(proto: "Api"), + 14: .same(proto: "appended"), + 15: .same(proto: "appendUIntHex"), + 16: .same(proto: "appendUnknown"), + 17: .same(proto: "areAllInitialized"), + 18: .same(proto: "Array"), + 19: .same(proto: "arrayDepth"), + 20: .same(proto: "arrayLiteral"), + 21: .same(proto: "arraySeparator"), + 22: .same(proto: "as"), + 23: .same(proto: "asciiOpenCurlyBracket"), + 24: .same(proto: "asciiZero"), + 25: .same(proto: "async"), + 26: .same(proto: "AsyncIterator"), + 27: .same(proto: "AsyncIteratorProtocol"), + 28: .same(proto: "AsyncMessageSequence"), + 29: .same(proto: "available"), + 30: .same(proto: "b"), + 31: .same(proto: "Base"), + 32: .same(proto: "base64Values"), + 33: .same(proto: "baseAddress"), + 34: .same(proto: "BaseType"), + 35: .same(proto: "begin"), + 36: .same(proto: "binary"), + 37: .same(proto: "BinaryDecoder"), + 38: .same(proto: "BinaryDecoding"), + 39: .same(proto: "BinaryDecodingError"), + 40: .same(proto: "BinaryDecodingOptions"), + 41: .same(proto: "BinaryDelimited"), + 42: .same(proto: "BinaryEncoder"), + 43: .same(proto: "BinaryEncodingError"), + 44: .same(proto: "BinaryEncodingMessageSetSizeVisitor"), + 45: .same(proto: "BinaryEncodingMessageSetVisitor"), + 46: .same(proto: "BinaryEncodingOptions"), + 47: .same(proto: "BinaryEncodingSizeVisitor"), + 48: .same(proto: "BinaryEncodingVisitor"), + 49: .same(proto: "binaryOptions"), + 50: .same(proto: "binaryProtobufDelimitedMessages"), + 51: .same(proto: "BinaryStreamDecoding"), + 52: .same(proto: "binaryStreamDecodingError"), + 53: .same(proto: "bitPattern"), + 54: .same(proto: "body"), + 55: .same(proto: "Bool"), + 56: .same(proto: "booleanLiteral"), + 57: .same(proto: "BooleanLiteralType"), + 58: .same(proto: "boolValue"), + 59: .same(proto: "buffer"), + 60: .same(proto: "bytes"), + 61: .same(proto: "bytesInGroup"), + 62: .same(proto: "bytesNeeded"), + 63: .same(proto: "bytesRead"), + 64: .same(proto: "BytesValue"), + 65: .same(proto: "c"), + 66: .same(proto: "capitalizeNext"), + 67: .same(proto: "cardinality"), + 68: .same(proto: "CaseIterable"), + 69: .same(proto: "ccEnableArenas"), + 70: .same(proto: "ccGenericServices"), + 71: .same(proto: "Character"), + 72: .same(proto: "chars"), + 73: .same(proto: "chunk"), + 74: .same(proto: "class"), + 75: .same(proto: "clearAggregateValue"), + 76: .same(proto: "clearAllowAlias"), + 77: .same(proto: "clearBegin"), + 78: .same(proto: "clearCcEnableArenas"), + 79: .same(proto: "clearCcGenericServices"), + 80: .same(proto: "clearClientStreaming"), + 81: .same(proto: "clearCsharpNamespace"), + 82: .same(proto: "clearCtype"), + 83: .same(proto: "clearDebugRedact"), + 84: .same(proto: "clearDefaultValue"), + 85: .same(proto: "clearDeprecated"), + 86: .same(proto: "clearDeprecatedLegacyJsonFieldConflicts"), + 87: .same(proto: "clearDeprecationWarning"), + 88: .same(proto: "clearDoubleValue"), + 89: .same(proto: "clearEdition"), + 90: .same(proto: "clearEditionDeprecated"), + 91: .same(proto: "clearEditionIntroduced"), + 92: .same(proto: "clearEditionRemoved"), + 93: .same(proto: "clearEnd"), + 94: .same(proto: "clearEnumType"), + 95: .same(proto: "clearExtendee"), + 96: .same(proto: "clearExtensionValue"), + 97: .same(proto: "clearFeatures"), + 98: .same(proto: "clearFeatureSupport"), + 99: .same(proto: "clearFieldPresence"), + 100: .same(proto: "clearFixedFeatures"), + 101: .same(proto: "clearFullName"), + 102: .same(proto: "clearGoPackage"), + 103: .same(proto: "clearIdempotencyLevel"), + 104: .same(proto: "clearIdentifierValue"), + 105: .same(proto: "clearInputType"), + 106: .same(proto: "clearIsExtension"), + 107: .same(proto: "clearJavaGenerateEqualsAndHash"), + 108: .same(proto: "clearJavaGenericServices"), + 109: .same(proto: "clearJavaMultipleFiles"), + 110: .same(proto: "clearJavaOuterClassname"), + 111: .same(proto: "clearJavaPackage"), + 112: .same(proto: "clearJavaStringCheckUtf8"), + 113: .same(proto: "clearJsonFormat"), + 114: .same(proto: "clearJsonName"), + 115: .same(proto: "clearJstype"), + 116: .same(proto: "clearLabel"), + 117: .same(proto: "clearLazy"), + 118: .same(proto: "clearLeadingComments"), + 119: .same(proto: "clearMapEntry"), + 120: .same(proto: "clearMaximumEdition"), + 121: .same(proto: "clearMessageEncoding"), + 122: .same(proto: "clearMessageSetWireFormat"), + 123: .same(proto: "clearMinimumEdition"), + 124: .same(proto: "clearName"), + 125: .same(proto: "clearNamePart"), + 126: .same(proto: "clearNegativeIntValue"), + 127: .same(proto: "clearNoStandardDescriptorAccessor"), + 128: .same(proto: "clearNumber"), + 129: .same(proto: "clearObjcClassPrefix"), + 130: .same(proto: "clearOneofIndex"), + 131: .same(proto: "clearOptimizeFor"), + 132: .same(proto: "clearOptions"), + 133: .same(proto: "clearOutputType"), + 134: .same(proto: "clearOverridableFeatures"), + 135: .same(proto: "clearPackage"), + 136: .same(proto: "clearPacked"), + 137: .same(proto: "clearPhpClassPrefix"), + 138: .same(proto: "clearPhpMetadataNamespace"), + 139: .same(proto: "clearPhpNamespace"), + 140: .same(proto: "clearPositiveIntValue"), + 141: .same(proto: "clearProto3Optional"), + 142: .same(proto: "clearPyGenericServices"), + 143: .same(proto: "clearRepeated"), + 144: .same(proto: "clearRepeatedFieldEncoding"), + 145: .same(proto: "clearReserved"), + 146: .same(proto: "clearRetention"), + 147: .same(proto: "clearRubyPackage"), + 148: .same(proto: "clearSemantic"), + 149: .same(proto: "clearServerStreaming"), + 150: .same(proto: "clearSourceCodeInfo"), + 151: .same(proto: "clearSourceContext"), + 152: .same(proto: "clearSourceFile"), + 153: .same(proto: "clearStart"), + 154: .same(proto: "clearStringValue"), + 155: .same(proto: "clearSwiftPrefix"), + 156: .same(proto: "clearSyntax"), + 157: .same(proto: "clearTrailingComments"), + 158: .same(proto: "clearType"), + 159: .same(proto: "clearTypeName"), + 160: .same(proto: "clearUnverifiedLazy"), + 161: .same(proto: "clearUtf8Validation"), + 162: .same(proto: "clearValue"), + 163: .same(proto: "clearVerification"), + 164: .same(proto: "clearWeak"), + 165: .same(proto: "clientStreaming"), + 166: .same(proto: "code"), + 167: .same(proto: "codePoint"), + 168: .same(proto: "codeUnits"), + 169: .same(proto: "Collection"), + 170: .same(proto: "com"), + 171: .same(proto: "comma"), + 172: .same(proto: "consumedBytes"), + 173: .same(proto: "contentsOf"), + 174: .same(proto: "copy"), + 175: .same(proto: "count"), + 176: .same(proto: "countVarintsInBuffer"), + 177: .same(proto: "csharpNamespace"), + 178: .same(proto: "ctype"), + 179: .same(proto: "customCodable"), + 180: .same(proto: "CustomDebugStringConvertible"), + 181: .same(proto: "CustomStringConvertible"), + 182: .same(proto: "d"), + 183: .same(proto: "Data"), + 184: .same(proto: "dataResult"), + 185: .same(proto: "date"), + 186: .same(proto: "daySec"), + 187: .same(proto: "daysSinceEpoch"), + 188: .same(proto: "debugDescription"), + 189: .same(proto: "debugRedact"), + 190: .same(proto: "declaration"), + 191: .same(proto: "decoded"), + 192: .same(proto: "decodedFromJSONNull"), + 193: .same(proto: "decodeExtensionField"), + 194: .same(proto: "decodeExtensionFieldsAsMessageSet"), + 195: .same(proto: "decodeJSON"), + 196: .same(proto: "decodeMapField"), + 197: .same(proto: "decodeMessage"), + 198: .same(proto: "decoder"), + 199: .same(proto: "decodeRepeated"), + 200: .same(proto: "decodeRepeatedBoolField"), + 201: .same(proto: "decodeRepeatedBytesField"), + 202: .same(proto: "decodeRepeatedDoubleField"), + 203: .same(proto: "decodeRepeatedEnumField"), + 204: .same(proto: "decodeRepeatedFixed32Field"), + 205: .same(proto: "decodeRepeatedFixed64Field"), + 206: .same(proto: "decodeRepeatedFloatField"), + 207: .same(proto: "decodeRepeatedGroupField"), + 208: .same(proto: "decodeRepeatedInt32Field"), + 209: .same(proto: "decodeRepeatedInt64Field"), + 210: .same(proto: "decodeRepeatedMessageField"), + 211: .same(proto: "decodeRepeatedSFixed32Field"), + 212: .same(proto: "decodeRepeatedSFixed64Field"), + 213: .same(proto: "decodeRepeatedSInt32Field"), + 214: .same(proto: "decodeRepeatedSInt64Field"), + 215: .same(proto: "decodeRepeatedStringField"), + 216: .same(proto: "decodeRepeatedUInt32Field"), + 217: .same(proto: "decodeRepeatedUInt64Field"), + 218: .same(proto: "decodeSingular"), + 219: .same(proto: "decodeSingularBoolField"), + 220: .same(proto: "decodeSingularBytesField"), + 221: .same(proto: "decodeSingularDoubleField"), + 222: .same(proto: "decodeSingularEnumField"), + 223: .same(proto: "decodeSingularFixed32Field"), + 224: .same(proto: "decodeSingularFixed64Field"), + 225: .same(proto: "decodeSingularFloatField"), + 226: .same(proto: "decodeSingularGroupField"), + 227: .same(proto: "decodeSingularInt32Field"), + 228: .same(proto: "decodeSingularInt64Field"), + 229: .same(proto: "decodeSingularMessageField"), + 230: .same(proto: "decodeSingularSFixed32Field"), + 231: .same(proto: "decodeSingularSFixed64Field"), + 232: .same(proto: "decodeSingularSInt32Field"), + 233: .same(proto: "decodeSingularSInt64Field"), + 234: .same(proto: "decodeSingularStringField"), + 235: .same(proto: "decodeSingularUInt32Field"), + 236: .same(proto: "decodeSingularUInt64Field"), + 237: .same(proto: "decodeTextFormat"), + 238: .same(proto: "defaultAnyTypeURLPrefix"), + 239: .same(proto: "defaults"), + 240: .same(proto: "defaultValue"), + 241: .same(proto: "dependency"), + 242: .same(proto: "deprecated"), + 243: .same(proto: "deprecatedLegacyJsonFieldConflicts"), + 244: .same(proto: "deprecationWarning"), + 245: .same(proto: "description"), + 246: .same(proto: "DescriptorProto"), + 247: .same(proto: "Dictionary"), + 248: .same(proto: "dictionaryLiteral"), + 249: .same(proto: "digit"), + 250: .same(proto: "digit0"), + 251: .same(proto: "digit1"), + 252: .same(proto: "digitCount"), + 253: .same(proto: "digits"), + 254: .same(proto: "digitValue"), + 255: .same(proto: "discardableResult"), + 256: .same(proto: "discardUnknownFields"), + 257: .same(proto: "Double"), + 258: .same(proto: "doubleValue"), + 259: .same(proto: "Duration"), + 260: .same(proto: "E"), + 261: .same(proto: "edition"), + 262: .same(proto: "EditionDefault"), + 263: .same(proto: "editionDefaults"), + 264: .same(proto: "editionDeprecated"), + 265: .same(proto: "editionIntroduced"), + 266: .same(proto: "editionRemoved"), + 267: .same(proto: "Element"), + 268: .same(proto: "elements"), + 269: .same(proto: "emitExtensionFieldName"), + 270: .same(proto: "emitFieldName"), + 271: .same(proto: "emitFieldNumber"), + 272: .same(proto: "Empty"), + 273: .same(proto: "encodeAsBytes"), + 274: .same(proto: "encoded"), + 275: .same(proto: "encodedJSONString"), + 276: .same(proto: "encodedSize"), + 277: .same(proto: "encodeField"), + 278: .same(proto: "encoder"), + 279: .same(proto: "end"), + 280: .same(proto: "endArray"), + 281: .same(proto: "endMessageField"), + 282: .same(proto: "endObject"), + 283: .same(proto: "endRegularField"), + 284: .same(proto: "enum"), + 285: .same(proto: "EnumDescriptorProto"), + 286: .same(proto: "EnumOptions"), + 287: .same(proto: "EnumReservedRange"), + 288: .same(proto: "enumType"), + 289: .same(proto: "enumvalue"), + 290: .same(proto: "EnumValueDescriptorProto"), + 291: .same(proto: "EnumValueOptions"), + 292: .same(proto: "Equatable"), + 293: .same(proto: "Error"), + 294: .same(proto: "ExpressibleByArrayLiteral"), + 295: .same(proto: "ExpressibleByDictionaryLiteral"), + 296: .same(proto: "ext"), + 297: .same(proto: "extDecoder"), + 298: .same(proto: "extendedGraphemeClusterLiteral"), + 299: .same(proto: "ExtendedGraphemeClusterLiteralType"), + 300: .same(proto: "extendee"), + 301: .same(proto: "ExtensibleMessage"), + 302: .same(proto: "extension"), + 303: .same(proto: "ExtensionField"), + 304: .same(proto: "extensionFieldNumber"), + 305: .same(proto: "ExtensionFieldValueSet"), + 306: .same(proto: "ExtensionMap"), + 307: .same(proto: "extensionRange"), + 308: .same(proto: "ExtensionRangeOptions"), + 309: .same(proto: "extensions"), + 310: .same(proto: "extras"), + 311: .same(proto: "F"), + 312: .same(proto: "false"), + 313: .same(proto: "features"), + 314: .same(proto: "FeatureSet"), + 315: .same(proto: "FeatureSetDefaults"), + 316: .same(proto: "FeatureSetEditionDefault"), + 317: .same(proto: "featureSupport"), + 318: .same(proto: "field"), + 319: .same(proto: "fieldData"), + 320: .same(proto: "FieldDescriptorProto"), + 321: .same(proto: "FieldMask"), + 322: .same(proto: "fieldName"), + 323: .same(proto: "fieldNameCount"), + 324: .same(proto: "fieldNum"), + 325: .same(proto: "fieldNumber"), + 326: .same(proto: "fieldNumberForProto"), + 327: .same(proto: "FieldOptions"), + 328: .same(proto: "fieldPresence"), + 329: .same(proto: "fields"), + 330: .same(proto: "fieldSize"), + 331: .same(proto: "FieldTag"), + 332: .same(proto: "fieldType"), + 333: .same(proto: "file"), + 334: .same(proto: "FileDescriptorProto"), + 335: .same(proto: "FileDescriptorSet"), + 336: .same(proto: "fileName"), + 337: .same(proto: "FileOptions"), + 338: .same(proto: "filter"), + 339: .same(proto: "final"), + 340: .same(proto: "finiteOnly"), + 341: .same(proto: "first"), + 342: .same(proto: "firstItem"), + 343: .same(proto: "fixedFeatures"), + 344: .same(proto: "Float"), + 345: .same(proto: "floatLiteral"), + 346: .same(proto: "FloatLiteralType"), + 347: .same(proto: "FloatValue"), + 348: .same(proto: "forMessageName"), + 349: .same(proto: "formUnion"), + 350: .same(proto: "forReadingFrom"), + 351: .same(proto: "forTypeURL"), + 352: .same(proto: "ForwardParser"), + 353: .same(proto: "forWritingInto"), + 354: .same(proto: "from"), + 355: .same(proto: "fromAscii2"), + 356: .same(proto: "fromAscii4"), + 357: .same(proto: "fromByteOffset"), + 358: .same(proto: "fromHexDigit"), + 359: .same(proto: "fullName"), + 360: .same(proto: "func"), + 361: .same(proto: "function"), + 362: .same(proto: "G"), + 363: .same(proto: "GeneratedCodeInfo"), + 364: .same(proto: "get"), + 365: .same(proto: "getExtensionValue"), + 366: .same(proto: "googleapis"), + 367: .same(proto: "Google_Protobuf_Any"), + 368: .same(proto: "Google_Protobuf_Api"), + 369: .same(proto: "Google_Protobuf_BoolValue"), + 370: .same(proto: "Google_Protobuf_BytesValue"), + 371: .same(proto: "Google_Protobuf_DescriptorProto"), + 372: .same(proto: "Google_Protobuf_DoubleValue"), + 373: .same(proto: "Google_Protobuf_Duration"), + 374: .same(proto: "Google_Protobuf_Edition"), + 375: .same(proto: "Google_Protobuf_Empty"), + 376: .same(proto: "Google_Protobuf_Enum"), + 377: .same(proto: "Google_Protobuf_EnumDescriptorProto"), + 378: .same(proto: "Google_Protobuf_EnumOptions"), + 379: .same(proto: "Google_Protobuf_EnumValue"), + 380: .same(proto: "Google_Protobuf_EnumValueDescriptorProto"), + 381: .same(proto: "Google_Protobuf_EnumValueOptions"), + 382: .same(proto: "Google_Protobuf_ExtensionRangeOptions"), + 383: .same(proto: "Google_Protobuf_FeatureSet"), + 384: .same(proto: "Google_Protobuf_FeatureSetDefaults"), + 385: .same(proto: "Google_Protobuf_Field"), + 386: .same(proto: "Google_Protobuf_FieldDescriptorProto"), + 387: .same(proto: "Google_Protobuf_FieldMask"), + 388: .same(proto: "Google_Protobuf_FieldOptions"), + 389: .same(proto: "Google_Protobuf_FileDescriptorProto"), + 390: .same(proto: "Google_Protobuf_FileDescriptorSet"), + 391: .same(proto: "Google_Protobuf_FileOptions"), + 392: .same(proto: "Google_Protobuf_FloatValue"), + 393: .same(proto: "Google_Protobuf_GeneratedCodeInfo"), + 394: .same(proto: "Google_Protobuf_Int32Value"), + 395: .same(proto: "Google_Protobuf_Int64Value"), + 396: .same(proto: "Google_Protobuf_ListValue"), + 397: .same(proto: "Google_Protobuf_MessageOptions"), + 398: .same(proto: "Google_Protobuf_Method"), + 399: .same(proto: "Google_Protobuf_MethodDescriptorProto"), + 400: .same(proto: "Google_Protobuf_MethodOptions"), + 401: .same(proto: "Google_Protobuf_Mixin"), + 402: .same(proto: "Google_Protobuf_NullValue"), + 403: .same(proto: "Google_Protobuf_OneofDescriptorProto"), + 404: .same(proto: "Google_Protobuf_OneofOptions"), + 405: .same(proto: "Google_Protobuf_Option"), + 406: .same(proto: "Google_Protobuf_ServiceDescriptorProto"), + 407: .same(proto: "Google_Protobuf_ServiceOptions"), + 408: .same(proto: "Google_Protobuf_SourceCodeInfo"), + 409: .same(proto: "Google_Protobuf_SourceContext"), + 410: .same(proto: "Google_Protobuf_StringValue"), + 411: .same(proto: "Google_Protobuf_Struct"), + 412: .same(proto: "Google_Protobuf_Syntax"), + 413: .same(proto: "Google_Protobuf_Timestamp"), + 414: .same(proto: "Google_Protobuf_Type"), + 415: .same(proto: "Google_Protobuf_UInt32Value"), + 416: .same(proto: "Google_Protobuf_UInt64Value"), + 417: .same(proto: "Google_Protobuf_UninterpretedOption"), + 418: .same(proto: "Google_Protobuf_Value"), + 419: .same(proto: "goPackage"), + 420: .same(proto: "group"), + 421: .same(proto: "groupFieldNumberStack"), + 422: .same(proto: "groupSize"), + 423: .same(proto: "hadOneofValue"), + 424: .same(proto: "handleConflictingOneOf"), + 425: .same(proto: "hasAggregateValue"), + 426: .same(proto: "hasAllowAlias"), + 427: .same(proto: "hasBegin"), + 428: .same(proto: "hasCcEnableArenas"), + 429: .same(proto: "hasCcGenericServices"), + 430: .same(proto: "hasClientStreaming"), + 431: .same(proto: "hasCsharpNamespace"), + 432: .same(proto: "hasCtype"), + 433: .same(proto: "hasDebugRedact"), + 434: .same(proto: "hasDefaultValue"), + 435: .same(proto: "hasDeprecated"), + 436: .same(proto: "hasDeprecatedLegacyJsonFieldConflicts"), + 437: .same(proto: "hasDeprecationWarning"), + 438: .same(proto: "hasDoubleValue"), + 439: .same(proto: "hasEdition"), + 440: .same(proto: "hasEditionDeprecated"), + 441: .same(proto: "hasEditionIntroduced"), + 442: .same(proto: "hasEditionRemoved"), + 443: .same(proto: "hasEnd"), + 444: .same(proto: "hasEnumType"), + 445: .same(proto: "hasExtendee"), + 446: .same(proto: "hasExtensionValue"), + 447: .same(proto: "hasFeatures"), + 448: .same(proto: "hasFeatureSupport"), + 449: .same(proto: "hasFieldPresence"), + 450: .same(proto: "hasFixedFeatures"), + 451: .same(proto: "hasFullName"), + 452: .same(proto: "hasGoPackage"), + 453: .same(proto: "hash"), + 454: .same(proto: "Hashable"), + 455: .same(proto: "hasher"), + 456: .same(proto: "HashVisitor"), + 457: .same(proto: "hasIdempotencyLevel"), + 458: .same(proto: "hasIdentifierValue"), + 459: .same(proto: "hasInputType"), + 460: .same(proto: "hasIsExtension"), + 461: .same(proto: "hasJavaGenerateEqualsAndHash"), + 462: .same(proto: "hasJavaGenericServices"), + 463: .same(proto: "hasJavaMultipleFiles"), + 464: .same(proto: "hasJavaOuterClassname"), + 465: .same(proto: "hasJavaPackage"), + 466: .same(proto: "hasJavaStringCheckUtf8"), + 467: .same(proto: "hasJsonFormat"), + 468: .same(proto: "hasJsonName"), + 469: .same(proto: "hasJstype"), + 470: .same(proto: "hasLabel"), + 471: .same(proto: "hasLazy"), + 472: .same(proto: "hasLeadingComments"), + 473: .same(proto: "hasMapEntry"), + 474: .same(proto: "hasMaximumEdition"), + 475: .same(proto: "hasMessageEncoding"), + 476: .same(proto: "hasMessageSetWireFormat"), + 477: .same(proto: "hasMinimumEdition"), + 478: .same(proto: "hasName"), + 479: .same(proto: "hasNamePart"), + 480: .same(proto: "hasNegativeIntValue"), + 481: .same(proto: "hasNoStandardDescriptorAccessor"), + 482: .same(proto: "hasNumber"), + 483: .same(proto: "hasObjcClassPrefix"), + 484: .same(proto: "hasOneofIndex"), + 485: .same(proto: "hasOptimizeFor"), + 486: .same(proto: "hasOptions"), + 487: .same(proto: "hasOutputType"), + 488: .same(proto: "hasOverridableFeatures"), + 489: .same(proto: "hasPackage"), + 490: .same(proto: "hasPacked"), + 491: .same(proto: "hasPhpClassPrefix"), + 492: .same(proto: "hasPhpMetadataNamespace"), + 493: .same(proto: "hasPhpNamespace"), + 494: .same(proto: "hasPositiveIntValue"), + 495: .same(proto: "hasProto3Optional"), + 496: .same(proto: "hasPyGenericServices"), + 497: .same(proto: "hasRepeated"), + 498: .same(proto: "hasRepeatedFieldEncoding"), + 499: .same(proto: "hasReserved"), + 500: .same(proto: "hasRetention"), + 501: .same(proto: "hasRubyPackage"), + 502: .same(proto: "hasSemantic"), + 503: .same(proto: "hasServerStreaming"), + 504: .same(proto: "hasSourceCodeInfo"), + 505: .same(proto: "hasSourceContext"), + 506: .same(proto: "hasSourceFile"), + 507: .same(proto: "hasStart"), + 508: .same(proto: "hasStringValue"), + 509: .same(proto: "hasSwiftPrefix"), + 510: .same(proto: "hasSyntax"), + 511: .same(proto: "hasTrailingComments"), + 512: .same(proto: "hasType"), + 513: .same(proto: "hasTypeName"), + 514: .same(proto: "hasUnverifiedLazy"), + 515: .same(proto: "hasUtf8Validation"), + 516: .same(proto: "hasValue"), + 517: .same(proto: "hasVerification"), + 518: .same(proto: "hasWeak"), + 519: .same(proto: "hour"), + 520: .same(proto: "i"), + 521: .same(proto: "idempotencyLevel"), + 522: .same(proto: "identifierValue"), + 523: .same(proto: "if"), + 524: .same(proto: "ignoreUnknownExtensionFields"), + 525: .same(proto: "ignoreUnknownFields"), + 526: .same(proto: "index"), + 527: .same(proto: "init"), + 528: .same(proto: "inout"), + 529: .same(proto: "inputType"), + 530: .same(proto: "insert"), + 531: .same(proto: "Int"), + 532: .same(proto: "Int32"), + 533: .same(proto: "Int32Value"), + 534: .same(proto: "Int64"), + 535: .same(proto: "Int64Value"), + 536: .same(proto: "Int8"), + 537: .same(proto: "integerLiteral"), + 538: .same(proto: "IntegerLiteralType"), + 539: .same(proto: "intern"), + 540: .same(proto: "Internal"), + 541: .same(proto: "InternalState"), + 542: .same(proto: "into"), + 543: .same(proto: "ints"), + 544: .same(proto: "isA"), + 545: .same(proto: "isEqual"), + 546: .same(proto: "isEqualTo"), + 547: .same(proto: "isExtension"), + 548: .same(proto: "isInitialized"), + 549: .same(proto: "isNegative"), + 550: .same(proto: "itemTagsEncodedSize"), + 551: .same(proto: "iterator"), + 552: .same(proto: "javaGenerateEqualsAndHash"), + 553: .same(proto: "javaGenericServices"), + 554: .same(proto: "javaMultipleFiles"), + 555: .same(proto: "javaOuterClassname"), + 556: .same(proto: "javaPackage"), + 557: .same(proto: "javaStringCheckUtf8"), + 558: .same(proto: "JSONDecoder"), + 559: .same(proto: "JSONDecodingError"), + 560: .same(proto: "JSONDecodingOptions"), + 561: .same(proto: "jsonEncoder"), + 562: .same(proto: "JSONEncodingError"), + 563: .same(proto: "JSONEncodingOptions"), + 564: .same(proto: "JSONEncodingVisitor"), + 565: .same(proto: "jsonFormat"), + 566: .same(proto: "JSONMapEncodingVisitor"), + 567: .same(proto: "jsonName"), + 568: .same(proto: "jsonPath"), + 569: .same(proto: "jsonPaths"), + 570: .same(proto: "JSONScanner"), + 571: .same(proto: "jsonString"), + 572: .same(proto: "jsonText"), + 573: .same(proto: "jsonUTF8Bytes"), + 574: .same(proto: "jsonUTF8Data"), + 575: .same(proto: "jstype"), + 576: .same(proto: "k"), + 577: .same(proto: "kChunkSize"), + 578: .same(proto: "Key"), + 579: .same(proto: "keyField"), + 580: .same(proto: "keyFieldOpt"), + 581: .same(proto: "KeyType"), + 582: .same(proto: "kind"), + 583: .same(proto: "l"), + 584: .same(proto: "label"), + 585: .same(proto: "lazy"), + 586: .same(proto: "leadingComments"), + 587: .same(proto: "leadingDetachedComments"), + 588: .same(proto: "length"), + 589: .same(proto: "lessThan"), + 590: .same(proto: "let"), + 591: .same(proto: "lhs"), + 592: .same(proto: "line"), + 593: .same(proto: "list"), + 594: .same(proto: "listOfMessages"), + 595: .same(proto: "listValue"), + 596: .same(proto: "littleEndian"), + 597: .same(proto: "load"), + 598: .same(proto: "localHasher"), + 599: .same(proto: "location"), + 600: .same(proto: "M"), + 601: .same(proto: "major"), + 602: .same(proto: "makeAsyncIterator"), + 603: .same(proto: "makeIterator"), + 604: .same(proto: "malformedLength"), + 605: .same(proto: "mapEntry"), + 606: .same(proto: "MapKeyType"), + 607: .same(proto: "mapToMessages"), + 608: .same(proto: "MapValueType"), + 609: .same(proto: "mapVisitor"), + 610: .same(proto: "maximumEdition"), + 611: .same(proto: "mdayStart"), + 612: .same(proto: "merge"), + 613: .same(proto: "message"), + 614: .same(proto: "messageDepthLimit"), + 615: .same(proto: "messageEncoding"), + 616: .same(proto: "MessageExtension"), + 617: .same(proto: "MessageImplementationBase"), + 618: .same(proto: "MessageOptions"), + 619: .same(proto: "MessageSet"), + 620: .same(proto: "messageSetWireFormat"), + 621: .same(proto: "messageSize"), + 622: .same(proto: "messageType"), + 623: .same(proto: "Method"), + 624: .same(proto: "MethodDescriptorProto"), + 625: .same(proto: "MethodOptions"), + 626: .same(proto: "methods"), + 627: .same(proto: "min"), + 628: .same(proto: "minimumEdition"), + 629: .same(proto: "minor"), + 630: .same(proto: "Mixin"), + 631: .same(proto: "mixins"), + 632: .same(proto: "modifier"), + 633: .same(proto: "modify"), + 634: .same(proto: "month"), + 635: .same(proto: "msgExtension"), + 636: .same(proto: "mutating"), + 637: .same(proto: "n"), + 638: .same(proto: "name"), + 639: .same(proto: "NameDescription"), + 640: .same(proto: "NameMap"), + 641: .same(proto: "NamePart"), + 642: .same(proto: "names"), + 643: .same(proto: "nanos"), + 644: .same(proto: "negativeIntValue"), + 645: .same(proto: "nestedType"), + 646: .same(proto: "newL"), + 647: .same(proto: "newList"), + 648: .same(proto: "newValue"), + 649: .same(proto: "next"), + 650: .same(proto: "nextByte"), + 651: .same(proto: "nextFieldNumber"), + 652: .same(proto: "nextVarInt"), + 653: .same(proto: "nil"), + 654: .same(proto: "nilLiteral"), + 655: .same(proto: "noBytesAvailable"), + 656: .same(proto: "noStandardDescriptorAccessor"), + 657: .same(proto: "nullValue"), + 658: .same(proto: "number"), + 659: .same(proto: "numberValue"), + 660: .same(proto: "objcClassPrefix"), + 661: .same(proto: "of"), + 662: .same(proto: "oneofDecl"), + 663: .same(proto: "OneofDescriptorProto"), + 664: .same(proto: "oneofIndex"), + 665: .same(proto: "OneofOptions"), + 666: .same(proto: "oneofs"), + 667: .same(proto: "OneOf_Kind"), + 668: .same(proto: "optimizeFor"), + 669: .same(proto: "OptimizeMode"), + 670: .same(proto: "Option"), + 671: .same(proto: "OptionalEnumExtensionField"), + 672: .same(proto: "OptionalExtensionField"), + 673: .same(proto: "OptionalGroupExtensionField"), + 674: .same(proto: "OptionalMessageExtensionField"), + 675: .same(proto: "OptionRetention"), + 676: .same(proto: "options"), + 677: .same(proto: "OptionTargetType"), + 678: .same(proto: "other"), + 679: .same(proto: "others"), + 680: .same(proto: "out"), + 681: .same(proto: "outputType"), + 682: .same(proto: "overridableFeatures"), + 683: .same(proto: "p"), + 684: .same(proto: "package"), + 685: .same(proto: "packed"), + 686: .same(proto: "PackedEnumExtensionField"), + 687: .same(proto: "PackedExtensionField"), + 688: .same(proto: "padding"), + 689: .same(proto: "parent"), + 690: .same(proto: "parse"), + 691: .same(proto: "path"), + 692: .same(proto: "paths"), + 693: .same(proto: "payload"), + 694: .same(proto: "payloadSize"), + 695: .same(proto: "phpClassPrefix"), + 696: .same(proto: "phpMetadataNamespace"), + 697: .same(proto: "phpNamespace"), + 698: .same(proto: "pos"), + 699: .same(proto: "positiveIntValue"), + 700: .same(proto: "prefix"), + 701: .same(proto: "preserveProtoFieldNames"), + 702: .same(proto: "preTraverse"), + 703: .same(proto: "printUnknownFields"), + 704: .same(proto: "proto2"), + 705: .same(proto: "proto3DefaultValue"), + 706: .same(proto: "proto3Optional"), + 707: .same(proto: "ProtobufAPIVersionCheck"), + 708: .same(proto: "ProtobufAPIVersion_3"), + 709: .same(proto: "ProtobufBool"), + 710: .same(proto: "ProtobufBytes"), + 711: .same(proto: "ProtobufDouble"), + 712: .same(proto: "ProtobufEnumMap"), + 713: .same(proto: "protobufExtension"), + 714: .same(proto: "ProtobufFixed32"), + 715: .same(proto: "ProtobufFixed64"), + 716: .same(proto: "ProtobufFloat"), + 717: .same(proto: "ProtobufInt32"), + 718: .same(proto: "ProtobufInt64"), + 719: .same(proto: "ProtobufMap"), + 720: .same(proto: "ProtobufMessageMap"), + 721: .same(proto: "ProtobufSFixed32"), + 722: .same(proto: "ProtobufSFixed64"), + 723: .same(proto: "ProtobufSInt32"), + 724: .same(proto: "ProtobufSInt64"), + 725: .same(proto: "ProtobufString"), + 726: .same(proto: "ProtobufUInt32"), + 727: .same(proto: "ProtobufUInt64"), + 728: .same(proto: "protobuf_extensionFieldValues"), + 729: .same(proto: "protobuf_fieldNumber"), + 730: .same(proto: "protobuf_generated_isEqualTo"), + 731: .same(proto: "protobuf_nameMap"), + 732: .same(proto: "protobuf_newField"), + 733: .same(proto: "protobuf_package"), + 734: .same(proto: "protocol"), + 735: .same(proto: "protoFieldName"), + 736: .same(proto: "protoMessageName"), + 737: .same(proto: "ProtoNameProviding"), + 738: .same(proto: "protoPaths"), + 739: .same(proto: "public"), + 740: .same(proto: "publicDependency"), + 741: .same(proto: "putBoolValue"), + 742: .same(proto: "putBytesValue"), + 743: .same(proto: "putDoubleValue"), + 744: .same(proto: "putEnumValue"), + 745: .same(proto: "putFixedUInt32"), + 746: .same(proto: "putFixedUInt64"), + 747: .same(proto: "putFloatValue"), + 748: .same(proto: "putInt64"), + 749: .same(proto: "putStringValue"), + 750: .same(proto: "putUInt64"), + 751: .same(proto: "putUInt64Hex"), + 752: .same(proto: "putVarInt"), + 753: .same(proto: "putZigZagVarInt"), + 754: .same(proto: "pyGenericServices"), + 755: .same(proto: "R"), + 756: .same(proto: "rawChars"), + 757: .same(proto: "RawRepresentable"), + 758: .same(proto: "RawValue"), + 759: .same(proto: "read4HexDigits"), + 760: .same(proto: "readBytes"), + 761: .same(proto: "register"), + 762: .same(proto: "repeated"), + 763: .same(proto: "RepeatedEnumExtensionField"), + 764: .same(proto: "RepeatedExtensionField"), + 765: .same(proto: "repeatedFieldEncoding"), + 766: .same(proto: "RepeatedGroupExtensionField"), + 767: .same(proto: "RepeatedMessageExtensionField"), + 768: .same(proto: "repeating"), + 769: .same(proto: "requestStreaming"), + 770: .same(proto: "requestTypeURL"), + 771: .same(proto: "requiredSize"), + 772: .same(proto: "responseStreaming"), + 773: .same(proto: "responseTypeURL"), + 774: .same(proto: "result"), + 775: .same(proto: "retention"), + 776: .same(proto: "rethrows"), + 777: .same(proto: "return"), + 778: .same(proto: "ReturnType"), + 779: .same(proto: "revision"), + 780: .same(proto: "rhs"), + 781: .same(proto: "root"), + 782: .same(proto: "rubyPackage"), + 783: .same(proto: "s"), + 784: .same(proto: "sawBackslash"), + 785: .same(proto: "sawSection4Characters"), + 786: .same(proto: "sawSection5Characters"), + 787: .same(proto: "scan"), + 788: .same(proto: "scanner"), + 789: .same(proto: "seconds"), + 790: .same(proto: "self"), + 791: .same(proto: "semantic"), + 792: .same(proto: "Sendable"), + 793: .same(proto: "separator"), + 794: .same(proto: "serialize"), + 795: .same(proto: "serializedBytes"), + 796: .same(proto: "serializedData"), + 797: .same(proto: "serializedSize"), + 798: .same(proto: "serverStreaming"), + 799: .same(proto: "service"), + 800: .same(proto: "ServiceDescriptorProto"), + 801: .same(proto: "ServiceOptions"), + 802: .same(proto: "set"), + 803: .same(proto: "setExtensionValue"), + 804: .same(proto: "shift"), + 805: .same(proto: "SimpleExtensionMap"), + 806: .same(proto: "size"), + 807: .same(proto: "sizer"), + 808: .same(proto: "source"), + 809: .same(proto: "sourceCodeInfo"), + 810: .same(proto: "sourceContext"), + 811: .same(proto: "sourceEncoding"), + 812: .same(proto: "sourceFile"), + 813: .same(proto: "SourceLocation"), + 814: .same(proto: "span"), + 815: .same(proto: "split"), + 816: .same(proto: "start"), + 817: .same(proto: "startArray"), + 818: .same(proto: "startArrayObject"), + 819: .same(proto: "startField"), + 820: .same(proto: "startIndex"), + 821: .same(proto: "startMessageField"), + 822: .same(proto: "startObject"), + 823: .same(proto: "startRegularField"), + 824: .same(proto: "state"), + 825: .same(proto: "static"), + 826: .same(proto: "StaticString"), + 827: .same(proto: "storage"), + 828: .same(proto: "String"), + 829: .same(proto: "stringLiteral"), + 830: .same(proto: "StringLiteralType"), + 831: .same(proto: "stringResult"), + 832: .same(proto: "stringValue"), + 833: .same(proto: "struct"), + 834: .same(proto: "structValue"), + 835: .same(proto: "subDecoder"), + 836: .same(proto: "subscript"), + 837: .same(proto: "subVisitor"), + 838: .same(proto: "Swift"), + 839: .same(proto: "swiftPrefix"), + 840: .same(proto: "SwiftProtobufContiguousBytes"), + 841: .same(proto: "SwiftProtobufError"), + 842: .same(proto: "syntax"), + 843: .same(proto: "T"), + 844: .same(proto: "tag"), + 845: .same(proto: "targets"), + 846: .same(proto: "terminator"), + 847: .same(proto: "testDecoder"), + 848: .same(proto: "text"), + 849: .same(proto: "textDecoder"), + 850: .same(proto: "TextFormatDecoder"), + 851: .same(proto: "TextFormatDecodingError"), + 852: .same(proto: "TextFormatDecodingOptions"), + 853: .same(proto: "TextFormatEncodingOptions"), + 854: .same(proto: "TextFormatEncodingVisitor"), + 855: .same(proto: "textFormatString"), + 856: .same(proto: "throwOrIgnore"), + 857: .same(proto: "throws"), + 858: .same(proto: "timeInterval"), + 859: .same(proto: "timeIntervalSince1970"), + 860: .same(proto: "timeIntervalSinceReferenceDate"), + 861: .same(proto: "Timestamp"), + 862: .same(proto: "tooLarge"), + 863: .same(proto: "total"), + 864: .same(proto: "totalArrayDepth"), + 865: .same(proto: "totalSize"), + 866: .same(proto: "trailingComments"), + 867: .same(proto: "traverse"), + 868: .same(proto: "true"), + 869: .same(proto: "try"), + 870: .same(proto: "type"), + 871: .same(proto: "typealias"), + 872: .same(proto: "TypeEnum"), + 873: .same(proto: "typeName"), + 874: .same(proto: "typePrefix"), + 875: .same(proto: "typeStart"), + 876: .same(proto: "typeUnknown"), + 877: .same(proto: "typeURL"), + 878: .same(proto: "UInt32"), + 879: .same(proto: "UInt32Value"), + 880: .same(proto: "UInt64"), + 881: .same(proto: "UInt64Value"), + 882: .same(proto: "UInt8"), + 883: .same(proto: "unchecked"), + 884: .same(proto: "unicodeScalarLiteral"), + 885: .same(proto: "UnicodeScalarLiteralType"), + 886: .same(proto: "unicodeScalars"), + 887: .same(proto: "UnicodeScalarView"), + 888: .same(proto: "uninterpretedOption"), + 889: .same(proto: "union"), + 890: .same(proto: "uniqueStorage"), + 891: .same(proto: "unknown"), + 892: .same(proto: "unknownFields"), + 893: .same(proto: "UnknownStorage"), + 894: .same(proto: "unpackTo"), + 895: .same(proto: "UnsafeBufferPointer"), + 896: .same(proto: "UnsafeMutablePointer"), + 897: .same(proto: "UnsafeMutableRawBufferPointer"), + 898: .same(proto: "UnsafeRawBufferPointer"), + 899: .same(proto: "UnsafeRawPointer"), + 900: .same(proto: "unverifiedLazy"), + 901: .same(proto: "updatedOptions"), + 902: .same(proto: "url"), + 903: .same(proto: "useDeterministicOrdering"), + 904: .same(proto: "utf8"), + 905: .same(proto: "utf8Ptr"), + 906: .same(proto: "utf8ToDouble"), + 907: .same(proto: "utf8Validation"), + 908: .same(proto: "UTF8View"), + 909: .same(proto: "v"), + 910: .same(proto: "value"), + 911: .same(proto: "valueField"), + 912: .same(proto: "values"), + 913: .same(proto: "ValueType"), + 914: .same(proto: "var"), + 915: .same(proto: "verification"), + 916: .same(proto: "VerificationState"), + 917: .same(proto: "Version"), + 918: .same(proto: "versionString"), + 919: .same(proto: "visitExtensionFields"), + 920: .same(proto: "visitExtensionFieldsAsMessageSet"), + 921: .same(proto: "visitMapField"), + 922: .same(proto: "visitor"), + 923: .same(proto: "visitPacked"), + 924: .same(proto: "visitPackedBoolField"), + 925: .same(proto: "visitPackedDoubleField"), + 926: .same(proto: "visitPackedEnumField"), + 927: .same(proto: "visitPackedFixed32Field"), + 928: .same(proto: "visitPackedFixed64Field"), + 929: .same(proto: "visitPackedFloatField"), + 930: .same(proto: "visitPackedInt32Field"), + 931: .same(proto: "visitPackedInt64Field"), + 932: .same(proto: "visitPackedSFixed32Field"), + 933: .same(proto: "visitPackedSFixed64Field"), + 934: .same(proto: "visitPackedSInt32Field"), + 935: .same(proto: "visitPackedSInt64Field"), + 936: .same(proto: "visitPackedUInt32Field"), + 937: .same(proto: "visitPackedUInt64Field"), + 938: .same(proto: "visitRepeated"), + 939: .same(proto: "visitRepeatedBoolField"), + 940: .same(proto: "visitRepeatedBytesField"), + 941: .same(proto: "visitRepeatedDoubleField"), + 942: .same(proto: "visitRepeatedEnumField"), + 943: .same(proto: "visitRepeatedFixed32Field"), + 944: .same(proto: "visitRepeatedFixed64Field"), + 945: .same(proto: "visitRepeatedFloatField"), + 946: .same(proto: "visitRepeatedGroupField"), + 947: .same(proto: "visitRepeatedInt32Field"), + 948: .same(proto: "visitRepeatedInt64Field"), + 949: .same(proto: "visitRepeatedMessageField"), + 950: .same(proto: "visitRepeatedSFixed32Field"), + 951: .same(proto: "visitRepeatedSFixed64Field"), + 952: .same(proto: "visitRepeatedSInt32Field"), + 953: .same(proto: "visitRepeatedSInt64Field"), + 954: .same(proto: "visitRepeatedStringField"), + 955: .same(proto: "visitRepeatedUInt32Field"), + 956: .same(proto: "visitRepeatedUInt64Field"), + 957: .same(proto: "visitSingular"), + 958: .same(proto: "visitSingularBoolField"), + 959: .same(proto: "visitSingularBytesField"), + 960: .same(proto: "visitSingularDoubleField"), + 961: .same(proto: "visitSingularEnumField"), + 962: .same(proto: "visitSingularFixed32Field"), + 963: .same(proto: "visitSingularFixed64Field"), + 964: .same(proto: "visitSingularFloatField"), + 965: .same(proto: "visitSingularGroupField"), + 966: .same(proto: "visitSingularInt32Field"), + 967: .same(proto: "visitSingularInt64Field"), + 968: .same(proto: "visitSingularMessageField"), + 969: .same(proto: "visitSingularSFixed32Field"), + 970: .same(proto: "visitSingularSFixed64Field"), + 971: .same(proto: "visitSingularSInt32Field"), + 972: .same(proto: "visitSingularSInt64Field"), + 973: .same(proto: "visitSingularStringField"), + 974: .same(proto: "visitSingularUInt32Field"), + 975: .same(proto: "visitSingularUInt64Field"), + 976: .same(proto: "visitUnknown"), + 977: .same(proto: "wasDecoded"), + 978: .same(proto: "weak"), + 979: .same(proto: "weakDependency"), + 980: .same(proto: "where"), + 981: .same(proto: "wireFormat"), + 982: .same(proto: "with"), + 983: .same(proto: "withUnsafeBytes"), + 984: .same(proto: "withUnsafeMutableBytes"), + 985: .same(proto: "work"), + 986: .same(proto: "Wrapped"), + 987: .same(proto: "WrappedType"), + 988: .same(proto: "wrappedValue"), + 989: .same(proto: "written"), + 990: .same(proto: "yday"), ] } diff --git a/Reference/SwiftProtobufTests/generated_swift_names_enums.pb.swift b/Reference/SwiftProtobufTests/generated_swift_names_enums.pb.swift index 1f663d208..c3270d5d7 100644 --- a/Reference/SwiftProtobufTests/generated_swift_names_enums.pb.swift +++ b/Reference/SwiftProtobufTests/generated_swift_names_enums.pb.swift @@ -361,36 +361,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum anyTypeURLNotRegistered: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneAnyTypeUrlnotRegistered // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneAnyTypeUrlnotRegistered - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneAnyTypeUrlnotRegistered - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneAnyTypeUrlnotRegistered: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.anyTypeURLNotRegistered] = [ - .noneAnyTypeUrlnotRegistered, - ] - - } - enum AnyUnpackError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneAnyUnpackError // = 0 @@ -1321,36 +1291,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum BinaryEncoding: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneBinaryEncoding // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneBinaryEncoding - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneBinaryEncoding - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneBinaryEncoding: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryEncoding] = [ - .noneBinaryEncoding, - ] - - } - enum BinaryEncodingError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneBinaryEncodingError // = 0 @@ -16921,36 +16861,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum JSONEncoding: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneJsonencoding // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneJsonencoding - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneJsonencoding - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneJsonencoding: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONEncoding] = [ - .noneJsonencoding, - ] - - } - enum JSONEncodingError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneJsonencodingError // = 0 @@ -26941,36 +26851,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum unregisteredTypeURL: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneUnregisteredTypeURL // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneUnregisteredTypeURL - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneUnregisteredTypeURL - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneUnregisteredTypeURL: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unregisteredTypeURL] = [ - .noneUnregisteredTypeURL, - ] - - } - enum UnsafeBufferPointer: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneUnsafeBufferPointer // = 0 @@ -29943,12 +29823,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.AnyMessageStor ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.anyTypeURLNotRegistered: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_anyTypeURLNotRegistered"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.AnyUnpackError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_AnyUnpackError"), @@ -30135,12 +30009,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryEncoder: ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryEncoding: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_BinaryEncoding"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryEncodingError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_BinaryEncodingError"), @@ -33255,12 +33123,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.jsonEncoder: S ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONEncoding: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_JSONEncoding"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONEncodingError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_JSONEncodingError"), @@ -35259,12 +35121,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unpackTo: Swif ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unregisteredTypeURL: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_unregisteredTypeURL"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.UnsafeBufferPointer: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_UnsafeBufferPointer"), diff --git a/Reference/SwiftProtobufTests/generated_swift_names_fields.pb.swift b/Reference/SwiftProtobufTests/generated_swift_names_fields.pb.swift index d6d267e14..44bfed327 100644 --- a/Reference/SwiftProtobufTests/generated_swift_names_fields.pb.swift +++ b/Reference/SwiftProtobufTests/generated_swift_names_fields.pb.swift @@ -84,11 +84,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._anyMessageStorage = newValue} } - var anyTypeUrlnotRegistered: Int32 { - get {return _storage._anyTypeUrlnotRegistered} - set {_uniqueStorage()._anyTypeUrlnotRegistered = newValue} - } - var anyUnpackError: Int32 { get {return _storage._anyUnpackError} set {_uniqueStorage()._anyUnpackError = newValue} @@ -244,11 +239,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._binaryEncoder = newValue} } - var binaryEncoding: Int32 { - get {return _storage._binaryEncoding} - set {_uniqueStorage()._binaryEncoding = newValue} - } - var binaryEncodingError: Int32 { get {return _storage._binaryEncodingError} set {_uniqueStorage()._binaryEncodingError = newValue} @@ -2844,11 +2834,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._jsonEncoder = newValue} } - var jsonencoding: Int32 { - get {return _storage._jsonencoding} - set {_uniqueStorage()._jsonencoding = newValue} - } - var jsonencodingError: Int32 { get {return _storage._jsonencodingError} set {_uniqueStorage()._jsonencodingError = newValue} @@ -4514,11 +4499,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._unpackTo = newValue} } - var unregisteredTypeURL: Int32 { - get {return _storage._unregisteredTypeURL} - set {_uniqueStorage()._unregisteredTypeURL = newValue} - } - var unsafeBufferPointer: Int32 { get {return _storage._unsafeBufferPointer} set {_uniqueStorage()._unsafeBufferPointer = newValue} @@ -5024,989 +5004,985 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu 9: .same(proto: "AnyExtensionField"), 10: .same(proto: "AnyMessageExtension"), 11: .same(proto: "AnyMessageStorage"), - 12: .same(proto: "anyTypeURLNotRegistered"), - 13: .same(proto: "AnyUnpackError"), - 14: .same(proto: "Api"), - 15: .same(proto: "appended"), - 16: .same(proto: "appendUIntHex"), - 17: .same(proto: "appendUnknown"), - 18: .same(proto: "areAllInitialized"), - 19: .same(proto: "Array"), - 20: .same(proto: "arrayDepth"), - 21: .same(proto: "arrayLiteral"), - 22: .same(proto: "arraySeparator"), - 23: .same(proto: "as"), - 24: .same(proto: "asciiOpenCurlyBracket"), - 25: .same(proto: "asciiZero"), - 26: .same(proto: "async"), - 27: .same(proto: "AsyncIterator"), - 28: .same(proto: "AsyncIteratorProtocol"), - 29: .same(proto: "AsyncMessageSequence"), - 30: .same(proto: "available"), - 31: .same(proto: "b"), - 32: .same(proto: "Base"), - 33: .same(proto: "base64Values"), - 34: .same(proto: "baseAddress"), - 35: .same(proto: "BaseType"), - 36: .same(proto: "begin"), - 37: .same(proto: "binary"), - 38: .same(proto: "BinaryDecoder"), - 39: .same(proto: "BinaryDecoding"), - 40: .same(proto: "BinaryDecodingError"), - 41: .same(proto: "BinaryDecodingOptions"), - 42: .same(proto: "BinaryDelimited"), - 43: .same(proto: "BinaryEncoder"), - 44: .same(proto: "BinaryEncoding"), - 45: .same(proto: "BinaryEncodingError"), - 46: .same(proto: "BinaryEncodingMessageSetSizeVisitor"), - 47: .same(proto: "BinaryEncodingMessageSetVisitor"), - 48: .same(proto: "BinaryEncodingOptions"), - 49: .same(proto: "BinaryEncodingSizeVisitor"), - 50: .same(proto: "BinaryEncodingVisitor"), - 51: .same(proto: "binaryOptions"), - 52: .same(proto: "binaryProtobufDelimitedMessages"), - 53: .same(proto: "BinaryStreamDecoding"), - 54: .same(proto: "binaryStreamDecodingError"), - 55: .same(proto: "bitPattern"), - 56: .same(proto: "body"), - 57: .same(proto: "Bool"), - 58: .same(proto: "booleanLiteral"), - 59: .same(proto: "BooleanLiteralType"), - 60: .same(proto: "boolValue"), - 61: .same(proto: "buffer"), - 62: .same(proto: "bytes"), - 63: .same(proto: "bytesInGroup"), - 64: .same(proto: "bytesNeeded"), - 65: .same(proto: "bytesRead"), - 66: .same(proto: "BytesValue"), - 67: .same(proto: "c"), - 68: .same(proto: "capitalizeNext"), - 69: .same(proto: "cardinality"), - 70: .same(proto: "CaseIterable"), - 71: .same(proto: "ccEnableArenas"), - 72: .same(proto: "ccGenericServices"), - 73: .same(proto: "Character"), - 74: .same(proto: "chars"), - 75: .same(proto: "chunk"), - 76: .same(proto: "class"), - 77: .same(proto: "clearAggregateValue"), - 78: .same(proto: "clearAllowAlias"), - 79: .same(proto: "clearBegin"), - 80: .same(proto: "clearCcEnableArenas"), - 81: .same(proto: "clearCcGenericServices"), - 82: .same(proto: "clearClientStreaming"), - 83: .same(proto: "clearCsharpNamespace"), - 84: .same(proto: "clearCtype"), - 85: .same(proto: "clearDebugRedact"), - 86: .same(proto: "clearDefaultValue"), - 87: .same(proto: "clearDeprecated"), - 88: .same(proto: "clearDeprecatedLegacyJsonFieldConflicts"), - 89: .same(proto: "clearDeprecationWarning"), - 90: .same(proto: "clearDoubleValue"), - 91: .same(proto: "clearEdition"), - 92: .same(proto: "clearEditionDeprecated"), - 93: .same(proto: "clearEditionIntroduced"), - 94: .same(proto: "clearEditionRemoved"), - 95: .same(proto: "clearEnd"), - 96: .same(proto: "clearEnumType"), - 97: .same(proto: "clearExtendee"), - 98: .same(proto: "clearExtensionValue"), - 99: .same(proto: "clearFeatures"), - 100: .same(proto: "clearFeatureSupport"), - 101: .same(proto: "clearFieldPresence"), - 102: .same(proto: "clearFixedFeatures"), - 103: .same(proto: "clearFullName"), - 104: .same(proto: "clearGoPackage"), - 105: .same(proto: "clearIdempotencyLevel"), - 106: .same(proto: "clearIdentifierValue"), - 107: .same(proto: "clearInputType"), - 108: .same(proto: "clearIsExtension"), - 109: .same(proto: "clearJavaGenerateEqualsAndHash"), - 110: .same(proto: "clearJavaGenericServices"), - 111: .same(proto: "clearJavaMultipleFiles"), - 112: .same(proto: "clearJavaOuterClassname"), - 113: .same(proto: "clearJavaPackage"), - 114: .same(proto: "clearJavaStringCheckUtf8"), - 115: .same(proto: "clearJsonFormat"), - 116: .same(proto: "clearJsonName"), - 117: .same(proto: "clearJstype"), - 118: .same(proto: "clearLabel"), - 119: .same(proto: "clearLazy"), - 120: .same(proto: "clearLeadingComments"), - 121: .same(proto: "clearMapEntry"), - 122: .same(proto: "clearMaximumEdition"), - 123: .same(proto: "clearMessageEncoding"), - 124: .same(proto: "clearMessageSetWireFormat"), - 125: .same(proto: "clearMinimumEdition"), - 126: .same(proto: "clearName"), - 127: .same(proto: "clearNamePart"), - 128: .same(proto: "clearNegativeIntValue"), - 129: .same(proto: "clearNoStandardDescriptorAccessor"), - 130: .same(proto: "clearNumber"), - 131: .same(proto: "clearObjcClassPrefix"), - 132: .same(proto: "clearOneofIndex"), - 133: .same(proto: "clearOptimizeFor"), - 134: .same(proto: "clearOptions"), - 135: .same(proto: "clearOutputType"), - 136: .same(proto: "clearOverridableFeatures"), - 137: .same(proto: "clearPackage"), - 138: .same(proto: "clearPacked"), - 139: .same(proto: "clearPhpClassPrefix"), - 140: .same(proto: "clearPhpMetadataNamespace"), - 141: .same(proto: "clearPhpNamespace"), - 142: .same(proto: "clearPositiveIntValue"), - 143: .same(proto: "clearProto3Optional"), - 144: .same(proto: "clearPyGenericServices"), - 145: .same(proto: "clearRepeated"), - 146: .same(proto: "clearRepeatedFieldEncoding"), - 147: .same(proto: "clearReserved"), - 148: .same(proto: "clearRetention"), - 149: .same(proto: "clearRubyPackage"), - 150: .same(proto: "clearSemantic"), - 151: .same(proto: "clearServerStreaming"), - 152: .same(proto: "clearSourceCodeInfo"), - 153: .same(proto: "clearSourceContext"), - 154: .same(proto: "clearSourceFile"), - 155: .same(proto: "clearStart"), - 156: .same(proto: "clearStringValue"), - 157: .same(proto: "clearSwiftPrefix"), - 158: .same(proto: "clearSyntax"), - 159: .same(proto: "clearTrailingComments"), - 160: .same(proto: "clearType"), - 161: .same(proto: "clearTypeName"), - 162: .same(proto: "clearUnverifiedLazy"), - 163: .same(proto: "clearUtf8Validation"), - 164: .same(proto: "clearValue"), - 165: .same(proto: "clearVerification"), - 166: .same(proto: "clearWeak"), - 167: .same(proto: "clientStreaming"), - 168: .same(proto: "code"), - 169: .same(proto: "codePoint"), - 170: .same(proto: "codeUnits"), - 171: .same(proto: "Collection"), - 172: .same(proto: "com"), - 173: .same(proto: "comma"), - 174: .same(proto: "consumedBytes"), - 175: .same(proto: "contentsOf"), - 176: .same(proto: "copy"), - 177: .same(proto: "count"), - 178: .same(proto: "countVarintsInBuffer"), - 179: .same(proto: "csharpNamespace"), - 180: .same(proto: "ctype"), - 181: .same(proto: "customCodable"), - 182: .same(proto: "CustomDebugStringConvertible"), - 183: .same(proto: "CustomStringConvertible"), - 184: .same(proto: "d"), - 185: .same(proto: "Data"), - 186: .same(proto: "dataResult"), - 187: .same(proto: "date"), - 188: .same(proto: "daySec"), - 189: .same(proto: "daysSinceEpoch"), - 190: .same(proto: "debugDescription"), - 191: .same(proto: "debugRedact"), - 192: .same(proto: "declaration"), - 193: .same(proto: "decoded"), - 194: .same(proto: "decodedFromJSONNull"), - 195: .same(proto: "decodeExtensionField"), - 196: .same(proto: "decodeExtensionFieldsAsMessageSet"), - 197: .same(proto: "decodeJSON"), - 198: .same(proto: "decodeMapField"), - 199: .same(proto: "decodeMessage"), - 200: .same(proto: "decoder"), - 201: .same(proto: "decodeRepeated"), - 202: .same(proto: "decodeRepeatedBoolField"), - 203: .same(proto: "decodeRepeatedBytesField"), - 204: .same(proto: "decodeRepeatedDoubleField"), - 205: .same(proto: "decodeRepeatedEnumField"), - 206: .same(proto: "decodeRepeatedFixed32Field"), - 207: .same(proto: "decodeRepeatedFixed64Field"), - 208: .same(proto: "decodeRepeatedFloatField"), - 209: .same(proto: "decodeRepeatedGroupField"), - 210: .same(proto: "decodeRepeatedInt32Field"), - 211: .same(proto: "decodeRepeatedInt64Field"), - 212: .same(proto: "decodeRepeatedMessageField"), - 213: .same(proto: "decodeRepeatedSFixed32Field"), - 214: .same(proto: "decodeRepeatedSFixed64Field"), - 215: .same(proto: "decodeRepeatedSInt32Field"), - 216: .same(proto: "decodeRepeatedSInt64Field"), - 217: .same(proto: "decodeRepeatedStringField"), - 218: .same(proto: "decodeRepeatedUInt32Field"), - 219: .same(proto: "decodeRepeatedUInt64Field"), - 220: .same(proto: "decodeSingular"), - 221: .same(proto: "decodeSingularBoolField"), - 222: .same(proto: "decodeSingularBytesField"), - 223: .same(proto: "decodeSingularDoubleField"), - 224: .same(proto: "decodeSingularEnumField"), - 225: .same(proto: "decodeSingularFixed32Field"), - 226: .same(proto: "decodeSingularFixed64Field"), - 227: .same(proto: "decodeSingularFloatField"), - 228: .same(proto: "decodeSingularGroupField"), - 229: .same(proto: "decodeSingularInt32Field"), - 230: .same(proto: "decodeSingularInt64Field"), - 231: .same(proto: "decodeSingularMessageField"), - 232: .same(proto: "decodeSingularSFixed32Field"), - 233: .same(proto: "decodeSingularSFixed64Field"), - 234: .same(proto: "decodeSingularSInt32Field"), - 235: .same(proto: "decodeSingularSInt64Field"), - 236: .same(proto: "decodeSingularStringField"), - 237: .same(proto: "decodeSingularUInt32Field"), - 238: .same(proto: "decodeSingularUInt64Field"), - 239: .same(proto: "decodeTextFormat"), - 240: .same(proto: "defaultAnyTypeURLPrefix"), - 241: .same(proto: "defaults"), - 242: .same(proto: "defaultValue"), - 243: .same(proto: "dependency"), - 244: .same(proto: "deprecated"), - 245: .same(proto: "deprecatedLegacyJsonFieldConflicts"), - 246: .same(proto: "deprecationWarning"), - 247: .same(proto: "description"), - 248: .same(proto: "DescriptorProto"), - 249: .same(proto: "Dictionary"), - 250: .same(proto: "dictionaryLiteral"), - 251: .same(proto: "digit"), - 252: .same(proto: "digit0"), - 253: .same(proto: "digit1"), - 254: .same(proto: "digitCount"), - 255: .same(proto: "digits"), - 256: .same(proto: "digitValue"), - 257: .same(proto: "discardableResult"), - 258: .same(proto: "discardUnknownFields"), - 259: .same(proto: "Double"), - 260: .same(proto: "doubleValue"), - 261: .same(proto: "Duration"), - 262: .same(proto: "E"), - 263: .same(proto: "edition"), - 264: .same(proto: "EditionDefault"), - 265: .same(proto: "editionDefaults"), - 266: .same(proto: "editionDeprecated"), - 267: .same(proto: "editionIntroduced"), - 268: .same(proto: "editionRemoved"), - 269: .same(proto: "Element"), - 270: .same(proto: "elements"), - 271: .same(proto: "emitExtensionFieldName"), - 272: .same(proto: "emitFieldName"), - 273: .same(proto: "emitFieldNumber"), - 274: .same(proto: "Empty"), - 275: .same(proto: "encodeAsBytes"), - 276: .same(proto: "encoded"), - 277: .same(proto: "encodedJSONString"), - 278: .same(proto: "encodedSize"), - 279: .same(proto: "encodeField"), - 280: .same(proto: "encoder"), - 281: .same(proto: "end"), - 282: .same(proto: "endArray"), - 283: .same(proto: "endMessageField"), - 284: .same(proto: "endObject"), - 285: .same(proto: "endRegularField"), - 286: .same(proto: "enum"), - 287: .same(proto: "EnumDescriptorProto"), - 288: .same(proto: "EnumOptions"), - 289: .same(proto: "EnumReservedRange"), - 290: .same(proto: "enumType"), - 291: .same(proto: "enumvalue"), - 292: .same(proto: "EnumValueDescriptorProto"), - 293: .same(proto: "EnumValueOptions"), - 294: .same(proto: "Equatable"), - 295: .same(proto: "Error"), - 296: .same(proto: "ExpressibleByArrayLiteral"), - 297: .same(proto: "ExpressibleByDictionaryLiteral"), - 298: .same(proto: "ext"), - 299: .same(proto: "extDecoder"), - 300: .same(proto: "extendedGraphemeClusterLiteral"), - 301: .same(proto: "ExtendedGraphemeClusterLiteralType"), - 302: .same(proto: "extendee"), - 303: .same(proto: "ExtensibleMessage"), - 304: .same(proto: "extension"), - 305: .same(proto: "ExtensionField"), - 306: .same(proto: "extensionFieldNumber"), - 307: .same(proto: "ExtensionFieldValueSet"), - 308: .same(proto: "ExtensionMap"), - 309: .same(proto: "extensionRange"), - 310: .same(proto: "ExtensionRangeOptions"), - 311: .same(proto: "extensions"), - 312: .same(proto: "extras"), - 313: .same(proto: "F"), - 314: .same(proto: "false"), - 315: .same(proto: "features"), - 316: .same(proto: "FeatureSet"), - 317: .same(proto: "FeatureSetDefaults"), - 318: .same(proto: "FeatureSetEditionDefault"), - 319: .same(proto: "featureSupport"), - 320: .same(proto: "field"), - 321: .same(proto: "fieldData"), - 322: .same(proto: "FieldDescriptorProto"), - 323: .same(proto: "FieldMask"), - 324: .same(proto: "fieldName"), - 325: .same(proto: "fieldNameCount"), - 326: .same(proto: "fieldNum"), - 327: .same(proto: "fieldNumber"), - 328: .same(proto: "fieldNumberForProto"), - 329: .same(proto: "FieldOptions"), - 330: .same(proto: "fieldPresence"), - 331: .same(proto: "fields"), - 332: .same(proto: "fieldSize"), - 333: .same(proto: "FieldTag"), - 334: .same(proto: "fieldType"), - 335: .same(proto: "file"), - 336: .same(proto: "FileDescriptorProto"), - 337: .same(proto: "FileDescriptorSet"), - 338: .same(proto: "fileName"), - 339: .same(proto: "FileOptions"), - 340: .same(proto: "filter"), - 341: .same(proto: "final"), - 342: .same(proto: "finiteOnly"), - 343: .same(proto: "first"), - 344: .same(proto: "firstItem"), - 345: .same(proto: "fixedFeatures"), - 346: .same(proto: "Float"), - 347: .same(proto: "floatLiteral"), - 348: .same(proto: "FloatLiteralType"), - 349: .same(proto: "FloatValue"), - 350: .same(proto: "forMessageName"), - 351: .same(proto: "formUnion"), - 352: .same(proto: "forReadingFrom"), - 353: .same(proto: "forTypeURL"), - 354: .same(proto: "ForwardParser"), - 355: .same(proto: "forWritingInto"), - 356: .same(proto: "from"), - 357: .same(proto: "fromAscii2"), - 358: .same(proto: "fromAscii4"), - 359: .same(proto: "fromByteOffset"), - 360: .same(proto: "fromHexDigit"), - 361: .same(proto: "fullName"), - 362: .same(proto: "func"), - 363: .same(proto: "function"), - 364: .same(proto: "G"), - 365: .same(proto: "GeneratedCodeInfo"), - 366: .same(proto: "get"), - 367: .same(proto: "getExtensionValue"), - 368: .same(proto: "googleapis"), - 369: .standard(proto: "Google_Protobuf_Any"), - 370: .standard(proto: "Google_Protobuf_Api"), - 371: .standard(proto: "Google_Protobuf_BoolValue"), - 372: .standard(proto: "Google_Protobuf_BytesValue"), - 373: .standard(proto: "Google_Protobuf_DescriptorProto"), - 374: .standard(proto: "Google_Protobuf_DoubleValue"), - 375: .standard(proto: "Google_Protobuf_Duration"), - 376: .standard(proto: "Google_Protobuf_Edition"), - 377: .standard(proto: "Google_Protobuf_Empty"), - 378: .standard(proto: "Google_Protobuf_Enum"), - 379: .standard(proto: "Google_Protobuf_EnumDescriptorProto"), - 380: .standard(proto: "Google_Protobuf_EnumOptions"), - 381: .standard(proto: "Google_Protobuf_EnumValue"), - 382: .standard(proto: "Google_Protobuf_EnumValueDescriptorProto"), - 383: .standard(proto: "Google_Protobuf_EnumValueOptions"), - 384: .standard(proto: "Google_Protobuf_ExtensionRangeOptions"), - 385: .standard(proto: "Google_Protobuf_FeatureSet"), - 386: .standard(proto: "Google_Protobuf_FeatureSetDefaults"), - 387: .standard(proto: "Google_Protobuf_Field"), - 388: .standard(proto: "Google_Protobuf_FieldDescriptorProto"), - 389: .standard(proto: "Google_Protobuf_FieldMask"), - 390: .standard(proto: "Google_Protobuf_FieldOptions"), - 391: .standard(proto: "Google_Protobuf_FileDescriptorProto"), - 392: .standard(proto: "Google_Protobuf_FileDescriptorSet"), - 393: .standard(proto: "Google_Protobuf_FileOptions"), - 394: .standard(proto: "Google_Protobuf_FloatValue"), - 395: .standard(proto: "Google_Protobuf_GeneratedCodeInfo"), - 396: .standard(proto: "Google_Protobuf_Int32Value"), - 397: .standard(proto: "Google_Protobuf_Int64Value"), - 398: .standard(proto: "Google_Protobuf_ListValue"), - 399: .standard(proto: "Google_Protobuf_MessageOptions"), - 400: .standard(proto: "Google_Protobuf_Method"), - 401: .standard(proto: "Google_Protobuf_MethodDescriptorProto"), - 402: .standard(proto: "Google_Protobuf_MethodOptions"), - 403: .standard(proto: "Google_Protobuf_Mixin"), - 404: .standard(proto: "Google_Protobuf_NullValue"), - 405: .standard(proto: "Google_Protobuf_OneofDescriptorProto"), - 406: .standard(proto: "Google_Protobuf_OneofOptions"), - 407: .standard(proto: "Google_Protobuf_Option"), - 408: .standard(proto: "Google_Protobuf_ServiceDescriptorProto"), - 409: .standard(proto: "Google_Protobuf_ServiceOptions"), - 410: .standard(proto: "Google_Protobuf_SourceCodeInfo"), - 411: .standard(proto: "Google_Protobuf_SourceContext"), - 412: .standard(proto: "Google_Protobuf_StringValue"), - 413: .standard(proto: "Google_Protobuf_Struct"), - 414: .standard(proto: "Google_Protobuf_Syntax"), - 415: .standard(proto: "Google_Protobuf_Timestamp"), - 416: .standard(proto: "Google_Protobuf_Type"), - 417: .standard(proto: "Google_Protobuf_UInt32Value"), - 418: .standard(proto: "Google_Protobuf_UInt64Value"), - 419: .standard(proto: "Google_Protobuf_UninterpretedOption"), - 420: .standard(proto: "Google_Protobuf_Value"), - 421: .same(proto: "goPackage"), - 422: .same(proto: "group"), - 423: .same(proto: "groupFieldNumberStack"), - 424: .same(proto: "groupSize"), - 425: .same(proto: "hadOneofValue"), - 426: .same(proto: "handleConflictingOneOf"), - 427: .same(proto: "hasAggregateValue"), - 428: .same(proto: "hasAllowAlias"), - 429: .same(proto: "hasBegin"), - 430: .same(proto: "hasCcEnableArenas"), - 431: .same(proto: "hasCcGenericServices"), - 432: .same(proto: "hasClientStreaming"), - 433: .same(proto: "hasCsharpNamespace"), - 434: .same(proto: "hasCtype"), - 435: .same(proto: "hasDebugRedact"), - 436: .same(proto: "hasDefaultValue"), - 437: .same(proto: "hasDeprecated"), - 438: .same(proto: "hasDeprecatedLegacyJsonFieldConflicts"), - 439: .same(proto: "hasDeprecationWarning"), - 440: .same(proto: "hasDoubleValue"), - 441: .same(proto: "hasEdition"), - 442: .same(proto: "hasEditionDeprecated"), - 443: .same(proto: "hasEditionIntroduced"), - 444: .same(proto: "hasEditionRemoved"), - 445: .same(proto: "hasEnd"), - 446: .same(proto: "hasEnumType"), - 447: .same(proto: "hasExtendee"), - 448: .same(proto: "hasExtensionValue"), - 449: .same(proto: "hasFeatures"), - 450: .same(proto: "hasFeatureSupport"), - 451: .same(proto: "hasFieldPresence"), - 452: .same(proto: "hasFixedFeatures"), - 453: .same(proto: "hasFullName"), - 454: .same(proto: "hasGoPackage"), - 455: .same(proto: "hash"), - 456: .same(proto: "Hashable"), - 457: .same(proto: "hasher"), - 458: .same(proto: "HashVisitor"), - 459: .same(proto: "hasIdempotencyLevel"), - 460: .same(proto: "hasIdentifierValue"), - 461: .same(proto: "hasInputType"), - 462: .same(proto: "hasIsExtension"), - 463: .same(proto: "hasJavaGenerateEqualsAndHash"), - 464: .same(proto: "hasJavaGenericServices"), - 465: .same(proto: "hasJavaMultipleFiles"), - 466: .same(proto: "hasJavaOuterClassname"), - 467: .same(proto: "hasJavaPackage"), - 468: .same(proto: "hasJavaStringCheckUtf8"), - 469: .same(proto: "hasJsonFormat"), - 470: .same(proto: "hasJsonName"), - 471: .same(proto: "hasJstype"), - 472: .same(proto: "hasLabel"), - 473: .same(proto: "hasLazy"), - 474: .same(proto: "hasLeadingComments"), - 475: .same(proto: "hasMapEntry"), - 476: .same(proto: "hasMaximumEdition"), - 477: .same(proto: "hasMessageEncoding"), - 478: .same(proto: "hasMessageSetWireFormat"), - 479: .same(proto: "hasMinimumEdition"), - 480: .same(proto: "hasName"), - 481: .same(proto: "hasNamePart"), - 482: .same(proto: "hasNegativeIntValue"), - 483: .same(proto: "hasNoStandardDescriptorAccessor"), - 484: .same(proto: "hasNumber"), - 485: .same(proto: "hasObjcClassPrefix"), - 486: .same(proto: "hasOneofIndex"), - 487: .same(proto: "hasOptimizeFor"), - 488: .same(proto: "hasOptions"), - 489: .same(proto: "hasOutputType"), - 490: .same(proto: "hasOverridableFeatures"), - 491: .same(proto: "hasPackage"), - 492: .same(proto: "hasPacked"), - 493: .same(proto: "hasPhpClassPrefix"), - 494: .same(proto: "hasPhpMetadataNamespace"), - 495: .same(proto: "hasPhpNamespace"), - 496: .same(proto: "hasPositiveIntValue"), - 497: .same(proto: "hasProto3Optional"), - 498: .same(proto: "hasPyGenericServices"), - 499: .same(proto: "hasRepeated"), - 500: .same(proto: "hasRepeatedFieldEncoding"), - 501: .same(proto: "hasReserved"), - 502: .same(proto: "hasRetention"), - 503: .same(proto: "hasRubyPackage"), - 504: .same(proto: "hasSemantic"), - 505: .same(proto: "hasServerStreaming"), - 506: .same(proto: "hasSourceCodeInfo"), - 507: .same(proto: "hasSourceContext"), - 508: .same(proto: "hasSourceFile"), - 509: .same(proto: "hasStart"), - 510: .same(proto: "hasStringValue"), - 511: .same(proto: "hasSwiftPrefix"), - 512: .same(proto: "hasSyntax"), - 513: .same(proto: "hasTrailingComments"), - 514: .same(proto: "hasType"), - 515: .same(proto: "hasTypeName"), - 516: .same(proto: "hasUnverifiedLazy"), - 517: .same(proto: "hasUtf8Validation"), - 518: .same(proto: "hasValue"), - 519: .same(proto: "hasVerification"), - 520: .same(proto: "hasWeak"), - 521: .same(proto: "hour"), - 522: .same(proto: "i"), - 523: .same(proto: "idempotencyLevel"), - 524: .same(proto: "identifierValue"), - 525: .same(proto: "if"), - 526: .same(proto: "ignoreUnknownExtensionFields"), - 527: .same(proto: "ignoreUnknownFields"), - 528: .same(proto: "index"), - 529: .same(proto: "init"), - 530: .same(proto: "inout"), - 531: .same(proto: "inputType"), - 532: .same(proto: "insert"), - 533: .same(proto: "Int"), - 534: .same(proto: "Int32"), - 535: .same(proto: "Int32Value"), - 536: .same(proto: "Int64"), - 537: .same(proto: "Int64Value"), - 538: .same(proto: "Int8"), - 539: .same(proto: "integerLiteral"), - 540: .same(proto: "IntegerLiteralType"), - 541: .same(proto: "intern"), - 542: .same(proto: "Internal"), - 543: .same(proto: "InternalState"), - 544: .same(proto: "into"), - 545: .same(proto: "ints"), - 546: .same(proto: "isA"), - 547: .same(proto: "isEqual"), - 548: .same(proto: "isEqualTo"), - 549: .same(proto: "isExtension"), - 550: .same(proto: "isInitialized"), - 551: .same(proto: "isNegative"), - 552: .same(proto: "itemTagsEncodedSize"), - 553: .same(proto: "iterator"), - 554: .same(proto: "javaGenerateEqualsAndHash"), - 555: .same(proto: "javaGenericServices"), - 556: .same(proto: "javaMultipleFiles"), - 557: .same(proto: "javaOuterClassname"), - 558: .same(proto: "javaPackage"), - 559: .same(proto: "javaStringCheckUtf8"), - 560: .same(proto: "JSONDecoder"), - 561: .same(proto: "JSONDecodingError"), - 562: .same(proto: "JSONDecodingOptions"), - 563: .same(proto: "jsonEncoder"), - 564: .same(proto: "JSONEncoding"), - 565: .same(proto: "JSONEncodingError"), - 566: .same(proto: "JSONEncodingOptions"), - 567: .same(proto: "JSONEncodingVisitor"), - 568: .same(proto: "jsonFormat"), - 569: .same(proto: "JSONMapEncodingVisitor"), - 570: .same(proto: "jsonName"), - 571: .same(proto: "jsonPath"), - 572: .same(proto: "jsonPaths"), - 573: .same(proto: "JSONScanner"), - 574: .same(proto: "jsonString"), - 575: .same(proto: "jsonText"), - 576: .same(proto: "jsonUTF8Bytes"), - 577: .same(proto: "jsonUTF8Data"), - 578: .same(proto: "jstype"), - 579: .same(proto: "k"), - 580: .same(proto: "kChunkSize"), - 581: .same(proto: "Key"), - 582: .same(proto: "keyField"), - 583: .same(proto: "keyFieldOpt"), - 584: .same(proto: "KeyType"), - 585: .same(proto: "kind"), - 586: .same(proto: "l"), - 587: .same(proto: "label"), - 588: .same(proto: "lazy"), - 589: .same(proto: "leadingComments"), - 590: .same(proto: "leadingDetachedComments"), - 591: .same(proto: "length"), - 592: .same(proto: "lessThan"), - 593: .same(proto: "let"), - 594: .same(proto: "lhs"), - 595: .same(proto: "line"), - 596: .same(proto: "list"), - 597: .same(proto: "listOfMessages"), - 598: .same(proto: "listValue"), - 599: .same(proto: "littleEndian"), - 600: .same(proto: "load"), - 601: .same(proto: "localHasher"), - 602: .same(proto: "location"), - 603: .same(proto: "M"), - 604: .same(proto: "major"), - 605: .same(proto: "makeAsyncIterator"), - 606: .same(proto: "makeIterator"), - 607: .same(proto: "malformedLength"), - 608: .same(proto: "mapEntry"), - 609: .same(proto: "MapKeyType"), - 610: .same(proto: "mapToMessages"), - 611: .same(proto: "MapValueType"), - 612: .same(proto: "mapVisitor"), - 613: .same(proto: "maximumEdition"), - 614: .same(proto: "mdayStart"), - 615: .same(proto: "merge"), - 616: .same(proto: "message"), - 617: .same(proto: "messageDepthLimit"), - 618: .same(proto: "messageEncoding"), - 619: .same(proto: "MessageExtension"), - 620: .same(proto: "MessageImplementationBase"), - 621: .same(proto: "MessageOptions"), - 622: .same(proto: "MessageSet"), - 623: .same(proto: "messageSetWireFormat"), - 624: .same(proto: "messageSize"), - 625: .same(proto: "messageType"), - 626: .same(proto: "Method"), - 627: .same(proto: "MethodDescriptorProto"), - 628: .same(proto: "MethodOptions"), - 629: .same(proto: "methods"), - 630: .same(proto: "min"), - 631: .same(proto: "minimumEdition"), - 632: .same(proto: "minor"), - 633: .same(proto: "Mixin"), - 634: .same(proto: "mixins"), - 635: .same(proto: "modifier"), - 636: .same(proto: "modify"), - 637: .same(proto: "month"), - 638: .same(proto: "msgExtension"), - 639: .same(proto: "mutating"), - 640: .same(proto: "n"), - 641: .same(proto: "name"), - 642: .same(proto: "NameDescription"), - 643: .same(proto: "NameMap"), - 644: .same(proto: "NamePart"), - 645: .same(proto: "names"), - 646: .same(proto: "nanos"), - 647: .same(proto: "negativeIntValue"), - 648: .same(proto: "nestedType"), - 649: .same(proto: "newL"), - 650: .same(proto: "newList"), - 651: .same(proto: "newValue"), - 652: .same(proto: "next"), - 653: .same(proto: "nextByte"), - 654: .same(proto: "nextFieldNumber"), - 655: .same(proto: "nextVarInt"), - 656: .same(proto: "nil"), - 657: .same(proto: "nilLiteral"), - 658: .same(proto: "noBytesAvailable"), - 659: .same(proto: "noStandardDescriptorAccessor"), - 660: .same(proto: "nullValue"), - 661: .same(proto: "number"), - 662: .same(proto: "numberValue"), - 663: .same(proto: "objcClassPrefix"), - 664: .same(proto: "of"), - 665: .same(proto: "oneofDecl"), - 666: .same(proto: "OneofDescriptorProto"), - 667: .same(proto: "oneofIndex"), - 668: .same(proto: "OneofOptions"), - 669: .same(proto: "oneofs"), - 670: .standard(proto: "OneOf_Kind"), - 671: .same(proto: "optimizeFor"), - 672: .same(proto: "OptimizeMode"), - 673: .same(proto: "Option"), - 674: .same(proto: "OptionalEnumExtensionField"), - 675: .same(proto: "OptionalExtensionField"), - 676: .same(proto: "OptionalGroupExtensionField"), - 677: .same(proto: "OptionalMessageExtensionField"), - 678: .same(proto: "OptionRetention"), - 679: .same(proto: "options"), - 680: .same(proto: "OptionTargetType"), - 681: .same(proto: "other"), - 682: .same(proto: "others"), - 683: .same(proto: "out"), - 684: .same(proto: "outputType"), - 685: .same(proto: "overridableFeatures"), - 686: .same(proto: "p"), - 687: .same(proto: "package"), - 688: .same(proto: "packed"), - 689: .same(proto: "PackedEnumExtensionField"), - 690: .same(proto: "PackedExtensionField"), - 691: .same(proto: "padding"), - 692: .same(proto: "parent"), - 693: .same(proto: "parse"), - 694: .same(proto: "path"), - 695: .same(proto: "paths"), - 696: .same(proto: "payload"), - 697: .same(proto: "payloadSize"), - 698: .same(proto: "phpClassPrefix"), - 699: .same(proto: "phpMetadataNamespace"), - 700: .same(proto: "phpNamespace"), - 701: .same(proto: "pos"), - 702: .same(proto: "positiveIntValue"), - 703: .same(proto: "prefix"), - 704: .same(proto: "preserveProtoFieldNames"), - 705: .same(proto: "preTraverse"), - 706: .same(proto: "printUnknownFields"), - 707: .same(proto: "proto2"), - 708: .same(proto: "proto3DefaultValue"), - 709: .same(proto: "proto3Optional"), - 710: .same(proto: "ProtobufAPIVersionCheck"), - 711: .standard(proto: "ProtobufAPIVersion_3"), - 712: .same(proto: "ProtobufBool"), - 713: .same(proto: "ProtobufBytes"), - 714: .same(proto: "ProtobufDouble"), - 715: .same(proto: "ProtobufEnumMap"), - 716: .same(proto: "protobufExtension"), - 717: .same(proto: "ProtobufFixed32"), - 718: .same(proto: "ProtobufFixed64"), - 719: .same(proto: "ProtobufFloat"), - 720: .same(proto: "ProtobufInt32"), - 721: .same(proto: "ProtobufInt64"), - 722: .same(proto: "ProtobufMap"), - 723: .same(proto: "ProtobufMessageMap"), - 724: .same(proto: "ProtobufSFixed32"), - 725: .same(proto: "ProtobufSFixed64"), - 726: .same(proto: "ProtobufSInt32"), - 727: .same(proto: "ProtobufSInt64"), - 728: .same(proto: "ProtobufString"), - 729: .same(proto: "ProtobufUInt32"), - 730: .same(proto: "ProtobufUInt64"), - 731: .standard(proto: "protobuf_extensionFieldValues"), - 732: .standard(proto: "protobuf_fieldNumber"), - 733: .standard(proto: "protobuf_generated_isEqualTo"), - 734: .standard(proto: "protobuf_nameMap"), - 735: .standard(proto: "protobuf_newField"), - 736: .standard(proto: "protobuf_package"), - 737: .same(proto: "protocol"), - 738: .same(proto: "protoFieldName"), - 739: .same(proto: "protoMessageName"), - 740: .same(proto: "ProtoNameProviding"), - 741: .same(proto: "protoPaths"), - 742: .same(proto: "public"), - 743: .same(proto: "publicDependency"), - 744: .same(proto: "putBoolValue"), - 745: .same(proto: "putBytesValue"), - 746: .same(proto: "putDoubleValue"), - 747: .same(proto: "putEnumValue"), - 748: .same(proto: "putFixedUInt32"), - 749: .same(proto: "putFixedUInt64"), - 750: .same(proto: "putFloatValue"), - 751: .same(proto: "putInt64"), - 752: .same(proto: "putStringValue"), - 753: .same(proto: "putUInt64"), - 754: .same(proto: "putUInt64Hex"), - 755: .same(proto: "putVarInt"), - 756: .same(proto: "putZigZagVarInt"), - 757: .same(proto: "pyGenericServices"), - 758: .same(proto: "R"), - 759: .same(proto: "rawChars"), - 760: .same(proto: "RawRepresentable"), - 761: .same(proto: "RawValue"), - 762: .same(proto: "read4HexDigits"), - 763: .same(proto: "readBytes"), - 764: .same(proto: "register"), - 765: .same(proto: "repeated"), - 766: .same(proto: "RepeatedEnumExtensionField"), - 767: .same(proto: "RepeatedExtensionField"), - 768: .same(proto: "repeatedFieldEncoding"), - 769: .same(proto: "RepeatedGroupExtensionField"), - 770: .same(proto: "RepeatedMessageExtensionField"), - 771: .same(proto: "repeating"), - 772: .same(proto: "requestStreaming"), - 773: .same(proto: "requestTypeURL"), - 774: .same(proto: "requiredSize"), - 775: .same(proto: "responseStreaming"), - 776: .same(proto: "responseTypeURL"), - 777: .same(proto: "result"), - 778: .same(proto: "retention"), - 779: .same(proto: "rethrows"), - 780: .same(proto: "return"), - 781: .same(proto: "ReturnType"), - 782: .same(proto: "revision"), - 783: .same(proto: "rhs"), - 784: .same(proto: "root"), - 785: .same(proto: "rubyPackage"), - 786: .same(proto: "s"), - 787: .same(proto: "sawBackslash"), - 788: .same(proto: "sawSection4Characters"), - 789: .same(proto: "sawSection5Characters"), - 790: .same(proto: "scan"), - 791: .same(proto: "scanner"), - 792: .same(proto: "seconds"), - 793: .same(proto: "self"), - 794: .same(proto: "semantic"), - 795: .same(proto: "Sendable"), - 796: .same(proto: "separator"), - 797: .same(proto: "serialize"), - 798: .same(proto: "serializedBytes"), - 799: .same(proto: "serializedData"), - 800: .same(proto: "serializedSize"), - 801: .same(proto: "serverStreaming"), - 802: .same(proto: "service"), - 803: .same(proto: "ServiceDescriptorProto"), - 804: .same(proto: "ServiceOptions"), - 805: .same(proto: "set"), - 806: .same(proto: "setExtensionValue"), - 807: .same(proto: "shift"), - 808: .same(proto: "SimpleExtensionMap"), - 809: .same(proto: "size"), - 810: .same(proto: "sizer"), - 811: .same(proto: "source"), - 812: .same(proto: "sourceCodeInfo"), - 813: .same(proto: "sourceContext"), - 814: .same(proto: "sourceEncoding"), - 815: .same(proto: "sourceFile"), - 816: .same(proto: "SourceLocation"), - 817: .same(proto: "span"), - 818: .same(proto: "split"), - 819: .same(proto: "start"), - 820: .same(proto: "startArray"), - 821: .same(proto: "startArrayObject"), - 822: .same(proto: "startField"), - 823: .same(proto: "startIndex"), - 824: .same(proto: "startMessageField"), - 825: .same(proto: "startObject"), - 826: .same(proto: "startRegularField"), - 827: .same(proto: "state"), - 828: .same(proto: "static"), - 829: .same(proto: "StaticString"), - 830: .same(proto: "storage"), - 831: .same(proto: "String"), - 832: .same(proto: "stringLiteral"), - 833: .same(proto: "StringLiteralType"), - 834: .same(proto: "stringResult"), - 835: .same(proto: "stringValue"), - 836: .same(proto: "struct"), - 837: .same(proto: "structValue"), - 838: .same(proto: "subDecoder"), - 839: .same(proto: "subscript"), - 840: .same(proto: "subVisitor"), - 841: .same(proto: "Swift"), - 842: .same(proto: "swiftPrefix"), - 843: .same(proto: "SwiftProtobufContiguousBytes"), - 844: .same(proto: "SwiftProtobufError"), - 845: .same(proto: "syntax"), - 846: .same(proto: "T"), - 847: .same(proto: "tag"), - 848: .same(proto: "targets"), - 849: .same(proto: "terminator"), - 850: .same(proto: "testDecoder"), - 851: .same(proto: "text"), - 852: .same(proto: "textDecoder"), - 853: .same(proto: "TextFormatDecoder"), - 854: .same(proto: "TextFormatDecodingError"), - 855: .same(proto: "TextFormatDecodingOptions"), - 856: .same(proto: "TextFormatEncodingOptions"), - 857: .same(proto: "TextFormatEncodingVisitor"), - 858: .same(proto: "textFormatString"), - 859: .same(proto: "throwOrIgnore"), - 860: .same(proto: "throws"), - 861: .same(proto: "timeInterval"), - 862: .same(proto: "timeIntervalSince1970"), - 863: .same(proto: "timeIntervalSinceReferenceDate"), - 864: .same(proto: "Timestamp"), - 865: .same(proto: "tooLarge"), - 866: .same(proto: "total"), - 867: .same(proto: "totalArrayDepth"), - 868: .same(proto: "totalSize"), - 869: .same(proto: "trailingComments"), - 870: .same(proto: "traverse"), - 871: .same(proto: "true"), - 872: .same(proto: "try"), - 873: .same(proto: "type"), - 874: .same(proto: "typealias"), - 875: .same(proto: "TypeEnum"), - 876: .same(proto: "typeName"), - 877: .same(proto: "typePrefix"), - 878: .same(proto: "typeStart"), - 879: .same(proto: "typeUnknown"), - 880: .same(proto: "typeURL"), - 881: .same(proto: "UInt32"), - 882: .same(proto: "UInt32Value"), - 883: .same(proto: "UInt64"), - 884: .same(proto: "UInt64Value"), - 885: .same(proto: "UInt8"), - 886: .same(proto: "unchecked"), - 887: .same(proto: "unicodeScalarLiteral"), - 888: .same(proto: "UnicodeScalarLiteralType"), - 889: .same(proto: "unicodeScalars"), - 890: .same(proto: "UnicodeScalarView"), - 891: .same(proto: "uninterpretedOption"), - 892: .same(proto: "union"), - 893: .same(proto: "uniqueStorage"), - 894: .same(proto: "unknown"), - 895: .same(proto: "unknownFields"), - 896: .same(proto: "UnknownStorage"), - 897: .same(proto: "unpackTo"), - 898: .same(proto: "unregisteredTypeURL"), - 899: .same(proto: "UnsafeBufferPointer"), - 900: .same(proto: "UnsafeMutablePointer"), - 901: .same(proto: "UnsafeMutableRawBufferPointer"), - 902: .same(proto: "UnsafeRawBufferPointer"), - 903: .same(proto: "UnsafeRawPointer"), - 904: .same(proto: "unverifiedLazy"), - 905: .same(proto: "updatedOptions"), - 906: .same(proto: "url"), - 907: .same(proto: "useDeterministicOrdering"), - 908: .same(proto: "utf8"), - 909: .same(proto: "utf8Ptr"), - 910: .same(proto: "utf8ToDouble"), - 911: .same(proto: "utf8Validation"), - 912: .same(proto: "UTF8View"), - 913: .same(proto: "v"), - 914: .same(proto: "value"), - 915: .same(proto: "valueField"), - 916: .same(proto: "values"), - 917: .same(proto: "ValueType"), - 918: .same(proto: "var"), - 919: .same(proto: "verification"), - 920: .same(proto: "VerificationState"), - 921: .same(proto: "Version"), - 922: .same(proto: "versionString"), - 923: .same(proto: "visitExtensionFields"), - 924: .same(proto: "visitExtensionFieldsAsMessageSet"), - 925: .same(proto: "visitMapField"), - 926: .same(proto: "visitor"), - 927: .same(proto: "visitPacked"), - 928: .same(proto: "visitPackedBoolField"), - 929: .same(proto: "visitPackedDoubleField"), - 930: .same(proto: "visitPackedEnumField"), - 931: .same(proto: "visitPackedFixed32Field"), - 932: .same(proto: "visitPackedFixed64Field"), - 933: .same(proto: "visitPackedFloatField"), - 934: .same(proto: "visitPackedInt32Field"), - 935: .same(proto: "visitPackedInt64Field"), - 936: .same(proto: "visitPackedSFixed32Field"), - 937: .same(proto: "visitPackedSFixed64Field"), - 938: .same(proto: "visitPackedSInt32Field"), - 939: .same(proto: "visitPackedSInt64Field"), - 940: .same(proto: "visitPackedUInt32Field"), - 941: .same(proto: "visitPackedUInt64Field"), - 942: .same(proto: "visitRepeated"), - 943: .same(proto: "visitRepeatedBoolField"), - 944: .same(proto: "visitRepeatedBytesField"), - 945: .same(proto: "visitRepeatedDoubleField"), - 946: .same(proto: "visitRepeatedEnumField"), - 947: .same(proto: "visitRepeatedFixed32Field"), - 948: .same(proto: "visitRepeatedFixed64Field"), - 949: .same(proto: "visitRepeatedFloatField"), - 950: .same(proto: "visitRepeatedGroupField"), - 951: .same(proto: "visitRepeatedInt32Field"), - 952: .same(proto: "visitRepeatedInt64Field"), - 953: .same(proto: "visitRepeatedMessageField"), - 954: .same(proto: "visitRepeatedSFixed32Field"), - 955: .same(proto: "visitRepeatedSFixed64Field"), - 956: .same(proto: "visitRepeatedSInt32Field"), - 957: .same(proto: "visitRepeatedSInt64Field"), - 958: .same(proto: "visitRepeatedStringField"), - 959: .same(proto: "visitRepeatedUInt32Field"), - 960: .same(proto: "visitRepeatedUInt64Field"), - 961: .same(proto: "visitSingular"), - 962: .same(proto: "visitSingularBoolField"), - 963: .same(proto: "visitSingularBytesField"), - 964: .same(proto: "visitSingularDoubleField"), - 965: .same(proto: "visitSingularEnumField"), - 966: .same(proto: "visitSingularFixed32Field"), - 967: .same(proto: "visitSingularFixed64Field"), - 968: .same(proto: "visitSingularFloatField"), - 969: .same(proto: "visitSingularGroupField"), - 970: .same(proto: "visitSingularInt32Field"), - 971: .same(proto: "visitSingularInt64Field"), - 972: .same(proto: "visitSingularMessageField"), - 973: .same(proto: "visitSingularSFixed32Field"), - 974: .same(proto: "visitSingularSFixed64Field"), - 975: .same(proto: "visitSingularSInt32Field"), - 976: .same(proto: "visitSingularSInt64Field"), - 977: .same(proto: "visitSingularStringField"), - 978: .same(proto: "visitSingularUInt32Field"), - 979: .same(proto: "visitSingularUInt64Field"), - 980: .same(proto: "visitUnknown"), - 981: .same(proto: "wasDecoded"), - 982: .same(proto: "weak"), - 983: .same(proto: "weakDependency"), - 984: .same(proto: "where"), - 985: .same(proto: "wireFormat"), - 986: .same(proto: "with"), - 987: .same(proto: "withUnsafeBytes"), - 988: .same(proto: "withUnsafeMutableBytes"), - 989: .same(proto: "work"), - 990: .same(proto: "Wrapped"), - 991: .same(proto: "WrappedType"), - 992: .same(proto: "wrappedValue"), - 993: .same(proto: "written"), - 994: .same(proto: "yday"), + 12: .same(proto: "AnyUnpackError"), + 13: .same(proto: "Api"), + 14: .same(proto: "appended"), + 15: .same(proto: "appendUIntHex"), + 16: .same(proto: "appendUnknown"), + 17: .same(proto: "areAllInitialized"), + 18: .same(proto: "Array"), + 19: .same(proto: "arrayDepth"), + 20: .same(proto: "arrayLiteral"), + 21: .same(proto: "arraySeparator"), + 22: .same(proto: "as"), + 23: .same(proto: "asciiOpenCurlyBracket"), + 24: .same(proto: "asciiZero"), + 25: .same(proto: "async"), + 26: .same(proto: "AsyncIterator"), + 27: .same(proto: "AsyncIteratorProtocol"), + 28: .same(proto: "AsyncMessageSequence"), + 29: .same(proto: "available"), + 30: .same(proto: "b"), + 31: .same(proto: "Base"), + 32: .same(proto: "base64Values"), + 33: .same(proto: "baseAddress"), + 34: .same(proto: "BaseType"), + 35: .same(proto: "begin"), + 36: .same(proto: "binary"), + 37: .same(proto: "BinaryDecoder"), + 38: .same(proto: "BinaryDecoding"), + 39: .same(proto: "BinaryDecodingError"), + 40: .same(proto: "BinaryDecodingOptions"), + 41: .same(proto: "BinaryDelimited"), + 42: .same(proto: "BinaryEncoder"), + 43: .same(proto: "BinaryEncodingError"), + 44: .same(proto: "BinaryEncodingMessageSetSizeVisitor"), + 45: .same(proto: "BinaryEncodingMessageSetVisitor"), + 46: .same(proto: "BinaryEncodingOptions"), + 47: .same(proto: "BinaryEncodingSizeVisitor"), + 48: .same(proto: "BinaryEncodingVisitor"), + 49: .same(proto: "binaryOptions"), + 50: .same(proto: "binaryProtobufDelimitedMessages"), + 51: .same(proto: "BinaryStreamDecoding"), + 52: .same(proto: "binaryStreamDecodingError"), + 53: .same(proto: "bitPattern"), + 54: .same(proto: "body"), + 55: .same(proto: "Bool"), + 56: .same(proto: "booleanLiteral"), + 57: .same(proto: "BooleanLiteralType"), + 58: .same(proto: "boolValue"), + 59: .same(proto: "buffer"), + 60: .same(proto: "bytes"), + 61: .same(proto: "bytesInGroup"), + 62: .same(proto: "bytesNeeded"), + 63: .same(proto: "bytesRead"), + 64: .same(proto: "BytesValue"), + 65: .same(proto: "c"), + 66: .same(proto: "capitalizeNext"), + 67: .same(proto: "cardinality"), + 68: .same(proto: "CaseIterable"), + 69: .same(proto: "ccEnableArenas"), + 70: .same(proto: "ccGenericServices"), + 71: .same(proto: "Character"), + 72: .same(proto: "chars"), + 73: .same(proto: "chunk"), + 74: .same(proto: "class"), + 75: .same(proto: "clearAggregateValue"), + 76: .same(proto: "clearAllowAlias"), + 77: .same(proto: "clearBegin"), + 78: .same(proto: "clearCcEnableArenas"), + 79: .same(proto: "clearCcGenericServices"), + 80: .same(proto: "clearClientStreaming"), + 81: .same(proto: "clearCsharpNamespace"), + 82: .same(proto: "clearCtype"), + 83: .same(proto: "clearDebugRedact"), + 84: .same(proto: "clearDefaultValue"), + 85: .same(proto: "clearDeprecated"), + 86: .same(proto: "clearDeprecatedLegacyJsonFieldConflicts"), + 87: .same(proto: "clearDeprecationWarning"), + 88: .same(proto: "clearDoubleValue"), + 89: .same(proto: "clearEdition"), + 90: .same(proto: "clearEditionDeprecated"), + 91: .same(proto: "clearEditionIntroduced"), + 92: .same(proto: "clearEditionRemoved"), + 93: .same(proto: "clearEnd"), + 94: .same(proto: "clearEnumType"), + 95: .same(proto: "clearExtendee"), + 96: .same(proto: "clearExtensionValue"), + 97: .same(proto: "clearFeatures"), + 98: .same(proto: "clearFeatureSupport"), + 99: .same(proto: "clearFieldPresence"), + 100: .same(proto: "clearFixedFeatures"), + 101: .same(proto: "clearFullName"), + 102: .same(proto: "clearGoPackage"), + 103: .same(proto: "clearIdempotencyLevel"), + 104: .same(proto: "clearIdentifierValue"), + 105: .same(proto: "clearInputType"), + 106: .same(proto: "clearIsExtension"), + 107: .same(proto: "clearJavaGenerateEqualsAndHash"), + 108: .same(proto: "clearJavaGenericServices"), + 109: .same(proto: "clearJavaMultipleFiles"), + 110: .same(proto: "clearJavaOuterClassname"), + 111: .same(proto: "clearJavaPackage"), + 112: .same(proto: "clearJavaStringCheckUtf8"), + 113: .same(proto: "clearJsonFormat"), + 114: .same(proto: "clearJsonName"), + 115: .same(proto: "clearJstype"), + 116: .same(proto: "clearLabel"), + 117: .same(proto: "clearLazy"), + 118: .same(proto: "clearLeadingComments"), + 119: .same(proto: "clearMapEntry"), + 120: .same(proto: "clearMaximumEdition"), + 121: .same(proto: "clearMessageEncoding"), + 122: .same(proto: "clearMessageSetWireFormat"), + 123: .same(proto: "clearMinimumEdition"), + 124: .same(proto: "clearName"), + 125: .same(proto: "clearNamePart"), + 126: .same(proto: "clearNegativeIntValue"), + 127: .same(proto: "clearNoStandardDescriptorAccessor"), + 128: .same(proto: "clearNumber"), + 129: .same(proto: "clearObjcClassPrefix"), + 130: .same(proto: "clearOneofIndex"), + 131: .same(proto: "clearOptimizeFor"), + 132: .same(proto: "clearOptions"), + 133: .same(proto: "clearOutputType"), + 134: .same(proto: "clearOverridableFeatures"), + 135: .same(proto: "clearPackage"), + 136: .same(proto: "clearPacked"), + 137: .same(proto: "clearPhpClassPrefix"), + 138: .same(proto: "clearPhpMetadataNamespace"), + 139: .same(proto: "clearPhpNamespace"), + 140: .same(proto: "clearPositiveIntValue"), + 141: .same(proto: "clearProto3Optional"), + 142: .same(proto: "clearPyGenericServices"), + 143: .same(proto: "clearRepeated"), + 144: .same(proto: "clearRepeatedFieldEncoding"), + 145: .same(proto: "clearReserved"), + 146: .same(proto: "clearRetention"), + 147: .same(proto: "clearRubyPackage"), + 148: .same(proto: "clearSemantic"), + 149: .same(proto: "clearServerStreaming"), + 150: .same(proto: "clearSourceCodeInfo"), + 151: .same(proto: "clearSourceContext"), + 152: .same(proto: "clearSourceFile"), + 153: .same(proto: "clearStart"), + 154: .same(proto: "clearStringValue"), + 155: .same(proto: "clearSwiftPrefix"), + 156: .same(proto: "clearSyntax"), + 157: .same(proto: "clearTrailingComments"), + 158: .same(proto: "clearType"), + 159: .same(proto: "clearTypeName"), + 160: .same(proto: "clearUnverifiedLazy"), + 161: .same(proto: "clearUtf8Validation"), + 162: .same(proto: "clearValue"), + 163: .same(proto: "clearVerification"), + 164: .same(proto: "clearWeak"), + 165: .same(proto: "clientStreaming"), + 166: .same(proto: "code"), + 167: .same(proto: "codePoint"), + 168: .same(proto: "codeUnits"), + 169: .same(proto: "Collection"), + 170: .same(proto: "com"), + 171: .same(proto: "comma"), + 172: .same(proto: "consumedBytes"), + 173: .same(proto: "contentsOf"), + 174: .same(proto: "copy"), + 175: .same(proto: "count"), + 176: .same(proto: "countVarintsInBuffer"), + 177: .same(proto: "csharpNamespace"), + 178: .same(proto: "ctype"), + 179: .same(proto: "customCodable"), + 180: .same(proto: "CustomDebugStringConvertible"), + 181: .same(proto: "CustomStringConvertible"), + 182: .same(proto: "d"), + 183: .same(proto: "Data"), + 184: .same(proto: "dataResult"), + 185: .same(proto: "date"), + 186: .same(proto: "daySec"), + 187: .same(proto: "daysSinceEpoch"), + 188: .same(proto: "debugDescription"), + 189: .same(proto: "debugRedact"), + 190: .same(proto: "declaration"), + 191: .same(proto: "decoded"), + 192: .same(proto: "decodedFromJSONNull"), + 193: .same(proto: "decodeExtensionField"), + 194: .same(proto: "decodeExtensionFieldsAsMessageSet"), + 195: .same(proto: "decodeJSON"), + 196: .same(proto: "decodeMapField"), + 197: .same(proto: "decodeMessage"), + 198: .same(proto: "decoder"), + 199: .same(proto: "decodeRepeated"), + 200: .same(proto: "decodeRepeatedBoolField"), + 201: .same(proto: "decodeRepeatedBytesField"), + 202: .same(proto: "decodeRepeatedDoubleField"), + 203: .same(proto: "decodeRepeatedEnumField"), + 204: .same(proto: "decodeRepeatedFixed32Field"), + 205: .same(proto: "decodeRepeatedFixed64Field"), + 206: .same(proto: "decodeRepeatedFloatField"), + 207: .same(proto: "decodeRepeatedGroupField"), + 208: .same(proto: "decodeRepeatedInt32Field"), + 209: .same(proto: "decodeRepeatedInt64Field"), + 210: .same(proto: "decodeRepeatedMessageField"), + 211: .same(proto: "decodeRepeatedSFixed32Field"), + 212: .same(proto: "decodeRepeatedSFixed64Field"), + 213: .same(proto: "decodeRepeatedSInt32Field"), + 214: .same(proto: "decodeRepeatedSInt64Field"), + 215: .same(proto: "decodeRepeatedStringField"), + 216: .same(proto: "decodeRepeatedUInt32Field"), + 217: .same(proto: "decodeRepeatedUInt64Field"), + 218: .same(proto: "decodeSingular"), + 219: .same(proto: "decodeSingularBoolField"), + 220: .same(proto: "decodeSingularBytesField"), + 221: .same(proto: "decodeSingularDoubleField"), + 222: .same(proto: "decodeSingularEnumField"), + 223: .same(proto: "decodeSingularFixed32Field"), + 224: .same(proto: "decodeSingularFixed64Field"), + 225: .same(proto: "decodeSingularFloatField"), + 226: .same(proto: "decodeSingularGroupField"), + 227: .same(proto: "decodeSingularInt32Field"), + 228: .same(proto: "decodeSingularInt64Field"), + 229: .same(proto: "decodeSingularMessageField"), + 230: .same(proto: "decodeSingularSFixed32Field"), + 231: .same(proto: "decodeSingularSFixed64Field"), + 232: .same(proto: "decodeSingularSInt32Field"), + 233: .same(proto: "decodeSingularSInt64Field"), + 234: .same(proto: "decodeSingularStringField"), + 235: .same(proto: "decodeSingularUInt32Field"), + 236: .same(proto: "decodeSingularUInt64Field"), + 237: .same(proto: "decodeTextFormat"), + 238: .same(proto: "defaultAnyTypeURLPrefix"), + 239: .same(proto: "defaults"), + 240: .same(proto: "defaultValue"), + 241: .same(proto: "dependency"), + 242: .same(proto: "deprecated"), + 243: .same(proto: "deprecatedLegacyJsonFieldConflicts"), + 244: .same(proto: "deprecationWarning"), + 245: .same(proto: "description"), + 246: .same(proto: "DescriptorProto"), + 247: .same(proto: "Dictionary"), + 248: .same(proto: "dictionaryLiteral"), + 249: .same(proto: "digit"), + 250: .same(proto: "digit0"), + 251: .same(proto: "digit1"), + 252: .same(proto: "digitCount"), + 253: .same(proto: "digits"), + 254: .same(proto: "digitValue"), + 255: .same(proto: "discardableResult"), + 256: .same(proto: "discardUnknownFields"), + 257: .same(proto: "Double"), + 258: .same(proto: "doubleValue"), + 259: .same(proto: "Duration"), + 260: .same(proto: "E"), + 261: .same(proto: "edition"), + 262: .same(proto: "EditionDefault"), + 263: .same(proto: "editionDefaults"), + 264: .same(proto: "editionDeprecated"), + 265: .same(proto: "editionIntroduced"), + 266: .same(proto: "editionRemoved"), + 267: .same(proto: "Element"), + 268: .same(proto: "elements"), + 269: .same(proto: "emitExtensionFieldName"), + 270: .same(proto: "emitFieldName"), + 271: .same(proto: "emitFieldNumber"), + 272: .same(proto: "Empty"), + 273: .same(proto: "encodeAsBytes"), + 274: .same(proto: "encoded"), + 275: .same(proto: "encodedJSONString"), + 276: .same(proto: "encodedSize"), + 277: .same(proto: "encodeField"), + 278: .same(proto: "encoder"), + 279: .same(proto: "end"), + 280: .same(proto: "endArray"), + 281: .same(proto: "endMessageField"), + 282: .same(proto: "endObject"), + 283: .same(proto: "endRegularField"), + 284: .same(proto: "enum"), + 285: .same(proto: "EnumDescriptorProto"), + 286: .same(proto: "EnumOptions"), + 287: .same(proto: "EnumReservedRange"), + 288: .same(proto: "enumType"), + 289: .same(proto: "enumvalue"), + 290: .same(proto: "EnumValueDescriptorProto"), + 291: .same(proto: "EnumValueOptions"), + 292: .same(proto: "Equatable"), + 293: .same(proto: "Error"), + 294: .same(proto: "ExpressibleByArrayLiteral"), + 295: .same(proto: "ExpressibleByDictionaryLiteral"), + 296: .same(proto: "ext"), + 297: .same(proto: "extDecoder"), + 298: .same(proto: "extendedGraphemeClusterLiteral"), + 299: .same(proto: "ExtendedGraphemeClusterLiteralType"), + 300: .same(proto: "extendee"), + 301: .same(proto: "ExtensibleMessage"), + 302: .same(proto: "extension"), + 303: .same(proto: "ExtensionField"), + 304: .same(proto: "extensionFieldNumber"), + 305: .same(proto: "ExtensionFieldValueSet"), + 306: .same(proto: "ExtensionMap"), + 307: .same(proto: "extensionRange"), + 308: .same(proto: "ExtensionRangeOptions"), + 309: .same(proto: "extensions"), + 310: .same(proto: "extras"), + 311: .same(proto: "F"), + 312: .same(proto: "false"), + 313: .same(proto: "features"), + 314: .same(proto: "FeatureSet"), + 315: .same(proto: "FeatureSetDefaults"), + 316: .same(proto: "FeatureSetEditionDefault"), + 317: .same(proto: "featureSupport"), + 318: .same(proto: "field"), + 319: .same(proto: "fieldData"), + 320: .same(proto: "FieldDescriptorProto"), + 321: .same(proto: "FieldMask"), + 322: .same(proto: "fieldName"), + 323: .same(proto: "fieldNameCount"), + 324: .same(proto: "fieldNum"), + 325: .same(proto: "fieldNumber"), + 326: .same(proto: "fieldNumberForProto"), + 327: .same(proto: "FieldOptions"), + 328: .same(proto: "fieldPresence"), + 329: .same(proto: "fields"), + 330: .same(proto: "fieldSize"), + 331: .same(proto: "FieldTag"), + 332: .same(proto: "fieldType"), + 333: .same(proto: "file"), + 334: .same(proto: "FileDescriptorProto"), + 335: .same(proto: "FileDescriptorSet"), + 336: .same(proto: "fileName"), + 337: .same(proto: "FileOptions"), + 338: .same(proto: "filter"), + 339: .same(proto: "final"), + 340: .same(proto: "finiteOnly"), + 341: .same(proto: "first"), + 342: .same(proto: "firstItem"), + 343: .same(proto: "fixedFeatures"), + 344: .same(proto: "Float"), + 345: .same(proto: "floatLiteral"), + 346: .same(proto: "FloatLiteralType"), + 347: .same(proto: "FloatValue"), + 348: .same(proto: "forMessageName"), + 349: .same(proto: "formUnion"), + 350: .same(proto: "forReadingFrom"), + 351: .same(proto: "forTypeURL"), + 352: .same(proto: "ForwardParser"), + 353: .same(proto: "forWritingInto"), + 354: .same(proto: "from"), + 355: .same(proto: "fromAscii2"), + 356: .same(proto: "fromAscii4"), + 357: .same(proto: "fromByteOffset"), + 358: .same(proto: "fromHexDigit"), + 359: .same(proto: "fullName"), + 360: .same(proto: "func"), + 361: .same(proto: "function"), + 362: .same(proto: "G"), + 363: .same(proto: "GeneratedCodeInfo"), + 364: .same(proto: "get"), + 365: .same(proto: "getExtensionValue"), + 366: .same(proto: "googleapis"), + 367: .standard(proto: "Google_Protobuf_Any"), + 368: .standard(proto: "Google_Protobuf_Api"), + 369: .standard(proto: "Google_Protobuf_BoolValue"), + 370: .standard(proto: "Google_Protobuf_BytesValue"), + 371: .standard(proto: "Google_Protobuf_DescriptorProto"), + 372: .standard(proto: "Google_Protobuf_DoubleValue"), + 373: .standard(proto: "Google_Protobuf_Duration"), + 374: .standard(proto: "Google_Protobuf_Edition"), + 375: .standard(proto: "Google_Protobuf_Empty"), + 376: .standard(proto: "Google_Protobuf_Enum"), + 377: .standard(proto: "Google_Protobuf_EnumDescriptorProto"), + 378: .standard(proto: "Google_Protobuf_EnumOptions"), + 379: .standard(proto: "Google_Protobuf_EnumValue"), + 380: .standard(proto: "Google_Protobuf_EnumValueDescriptorProto"), + 381: .standard(proto: "Google_Protobuf_EnumValueOptions"), + 382: .standard(proto: "Google_Protobuf_ExtensionRangeOptions"), + 383: .standard(proto: "Google_Protobuf_FeatureSet"), + 384: .standard(proto: "Google_Protobuf_FeatureSetDefaults"), + 385: .standard(proto: "Google_Protobuf_Field"), + 386: .standard(proto: "Google_Protobuf_FieldDescriptorProto"), + 387: .standard(proto: "Google_Protobuf_FieldMask"), + 388: .standard(proto: "Google_Protobuf_FieldOptions"), + 389: .standard(proto: "Google_Protobuf_FileDescriptorProto"), + 390: .standard(proto: "Google_Protobuf_FileDescriptorSet"), + 391: .standard(proto: "Google_Protobuf_FileOptions"), + 392: .standard(proto: "Google_Protobuf_FloatValue"), + 393: .standard(proto: "Google_Protobuf_GeneratedCodeInfo"), + 394: .standard(proto: "Google_Protobuf_Int32Value"), + 395: .standard(proto: "Google_Protobuf_Int64Value"), + 396: .standard(proto: "Google_Protobuf_ListValue"), + 397: .standard(proto: "Google_Protobuf_MessageOptions"), + 398: .standard(proto: "Google_Protobuf_Method"), + 399: .standard(proto: "Google_Protobuf_MethodDescriptorProto"), + 400: .standard(proto: "Google_Protobuf_MethodOptions"), + 401: .standard(proto: "Google_Protobuf_Mixin"), + 402: .standard(proto: "Google_Protobuf_NullValue"), + 403: .standard(proto: "Google_Protobuf_OneofDescriptorProto"), + 404: .standard(proto: "Google_Protobuf_OneofOptions"), + 405: .standard(proto: "Google_Protobuf_Option"), + 406: .standard(proto: "Google_Protobuf_ServiceDescriptorProto"), + 407: .standard(proto: "Google_Protobuf_ServiceOptions"), + 408: .standard(proto: "Google_Protobuf_SourceCodeInfo"), + 409: .standard(proto: "Google_Protobuf_SourceContext"), + 410: .standard(proto: "Google_Protobuf_StringValue"), + 411: .standard(proto: "Google_Protobuf_Struct"), + 412: .standard(proto: "Google_Protobuf_Syntax"), + 413: .standard(proto: "Google_Protobuf_Timestamp"), + 414: .standard(proto: "Google_Protobuf_Type"), + 415: .standard(proto: "Google_Protobuf_UInt32Value"), + 416: .standard(proto: "Google_Protobuf_UInt64Value"), + 417: .standard(proto: "Google_Protobuf_UninterpretedOption"), + 418: .standard(proto: "Google_Protobuf_Value"), + 419: .same(proto: "goPackage"), + 420: .same(proto: "group"), + 421: .same(proto: "groupFieldNumberStack"), + 422: .same(proto: "groupSize"), + 423: .same(proto: "hadOneofValue"), + 424: .same(proto: "handleConflictingOneOf"), + 425: .same(proto: "hasAggregateValue"), + 426: .same(proto: "hasAllowAlias"), + 427: .same(proto: "hasBegin"), + 428: .same(proto: "hasCcEnableArenas"), + 429: .same(proto: "hasCcGenericServices"), + 430: .same(proto: "hasClientStreaming"), + 431: .same(proto: "hasCsharpNamespace"), + 432: .same(proto: "hasCtype"), + 433: .same(proto: "hasDebugRedact"), + 434: .same(proto: "hasDefaultValue"), + 435: .same(proto: "hasDeprecated"), + 436: .same(proto: "hasDeprecatedLegacyJsonFieldConflicts"), + 437: .same(proto: "hasDeprecationWarning"), + 438: .same(proto: "hasDoubleValue"), + 439: .same(proto: "hasEdition"), + 440: .same(proto: "hasEditionDeprecated"), + 441: .same(proto: "hasEditionIntroduced"), + 442: .same(proto: "hasEditionRemoved"), + 443: .same(proto: "hasEnd"), + 444: .same(proto: "hasEnumType"), + 445: .same(proto: "hasExtendee"), + 446: .same(proto: "hasExtensionValue"), + 447: .same(proto: "hasFeatures"), + 448: .same(proto: "hasFeatureSupport"), + 449: .same(proto: "hasFieldPresence"), + 450: .same(proto: "hasFixedFeatures"), + 451: .same(proto: "hasFullName"), + 452: .same(proto: "hasGoPackage"), + 453: .same(proto: "hash"), + 454: .same(proto: "Hashable"), + 455: .same(proto: "hasher"), + 456: .same(proto: "HashVisitor"), + 457: .same(proto: "hasIdempotencyLevel"), + 458: .same(proto: "hasIdentifierValue"), + 459: .same(proto: "hasInputType"), + 460: .same(proto: "hasIsExtension"), + 461: .same(proto: "hasJavaGenerateEqualsAndHash"), + 462: .same(proto: "hasJavaGenericServices"), + 463: .same(proto: "hasJavaMultipleFiles"), + 464: .same(proto: "hasJavaOuterClassname"), + 465: .same(proto: "hasJavaPackage"), + 466: .same(proto: "hasJavaStringCheckUtf8"), + 467: .same(proto: "hasJsonFormat"), + 468: .same(proto: "hasJsonName"), + 469: .same(proto: "hasJstype"), + 470: .same(proto: "hasLabel"), + 471: .same(proto: "hasLazy"), + 472: .same(proto: "hasLeadingComments"), + 473: .same(proto: "hasMapEntry"), + 474: .same(proto: "hasMaximumEdition"), + 475: .same(proto: "hasMessageEncoding"), + 476: .same(proto: "hasMessageSetWireFormat"), + 477: .same(proto: "hasMinimumEdition"), + 478: .same(proto: "hasName"), + 479: .same(proto: "hasNamePart"), + 480: .same(proto: "hasNegativeIntValue"), + 481: .same(proto: "hasNoStandardDescriptorAccessor"), + 482: .same(proto: "hasNumber"), + 483: .same(proto: "hasObjcClassPrefix"), + 484: .same(proto: "hasOneofIndex"), + 485: .same(proto: "hasOptimizeFor"), + 486: .same(proto: "hasOptions"), + 487: .same(proto: "hasOutputType"), + 488: .same(proto: "hasOverridableFeatures"), + 489: .same(proto: "hasPackage"), + 490: .same(proto: "hasPacked"), + 491: .same(proto: "hasPhpClassPrefix"), + 492: .same(proto: "hasPhpMetadataNamespace"), + 493: .same(proto: "hasPhpNamespace"), + 494: .same(proto: "hasPositiveIntValue"), + 495: .same(proto: "hasProto3Optional"), + 496: .same(proto: "hasPyGenericServices"), + 497: .same(proto: "hasRepeated"), + 498: .same(proto: "hasRepeatedFieldEncoding"), + 499: .same(proto: "hasReserved"), + 500: .same(proto: "hasRetention"), + 501: .same(proto: "hasRubyPackage"), + 502: .same(proto: "hasSemantic"), + 503: .same(proto: "hasServerStreaming"), + 504: .same(proto: "hasSourceCodeInfo"), + 505: .same(proto: "hasSourceContext"), + 506: .same(proto: "hasSourceFile"), + 507: .same(proto: "hasStart"), + 508: .same(proto: "hasStringValue"), + 509: .same(proto: "hasSwiftPrefix"), + 510: .same(proto: "hasSyntax"), + 511: .same(proto: "hasTrailingComments"), + 512: .same(proto: "hasType"), + 513: .same(proto: "hasTypeName"), + 514: .same(proto: "hasUnverifiedLazy"), + 515: .same(proto: "hasUtf8Validation"), + 516: .same(proto: "hasValue"), + 517: .same(proto: "hasVerification"), + 518: .same(proto: "hasWeak"), + 519: .same(proto: "hour"), + 520: .same(proto: "i"), + 521: .same(proto: "idempotencyLevel"), + 522: .same(proto: "identifierValue"), + 523: .same(proto: "if"), + 524: .same(proto: "ignoreUnknownExtensionFields"), + 525: .same(proto: "ignoreUnknownFields"), + 526: .same(proto: "index"), + 527: .same(proto: "init"), + 528: .same(proto: "inout"), + 529: .same(proto: "inputType"), + 530: .same(proto: "insert"), + 531: .same(proto: "Int"), + 532: .same(proto: "Int32"), + 533: .same(proto: "Int32Value"), + 534: .same(proto: "Int64"), + 535: .same(proto: "Int64Value"), + 536: .same(proto: "Int8"), + 537: .same(proto: "integerLiteral"), + 538: .same(proto: "IntegerLiteralType"), + 539: .same(proto: "intern"), + 540: .same(proto: "Internal"), + 541: .same(proto: "InternalState"), + 542: .same(proto: "into"), + 543: .same(proto: "ints"), + 544: .same(proto: "isA"), + 545: .same(proto: "isEqual"), + 546: .same(proto: "isEqualTo"), + 547: .same(proto: "isExtension"), + 548: .same(proto: "isInitialized"), + 549: .same(proto: "isNegative"), + 550: .same(proto: "itemTagsEncodedSize"), + 551: .same(proto: "iterator"), + 552: .same(proto: "javaGenerateEqualsAndHash"), + 553: .same(proto: "javaGenericServices"), + 554: .same(proto: "javaMultipleFiles"), + 555: .same(proto: "javaOuterClassname"), + 556: .same(proto: "javaPackage"), + 557: .same(proto: "javaStringCheckUtf8"), + 558: .same(proto: "JSONDecoder"), + 559: .same(proto: "JSONDecodingError"), + 560: .same(proto: "JSONDecodingOptions"), + 561: .same(proto: "jsonEncoder"), + 562: .same(proto: "JSONEncodingError"), + 563: .same(proto: "JSONEncodingOptions"), + 564: .same(proto: "JSONEncodingVisitor"), + 565: .same(proto: "jsonFormat"), + 566: .same(proto: "JSONMapEncodingVisitor"), + 567: .same(proto: "jsonName"), + 568: .same(proto: "jsonPath"), + 569: .same(proto: "jsonPaths"), + 570: .same(proto: "JSONScanner"), + 571: .same(proto: "jsonString"), + 572: .same(proto: "jsonText"), + 573: .same(proto: "jsonUTF8Bytes"), + 574: .same(proto: "jsonUTF8Data"), + 575: .same(proto: "jstype"), + 576: .same(proto: "k"), + 577: .same(proto: "kChunkSize"), + 578: .same(proto: "Key"), + 579: .same(proto: "keyField"), + 580: .same(proto: "keyFieldOpt"), + 581: .same(proto: "KeyType"), + 582: .same(proto: "kind"), + 583: .same(proto: "l"), + 584: .same(proto: "label"), + 585: .same(proto: "lazy"), + 586: .same(proto: "leadingComments"), + 587: .same(proto: "leadingDetachedComments"), + 588: .same(proto: "length"), + 589: .same(proto: "lessThan"), + 590: .same(proto: "let"), + 591: .same(proto: "lhs"), + 592: .same(proto: "line"), + 593: .same(proto: "list"), + 594: .same(proto: "listOfMessages"), + 595: .same(proto: "listValue"), + 596: .same(proto: "littleEndian"), + 597: .same(proto: "load"), + 598: .same(proto: "localHasher"), + 599: .same(proto: "location"), + 600: .same(proto: "M"), + 601: .same(proto: "major"), + 602: .same(proto: "makeAsyncIterator"), + 603: .same(proto: "makeIterator"), + 604: .same(proto: "malformedLength"), + 605: .same(proto: "mapEntry"), + 606: .same(proto: "MapKeyType"), + 607: .same(proto: "mapToMessages"), + 608: .same(proto: "MapValueType"), + 609: .same(proto: "mapVisitor"), + 610: .same(proto: "maximumEdition"), + 611: .same(proto: "mdayStart"), + 612: .same(proto: "merge"), + 613: .same(proto: "message"), + 614: .same(proto: "messageDepthLimit"), + 615: .same(proto: "messageEncoding"), + 616: .same(proto: "MessageExtension"), + 617: .same(proto: "MessageImplementationBase"), + 618: .same(proto: "MessageOptions"), + 619: .same(proto: "MessageSet"), + 620: .same(proto: "messageSetWireFormat"), + 621: .same(proto: "messageSize"), + 622: .same(proto: "messageType"), + 623: .same(proto: "Method"), + 624: .same(proto: "MethodDescriptorProto"), + 625: .same(proto: "MethodOptions"), + 626: .same(proto: "methods"), + 627: .same(proto: "min"), + 628: .same(proto: "minimumEdition"), + 629: .same(proto: "minor"), + 630: .same(proto: "Mixin"), + 631: .same(proto: "mixins"), + 632: .same(proto: "modifier"), + 633: .same(proto: "modify"), + 634: .same(proto: "month"), + 635: .same(proto: "msgExtension"), + 636: .same(proto: "mutating"), + 637: .same(proto: "n"), + 638: .same(proto: "name"), + 639: .same(proto: "NameDescription"), + 640: .same(proto: "NameMap"), + 641: .same(proto: "NamePart"), + 642: .same(proto: "names"), + 643: .same(proto: "nanos"), + 644: .same(proto: "negativeIntValue"), + 645: .same(proto: "nestedType"), + 646: .same(proto: "newL"), + 647: .same(proto: "newList"), + 648: .same(proto: "newValue"), + 649: .same(proto: "next"), + 650: .same(proto: "nextByte"), + 651: .same(proto: "nextFieldNumber"), + 652: .same(proto: "nextVarInt"), + 653: .same(proto: "nil"), + 654: .same(proto: "nilLiteral"), + 655: .same(proto: "noBytesAvailable"), + 656: .same(proto: "noStandardDescriptorAccessor"), + 657: .same(proto: "nullValue"), + 658: .same(proto: "number"), + 659: .same(proto: "numberValue"), + 660: .same(proto: "objcClassPrefix"), + 661: .same(proto: "of"), + 662: .same(proto: "oneofDecl"), + 663: .same(proto: "OneofDescriptorProto"), + 664: .same(proto: "oneofIndex"), + 665: .same(proto: "OneofOptions"), + 666: .same(proto: "oneofs"), + 667: .standard(proto: "OneOf_Kind"), + 668: .same(proto: "optimizeFor"), + 669: .same(proto: "OptimizeMode"), + 670: .same(proto: "Option"), + 671: .same(proto: "OptionalEnumExtensionField"), + 672: .same(proto: "OptionalExtensionField"), + 673: .same(proto: "OptionalGroupExtensionField"), + 674: .same(proto: "OptionalMessageExtensionField"), + 675: .same(proto: "OptionRetention"), + 676: .same(proto: "options"), + 677: .same(proto: "OptionTargetType"), + 678: .same(proto: "other"), + 679: .same(proto: "others"), + 680: .same(proto: "out"), + 681: .same(proto: "outputType"), + 682: .same(proto: "overridableFeatures"), + 683: .same(proto: "p"), + 684: .same(proto: "package"), + 685: .same(proto: "packed"), + 686: .same(proto: "PackedEnumExtensionField"), + 687: .same(proto: "PackedExtensionField"), + 688: .same(proto: "padding"), + 689: .same(proto: "parent"), + 690: .same(proto: "parse"), + 691: .same(proto: "path"), + 692: .same(proto: "paths"), + 693: .same(proto: "payload"), + 694: .same(proto: "payloadSize"), + 695: .same(proto: "phpClassPrefix"), + 696: .same(proto: "phpMetadataNamespace"), + 697: .same(proto: "phpNamespace"), + 698: .same(proto: "pos"), + 699: .same(proto: "positiveIntValue"), + 700: .same(proto: "prefix"), + 701: .same(proto: "preserveProtoFieldNames"), + 702: .same(proto: "preTraverse"), + 703: .same(proto: "printUnknownFields"), + 704: .same(proto: "proto2"), + 705: .same(proto: "proto3DefaultValue"), + 706: .same(proto: "proto3Optional"), + 707: .same(proto: "ProtobufAPIVersionCheck"), + 708: .standard(proto: "ProtobufAPIVersion_3"), + 709: .same(proto: "ProtobufBool"), + 710: .same(proto: "ProtobufBytes"), + 711: .same(proto: "ProtobufDouble"), + 712: .same(proto: "ProtobufEnumMap"), + 713: .same(proto: "protobufExtension"), + 714: .same(proto: "ProtobufFixed32"), + 715: .same(proto: "ProtobufFixed64"), + 716: .same(proto: "ProtobufFloat"), + 717: .same(proto: "ProtobufInt32"), + 718: .same(proto: "ProtobufInt64"), + 719: .same(proto: "ProtobufMap"), + 720: .same(proto: "ProtobufMessageMap"), + 721: .same(proto: "ProtobufSFixed32"), + 722: .same(proto: "ProtobufSFixed64"), + 723: .same(proto: "ProtobufSInt32"), + 724: .same(proto: "ProtobufSInt64"), + 725: .same(proto: "ProtobufString"), + 726: .same(proto: "ProtobufUInt32"), + 727: .same(proto: "ProtobufUInt64"), + 728: .standard(proto: "protobuf_extensionFieldValues"), + 729: .standard(proto: "protobuf_fieldNumber"), + 730: .standard(proto: "protobuf_generated_isEqualTo"), + 731: .standard(proto: "protobuf_nameMap"), + 732: .standard(proto: "protobuf_newField"), + 733: .standard(proto: "protobuf_package"), + 734: .same(proto: "protocol"), + 735: .same(proto: "protoFieldName"), + 736: .same(proto: "protoMessageName"), + 737: .same(proto: "ProtoNameProviding"), + 738: .same(proto: "protoPaths"), + 739: .same(proto: "public"), + 740: .same(proto: "publicDependency"), + 741: .same(proto: "putBoolValue"), + 742: .same(proto: "putBytesValue"), + 743: .same(proto: "putDoubleValue"), + 744: .same(proto: "putEnumValue"), + 745: .same(proto: "putFixedUInt32"), + 746: .same(proto: "putFixedUInt64"), + 747: .same(proto: "putFloatValue"), + 748: .same(proto: "putInt64"), + 749: .same(proto: "putStringValue"), + 750: .same(proto: "putUInt64"), + 751: .same(proto: "putUInt64Hex"), + 752: .same(proto: "putVarInt"), + 753: .same(proto: "putZigZagVarInt"), + 754: .same(proto: "pyGenericServices"), + 755: .same(proto: "R"), + 756: .same(proto: "rawChars"), + 757: .same(proto: "RawRepresentable"), + 758: .same(proto: "RawValue"), + 759: .same(proto: "read4HexDigits"), + 760: .same(proto: "readBytes"), + 761: .same(proto: "register"), + 762: .same(proto: "repeated"), + 763: .same(proto: "RepeatedEnumExtensionField"), + 764: .same(proto: "RepeatedExtensionField"), + 765: .same(proto: "repeatedFieldEncoding"), + 766: .same(proto: "RepeatedGroupExtensionField"), + 767: .same(proto: "RepeatedMessageExtensionField"), + 768: .same(proto: "repeating"), + 769: .same(proto: "requestStreaming"), + 770: .same(proto: "requestTypeURL"), + 771: .same(proto: "requiredSize"), + 772: .same(proto: "responseStreaming"), + 773: .same(proto: "responseTypeURL"), + 774: .same(proto: "result"), + 775: .same(proto: "retention"), + 776: .same(proto: "rethrows"), + 777: .same(proto: "return"), + 778: .same(proto: "ReturnType"), + 779: .same(proto: "revision"), + 780: .same(proto: "rhs"), + 781: .same(proto: "root"), + 782: .same(proto: "rubyPackage"), + 783: .same(proto: "s"), + 784: .same(proto: "sawBackslash"), + 785: .same(proto: "sawSection4Characters"), + 786: .same(proto: "sawSection5Characters"), + 787: .same(proto: "scan"), + 788: .same(proto: "scanner"), + 789: .same(proto: "seconds"), + 790: .same(proto: "self"), + 791: .same(proto: "semantic"), + 792: .same(proto: "Sendable"), + 793: .same(proto: "separator"), + 794: .same(proto: "serialize"), + 795: .same(proto: "serializedBytes"), + 796: .same(proto: "serializedData"), + 797: .same(proto: "serializedSize"), + 798: .same(proto: "serverStreaming"), + 799: .same(proto: "service"), + 800: .same(proto: "ServiceDescriptorProto"), + 801: .same(proto: "ServiceOptions"), + 802: .same(proto: "set"), + 803: .same(proto: "setExtensionValue"), + 804: .same(proto: "shift"), + 805: .same(proto: "SimpleExtensionMap"), + 806: .same(proto: "size"), + 807: .same(proto: "sizer"), + 808: .same(proto: "source"), + 809: .same(proto: "sourceCodeInfo"), + 810: .same(proto: "sourceContext"), + 811: .same(proto: "sourceEncoding"), + 812: .same(proto: "sourceFile"), + 813: .same(proto: "SourceLocation"), + 814: .same(proto: "span"), + 815: .same(proto: "split"), + 816: .same(proto: "start"), + 817: .same(proto: "startArray"), + 818: .same(proto: "startArrayObject"), + 819: .same(proto: "startField"), + 820: .same(proto: "startIndex"), + 821: .same(proto: "startMessageField"), + 822: .same(proto: "startObject"), + 823: .same(proto: "startRegularField"), + 824: .same(proto: "state"), + 825: .same(proto: "static"), + 826: .same(proto: "StaticString"), + 827: .same(proto: "storage"), + 828: .same(proto: "String"), + 829: .same(proto: "stringLiteral"), + 830: .same(proto: "StringLiteralType"), + 831: .same(proto: "stringResult"), + 832: .same(proto: "stringValue"), + 833: .same(proto: "struct"), + 834: .same(proto: "structValue"), + 835: .same(proto: "subDecoder"), + 836: .same(proto: "subscript"), + 837: .same(proto: "subVisitor"), + 838: .same(proto: "Swift"), + 839: .same(proto: "swiftPrefix"), + 840: .same(proto: "SwiftProtobufContiguousBytes"), + 841: .same(proto: "SwiftProtobufError"), + 842: .same(proto: "syntax"), + 843: .same(proto: "T"), + 844: .same(proto: "tag"), + 845: .same(proto: "targets"), + 846: .same(proto: "terminator"), + 847: .same(proto: "testDecoder"), + 848: .same(proto: "text"), + 849: .same(proto: "textDecoder"), + 850: .same(proto: "TextFormatDecoder"), + 851: .same(proto: "TextFormatDecodingError"), + 852: .same(proto: "TextFormatDecodingOptions"), + 853: .same(proto: "TextFormatEncodingOptions"), + 854: .same(proto: "TextFormatEncodingVisitor"), + 855: .same(proto: "textFormatString"), + 856: .same(proto: "throwOrIgnore"), + 857: .same(proto: "throws"), + 858: .same(proto: "timeInterval"), + 859: .same(proto: "timeIntervalSince1970"), + 860: .same(proto: "timeIntervalSinceReferenceDate"), + 861: .same(proto: "Timestamp"), + 862: .same(proto: "tooLarge"), + 863: .same(proto: "total"), + 864: .same(proto: "totalArrayDepth"), + 865: .same(proto: "totalSize"), + 866: .same(proto: "trailingComments"), + 867: .same(proto: "traverse"), + 868: .same(proto: "true"), + 869: .same(proto: "try"), + 870: .same(proto: "type"), + 871: .same(proto: "typealias"), + 872: .same(proto: "TypeEnum"), + 873: .same(proto: "typeName"), + 874: .same(proto: "typePrefix"), + 875: .same(proto: "typeStart"), + 876: .same(proto: "typeUnknown"), + 877: .same(proto: "typeURL"), + 878: .same(proto: "UInt32"), + 879: .same(proto: "UInt32Value"), + 880: .same(proto: "UInt64"), + 881: .same(proto: "UInt64Value"), + 882: .same(proto: "UInt8"), + 883: .same(proto: "unchecked"), + 884: .same(proto: "unicodeScalarLiteral"), + 885: .same(proto: "UnicodeScalarLiteralType"), + 886: .same(proto: "unicodeScalars"), + 887: .same(proto: "UnicodeScalarView"), + 888: .same(proto: "uninterpretedOption"), + 889: .same(proto: "union"), + 890: .same(proto: "uniqueStorage"), + 891: .same(proto: "unknown"), + 892: .same(proto: "unknownFields"), + 893: .same(proto: "UnknownStorage"), + 894: .same(proto: "unpackTo"), + 895: .same(proto: "UnsafeBufferPointer"), + 896: .same(proto: "UnsafeMutablePointer"), + 897: .same(proto: "UnsafeMutableRawBufferPointer"), + 898: .same(proto: "UnsafeRawBufferPointer"), + 899: .same(proto: "UnsafeRawPointer"), + 900: .same(proto: "unverifiedLazy"), + 901: .same(proto: "updatedOptions"), + 902: .same(proto: "url"), + 903: .same(proto: "useDeterministicOrdering"), + 904: .same(proto: "utf8"), + 905: .same(proto: "utf8Ptr"), + 906: .same(proto: "utf8ToDouble"), + 907: .same(proto: "utf8Validation"), + 908: .same(proto: "UTF8View"), + 909: .same(proto: "v"), + 910: .same(proto: "value"), + 911: .same(proto: "valueField"), + 912: .same(proto: "values"), + 913: .same(proto: "ValueType"), + 914: .same(proto: "var"), + 915: .same(proto: "verification"), + 916: .same(proto: "VerificationState"), + 917: .same(proto: "Version"), + 918: .same(proto: "versionString"), + 919: .same(proto: "visitExtensionFields"), + 920: .same(proto: "visitExtensionFieldsAsMessageSet"), + 921: .same(proto: "visitMapField"), + 922: .same(proto: "visitor"), + 923: .same(proto: "visitPacked"), + 924: .same(proto: "visitPackedBoolField"), + 925: .same(proto: "visitPackedDoubleField"), + 926: .same(proto: "visitPackedEnumField"), + 927: .same(proto: "visitPackedFixed32Field"), + 928: .same(proto: "visitPackedFixed64Field"), + 929: .same(proto: "visitPackedFloatField"), + 930: .same(proto: "visitPackedInt32Field"), + 931: .same(proto: "visitPackedInt64Field"), + 932: .same(proto: "visitPackedSFixed32Field"), + 933: .same(proto: "visitPackedSFixed64Field"), + 934: .same(proto: "visitPackedSInt32Field"), + 935: .same(proto: "visitPackedSInt64Field"), + 936: .same(proto: "visitPackedUInt32Field"), + 937: .same(proto: "visitPackedUInt64Field"), + 938: .same(proto: "visitRepeated"), + 939: .same(proto: "visitRepeatedBoolField"), + 940: .same(proto: "visitRepeatedBytesField"), + 941: .same(proto: "visitRepeatedDoubleField"), + 942: .same(proto: "visitRepeatedEnumField"), + 943: .same(proto: "visitRepeatedFixed32Field"), + 944: .same(proto: "visitRepeatedFixed64Field"), + 945: .same(proto: "visitRepeatedFloatField"), + 946: .same(proto: "visitRepeatedGroupField"), + 947: .same(proto: "visitRepeatedInt32Field"), + 948: .same(proto: "visitRepeatedInt64Field"), + 949: .same(proto: "visitRepeatedMessageField"), + 950: .same(proto: "visitRepeatedSFixed32Field"), + 951: .same(proto: "visitRepeatedSFixed64Field"), + 952: .same(proto: "visitRepeatedSInt32Field"), + 953: .same(proto: "visitRepeatedSInt64Field"), + 954: .same(proto: "visitRepeatedStringField"), + 955: .same(proto: "visitRepeatedUInt32Field"), + 956: .same(proto: "visitRepeatedUInt64Field"), + 957: .same(proto: "visitSingular"), + 958: .same(proto: "visitSingularBoolField"), + 959: .same(proto: "visitSingularBytesField"), + 960: .same(proto: "visitSingularDoubleField"), + 961: .same(proto: "visitSingularEnumField"), + 962: .same(proto: "visitSingularFixed32Field"), + 963: .same(proto: "visitSingularFixed64Field"), + 964: .same(proto: "visitSingularFloatField"), + 965: .same(proto: "visitSingularGroupField"), + 966: .same(proto: "visitSingularInt32Field"), + 967: .same(proto: "visitSingularInt64Field"), + 968: .same(proto: "visitSingularMessageField"), + 969: .same(proto: "visitSingularSFixed32Field"), + 970: .same(proto: "visitSingularSFixed64Field"), + 971: .same(proto: "visitSingularSInt32Field"), + 972: .same(proto: "visitSingularSInt64Field"), + 973: .same(proto: "visitSingularStringField"), + 974: .same(proto: "visitSingularUInt32Field"), + 975: .same(proto: "visitSingularUInt64Field"), + 976: .same(proto: "visitUnknown"), + 977: .same(proto: "wasDecoded"), + 978: .same(proto: "weak"), + 979: .same(proto: "weakDependency"), + 980: .same(proto: "where"), + 981: .same(proto: "wireFormat"), + 982: .same(proto: "with"), + 983: .same(proto: "withUnsafeBytes"), + 984: .same(proto: "withUnsafeMutableBytes"), + 985: .same(proto: "work"), + 986: .same(proto: "Wrapped"), + 987: .same(proto: "WrappedType"), + 988: .same(proto: "wrappedValue"), + 989: .same(proto: "written"), + 990: .same(proto: "yday"), ] fileprivate class _StorageClass { @@ -6021,7 +5997,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _anyExtensionField: Int32 = 0 var _anyMessageExtension: Int32 = 0 var _anyMessageStorage: Int32 = 0 - var _anyTypeUrlnotRegistered: Int32 = 0 var _anyUnpackError: Int32 = 0 var _api: Int32 = 0 var _appended: Int32 = 0 @@ -6053,7 +6028,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _binaryDecodingOptions: Int32 = 0 var _binaryDelimited: Int32 = 0 var _binaryEncoder: Int32 = 0 - var _binaryEncoding: Int32 = 0 var _binaryEncodingError: Int32 = 0 var _binaryEncodingMessageSetSizeVisitor: Int32 = 0 var _binaryEncodingMessageSetVisitor: Int32 = 0 @@ -6573,7 +6547,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _jsondecodingError: Int32 = 0 var _jsondecodingOptions: Int32 = 0 var _jsonEncoder: Int32 = 0 - var _jsonencoding: Int32 = 0 var _jsonencodingError: Int32 = 0 var _jsonencodingOptions: Int32 = 0 var _jsonencodingVisitor: Int32 = 0 @@ -6907,7 +6880,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _unknownFields_p: Int32 = 0 var _unknownStorage: Int32 = 0 var _unpackTo: Int32 = 0 - var _unregisteredTypeURL: Int32 = 0 var _unsafeBufferPointer: Int32 = 0 var _unsafeMutablePointer: Int32 = 0 var _unsafeMutableRawBufferPointer: Int32 = 0 @@ -7029,7 +7001,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _anyExtensionField = source._anyExtensionField _anyMessageExtension = source._anyMessageExtension _anyMessageStorage = source._anyMessageStorage - _anyTypeUrlnotRegistered = source._anyTypeUrlnotRegistered _anyUnpackError = source._anyUnpackError _api = source._api _appended = source._appended @@ -7061,7 +7032,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _binaryDecodingOptions = source._binaryDecodingOptions _binaryDelimited = source._binaryDelimited _binaryEncoder = source._binaryEncoder - _binaryEncoding = source._binaryEncoding _binaryEncodingError = source._binaryEncodingError _binaryEncodingMessageSetSizeVisitor = source._binaryEncodingMessageSetSizeVisitor _binaryEncodingMessageSetVisitor = source._binaryEncodingMessageSetVisitor @@ -7581,7 +7551,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _jsondecodingError = source._jsondecodingError _jsondecodingOptions = source._jsondecodingOptions _jsonEncoder = source._jsonEncoder - _jsonencoding = source._jsonencoding _jsonencodingError = source._jsonencodingError _jsonencodingOptions = source._jsonencodingOptions _jsonencodingVisitor = source._jsonencodingVisitor @@ -7915,7 +7884,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _unknownFields_p = source._unknownFields_p _unknownStorage = source._unknownStorage _unpackTo = source._unpackTo - _unregisteredTypeURL = source._unregisteredTypeURL _unsafeBufferPointer = source._unsafeBufferPointer _unsafeMutablePointer = source._unsafeMutablePointer _unsafeMutableRawBufferPointer = source._unsafeMutableRawBufferPointer @@ -8041,989 +8009,985 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu case 9: try { try decoder.decodeSingularInt32Field(value: &_storage._anyExtensionField) }() case 10: try { try decoder.decodeSingularInt32Field(value: &_storage._anyMessageExtension) }() case 11: try { try decoder.decodeSingularInt32Field(value: &_storage._anyMessageStorage) }() - case 12: try { try decoder.decodeSingularInt32Field(value: &_storage._anyTypeUrlnotRegistered) }() - case 13: try { try decoder.decodeSingularInt32Field(value: &_storage._anyUnpackError) }() - case 14: try { try decoder.decodeSingularInt32Field(value: &_storage._api) }() - case 15: try { try decoder.decodeSingularInt32Field(value: &_storage._appended) }() - case 16: try { try decoder.decodeSingularInt32Field(value: &_storage._appendUintHex) }() - case 17: try { try decoder.decodeSingularInt32Field(value: &_storage._appendUnknown) }() - case 18: try { try decoder.decodeSingularInt32Field(value: &_storage._areAllInitialized) }() - case 19: try { try decoder.decodeSingularInt32Field(value: &_storage._array) }() - case 20: try { try decoder.decodeSingularInt32Field(value: &_storage._arrayDepth) }() - case 21: try { try decoder.decodeSingularInt32Field(value: &_storage._arrayLiteral) }() - case 22: try { try decoder.decodeSingularInt32Field(value: &_storage._arraySeparator) }() - case 23: try { try decoder.decodeSingularInt32Field(value: &_storage._as) }() - case 24: try { try decoder.decodeSingularInt32Field(value: &_storage._asciiOpenCurlyBracket) }() - case 25: try { try decoder.decodeSingularInt32Field(value: &_storage._asciiZero) }() - case 26: try { try decoder.decodeSingularInt32Field(value: &_storage._async) }() - case 27: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncIterator) }() - case 28: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncIteratorProtocol) }() - case 29: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncMessageSequence) }() - case 30: try { try decoder.decodeSingularInt32Field(value: &_storage._available) }() - case 31: try { try decoder.decodeSingularInt32Field(value: &_storage._b) }() - case 32: try { try decoder.decodeSingularInt32Field(value: &_storage._base) }() - case 33: try { try decoder.decodeSingularInt32Field(value: &_storage._base64Values) }() - case 34: try { try decoder.decodeSingularInt32Field(value: &_storage._baseAddress) }() - case 35: try { try decoder.decodeSingularInt32Field(value: &_storage._baseType) }() - case 36: try { try decoder.decodeSingularInt32Field(value: &_storage._begin) }() - case 37: try { try decoder.decodeSingularInt32Field(value: &_storage._binary) }() - case 38: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecoder) }() - case 39: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecoding) }() - case 40: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecodingError) }() - case 41: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecodingOptions) }() - case 42: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDelimited) }() - case 43: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncoder) }() - case 44: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncoding) }() - case 45: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingError) }() - case 46: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingMessageSetSizeVisitor) }() - case 47: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingMessageSetVisitor) }() - case 48: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingOptions) }() - case 49: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingSizeVisitor) }() - case 50: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingVisitor) }() - case 51: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryOptions) }() - case 52: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryProtobufDelimitedMessages) }() - case 53: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryStreamDecoding) }() - case 54: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryStreamDecodingError) }() - case 55: try { try decoder.decodeSingularInt32Field(value: &_storage._bitPattern) }() - case 56: try { try decoder.decodeSingularInt32Field(value: &_storage._body) }() - case 57: try { try decoder.decodeSingularInt32Field(value: &_storage._bool) }() - case 58: try { try decoder.decodeSingularInt32Field(value: &_storage._booleanLiteral) }() - case 59: try { try decoder.decodeSingularInt32Field(value: &_storage._booleanLiteralType) }() - case 60: try { try decoder.decodeSingularInt32Field(value: &_storage._boolValue) }() - case 61: try { try decoder.decodeSingularInt32Field(value: &_storage._buffer) }() - case 62: try { try decoder.decodeSingularInt32Field(value: &_storage._bytes) }() - case 63: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesInGroup) }() - case 64: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesNeeded) }() - case 65: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesRead) }() - case 66: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesValue) }() - case 67: try { try decoder.decodeSingularInt32Field(value: &_storage._c) }() - case 68: try { try decoder.decodeSingularInt32Field(value: &_storage._capitalizeNext) }() - case 69: try { try decoder.decodeSingularInt32Field(value: &_storage._cardinality) }() - case 70: try { try decoder.decodeSingularInt32Field(value: &_storage._caseIterable) }() - case 71: try { try decoder.decodeSingularInt32Field(value: &_storage._ccEnableArenas) }() - case 72: try { try decoder.decodeSingularInt32Field(value: &_storage._ccGenericServices) }() - case 73: try { try decoder.decodeSingularInt32Field(value: &_storage._character) }() - case 74: try { try decoder.decodeSingularInt32Field(value: &_storage._chars) }() - case 75: try { try decoder.decodeSingularInt32Field(value: &_storage._chunk) }() - case 76: try { try decoder.decodeSingularInt32Field(value: &_storage._class) }() - case 77: try { try decoder.decodeSingularInt32Field(value: &_storage._clearAggregateValue_p) }() - case 78: try { try decoder.decodeSingularInt32Field(value: &_storage._clearAllowAlias_p) }() - case 79: try { try decoder.decodeSingularInt32Field(value: &_storage._clearBegin_p) }() - case 80: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCcEnableArenas_p) }() - case 81: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCcGenericServices_p) }() - case 82: try { try decoder.decodeSingularInt32Field(value: &_storage._clearClientStreaming_p) }() - case 83: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCsharpNamespace_p) }() - case 84: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCtype_p) }() - case 85: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDebugRedact_p) }() - case 86: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDefaultValue_p) }() - case 87: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecated_p) }() - case 88: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecatedLegacyJsonFieldConflicts_p) }() - case 89: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecationWarning_p) }() - case 90: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDoubleValue_p) }() - case 91: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEdition_p) }() - case 92: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionDeprecated_p) }() - case 93: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionIntroduced_p) }() - case 94: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionRemoved_p) }() - case 95: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEnd_p) }() - case 96: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEnumType_p) }() - case 97: try { try decoder.decodeSingularInt32Field(value: &_storage._clearExtendee_p) }() - case 98: try { try decoder.decodeSingularInt32Field(value: &_storage._clearExtensionValue_p) }() - case 99: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFeatures_p) }() - case 100: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFeatureSupport_p) }() - case 101: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFieldPresence_p) }() - case 102: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFixedFeatures_p) }() - case 103: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFullName_p) }() - case 104: try { try decoder.decodeSingularInt32Field(value: &_storage._clearGoPackage_p) }() - case 105: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIdempotencyLevel_p) }() - case 106: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIdentifierValue_p) }() - case 107: try { try decoder.decodeSingularInt32Field(value: &_storage._clearInputType_p) }() - case 108: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIsExtension_p) }() - case 109: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaGenerateEqualsAndHash_p) }() - case 110: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaGenericServices_p) }() - case 111: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaMultipleFiles_p) }() - case 112: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaOuterClassname_p) }() - case 113: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaPackage_p) }() - case 114: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaStringCheckUtf8_p) }() - case 115: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJsonFormat_p) }() - case 116: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJsonName_p) }() - case 117: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJstype_p) }() - case 118: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLabel_p) }() - case 119: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLazy_p) }() - case 120: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLeadingComments_p) }() - case 121: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMapEntry_p) }() - case 122: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMaximumEdition_p) }() - case 123: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMessageEncoding_p) }() - case 124: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMessageSetWireFormat_p) }() - case 125: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMinimumEdition_p) }() - case 126: try { try decoder.decodeSingularInt32Field(value: &_storage._clearName_p) }() - case 127: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNamePart_p) }() - case 128: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNegativeIntValue_p) }() - case 129: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNoStandardDescriptorAccessor_p) }() - case 130: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNumber_p) }() - case 131: try { try decoder.decodeSingularInt32Field(value: &_storage._clearObjcClassPrefix_p) }() - case 132: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOneofIndex_p) }() - case 133: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOptimizeFor_p) }() - case 134: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOptions_p) }() - case 135: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOutputType_p) }() - case 136: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOverridableFeatures_p) }() - case 137: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPackage_p) }() - case 138: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPacked_p) }() - case 139: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpClassPrefix_p) }() - case 140: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpMetadataNamespace_p) }() - case 141: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpNamespace_p) }() - case 142: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPositiveIntValue_p) }() - case 143: try { try decoder.decodeSingularInt32Field(value: &_storage._clearProto3Optional_p) }() - case 144: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPyGenericServices_p) }() - case 145: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRepeated_p) }() - case 146: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRepeatedFieldEncoding_p) }() - case 147: try { try decoder.decodeSingularInt32Field(value: &_storage._clearReserved_p) }() - case 148: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRetention_p) }() - case 149: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRubyPackage_p) }() - case 150: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSemantic_p) }() - case 151: try { try decoder.decodeSingularInt32Field(value: &_storage._clearServerStreaming_p) }() - case 152: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceCodeInfo_p) }() - case 153: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceContext_p) }() - case 154: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceFile_p) }() - case 155: try { try decoder.decodeSingularInt32Field(value: &_storage._clearStart_p) }() - case 156: try { try decoder.decodeSingularInt32Field(value: &_storage._clearStringValue_p) }() - case 157: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSwiftPrefix_p) }() - case 158: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSyntax_p) }() - case 159: try { try decoder.decodeSingularInt32Field(value: &_storage._clearTrailingComments_p) }() - case 160: try { try decoder.decodeSingularInt32Field(value: &_storage._clearType_p) }() - case 161: try { try decoder.decodeSingularInt32Field(value: &_storage._clearTypeName_p) }() - case 162: try { try decoder.decodeSingularInt32Field(value: &_storage._clearUnverifiedLazy_p) }() - case 163: try { try decoder.decodeSingularInt32Field(value: &_storage._clearUtf8Validation_p) }() - case 164: try { try decoder.decodeSingularInt32Field(value: &_storage._clearValue_p) }() - case 165: try { try decoder.decodeSingularInt32Field(value: &_storage._clearVerification_p) }() - case 166: try { try decoder.decodeSingularInt32Field(value: &_storage._clearWeak_p) }() - case 167: try { try decoder.decodeSingularInt32Field(value: &_storage._clientStreaming) }() - case 168: try { try decoder.decodeSingularInt32Field(value: &_storage._code) }() - case 169: try { try decoder.decodeSingularInt32Field(value: &_storage._codePoint) }() - case 170: try { try decoder.decodeSingularInt32Field(value: &_storage._codeUnits) }() - case 171: try { try decoder.decodeSingularInt32Field(value: &_storage._collection) }() - case 172: try { try decoder.decodeSingularInt32Field(value: &_storage._com) }() - case 173: try { try decoder.decodeSingularInt32Field(value: &_storage._comma) }() - case 174: try { try decoder.decodeSingularInt32Field(value: &_storage._consumedBytes) }() - case 175: try { try decoder.decodeSingularInt32Field(value: &_storage._contentsOf) }() - case 176: try { try decoder.decodeSingularInt32Field(value: &_storage._copy) }() - case 177: try { try decoder.decodeSingularInt32Field(value: &_storage._count) }() - case 178: try { try decoder.decodeSingularInt32Field(value: &_storage._countVarintsInBuffer) }() - case 179: try { try decoder.decodeSingularInt32Field(value: &_storage._csharpNamespace) }() - case 180: try { try decoder.decodeSingularInt32Field(value: &_storage._ctype) }() - case 181: try { try decoder.decodeSingularInt32Field(value: &_storage._customCodable) }() - case 182: try { try decoder.decodeSingularInt32Field(value: &_storage._customDebugStringConvertible) }() - case 183: try { try decoder.decodeSingularInt32Field(value: &_storage._customStringConvertible) }() - case 184: try { try decoder.decodeSingularInt32Field(value: &_storage._d) }() - case 185: try { try decoder.decodeSingularInt32Field(value: &_storage._data) }() - case 186: try { try decoder.decodeSingularInt32Field(value: &_storage._dataResult) }() - case 187: try { try decoder.decodeSingularInt32Field(value: &_storage._date) }() - case 188: try { try decoder.decodeSingularInt32Field(value: &_storage._daySec) }() - case 189: try { try decoder.decodeSingularInt32Field(value: &_storage._daysSinceEpoch) }() - case 190: try { try decoder.decodeSingularInt32Field(value: &_storage._debugDescription_p) }() - case 191: try { try decoder.decodeSingularInt32Field(value: &_storage._debugRedact) }() - case 192: try { try decoder.decodeSingularInt32Field(value: &_storage._declaration) }() - case 193: try { try decoder.decodeSingularInt32Field(value: &_storage._decoded) }() - case 194: try { try decoder.decodeSingularInt32Field(value: &_storage._decodedFromJsonnull) }() - case 195: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeExtensionField) }() - case 196: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeExtensionFieldsAsMessageSet) }() - case 197: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeJson) }() - case 198: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeMapField) }() - case 199: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeMessage) }() - case 200: try { try decoder.decodeSingularInt32Field(value: &_storage._decoder) }() - case 201: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeated) }() - case 202: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedBoolField) }() - case 203: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedBytesField) }() - case 204: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedDoubleField) }() - case 205: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedEnumField) }() - case 206: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFixed32Field) }() - case 207: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFixed64Field) }() - case 208: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFloatField) }() - case 209: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedGroupField) }() - case 210: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedInt32Field) }() - case 211: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedInt64Field) }() - case 212: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedMessageField) }() - case 213: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSfixed32Field) }() - case 214: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSfixed64Field) }() - case 215: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSint32Field) }() - case 216: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSint64Field) }() - case 217: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedStringField) }() - case 218: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedUint32Field) }() - case 219: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedUint64Field) }() - case 220: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingular) }() - case 221: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularBoolField) }() - case 222: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularBytesField) }() - case 223: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularDoubleField) }() - case 224: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularEnumField) }() - case 225: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFixed32Field) }() - case 226: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFixed64Field) }() - case 227: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFloatField) }() - case 228: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularGroupField) }() - case 229: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularInt32Field) }() - case 230: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularInt64Field) }() - case 231: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularMessageField) }() - case 232: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSfixed32Field) }() - case 233: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSfixed64Field) }() - case 234: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSint32Field) }() - case 235: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSint64Field) }() - case 236: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularStringField) }() - case 237: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularUint32Field) }() - case 238: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularUint64Field) }() - case 239: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeTextFormat) }() - case 240: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultAnyTypeUrlprefix) }() - case 241: try { try decoder.decodeSingularInt32Field(value: &_storage._defaults) }() - case 242: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultValue) }() - case 243: try { try decoder.decodeSingularInt32Field(value: &_storage._dependency) }() - case 244: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecated) }() - case 245: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecatedLegacyJsonFieldConflicts) }() - case 246: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecationWarning) }() - case 247: try { try decoder.decodeSingularInt32Field(value: &_storage._description_p) }() - case 248: try { try decoder.decodeSingularInt32Field(value: &_storage._descriptorProto) }() - case 249: try { try decoder.decodeSingularInt32Field(value: &_storage._dictionary) }() - case 250: try { try decoder.decodeSingularInt32Field(value: &_storage._dictionaryLiteral) }() - case 251: try { try decoder.decodeSingularInt32Field(value: &_storage._digit) }() - case 252: try { try decoder.decodeSingularInt32Field(value: &_storage._digit0) }() - case 253: try { try decoder.decodeSingularInt32Field(value: &_storage._digit1) }() - case 254: try { try decoder.decodeSingularInt32Field(value: &_storage._digitCount) }() - case 255: try { try decoder.decodeSingularInt32Field(value: &_storage._digits) }() - case 256: try { try decoder.decodeSingularInt32Field(value: &_storage._digitValue) }() - case 257: try { try decoder.decodeSingularInt32Field(value: &_storage._discardableResult) }() - case 258: try { try decoder.decodeSingularInt32Field(value: &_storage._discardUnknownFields) }() - case 259: try { try decoder.decodeSingularInt32Field(value: &_storage._double) }() - case 260: try { try decoder.decodeSingularInt32Field(value: &_storage._doubleValue) }() - case 261: try { try decoder.decodeSingularInt32Field(value: &_storage._duration) }() - case 262: try { try decoder.decodeSingularInt32Field(value: &_storage._e) }() - case 263: try { try decoder.decodeSingularInt32Field(value: &_storage._edition) }() - case 264: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDefault) }() - case 265: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDefaults) }() - case 266: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDeprecated) }() - case 267: try { try decoder.decodeSingularInt32Field(value: &_storage._editionIntroduced) }() - case 268: try { try decoder.decodeSingularInt32Field(value: &_storage._editionRemoved) }() - case 269: try { try decoder.decodeSingularInt32Field(value: &_storage._element) }() - case 270: try { try decoder.decodeSingularInt32Field(value: &_storage._elements) }() - case 271: try { try decoder.decodeSingularInt32Field(value: &_storage._emitExtensionFieldName) }() - case 272: try { try decoder.decodeSingularInt32Field(value: &_storage._emitFieldName) }() - case 273: try { try decoder.decodeSingularInt32Field(value: &_storage._emitFieldNumber) }() - case 274: try { try decoder.decodeSingularInt32Field(value: &_storage._empty) }() - case 275: try { try decoder.decodeSingularInt32Field(value: &_storage._encodeAsBytes) }() - case 276: try { try decoder.decodeSingularInt32Field(value: &_storage._encoded) }() - case 277: try { try decoder.decodeSingularInt32Field(value: &_storage._encodedJsonstring) }() - case 278: try { try decoder.decodeSingularInt32Field(value: &_storage._encodedSize) }() - case 279: try { try decoder.decodeSingularInt32Field(value: &_storage._encodeField) }() - case 280: try { try decoder.decodeSingularInt32Field(value: &_storage._encoder) }() - case 281: try { try decoder.decodeSingularInt32Field(value: &_storage._end) }() - case 282: try { try decoder.decodeSingularInt32Field(value: &_storage._endArray) }() - case 283: try { try decoder.decodeSingularInt32Field(value: &_storage._endMessageField) }() - case 284: try { try decoder.decodeSingularInt32Field(value: &_storage._endObject) }() - case 285: try { try decoder.decodeSingularInt32Field(value: &_storage._endRegularField) }() - case 286: try { try decoder.decodeSingularInt32Field(value: &_storage._enum) }() - case 287: try { try decoder.decodeSingularInt32Field(value: &_storage._enumDescriptorProto) }() - case 288: try { try decoder.decodeSingularInt32Field(value: &_storage._enumOptions) }() - case 289: try { try decoder.decodeSingularInt32Field(value: &_storage._enumReservedRange) }() - case 290: try { try decoder.decodeSingularInt32Field(value: &_storage._enumType) }() - case 291: try { try decoder.decodeSingularInt32Field(value: &_storage._enumvalue) }() - case 292: try { try decoder.decodeSingularInt32Field(value: &_storage._enumValueDescriptorProto) }() - case 293: try { try decoder.decodeSingularInt32Field(value: &_storage._enumValueOptions) }() - case 294: try { try decoder.decodeSingularInt32Field(value: &_storage._equatable) }() - case 295: try { try decoder.decodeSingularInt32Field(value: &_storage._error) }() - case 296: try { try decoder.decodeSingularInt32Field(value: &_storage._expressibleByArrayLiteral) }() - case 297: try { try decoder.decodeSingularInt32Field(value: &_storage._expressibleByDictionaryLiteral) }() - case 298: try { try decoder.decodeSingularInt32Field(value: &_storage._ext) }() - case 299: try { try decoder.decodeSingularInt32Field(value: &_storage._extDecoder) }() - case 300: try { try decoder.decodeSingularInt32Field(value: &_storage._extendedGraphemeClusterLiteral) }() - case 301: try { try decoder.decodeSingularInt32Field(value: &_storage._extendedGraphemeClusterLiteralType) }() - case 302: try { try decoder.decodeSingularInt32Field(value: &_storage._extendee) }() - case 303: try { try decoder.decodeSingularInt32Field(value: &_storage._extensibleMessage) }() - case 304: try { try decoder.decodeSingularInt32Field(value: &_storage._extension) }() - case 305: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionField) }() - case 306: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionFieldNumber) }() - case 307: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionFieldValueSet) }() - case 308: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionMap) }() - case 309: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionRange) }() - case 310: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionRangeOptions) }() - case 311: try { try decoder.decodeSingularInt32Field(value: &_storage._extensions) }() - case 312: try { try decoder.decodeSingularInt32Field(value: &_storage._extras) }() - case 313: try { try decoder.decodeSingularInt32Field(value: &_storage._f) }() - case 314: try { try decoder.decodeSingularInt32Field(value: &_storage._false) }() - case 315: try { try decoder.decodeSingularInt32Field(value: &_storage._features) }() - case 316: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSet) }() - case 317: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSetDefaults) }() - case 318: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSetEditionDefault) }() - case 319: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSupport) }() - case 320: try { try decoder.decodeSingularInt32Field(value: &_storage._field) }() - case 321: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldData) }() - case 322: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldDescriptorProto) }() - case 323: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldMask) }() - case 324: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldName) }() - case 325: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNameCount) }() - case 326: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNum) }() - case 327: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNumber) }() - case 328: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNumberForProto) }() - case 329: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldOptions) }() - case 330: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldPresence) }() - case 331: try { try decoder.decodeSingularInt32Field(value: &_storage._fields) }() - case 332: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldSize) }() - case 333: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldTag) }() - case 334: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldType) }() - case 335: try { try decoder.decodeSingularInt32Field(value: &_storage._file) }() - case 336: try { try decoder.decodeSingularInt32Field(value: &_storage._fileDescriptorProto) }() - case 337: try { try decoder.decodeSingularInt32Field(value: &_storage._fileDescriptorSet) }() - case 338: try { try decoder.decodeSingularInt32Field(value: &_storage._fileName) }() - case 339: try { try decoder.decodeSingularInt32Field(value: &_storage._fileOptions) }() - case 340: try { try decoder.decodeSingularInt32Field(value: &_storage._filter) }() - case 341: try { try decoder.decodeSingularInt32Field(value: &_storage._final) }() - case 342: try { try decoder.decodeSingularInt32Field(value: &_storage._finiteOnly) }() - case 343: try { try decoder.decodeSingularInt32Field(value: &_storage._first) }() - case 344: try { try decoder.decodeSingularInt32Field(value: &_storage._firstItem) }() - case 345: try { try decoder.decodeSingularInt32Field(value: &_storage._fixedFeatures) }() - case 346: try { try decoder.decodeSingularInt32Field(value: &_storage._float) }() - case 347: try { try decoder.decodeSingularInt32Field(value: &_storage._floatLiteral) }() - case 348: try { try decoder.decodeSingularInt32Field(value: &_storage._floatLiteralType) }() - case 349: try { try decoder.decodeSingularInt32Field(value: &_storage._floatValue) }() - case 350: try { try decoder.decodeSingularInt32Field(value: &_storage._forMessageName) }() - case 351: try { try decoder.decodeSingularInt32Field(value: &_storage._formUnion) }() - case 352: try { try decoder.decodeSingularInt32Field(value: &_storage._forReadingFrom) }() - case 353: try { try decoder.decodeSingularInt32Field(value: &_storage._forTypeURL) }() - case 354: try { try decoder.decodeSingularInt32Field(value: &_storage._forwardParser) }() - case 355: try { try decoder.decodeSingularInt32Field(value: &_storage._forWritingInto) }() - case 356: try { try decoder.decodeSingularInt32Field(value: &_storage._from) }() - case 357: try { try decoder.decodeSingularInt32Field(value: &_storage._fromAscii2) }() - case 358: try { try decoder.decodeSingularInt32Field(value: &_storage._fromAscii4) }() - case 359: try { try decoder.decodeSingularInt32Field(value: &_storage._fromByteOffset) }() - case 360: try { try decoder.decodeSingularInt32Field(value: &_storage._fromHexDigit) }() - case 361: try { try decoder.decodeSingularInt32Field(value: &_storage._fullName) }() - case 362: try { try decoder.decodeSingularInt32Field(value: &_storage._func) }() - case 363: try { try decoder.decodeSingularInt32Field(value: &_storage._function) }() - case 364: try { try decoder.decodeSingularInt32Field(value: &_storage._g) }() - case 365: try { try decoder.decodeSingularInt32Field(value: &_storage._generatedCodeInfo) }() - case 366: try { try decoder.decodeSingularInt32Field(value: &_storage._get) }() - case 367: try { try decoder.decodeSingularInt32Field(value: &_storage._getExtensionValue) }() - case 368: try { try decoder.decodeSingularInt32Field(value: &_storage._googleapis) }() - case 369: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufAny) }() - case 370: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufApi) }() - case 371: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufBoolValue) }() - case 372: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufBytesValue) }() - case 373: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDescriptorProto) }() - case 374: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDoubleValue) }() - case 375: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDuration) }() - case 376: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEdition) }() - case 377: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEmpty) }() - case 378: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnum) }() - case 379: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumDescriptorProto) }() - case 380: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumOptions) }() - case 381: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValue) }() - case 382: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValueDescriptorProto) }() - case 383: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValueOptions) }() - case 384: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufExtensionRangeOptions) }() - case 385: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFeatureSet) }() - case 386: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFeatureSetDefaults) }() - case 387: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufField) }() - case 388: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldDescriptorProto) }() - case 389: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldMask) }() - case 390: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldOptions) }() - case 391: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileDescriptorProto) }() - case 392: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileDescriptorSet) }() - case 393: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileOptions) }() - case 394: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFloatValue) }() - case 395: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufGeneratedCodeInfo) }() - case 396: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufInt32Value) }() - case 397: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufInt64Value) }() - case 398: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufListValue) }() - case 399: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMessageOptions) }() - case 400: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethod) }() - case 401: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethodDescriptorProto) }() - case 402: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethodOptions) }() - case 403: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMixin) }() - case 404: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufNullValue) }() - case 405: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOneofDescriptorProto) }() - case 406: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOneofOptions) }() - case 407: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOption) }() - case 408: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufServiceDescriptorProto) }() - case 409: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufServiceOptions) }() - case 410: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSourceCodeInfo) }() - case 411: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSourceContext) }() - case 412: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufStringValue) }() - case 413: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufStruct) }() - case 414: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSyntax) }() - case 415: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufTimestamp) }() - case 416: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufType) }() - case 417: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUint32Value) }() - case 418: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUint64Value) }() - case 419: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUninterpretedOption) }() - case 420: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufValue) }() - case 421: try { try decoder.decodeSingularInt32Field(value: &_storage._goPackage) }() - case 422: try { try decoder.decodeSingularInt32Field(value: &_storage._group) }() - case 423: try { try decoder.decodeSingularInt32Field(value: &_storage._groupFieldNumberStack) }() - case 424: try { try decoder.decodeSingularInt32Field(value: &_storage._groupSize) }() - case 425: try { try decoder.decodeSingularInt32Field(value: &_storage._hadOneofValue) }() - case 426: try { try decoder.decodeSingularInt32Field(value: &_storage._handleConflictingOneOf) }() - case 427: try { try decoder.decodeSingularInt32Field(value: &_storage._hasAggregateValue_p) }() - case 428: try { try decoder.decodeSingularInt32Field(value: &_storage._hasAllowAlias_p) }() - case 429: try { try decoder.decodeSingularInt32Field(value: &_storage._hasBegin_p) }() - case 430: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCcEnableArenas_p) }() - case 431: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCcGenericServices_p) }() - case 432: try { try decoder.decodeSingularInt32Field(value: &_storage._hasClientStreaming_p) }() - case 433: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCsharpNamespace_p) }() - case 434: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCtype_p) }() - case 435: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDebugRedact_p) }() - case 436: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDefaultValue_p) }() - case 437: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecated_p) }() - case 438: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecatedLegacyJsonFieldConflicts_p) }() - case 439: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecationWarning_p) }() - case 440: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDoubleValue_p) }() - case 441: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEdition_p) }() - case 442: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionDeprecated_p) }() - case 443: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionIntroduced_p) }() - case 444: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionRemoved_p) }() - case 445: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEnd_p) }() - case 446: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEnumType_p) }() - case 447: try { try decoder.decodeSingularInt32Field(value: &_storage._hasExtendee_p) }() - case 448: try { try decoder.decodeSingularInt32Field(value: &_storage._hasExtensionValue_p) }() - case 449: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFeatures_p) }() - case 450: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFeatureSupport_p) }() - case 451: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFieldPresence_p) }() - case 452: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFixedFeatures_p) }() - case 453: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFullName_p) }() - case 454: try { try decoder.decodeSingularInt32Field(value: &_storage._hasGoPackage_p) }() - case 455: try { try decoder.decodeSingularInt32Field(value: &_storage._hash) }() - case 456: try { try decoder.decodeSingularInt32Field(value: &_storage._hashable) }() - case 457: try { try decoder.decodeSingularInt32Field(value: &_storage._hasher) }() - case 458: try { try decoder.decodeSingularInt32Field(value: &_storage._hashVisitor) }() - case 459: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIdempotencyLevel_p) }() - case 460: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIdentifierValue_p) }() - case 461: try { try decoder.decodeSingularInt32Field(value: &_storage._hasInputType_p) }() - case 462: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIsExtension_p) }() - case 463: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaGenerateEqualsAndHash_p) }() - case 464: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaGenericServices_p) }() - case 465: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaMultipleFiles_p) }() - case 466: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaOuterClassname_p) }() - case 467: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaPackage_p) }() - case 468: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaStringCheckUtf8_p) }() - case 469: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJsonFormat_p) }() - case 470: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJsonName_p) }() - case 471: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJstype_p) }() - case 472: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLabel_p) }() - case 473: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLazy_p) }() - case 474: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLeadingComments_p) }() - case 475: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMapEntry_p) }() - case 476: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMaximumEdition_p) }() - case 477: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMessageEncoding_p) }() - case 478: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMessageSetWireFormat_p) }() - case 479: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMinimumEdition_p) }() - case 480: try { try decoder.decodeSingularInt32Field(value: &_storage._hasName_p) }() - case 481: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNamePart_p) }() - case 482: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNegativeIntValue_p) }() - case 483: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNoStandardDescriptorAccessor_p) }() - case 484: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNumber_p) }() - case 485: try { try decoder.decodeSingularInt32Field(value: &_storage._hasObjcClassPrefix_p) }() - case 486: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOneofIndex_p) }() - case 487: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOptimizeFor_p) }() - case 488: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOptions_p) }() - case 489: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOutputType_p) }() - case 490: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOverridableFeatures_p) }() - case 491: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPackage_p) }() - case 492: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPacked_p) }() - case 493: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpClassPrefix_p) }() - case 494: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpMetadataNamespace_p) }() - case 495: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpNamespace_p) }() - case 496: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPositiveIntValue_p) }() - case 497: try { try decoder.decodeSingularInt32Field(value: &_storage._hasProto3Optional_p) }() - case 498: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPyGenericServices_p) }() - case 499: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRepeated_p) }() - case 500: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRepeatedFieldEncoding_p) }() - case 501: try { try decoder.decodeSingularInt32Field(value: &_storage._hasReserved_p) }() - case 502: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRetention_p) }() - case 503: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRubyPackage_p) }() - case 504: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSemantic_p) }() - case 505: try { try decoder.decodeSingularInt32Field(value: &_storage._hasServerStreaming_p) }() - case 506: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceCodeInfo_p) }() - case 507: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceContext_p) }() - case 508: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceFile_p) }() - case 509: try { try decoder.decodeSingularInt32Field(value: &_storage._hasStart_p) }() - case 510: try { try decoder.decodeSingularInt32Field(value: &_storage._hasStringValue_p) }() - case 511: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSwiftPrefix_p) }() - case 512: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSyntax_p) }() - case 513: try { try decoder.decodeSingularInt32Field(value: &_storage._hasTrailingComments_p) }() - case 514: try { try decoder.decodeSingularInt32Field(value: &_storage._hasType_p) }() - case 515: try { try decoder.decodeSingularInt32Field(value: &_storage._hasTypeName_p) }() - case 516: try { try decoder.decodeSingularInt32Field(value: &_storage._hasUnverifiedLazy_p) }() - case 517: try { try decoder.decodeSingularInt32Field(value: &_storage._hasUtf8Validation_p) }() - case 518: try { try decoder.decodeSingularInt32Field(value: &_storage._hasValue_p) }() - case 519: try { try decoder.decodeSingularInt32Field(value: &_storage._hasVerification_p) }() - case 520: try { try decoder.decodeSingularInt32Field(value: &_storage._hasWeak_p) }() - case 521: try { try decoder.decodeSingularInt32Field(value: &_storage._hour) }() - case 522: try { try decoder.decodeSingularInt32Field(value: &_storage._i) }() - case 523: try { try decoder.decodeSingularInt32Field(value: &_storage._idempotencyLevel) }() - case 524: try { try decoder.decodeSingularInt32Field(value: &_storage._identifierValue) }() - case 525: try { try decoder.decodeSingularInt32Field(value: &_storage._if) }() - case 526: try { try decoder.decodeSingularInt32Field(value: &_storage._ignoreUnknownExtensionFields) }() - case 527: try { try decoder.decodeSingularInt32Field(value: &_storage._ignoreUnknownFields) }() - case 528: try { try decoder.decodeSingularInt32Field(value: &_storage._index) }() - case 529: try { try decoder.decodeSingularInt32Field(value: &_storage._init_p) }() - case 530: try { try decoder.decodeSingularInt32Field(value: &_storage._inout) }() - case 531: try { try decoder.decodeSingularInt32Field(value: &_storage._inputType) }() - case 532: try { try decoder.decodeSingularInt32Field(value: &_storage._insert) }() - case 533: try { try decoder.decodeSingularInt32Field(value: &_storage._int) }() - case 534: try { try decoder.decodeSingularInt32Field(value: &_storage._int32) }() - case 535: try { try decoder.decodeSingularInt32Field(value: &_storage._int32Value) }() - case 536: try { try decoder.decodeSingularInt32Field(value: &_storage._int64) }() - case 537: try { try decoder.decodeSingularInt32Field(value: &_storage._int64Value) }() - case 538: try { try decoder.decodeSingularInt32Field(value: &_storage._int8) }() - case 539: try { try decoder.decodeSingularInt32Field(value: &_storage._integerLiteral) }() - case 540: try { try decoder.decodeSingularInt32Field(value: &_storage._integerLiteralType) }() - case 541: try { try decoder.decodeSingularInt32Field(value: &_storage._intern) }() - case 542: try { try decoder.decodeSingularInt32Field(value: &_storage._internal) }() - case 543: try { try decoder.decodeSingularInt32Field(value: &_storage._internalState) }() - case 544: try { try decoder.decodeSingularInt32Field(value: &_storage._into) }() - case 545: try { try decoder.decodeSingularInt32Field(value: &_storage._ints) }() - case 546: try { try decoder.decodeSingularInt32Field(value: &_storage._isA) }() - case 547: try { try decoder.decodeSingularInt32Field(value: &_storage._isEqual) }() - case 548: try { try decoder.decodeSingularInt32Field(value: &_storage._isEqualTo) }() - case 549: try { try decoder.decodeSingularInt32Field(value: &_storage._isExtension) }() - case 550: try { try decoder.decodeSingularInt32Field(value: &_storage._isInitialized_p) }() - case 551: try { try decoder.decodeSingularInt32Field(value: &_storage._isNegative) }() - case 552: try { try decoder.decodeSingularInt32Field(value: &_storage._itemTagsEncodedSize) }() - case 553: try { try decoder.decodeSingularInt32Field(value: &_storage._iterator) }() - case 554: try { try decoder.decodeSingularInt32Field(value: &_storage._javaGenerateEqualsAndHash) }() - case 555: try { try decoder.decodeSingularInt32Field(value: &_storage._javaGenericServices) }() - case 556: try { try decoder.decodeSingularInt32Field(value: &_storage._javaMultipleFiles) }() - case 557: try { try decoder.decodeSingularInt32Field(value: &_storage._javaOuterClassname) }() - case 558: try { try decoder.decodeSingularInt32Field(value: &_storage._javaPackage) }() - case 559: try { try decoder.decodeSingularInt32Field(value: &_storage._javaStringCheckUtf8) }() - case 560: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecoder) }() - case 561: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecodingError) }() - case 562: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecodingOptions) }() - case 563: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonEncoder) }() - case 564: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencoding) }() - case 565: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingError) }() - case 566: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingOptions) }() - case 567: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingVisitor) }() - case 568: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonFormat) }() - case 569: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonmapEncodingVisitor) }() - case 570: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonName) }() - case 571: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonPath) }() - case 572: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonPaths) }() - case 573: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonscanner) }() - case 574: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonString) }() - case 575: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonText) }() - case 576: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonUtf8Bytes) }() - case 577: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonUtf8Data) }() - case 578: try { try decoder.decodeSingularInt32Field(value: &_storage._jstype) }() - case 579: try { try decoder.decodeSingularInt32Field(value: &_storage._k) }() - case 580: try { try decoder.decodeSingularInt32Field(value: &_storage._kChunkSize) }() - case 581: try { try decoder.decodeSingularInt32Field(value: &_storage._key) }() - case 582: try { try decoder.decodeSingularInt32Field(value: &_storage._keyField) }() - case 583: try { try decoder.decodeSingularInt32Field(value: &_storage._keyFieldOpt) }() - case 584: try { try decoder.decodeSingularInt32Field(value: &_storage._keyType) }() - case 585: try { try decoder.decodeSingularInt32Field(value: &_storage._kind) }() - case 586: try { try decoder.decodeSingularInt32Field(value: &_storage._l) }() - case 587: try { try decoder.decodeSingularInt32Field(value: &_storage._label) }() - case 588: try { try decoder.decodeSingularInt32Field(value: &_storage._lazy) }() - case 589: try { try decoder.decodeSingularInt32Field(value: &_storage._leadingComments) }() - case 590: try { try decoder.decodeSingularInt32Field(value: &_storage._leadingDetachedComments) }() - case 591: try { try decoder.decodeSingularInt32Field(value: &_storage._length) }() - case 592: try { try decoder.decodeSingularInt32Field(value: &_storage._lessThan) }() - case 593: try { try decoder.decodeSingularInt32Field(value: &_storage._let) }() - case 594: try { try decoder.decodeSingularInt32Field(value: &_storage._lhs) }() - case 595: try { try decoder.decodeSingularInt32Field(value: &_storage._line) }() - case 596: try { try decoder.decodeSingularInt32Field(value: &_storage._list) }() - case 597: try { try decoder.decodeSingularInt32Field(value: &_storage._listOfMessages) }() - case 598: try { try decoder.decodeSingularInt32Field(value: &_storage._listValue) }() - case 599: try { try decoder.decodeSingularInt32Field(value: &_storage._littleEndian) }() - case 600: try { try decoder.decodeSingularInt32Field(value: &_storage._load) }() - case 601: try { try decoder.decodeSingularInt32Field(value: &_storage._localHasher) }() - case 602: try { try decoder.decodeSingularInt32Field(value: &_storage._location) }() - case 603: try { try decoder.decodeSingularInt32Field(value: &_storage._m) }() - case 604: try { try decoder.decodeSingularInt32Field(value: &_storage._major) }() - case 605: try { try decoder.decodeSingularInt32Field(value: &_storage._makeAsyncIterator) }() - case 606: try { try decoder.decodeSingularInt32Field(value: &_storage._makeIterator) }() - case 607: try { try decoder.decodeSingularInt32Field(value: &_storage._malformedLength) }() - case 608: try { try decoder.decodeSingularInt32Field(value: &_storage._mapEntry) }() - case 609: try { try decoder.decodeSingularInt32Field(value: &_storage._mapKeyType) }() - case 610: try { try decoder.decodeSingularInt32Field(value: &_storage._mapToMessages) }() - case 611: try { try decoder.decodeSingularInt32Field(value: &_storage._mapValueType) }() - case 612: try { try decoder.decodeSingularInt32Field(value: &_storage._mapVisitor) }() - case 613: try { try decoder.decodeSingularInt32Field(value: &_storage._maximumEdition) }() - case 614: try { try decoder.decodeSingularInt32Field(value: &_storage._mdayStart) }() - case 615: try { try decoder.decodeSingularInt32Field(value: &_storage._merge) }() - case 616: try { try decoder.decodeSingularInt32Field(value: &_storage._message) }() - case 617: try { try decoder.decodeSingularInt32Field(value: &_storage._messageDepthLimit) }() - case 618: try { try decoder.decodeSingularInt32Field(value: &_storage._messageEncoding) }() - case 619: try { try decoder.decodeSingularInt32Field(value: &_storage._messageExtension) }() - case 620: try { try decoder.decodeSingularInt32Field(value: &_storage._messageImplementationBase) }() - case 621: try { try decoder.decodeSingularInt32Field(value: &_storage._messageOptions) }() - case 622: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSet) }() - case 623: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSetWireFormat) }() - case 624: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSize) }() - case 625: try { try decoder.decodeSingularInt32Field(value: &_storage._messageType) }() - case 626: try { try decoder.decodeSingularInt32Field(value: &_storage._method) }() - case 627: try { try decoder.decodeSingularInt32Field(value: &_storage._methodDescriptorProto) }() - case 628: try { try decoder.decodeSingularInt32Field(value: &_storage._methodOptions) }() - case 629: try { try decoder.decodeSingularInt32Field(value: &_storage._methods) }() - case 630: try { try decoder.decodeSingularInt32Field(value: &_storage._min) }() - case 631: try { try decoder.decodeSingularInt32Field(value: &_storage._minimumEdition) }() - case 632: try { try decoder.decodeSingularInt32Field(value: &_storage._minor) }() - case 633: try { try decoder.decodeSingularInt32Field(value: &_storage._mixin) }() - case 634: try { try decoder.decodeSingularInt32Field(value: &_storage._mixins) }() - case 635: try { try decoder.decodeSingularInt32Field(value: &_storage._modifier) }() - case 636: try { try decoder.decodeSingularInt32Field(value: &_storage._modify) }() - case 637: try { try decoder.decodeSingularInt32Field(value: &_storage._month) }() - case 638: try { try decoder.decodeSingularInt32Field(value: &_storage._msgExtension) }() - case 639: try { try decoder.decodeSingularInt32Field(value: &_storage._mutating) }() - case 640: try { try decoder.decodeSingularInt32Field(value: &_storage._n) }() - case 641: try { try decoder.decodeSingularInt32Field(value: &_storage._name) }() - case 642: try { try decoder.decodeSingularInt32Field(value: &_storage._nameDescription) }() - case 643: try { try decoder.decodeSingularInt32Field(value: &_storage._nameMap) }() - case 644: try { try decoder.decodeSingularInt32Field(value: &_storage._namePart) }() - case 645: try { try decoder.decodeSingularInt32Field(value: &_storage._names) }() - case 646: try { try decoder.decodeSingularInt32Field(value: &_storage._nanos) }() - case 647: try { try decoder.decodeSingularInt32Field(value: &_storage._negativeIntValue) }() - case 648: try { try decoder.decodeSingularInt32Field(value: &_storage._nestedType) }() - case 649: try { try decoder.decodeSingularInt32Field(value: &_storage._newL) }() - case 650: try { try decoder.decodeSingularInt32Field(value: &_storage._newList) }() - case 651: try { try decoder.decodeSingularInt32Field(value: &_storage._newValue) }() - case 652: try { try decoder.decodeSingularInt32Field(value: &_storage._next) }() - case 653: try { try decoder.decodeSingularInt32Field(value: &_storage._nextByte) }() - case 654: try { try decoder.decodeSingularInt32Field(value: &_storage._nextFieldNumber) }() - case 655: try { try decoder.decodeSingularInt32Field(value: &_storage._nextVarInt) }() - case 656: try { try decoder.decodeSingularInt32Field(value: &_storage._nil) }() - case 657: try { try decoder.decodeSingularInt32Field(value: &_storage._nilLiteral) }() - case 658: try { try decoder.decodeSingularInt32Field(value: &_storage._noBytesAvailable) }() - case 659: try { try decoder.decodeSingularInt32Field(value: &_storage._noStandardDescriptorAccessor) }() - case 660: try { try decoder.decodeSingularInt32Field(value: &_storage._nullValue) }() - case 661: try { try decoder.decodeSingularInt32Field(value: &_storage._number) }() - case 662: try { try decoder.decodeSingularInt32Field(value: &_storage._numberValue) }() - case 663: try { try decoder.decodeSingularInt32Field(value: &_storage._objcClassPrefix) }() - case 664: try { try decoder.decodeSingularInt32Field(value: &_storage._of) }() - case 665: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofDecl) }() - case 666: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofDescriptorProto) }() - case 667: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofIndex) }() - case 668: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofOptions) }() - case 669: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofs) }() - case 670: try { try decoder.decodeSingularInt32Field(value: &_storage._oneOfKind) }() - case 671: try { try decoder.decodeSingularInt32Field(value: &_storage._optimizeFor) }() - case 672: try { try decoder.decodeSingularInt32Field(value: &_storage._optimizeMode) }() - case 673: try { try decoder.decodeSingularInt32Field(value: &_storage._option) }() - case 674: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalEnumExtensionField) }() - case 675: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalExtensionField) }() - case 676: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalGroupExtensionField) }() - case 677: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalMessageExtensionField) }() - case 678: try { try decoder.decodeSingularInt32Field(value: &_storage._optionRetention) }() - case 679: try { try decoder.decodeSingularInt32Field(value: &_storage._options) }() - case 680: try { try decoder.decodeSingularInt32Field(value: &_storage._optionTargetType) }() - case 681: try { try decoder.decodeSingularInt32Field(value: &_storage._other) }() - case 682: try { try decoder.decodeSingularInt32Field(value: &_storage._others) }() - case 683: try { try decoder.decodeSingularInt32Field(value: &_storage._out) }() - case 684: try { try decoder.decodeSingularInt32Field(value: &_storage._outputType) }() - case 685: try { try decoder.decodeSingularInt32Field(value: &_storage._overridableFeatures) }() - case 686: try { try decoder.decodeSingularInt32Field(value: &_storage._p) }() - case 687: try { try decoder.decodeSingularInt32Field(value: &_storage._package) }() - case 688: try { try decoder.decodeSingularInt32Field(value: &_storage._packed) }() - case 689: try { try decoder.decodeSingularInt32Field(value: &_storage._packedEnumExtensionField) }() - case 690: try { try decoder.decodeSingularInt32Field(value: &_storage._packedExtensionField) }() - case 691: try { try decoder.decodeSingularInt32Field(value: &_storage._padding) }() - case 692: try { try decoder.decodeSingularInt32Field(value: &_storage._parent) }() - case 693: try { try decoder.decodeSingularInt32Field(value: &_storage._parse) }() - case 694: try { try decoder.decodeSingularInt32Field(value: &_storage._path) }() - case 695: try { try decoder.decodeSingularInt32Field(value: &_storage._paths) }() - case 696: try { try decoder.decodeSingularInt32Field(value: &_storage._payload) }() - case 697: try { try decoder.decodeSingularInt32Field(value: &_storage._payloadSize) }() - case 698: try { try decoder.decodeSingularInt32Field(value: &_storage._phpClassPrefix) }() - case 699: try { try decoder.decodeSingularInt32Field(value: &_storage._phpMetadataNamespace) }() - case 700: try { try decoder.decodeSingularInt32Field(value: &_storage._phpNamespace) }() - case 701: try { try decoder.decodeSingularInt32Field(value: &_storage._pos) }() - case 702: try { try decoder.decodeSingularInt32Field(value: &_storage._positiveIntValue) }() - case 703: try { try decoder.decodeSingularInt32Field(value: &_storage._prefix) }() - case 704: try { try decoder.decodeSingularInt32Field(value: &_storage._preserveProtoFieldNames) }() - case 705: try { try decoder.decodeSingularInt32Field(value: &_storage._preTraverse) }() - case 706: try { try decoder.decodeSingularInt32Field(value: &_storage._printUnknownFields) }() - case 707: try { try decoder.decodeSingularInt32Field(value: &_storage._proto2) }() - case 708: try { try decoder.decodeSingularInt32Field(value: &_storage._proto3DefaultValue) }() - case 709: try { try decoder.decodeSingularInt32Field(value: &_storage._proto3Optional) }() - case 710: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufApiversionCheck) }() - case 711: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufApiversion3) }() - case 712: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufBool) }() - case 713: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufBytes) }() - case 714: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufDouble) }() - case 715: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufEnumMap) }() - case 716: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufExtension) }() - case 717: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFixed32) }() - case 718: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFixed64) }() - case 719: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFloat) }() - case 720: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufInt32) }() - case 721: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufInt64) }() - case 722: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufMap) }() - case 723: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufMessageMap) }() - case 724: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSfixed32) }() - case 725: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSfixed64) }() - case 726: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSint32) }() - case 727: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSint64) }() - case 728: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufString) }() - case 729: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufUint32) }() - case 730: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufUint64) }() - case 731: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufExtensionFieldValues) }() - case 732: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFieldNumber) }() - case 733: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufGeneratedIsEqualTo) }() - case 734: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufNameMap) }() - case 735: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufNewField) }() - case 736: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufPackage) }() - case 737: try { try decoder.decodeSingularInt32Field(value: &_storage._protocol) }() - case 738: try { try decoder.decodeSingularInt32Field(value: &_storage._protoFieldName) }() - case 739: try { try decoder.decodeSingularInt32Field(value: &_storage._protoMessageName) }() - case 740: try { try decoder.decodeSingularInt32Field(value: &_storage._protoNameProviding) }() - case 741: try { try decoder.decodeSingularInt32Field(value: &_storage._protoPaths) }() - case 742: try { try decoder.decodeSingularInt32Field(value: &_storage._public) }() - case 743: try { try decoder.decodeSingularInt32Field(value: &_storage._publicDependency) }() - case 744: try { try decoder.decodeSingularInt32Field(value: &_storage._putBoolValue) }() - case 745: try { try decoder.decodeSingularInt32Field(value: &_storage._putBytesValue) }() - case 746: try { try decoder.decodeSingularInt32Field(value: &_storage._putDoubleValue) }() - case 747: try { try decoder.decodeSingularInt32Field(value: &_storage._putEnumValue) }() - case 748: try { try decoder.decodeSingularInt32Field(value: &_storage._putFixedUint32) }() - case 749: try { try decoder.decodeSingularInt32Field(value: &_storage._putFixedUint64) }() - case 750: try { try decoder.decodeSingularInt32Field(value: &_storage._putFloatValue) }() - case 751: try { try decoder.decodeSingularInt32Field(value: &_storage._putInt64) }() - case 752: try { try decoder.decodeSingularInt32Field(value: &_storage._putStringValue) }() - case 753: try { try decoder.decodeSingularInt32Field(value: &_storage._putUint64) }() - case 754: try { try decoder.decodeSingularInt32Field(value: &_storage._putUint64Hex) }() - case 755: try { try decoder.decodeSingularInt32Field(value: &_storage._putVarInt) }() - case 756: try { try decoder.decodeSingularInt32Field(value: &_storage._putZigZagVarInt) }() - case 757: try { try decoder.decodeSingularInt32Field(value: &_storage._pyGenericServices) }() - case 758: try { try decoder.decodeSingularInt32Field(value: &_storage._r) }() - case 759: try { try decoder.decodeSingularInt32Field(value: &_storage._rawChars) }() - case 760: try { try decoder.decodeSingularInt32Field(value: &_storage._rawRepresentable) }() - case 761: try { try decoder.decodeSingularInt32Field(value: &_storage._rawValue) }() - case 762: try { try decoder.decodeSingularInt32Field(value: &_storage._read4HexDigits) }() - case 763: try { try decoder.decodeSingularInt32Field(value: &_storage._readBytes) }() - case 764: try { try decoder.decodeSingularInt32Field(value: &_storage._register) }() - case 765: try { try decoder.decodeSingularInt32Field(value: &_storage._repeated) }() - case 766: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedEnumExtensionField) }() - case 767: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedExtensionField) }() - case 768: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedFieldEncoding) }() - case 769: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedGroupExtensionField) }() - case 770: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedMessageExtensionField) }() - case 771: try { try decoder.decodeSingularInt32Field(value: &_storage._repeating) }() - case 772: try { try decoder.decodeSingularInt32Field(value: &_storage._requestStreaming) }() - case 773: try { try decoder.decodeSingularInt32Field(value: &_storage._requestTypeURL) }() - case 774: try { try decoder.decodeSingularInt32Field(value: &_storage._requiredSize) }() - case 775: try { try decoder.decodeSingularInt32Field(value: &_storage._responseStreaming) }() - case 776: try { try decoder.decodeSingularInt32Field(value: &_storage._responseTypeURL) }() - case 777: try { try decoder.decodeSingularInt32Field(value: &_storage._result) }() - case 778: try { try decoder.decodeSingularInt32Field(value: &_storage._retention) }() - case 779: try { try decoder.decodeSingularInt32Field(value: &_storage._rethrows) }() - case 780: try { try decoder.decodeSingularInt32Field(value: &_storage._return) }() - case 781: try { try decoder.decodeSingularInt32Field(value: &_storage._returnType) }() - case 782: try { try decoder.decodeSingularInt32Field(value: &_storage._revision) }() - case 783: try { try decoder.decodeSingularInt32Field(value: &_storage._rhs) }() - case 784: try { try decoder.decodeSingularInt32Field(value: &_storage._root) }() - case 785: try { try decoder.decodeSingularInt32Field(value: &_storage._rubyPackage) }() - case 786: try { try decoder.decodeSingularInt32Field(value: &_storage._s) }() - case 787: try { try decoder.decodeSingularInt32Field(value: &_storage._sawBackslash) }() - case 788: try { try decoder.decodeSingularInt32Field(value: &_storage._sawSection4Characters) }() - case 789: try { try decoder.decodeSingularInt32Field(value: &_storage._sawSection5Characters) }() - case 790: try { try decoder.decodeSingularInt32Field(value: &_storage._scan) }() - case 791: try { try decoder.decodeSingularInt32Field(value: &_storage._scanner) }() - case 792: try { try decoder.decodeSingularInt32Field(value: &_storage._seconds) }() - case 793: try { try decoder.decodeSingularInt32Field(value: &_storage._self_p) }() - case 794: try { try decoder.decodeSingularInt32Field(value: &_storage._semantic) }() - case 795: try { try decoder.decodeSingularInt32Field(value: &_storage._sendable) }() - case 796: try { try decoder.decodeSingularInt32Field(value: &_storage._separator) }() - case 797: try { try decoder.decodeSingularInt32Field(value: &_storage._serialize) }() - case 798: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedBytes) }() - case 799: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedData) }() - case 800: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedSize) }() - case 801: try { try decoder.decodeSingularInt32Field(value: &_storage._serverStreaming) }() - case 802: try { try decoder.decodeSingularInt32Field(value: &_storage._service) }() - case 803: try { try decoder.decodeSingularInt32Field(value: &_storage._serviceDescriptorProto) }() - case 804: try { try decoder.decodeSingularInt32Field(value: &_storage._serviceOptions) }() - case 805: try { try decoder.decodeSingularInt32Field(value: &_storage._set) }() - case 806: try { try decoder.decodeSingularInt32Field(value: &_storage._setExtensionValue) }() - case 807: try { try decoder.decodeSingularInt32Field(value: &_storage._shift) }() - case 808: try { try decoder.decodeSingularInt32Field(value: &_storage._simpleExtensionMap) }() - case 809: try { try decoder.decodeSingularInt32Field(value: &_storage._size) }() - case 810: try { try decoder.decodeSingularInt32Field(value: &_storage._sizer) }() - case 811: try { try decoder.decodeSingularInt32Field(value: &_storage._source) }() - case 812: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceCodeInfo) }() - case 813: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceContext) }() - case 814: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceEncoding) }() - case 815: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceFile) }() - case 816: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceLocation) }() - case 817: try { try decoder.decodeSingularInt32Field(value: &_storage._span) }() - case 818: try { try decoder.decodeSingularInt32Field(value: &_storage._split) }() - case 819: try { try decoder.decodeSingularInt32Field(value: &_storage._start) }() - case 820: try { try decoder.decodeSingularInt32Field(value: &_storage._startArray) }() - case 821: try { try decoder.decodeSingularInt32Field(value: &_storage._startArrayObject) }() - case 822: try { try decoder.decodeSingularInt32Field(value: &_storage._startField) }() - case 823: try { try decoder.decodeSingularInt32Field(value: &_storage._startIndex) }() - case 824: try { try decoder.decodeSingularInt32Field(value: &_storage._startMessageField) }() - case 825: try { try decoder.decodeSingularInt32Field(value: &_storage._startObject) }() - case 826: try { try decoder.decodeSingularInt32Field(value: &_storage._startRegularField) }() - case 827: try { try decoder.decodeSingularInt32Field(value: &_storage._state) }() - case 828: try { try decoder.decodeSingularInt32Field(value: &_storage._static) }() - case 829: try { try decoder.decodeSingularInt32Field(value: &_storage._staticString) }() - case 830: try { try decoder.decodeSingularInt32Field(value: &_storage._storage) }() - case 831: try { try decoder.decodeSingularInt32Field(value: &_storage._string) }() - case 832: try { try decoder.decodeSingularInt32Field(value: &_storage._stringLiteral) }() - case 833: try { try decoder.decodeSingularInt32Field(value: &_storage._stringLiteralType) }() - case 834: try { try decoder.decodeSingularInt32Field(value: &_storage._stringResult) }() - case 835: try { try decoder.decodeSingularInt32Field(value: &_storage._stringValue) }() - case 836: try { try decoder.decodeSingularInt32Field(value: &_storage._struct) }() - case 837: try { try decoder.decodeSingularInt32Field(value: &_storage._structValue) }() - case 838: try { try decoder.decodeSingularInt32Field(value: &_storage._subDecoder) }() - case 839: try { try decoder.decodeSingularInt32Field(value: &_storage._subscript) }() - case 840: try { try decoder.decodeSingularInt32Field(value: &_storage._subVisitor) }() - case 841: try { try decoder.decodeSingularInt32Field(value: &_storage._swift) }() - case 842: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftPrefix) }() - case 843: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftProtobufContiguousBytes) }() - case 844: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftProtobufError) }() - case 845: try { try decoder.decodeSingularInt32Field(value: &_storage._syntax) }() - case 846: try { try decoder.decodeSingularInt32Field(value: &_storage._t) }() - case 847: try { try decoder.decodeSingularInt32Field(value: &_storage._tag) }() - case 848: try { try decoder.decodeSingularInt32Field(value: &_storage._targets) }() - case 849: try { try decoder.decodeSingularInt32Field(value: &_storage._terminator) }() - case 850: try { try decoder.decodeSingularInt32Field(value: &_storage._testDecoder) }() - case 851: try { try decoder.decodeSingularInt32Field(value: &_storage._text) }() - case 852: try { try decoder.decodeSingularInt32Field(value: &_storage._textDecoder) }() - case 853: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecoder) }() - case 854: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecodingError) }() - case 855: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecodingOptions) }() - case 856: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatEncodingOptions) }() - case 857: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatEncodingVisitor) }() - case 858: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatString) }() - case 859: try { try decoder.decodeSingularInt32Field(value: &_storage._throwOrIgnore) }() - case 860: try { try decoder.decodeSingularInt32Field(value: &_storage._throws) }() - case 861: try { try decoder.decodeSingularInt32Field(value: &_storage._timeInterval) }() - case 862: try { try decoder.decodeSingularInt32Field(value: &_storage._timeIntervalSince1970) }() - case 863: try { try decoder.decodeSingularInt32Field(value: &_storage._timeIntervalSinceReferenceDate) }() - case 864: try { try decoder.decodeSingularInt32Field(value: &_storage._timestamp) }() - case 865: try { try decoder.decodeSingularInt32Field(value: &_storage._tooLarge) }() - case 866: try { try decoder.decodeSingularInt32Field(value: &_storage._total) }() - case 867: try { try decoder.decodeSingularInt32Field(value: &_storage._totalArrayDepth) }() - case 868: try { try decoder.decodeSingularInt32Field(value: &_storage._totalSize) }() - case 869: try { try decoder.decodeSingularInt32Field(value: &_storage._trailingComments) }() - case 870: try { try decoder.decodeSingularInt32Field(value: &_storage._traverse) }() - case 871: try { try decoder.decodeSingularInt32Field(value: &_storage._true) }() - case 872: try { try decoder.decodeSingularInt32Field(value: &_storage._try) }() - case 873: try { try decoder.decodeSingularInt32Field(value: &_storage._type) }() - case 874: try { try decoder.decodeSingularInt32Field(value: &_storage._typealias) }() - case 875: try { try decoder.decodeSingularInt32Field(value: &_storage._typeEnum) }() - case 876: try { try decoder.decodeSingularInt32Field(value: &_storage._typeName) }() - case 877: try { try decoder.decodeSingularInt32Field(value: &_storage._typePrefix) }() - case 878: try { try decoder.decodeSingularInt32Field(value: &_storage._typeStart) }() - case 879: try { try decoder.decodeSingularInt32Field(value: &_storage._typeUnknown) }() - case 880: try { try decoder.decodeSingularInt32Field(value: &_storage._typeURL) }() - case 881: try { try decoder.decodeSingularInt32Field(value: &_storage._uint32) }() - case 882: try { try decoder.decodeSingularInt32Field(value: &_storage._uint32Value) }() - case 883: try { try decoder.decodeSingularInt32Field(value: &_storage._uint64) }() - case 884: try { try decoder.decodeSingularInt32Field(value: &_storage._uint64Value) }() - case 885: try { try decoder.decodeSingularInt32Field(value: &_storage._uint8) }() - case 886: try { try decoder.decodeSingularInt32Field(value: &_storage._unchecked) }() - case 887: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarLiteral) }() - case 888: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarLiteralType) }() - case 889: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalars) }() - case 890: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarView) }() - case 891: try { try decoder.decodeSingularInt32Field(value: &_storage._uninterpretedOption) }() - case 892: try { try decoder.decodeSingularInt32Field(value: &_storage._union) }() - case 893: try { try decoder.decodeSingularInt32Field(value: &_storage._uniqueStorage) }() - case 894: try { try decoder.decodeSingularInt32Field(value: &_storage._unknown) }() - case 895: try { try decoder.decodeSingularInt32Field(value: &_storage._unknownFields_p) }() - case 896: try { try decoder.decodeSingularInt32Field(value: &_storage._unknownStorage) }() - case 897: try { try decoder.decodeSingularInt32Field(value: &_storage._unpackTo) }() - case 898: try { try decoder.decodeSingularInt32Field(value: &_storage._unregisteredTypeURL) }() - case 899: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeBufferPointer) }() - case 900: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeMutablePointer) }() - case 901: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeMutableRawBufferPointer) }() - case 902: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeRawBufferPointer) }() - case 903: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeRawPointer) }() - case 904: try { try decoder.decodeSingularInt32Field(value: &_storage._unverifiedLazy) }() - case 905: try { try decoder.decodeSingularInt32Field(value: &_storage._updatedOptions) }() - case 906: try { try decoder.decodeSingularInt32Field(value: &_storage._url) }() - case 907: try { try decoder.decodeSingularInt32Field(value: &_storage._useDeterministicOrdering) }() - case 908: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8) }() - case 909: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8Ptr) }() - case 910: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8ToDouble) }() - case 911: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8Validation) }() - case 912: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8View) }() - case 913: try { try decoder.decodeSingularInt32Field(value: &_storage._v) }() - case 914: try { try decoder.decodeSingularInt32Field(value: &_storage._value) }() - case 915: try { try decoder.decodeSingularInt32Field(value: &_storage._valueField) }() - case 916: try { try decoder.decodeSingularInt32Field(value: &_storage._values) }() - case 917: try { try decoder.decodeSingularInt32Field(value: &_storage._valueType) }() - case 918: try { try decoder.decodeSingularInt32Field(value: &_storage._var) }() - case 919: try { try decoder.decodeSingularInt32Field(value: &_storage._verification) }() - case 920: try { try decoder.decodeSingularInt32Field(value: &_storage._verificationState) }() - case 921: try { try decoder.decodeSingularInt32Field(value: &_storage._version) }() - case 922: try { try decoder.decodeSingularInt32Field(value: &_storage._versionString) }() - case 923: try { try decoder.decodeSingularInt32Field(value: &_storage._visitExtensionFields) }() - case 924: try { try decoder.decodeSingularInt32Field(value: &_storage._visitExtensionFieldsAsMessageSet) }() - case 925: try { try decoder.decodeSingularInt32Field(value: &_storage._visitMapField) }() - case 926: try { try decoder.decodeSingularInt32Field(value: &_storage._visitor) }() - case 927: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPacked) }() - case 928: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedBoolField) }() - case 929: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedDoubleField) }() - case 930: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedEnumField) }() - case 931: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFixed32Field) }() - case 932: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFixed64Field) }() - case 933: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFloatField) }() - case 934: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedInt32Field) }() - case 935: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedInt64Field) }() - case 936: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSfixed32Field) }() - case 937: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSfixed64Field) }() - case 938: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSint32Field) }() - case 939: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSint64Field) }() - case 940: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedUint32Field) }() - case 941: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedUint64Field) }() - case 942: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeated) }() - case 943: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedBoolField) }() - case 944: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedBytesField) }() - case 945: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedDoubleField) }() - case 946: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedEnumField) }() - case 947: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFixed32Field) }() - case 948: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFixed64Field) }() - case 949: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFloatField) }() - case 950: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedGroupField) }() - case 951: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedInt32Field) }() - case 952: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedInt64Field) }() - case 953: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedMessageField) }() - case 954: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSfixed32Field) }() - case 955: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSfixed64Field) }() - case 956: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSint32Field) }() - case 957: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSint64Field) }() - case 958: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedStringField) }() - case 959: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedUint32Field) }() - case 960: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedUint64Field) }() - case 961: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingular) }() - case 962: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularBoolField) }() - case 963: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularBytesField) }() - case 964: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularDoubleField) }() - case 965: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularEnumField) }() - case 966: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFixed32Field) }() - case 967: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFixed64Field) }() - case 968: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFloatField) }() - case 969: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularGroupField) }() - case 970: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularInt32Field) }() - case 971: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularInt64Field) }() - case 972: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularMessageField) }() - case 973: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSfixed32Field) }() - case 974: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSfixed64Field) }() - case 975: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSint32Field) }() - case 976: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSint64Field) }() - case 977: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularStringField) }() - case 978: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularUint32Field) }() - case 979: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularUint64Field) }() - case 980: try { try decoder.decodeSingularInt32Field(value: &_storage._visitUnknown) }() - case 981: try { try decoder.decodeSingularInt32Field(value: &_storage._wasDecoded) }() - case 982: try { try decoder.decodeSingularInt32Field(value: &_storage._weak) }() - case 983: try { try decoder.decodeSingularInt32Field(value: &_storage._weakDependency) }() - case 984: try { try decoder.decodeSingularInt32Field(value: &_storage._where) }() - case 985: try { try decoder.decodeSingularInt32Field(value: &_storage._wireFormat) }() - case 986: try { try decoder.decodeSingularInt32Field(value: &_storage._with) }() - case 987: try { try decoder.decodeSingularInt32Field(value: &_storage._withUnsafeBytes) }() - case 988: try { try decoder.decodeSingularInt32Field(value: &_storage._withUnsafeMutableBytes) }() - case 989: try { try decoder.decodeSingularInt32Field(value: &_storage._work) }() - case 990: try { try decoder.decodeSingularInt32Field(value: &_storage._wrapped) }() - case 991: try { try decoder.decodeSingularInt32Field(value: &_storage._wrappedType) }() - case 992: try { try decoder.decodeSingularInt32Field(value: &_storage._wrappedValue) }() - case 993: try { try decoder.decodeSingularInt32Field(value: &_storage._written) }() - case 994: try { try decoder.decodeSingularInt32Field(value: &_storage._yday) }() + case 12: try { try decoder.decodeSingularInt32Field(value: &_storage._anyUnpackError) }() + case 13: try { try decoder.decodeSingularInt32Field(value: &_storage._api) }() + case 14: try { try decoder.decodeSingularInt32Field(value: &_storage._appended) }() + case 15: try { try decoder.decodeSingularInt32Field(value: &_storage._appendUintHex) }() + case 16: try { try decoder.decodeSingularInt32Field(value: &_storage._appendUnknown) }() + case 17: try { try decoder.decodeSingularInt32Field(value: &_storage._areAllInitialized) }() + case 18: try { try decoder.decodeSingularInt32Field(value: &_storage._array) }() + case 19: try { try decoder.decodeSingularInt32Field(value: &_storage._arrayDepth) }() + case 20: try { try decoder.decodeSingularInt32Field(value: &_storage._arrayLiteral) }() + case 21: try { try decoder.decodeSingularInt32Field(value: &_storage._arraySeparator) }() + case 22: try { try decoder.decodeSingularInt32Field(value: &_storage._as) }() + case 23: try { try decoder.decodeSingularInt32Field(value: &_storage._asciiOpenCurlyBracket) }() + case 24: try { try decoder.decodeSingularInt32Field(value: &_storage._asciiZero) }() + case 25: try { try decoder.decodeSingularInt32Field(value: &_storage._async) }() + case 26: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncIterator) }() + case 27: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncIteratorProtocol) }() + case 28: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncMessageSequence) }() + case 29: try { try decoder.decodeSingularInt32Field(value: &_storage._available) }() + case 30: try { try decoder.decodeSingularInt32Field(value: &_storage._b) }() + case 31: try { try decoder.decodeSingularInt32Field(value: &_storage._base) }() + case 32: try { try decoder.decodeSingularInt32Field(value: &_storage._base64Values) }() + case 33: try { try decoder.decodeSingularInt32Field(value: &_storage._baseAddress) }() + case 34: try { try decoder.decodeSingularInt32Field(value: &_storage._baseType) }() + case 35: try { try decoder.decodeSingularInt32Field(value: &_storage._begin) }() + case 36: try { try decoder.decodeSingularInt32Field(value: &_storage._binary) }() + case 37: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecoder) }() + case 38: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecoding) }() + case 39: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecodingError) }() + case 40: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecodingOptions) }() + case 41: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDelimited) }() + case 42: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncoder) }() + case 43: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingError) }() + case 44: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingMessageSetSizeVisitor) }() + case 45: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingMessageSetVisitor) }() + case 46: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingOptions) }() + case 47: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingSizeVisitor) }() + case 48: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingVisitor) }() + case 49: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryOptions) }() + case 50: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryProtobufDelimitedMessages) }() + case 51: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryStreamDecoding) }() + case 52: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryStreamDecodingError) }() + case 53: try { try decoder.decodeSingularInt32Field(value: &_storage._bitPattern) }() + case 54: try { try decoder.decodeSingularInt32Field(value: &_storage._body) }() + case 55: try { try decoder.decodeSingularInt32Field(value: &_storage._bool) }() + case 56: try { try decoder.decodeSingularInt32Field(value: &_storage._booleanLiteral) }() + case 57: try { try decoder.decodeSingularInt32Field(value: &_storage._booleanLiteralType) }() + case 58: try { try decoder.decodeSingularInt32Field(value: &_storage._boolValue) }() + case 59: try { try decoder.decodeSingularInt32Field(value: &_storage._buffer) }() + case 60: try { try decoder.decodeSingularInt32Field(value: &_storage._bytes) }() + case 61: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesInGroup) }() + case 62: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesNeeded) }() + case 63: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesRead) }() + case 64: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesValue) }() + case 65: try { try decoder.decodeSingularInt32Field(value: &_storage._c) }() + case 66: try { try decoder.decodeSingularInt32Field(value: &_storage._capitalizeNext) }() + case 67: try { try decoder.decodeSingularInt32Field(value: &_storage._cardinality) }() + case 68: try { try decoder.decodeSingularInt32Field(value: &_storage._caseIterable) }() + case 69: try { try decoder.decodeSingularInt32Field(value: &_storage._ccEnableArenas) }() + case 70: try { try decoder.decodeSingularInt32Field(value: &_storage._ccGenericServices) }() + case 71: try { try decoder.decodeSingularInt32Field(value: &_storage._character) }() + case 72: try { try decoder.decodeSingularInt32Field(value: &_storage._chars) }() + case 73: try { try decoder.decodeSingularInt32Field(value: &_storage._chunk) }() + case 74: try { try decoder.decodeSingularInt32Field(value: &_storage._class) }() + case 75: try { try decoder.decodeSingularInt32Field(value: &_storage._clearAggregateValue_p) }() + case 76: try { try decoder.decodeSingularInt32Field(value: &_storage._clearAllowAlias_p) }() + case 77: try { try decoder.decodeSingularInt32Field(value: &_storage._clearBegin_p) }() + case 78: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCcEnableArenas_p) }() + case 79: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCcGenericServices_p) }() + case 80: try { try decoder.decodeSingularInt32Field(value: &_storage._clearClientStreaming_p) }() + case 81: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCsharpNamespace_p) }() + case 82: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCtype_p) }() + case 83: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDebugRedact_p) }() + case 84: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDefaultValue_p) }() + case 85: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecated_p) }() + case 86: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecatedLegacyJsonFieldConflicts_p) }() + case 87: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecationWarning_p) }() + case 88: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDoubleValue_p) }() + case 89: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEdition_p) }() + case 90: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionDeprecated_p) }() + case 91: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionIntroduced_p) }() + case 92: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionRemoved_p) }() + case 93: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEnd_p) }() + case 94: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEnumType_p) }() + case 95: try { try decoder.decodeSingularInt32Field(value: &_storage._clearExtendee_p) }() + case 96: try { try decoder.decodeSingularInt32Field(value: &_storage._clearExtensionValue_p) }() + case 97: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFeatures_p) }() + case 98: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFeatureSupport_p) }() + case 99: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFieldPresence_p) }() + case 100: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFixedFeatures_p) }() + case 101: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFullName_p) }() + case 102: try { try decoder.decodeSingularInt32Field(value: &_storage._clearGoPackage_p) }() + case 103: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIdempotencyLevel_p) }() + case 104: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIdentifierValue_p) }() + case 105: try { try decoder.decodeSingularInt32Field(value: &_storage._clearInputType_p) }() + case 106: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIsExtension_p) }() + case 107: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaGenerateEqualsAndHash_p) }() + case 108: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaGenericServices_p) }() + case 109: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaMultipleFiles_p) }() + case 110: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaOuterClassname_p) }() + case 111: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaPackage_p) }() + case 112: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaStringCheckUtf8_p) }() + case 113: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJsonFormat_p) }() + case 114: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJsonName_p) }() + case 115: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJstype_p) }() + case 116: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLabel_p) }() + case 117: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLazy_p) }() + case 118: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLeadingComments_p) }() + case 119: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMapEntry_p) }() + case 120: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMaximumEdition_p) }() + case 121: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMessageEncoding_p) }() + case 122: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMessageSetWireFormat_p) }() + case 123: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMinimumEdition_p) }() + case 124: try { try decoder.decodeSingularInt32Field(value: &_storage._clearName_p) }() + case 125: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNamePart_p) }() + case 126: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNegativeIntValue_p) }() + case 127: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNoStandardDescriptorAccessor_p) }() + case 128: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNumber_p) }() + case 129: try { try decoder.decodeSingularInt32Field(value: &_storage._clearObjcClassPrefix_p) }() + case 130: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOneofIndex_p) }() + case 131: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOptimizeFor_p) }() + case 132: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOptions_p) }() + case 133: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOutputType_p) }() + case 134: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOverridableFeatures_p) }() + case 135: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPackage_p) }() + case 136: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPacked_p) }() + case 137: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpClassPrefix_p) }() + case 138: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpMetadataNamespace_p) }() + case 139: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpNamespace_p) }() + case 140: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPositiveIntValue_p) }() + case 141: try { try decoder.decodeSingularInt32Field(value: &_storage._clearProto3Optional_p) }() + case 142: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPyGenericServices_p) }() + case 143: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRepeated_p) }() + case 144: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRepeatedFieldEncoding_p) }() + case 145: try { try decoder.decodeSingularInt32Field(value: &_storage._clearReserved_p) }() + case 146: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRetention_p) }() + case 147: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRubyPackage_p) }() + case 148: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSemantic_p) }() + case 149: try { try decoder.decodeSingularInt32Field(value: &_storage._clearServerStreaming_p) }() + case 150: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceCodeInfo_p) }() + case 151: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceContext_p) }() + case 152: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceFile_p) }() + case 153: try { try decoder.decodeSingularInt32Field(value: &_storage._clearStart_p) }() + case 154: try { try decoder.decodeSingularInt32Field(value: &_storage._clearStringValue_p) }() + case 155: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSwiftPrefix_p) }() + case 156: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSyntax_p) }() + case 157: try { try decoder.decodeSingularInt32Field(value: &_storage._clearTrailingComments_p) }() + case 158: try { try decoder.decodeSingularInt32Field(value: &_storage._clearType_p) }() + case 159: try { try decoder.decodeSingularInt32Field(value: &_storage._clearTypeName_p) }() + case 160: try { try decoder.decodeSingularInt32Field(value: &_storage._clearUnverifiedLazy_p) }() + case 161: try { try decoder.decodeSingularInt32Field(value: &_storage._clearUtf8Validation_p) }() + case 162: try { try decoder.decodeSingularInt32Field(value: &_storage._clearValue_p) }() + case 163: try { try decoder.decodeSingularInt32Field(value: &_storage._clearVerification_p) }() + case 164: try { try decoder.decodeSingularInt32Field(value: &_storage._clearWeak_p) }() + case 165: try { try decoder.decodeSingularInt32Field(value: &_storage._clientStreaming) }() + case 166: try { try decoder.decodeSingularInt32Field(value: &_storage._code) }() + case 167: try { try decoder.decodeSingularInt32Field(value: &_storage._codePoint) }() + case 168: try { try decoder.decodeSingularInt32Field(value: &_storage._codeUnits) }() + case 169: try { try decoder.decodeSingularInt32Field(value: &_storage._collection) }() + case 170: try { try decoder.decodeSingularInt32Field(value: &_storage._com) }() + case 171: try { try decoder.decodeSingularInt32Field(value: &_storage._comma) }() + case 172: try { try decoder.decodeSingularInt32Field(value: &_storage._consumedBytes) }() + case 173: try { try decoder.decodeSingularInt32Field(value: &_storage._contentsOf) }() + case 174: try { try decoder.decodeSingularInt32Field(value: &_storage._copy) }() + case 175: try { try decoder.decodeSingularInt32Field(value: &_storage._count) }() + case 176: try { try decoder.decodeSingularInt32Field(value: &_storage._countVarintsInBuffer) }() + case 177: try { try decoder.decodeSingularInt32Field(value: &_storage._csharpNamespace) }() + case 178: try { try decoder.decodeSingularInt32Field(value: &_storage._ctype) }() + case 179: try { try decoder.decodeSingularInt32Field(value: &_storage._customCodable) }() + case 180: try { try decoder.decodeSingularInt32Field(value: &_storage._customDebugStringConvertible) }() + case 181: try { try decoder.decodeSingularInt32Field(value: &_storage._customStringConvertible) }() + case 182: try { try decoder.decodeSingularInt32Field(value: &_storage._d) }() + case 183: try { try decoder.decodeSingularInt32Field(value: &_storage._data) }() + case 184: try { try decoder.decodeSingularInt32Field(value: &_storage._dataResult) }() + case 185: try { try decoder.decodeSingularInt32Field(value: &_storage._date) }() + case 186: try { try decoder.decodeSingularInt32Field(value: &_storage._daySec) }() + case 187: try { try decoder.decodeSingularInt32Field(value: &_storage._daysSinceEpoch) }() + case 188: try { try decoder.decodeSingularInt32Field(value: &_storage._debugDescription_p) }() + case 189: try { try decoder.decodeSingularInt32Field(value: &_storage._debugRedact) }() + case 190: try { try decoder.decodeSingularInt32Field(value: &_storage._declaration) }() + case 191: try { try decoder.decodeSingularInt32Field(value: &_storage._decoded) }() + case 192: try { try decoder.decodeSingularInt32Field(value: &_storage._decodedFromJsonnull) }() + case 193: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeExtensionField) }() + case 194: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeExtensionFieldsAsMessageSet) }() + case 195: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeJson) }() + case 196: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeMapField) }() + case 197: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeMessage) }() + case 198: try { try decoder.decodeSingularInt32Field(value: &_storage._decoder) }() + case 199: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeated) }() + case 200: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedBoolField) }() + case 201: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedBytesField) }() + case 202: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedDoubleField) }() + case 203: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedEnumField) }() + case 204: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFixed32Field) }() + case 205: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFixed64Field) }() + case 206: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFloatField) }() + case 207: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedGroupField) }() + case 208: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedInt32Field) }() + case 209: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedInt64Field) }() + case 210: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedMessageField) }() + case 211: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSfixed32Field) }() + case 212: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSfixed64Field) }() + case 213: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSint32Field) }() + case 214: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSint64Field) }() + case 215: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedStringField) }() + case 216: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedUint32Field) }() + case 217: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedUint64Field) }() + case 218: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingular) }() + case 219: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularBoolField) }() + case 220: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularBytesField) }() + case 221: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularDoubleField) }() + case 222: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularEnumField) }() + case 223: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFixed32Field) }() + case 224: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFixed64Field) }() + case 225: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFloatField) }() + case 226: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularGroupField) }() + case 227: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularInt32Field) }() + case 228: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularInt64Field) }() + case 229: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularMessageField) }() + case 230: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSfixed32Field) }() + case 231: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSfixed64Field) }() + case 232: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSint32Field) }() + case 233: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSint64Field) }() + case 234: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularStringField) }() + case 235: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularUint32Field) }() + case 236: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularUint64Field) }() + case 237: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeTextFormat) }() + case 238: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultAnyTypeUrlprefix) }() + case 239: try { try decoder.decodeSingularInt32Field(value: &_storage._defaults) }() + case 240: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultValue) }() + case 241: try { try decoder.decodeSingularInt32Field(value: &_storage._dependency) }() + case 242: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecated) }() + case 243: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecatedLegacyJsonFieldConflicts) }() + case 244: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecationWarning) }() + case 245: try { try decoder.decodeSingularInt32Field(value: &_storage._description_p) }() + case 246: try { try decoder.decodeSingularInt32Field(value: &_storage._descriptorProto) }() + case 247: try { try decoder.decodeSingularInt32Field(value: &_storage._dictionary) }() + case 248: try { try decoder.decodeSingularInt32Field(value: &_storage._dictionaryLiteral) }() + case 249: try { try decoder.decodeSingularInt32Field(value: &_storage._digit) }() + case 250: try { try decoder.decodeSingularInt32Field(value: &_storage._digit0) }() + case 251: try { try decoder.decodeSingularInt32Field(value: &_storage._digit1) }() + case 252: try { try decoder.decodeSingularInt32Field(value: &_storage._digitCount) }() + case 253: try { try decoder.decodeSingularInt32Field(value: &_storage._digits) }() + case 254: try { try decoder.decodeSingularInt32Field(value: &_storage._digitValue) }() + case 255: try { try decoder.decodeSingularInt32Field(value: &_storage._discardableResult) }() + case 256: try { try decoder.decodeSingularInt32Field(value: &_storage._discardUnknownFields) }() + case 257: try { try decoder.decodeSingularInt32Field(value: &_storage._double) }() + case 258: try { try decoder.decodeSingularInt32Field(value: &_storage._doubleValue) }() + case 259: try { try decoder.decodeSingularInt32Field(value: &_storage._duration) }() + case 260: try { try decoder.decodeSingularInt32Field(value: &_storage._e) }() + case 261: try { try decoder.decodeSingularInt32Field(value: &_storage._edition) }() + case 262: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDefault) }() + case 263: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDefaults) }() + case 264: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDeprecated) }() + case 265: try { try decoder.decodeSingularInt32Field(value: &_storage._editionIntroduced) }() + case 266: try { try decoder.decodeSingularInt32Field(value: &_storage._editionRemoved) }() + case 267: try { try decoder.decodeSingularInt32Field(value: &_storage._element) }() + case 268: try { try decoder.decodeSingularInt32Field(value: &_storage._elements) }() + case 269: try { try decoder.decodeSingularInt32Field(value: &_storage._emitExtensionFieldName) }() + case 270: try { try decoder.decodeSingularInt32Field(value: &_storage._emitFieldName) }() + case 271: try { try decoder.decodeSingularInt32Field(value: &_storage._emitFieldNumber) }() + case 272: try { try decoder.decodeSingularInt32Field(value: &_storage._empty) }() + case 273: try { try decoder.decodeSingularInt32Field(value: &_storage._encodeAsBytes) }() + case 274: try { try decoder.decodeSingularInt32Field(value: &_storage._encoded) }() + case 275: try { try decoder.decodeSingularInt32Field(value: &_storage._encodedJsonstring) }() + case 276: try { try decoder.decodeSingularInt32Field(value: &_storage._encodedSize) }() + case 277: try { try decoder.decodeSingularInt32Field(value: &_storage._encodeField) }() + case 278: try { try decoder.decodeSingularInt32Field(value: &_storage._encoder) }() + case 279: try { try decoder.decodeSingularInt32Field(value: &_storage._end) }() + case 280: try { try decoder.decodeSingularInt32Field(value: &_storage._endArray) }() + case 281: try { try decoder.decodeSingularInt32Field(value: &_storage._endMessageField) }() + case 282: try { try decoder.decodeSingularInt32Field(value: &_storage._endObject) }() + case 283: try { try decoder.decodeSingularInt32Field(value: &_storage._endRegularField) }() + case 284: try { try decoder.decodeSingularInt32Field(value: &_storage._enum) }() + case 285: try { try decoder.decodeSingularInt32Field(value: &_storage._enumDescriptorProto) }() + case 286: try { try decoder.decodeSingularInt32Field(value: &_storage._enumOptions) }() + case 287: try { try decoder.decodeSingularInt32Field(value: &_storage._enumReservedRange) }() + case 288: try { try decoder.decodeSingularInt32Field(value: &_storage._enumType) }() + case 289: try { try decoder.decodeSingularInt32Field(value: &_storage._enumvalue) }() + case 290: try { try decoder.decodeSingularInt32Field(value: &_storage._enumValueDescriptorProto) }() + case 291: try { try decoder.decodeSingularInt32Field(value: &_storage._enumValueOptions) }() + case 292: try { try decoder.decodeSingularInt32Field(value: &_storage._equatable) }() + case 293: try { try decoder.decodeSingularInt32Field(value: &_storage._error) }() + case 294: try { try decoder.decodeSingularInt32Field(value: &_storage._expressibleByArrayLiteral) }() + case 295: try { try decoder.decodeSingularInt32Field(value: &_storage._expressibleByDictionaryLiteral) }() + case 296: try { try decoder.decodeSingularInt32Field(value: &_storage._ext) }() + case 297: try { try decoder.decodeSingularInt32Field(value: &_storage._extDecoder) }() + case 298: try { try decoder.decodeSingularInt32Field(value: &_storage._extendedGraphemeClusterLiteral) }() + case 299: try { try decoder.decodeSingularInt32Field(value: &_storage._extendedGraphemeClusterLiteralType) }() + case 300: try { try decoder.decodeSingularInt32Field(value: &_storage._extendee) }() + case 301: try { try decoder.decodeSingularInt32Field(value: &_storage._extensibleMessage) }() + case 302: try { try decoder.decodeSingularInt32Field(value: &_storage._extension) }() + case 303: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionField) }() + case 304: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionFieldNumber) }() + case 305: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionFieldValueSet) }() + case 306: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionMap) }() + case 307: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionRange) }() + case 308: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionRangeOptions) }() + case 309: try { try decoder.decodeSingularInt32Field(value: &_storage._extensions) }() + case 310: try { try decoder.decodeSingularInt32Field(value: &_storage._extras) }() + case 311: try { try decoder.decodeSingularInt32Field(value: &_storage._f) }() + case 312: try { try decoder.decodeSingularInt32Field(value: &_storage._false) }() + case 313: try { try decoder.decodeSingularInt32Field(value: &_storage._features) }() + case 314: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSet) }() + case 315: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSetDefaults) }() + case 316: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSetEditionDefault) }() + case 317: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSupport) }() + case 318: try { try decoder.decodeSingularInt32Field(value: &_storage._field) }() + case 319: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldData) }() + case 320: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldDescriptorProto) }() + case 321: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldMask) }() + case 322: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldName) }() + case 323: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNameCount) }() + case 324: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNum) }() + case 325: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNumber) }() + case 326: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNumberForProto) }() + case 327: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldOptions) }() + case 328: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldPresence) }() + case 329: try { try decoder.decodeSingularInt32Field(value: &_storage._fields) }() + case 330: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldSize) }() + case 331: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldTag) }() + case 332: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldType) }() + case 333: try { try decoder.decodeSingularInt32Field(value: &_storage._file) }() + case 334: try { try decoder.decodeSingularInt32Field(value: &_storage._fileDescriptorProto) }() + case 335: try { try decoder.decodeSingularInt32Field(value: &_storage._fileDescriptorSet) }() + case 336: try { try decoder.decodeSingularInt32Field(value: &_storage._fileName) }() + case 337: try { try decoder.decodeSingularInt32Field(value: &_storage._fileOptions) }() + case 338: try { try decoder.decodeSingularInt32Field(value: &_storage._filter) }() + case 339: try { try decoder.decodeSingularInt32Field(value: &_storage._final) }() + case 340: try { try decoder.decodeSingularInt32Field(value: &_storage._finiteOnly) }() + case 341: try { try decoder.decodeSingularInt32Field(value: &_storage._first) }() + case 342: try { try decoder.decodeSingularInt32Field(value: &_storage._firstItem) }() + case 343: try { try decoder.decodeSingularInt32Field(value: &_storage._fixedFeatures) }() + case 344: try { try decoder.decodeSingularInt32Field(value: &_storage._float) }() + case 345: try { try decoder.decodeSingularInt32Field(value: &_storage._floatLiteral) }() + case 346: try { try decoder.decodeSingularInt32Field(value: &_storage._floatLiteralType) }() + case 347: try { try decoder.decodeSingularInt32Field(value: &_storage._floatValue) }() + case 348: try { try decoder.decodeSingularInt32Field(value: &_storage._forMessageName) }() + case 349: try { try decoder.decodeSingularInt32Field(value: &_storage._formUnion) }() + case 350: try { try decoder.decodeSingularInt32Field(value: &_storage._forReadingFrom) }() + case 351: try { try decoder.decodeSingularInt32Field(value: &_storage._forTypeURL) }() + case 352: try { try decoder.decodeSingularInt32Field(value: &_storage._forwardParser) }() + case 353: try { try decoder.decodeSingularInt32Field(value: &_storage._forWritingInto) }() + case 354: try { try decoder.decodeSingularInt32Field(value: &_storage._from) }() + case 355: try { try decoder.decodeSingularInt32Field(value: &_storage._fromAscii2) }() + case 356: try { try decoder.decodeSingularInt32Field(value: &_storage._fromAscii4) }() + case 357: try { try decoder.decodeSingularInt32Field(value: &_storage._fromByteOffset) }() + case 358: try { try decoder.decodeSingularInt32Field(value: &_storage._fromHexDigit) }() + case 359: try { try decoder.decodeSingularInt32Field(value: &_storage._fullName) }() + case 360: try { try decoder.decodeSingularInt32Field(value: &_storage._func) }() + case 361: try { try decoder.decodeSingularInt32Field(value: &_storage._function) }() + case 362: try { try decoder.decodeSingularInt32Field(value: &_storage._g) }() + case 363: try { try decoder.decodeSingularInt32Field(value: &_storage._generatedCodeInfo) }() + case 364: try { try decoder.decodeSingularInt32Field(value: &_storage._get) }() + case 365: try { try decoder.decodeSingularInt32Field(value: &_storage._getExtensionValue) }() + case 366: try { try decoder.decodeSingularInt32Field(value: &_storage._googleapis) }() + case 367: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufAny) }() + case 368: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufApi) }() + case 369: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufBoolValue) }() + case 370: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufBytesValue) }() + case 371: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDescriptorProto) }() + case 372: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDoubleValue) }() + case 373: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDuration) }() + case 374: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEdition) }() + case 375: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEmpty) }() + case 376: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnum) }() + case 377: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumDescriptorProto) }() + case 378: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumOptions) }() + case 379: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValue) }() + case 380: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValueDescriptorProto) }() + case 381: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValueOptions) }() + case 382: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufExtensionRangeOptions) }() + case 383: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFeatureSet) }() + case 384: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFeatureSetDefaults) }() + case 385: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufField) }() + case 386: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldDescriptorProto) }() + case 387: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldMask) }() + case 388: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldOptions) }() + case 389: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileDescriptorProto) }() + case 390: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileDescriptorSet) }() + case 391: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileOptions) }() + case 392: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFloatValue) }() + case 393: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufGeneratedCodeInfo) }() + case 394: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufInt32Value) }() + case 395: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufInt64Value) }() + case 396: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufListValue) }() + case 397: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMessageOptions) }() + case 398: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethod) }() + case 399: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethodDescriptorProto) }() + case 400: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethodOptions) }() + case 401: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMixin) }() + case 402: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufNullValue) }() + case 403: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOneofDescriptorProto) }() + case 404: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOneofOptions) }() + case 405: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOption) }() + case 406: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufServiceDescriptorProto) }() + case 407: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufServiceOptions) }() + case 408: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSourceCodeInfo) }() + case 409: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSourceContext) }() + case 410: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufStringValue) }() + case 411: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufStruct) }() + case 412: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSyntax) }() + case 413: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufTimestamp) }() + case 414: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufType) }() + case 415: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUint32Value) }() + case 416: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUint64Value) }() + case 417: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUninterpretedOption) }() + case 418: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufValue) }() + case 419: try { try decoder.decodeSingularInt32Field(value: &_storage._goPackage) }() + case 420: try { try decoder.decodeSingularInt32Field(value: &_storage._group) }() + case 421: try { try decoder.decodeSingularInt32Field(value: &_storage._groupFieldNumberStack) }() + case 422: try { try decoder.decodeSingularInt32Field(value: &_storage._groupSize) }() + case 423: try { try decoder.decodeSingularInt32Field(value: &_storage._hadOneofValue) }() + case 424: try { try decoder.decodeSingularInt32Field(value: &_storage._handleConflictingOneOf) }() + case 425: try { try decoder.decodeSingularInt32Field(value: &_storage._hasAggregateValue_p) }() + case 426: try { try decoder.decodeSingularInt32Field(value: &_storage._hasAllowAlias_p) }() + case 427: try { try decoder.decodeSingularInt32Field(value: &_storage._hasBegin_p) }() + case 428: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCcEnableArenas_p) }() + case 429: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCcGenericServices_p) }() + case 430: try { try decoder.decodeSingularInt32Field(value: &_storage._hasClientStreaming_p) }() + case 431: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCsharpNamespace_p) }() + case 432: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCtype_p) }() + case 433: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDebugRedact_p) }() + case 434: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDefaultValue_p) }() + case 435: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecated_p) }() + case 436: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecatedLegacyJsonFieldConflicts_p) }() + case 437: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecationWarning_p) }() + case 438: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDoubleValue_p) }() + case 439: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEdition_p) }() + case 440: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionDeprecated_p) }() + case 441: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionIntroduced_p) }() + case 442: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionRemoved_p) }() + case 443: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEnd_p) }() + case 444: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEnumType_p) }() + case 445: try { try decoder.decodeSingularInt32Field(value: &_storage._hasExtendee_p) }() + case 446: try { try decoder.decodeSingularInt32Field(value: &_storage._hasExtensionValue_p) }() + case 447: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFeatures_p) }() + case 448: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFeatureSupport_p) }() + case 449: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFieldPresence_p) }() + case 450: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFixedFeatures_p) }() + case 451: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFullName_p) }() + case 452: try { try decoder.decodeSingularInt32Field(value: &_storage._hasGoPackage_p) }() + case 453: try { try decoder.decodeSingularInt32Field(value: &_storage._hash) }() + case 454: try { try decoder.decodeSingularInt32Field(value: &_storage._hashable) }() + case 455: try { try decoder.decodeSingularInt32Field(value: &_storage._hasher) }() + case 456: try { try decoder.decodeSingularInt32Field(value: &_storage._hashVisitor) }() + case 457: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIdempotencyLevel_p) }() + case 458: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIdentifierValue_p) }() + case 459: try { try decoder.decodeSingularInt32Field(value: &_storage._hasInputType_p) }() + case 460: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIsExtension_p) }() + case 461: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaGenerateEqualsAndHash_p) }() + case 462: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaGenericServices_p) }() + case 463: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaMultipleFiles_p) }() + case 464: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaOuterClassname_p) }() + case 465: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaPackage_p) }() + case 466: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaStringCheckUtf8_p) }() + case 467: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJsonFormat_p) }() + case 468: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJsonName_p) }() + case 469: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJstype_p) }() + case 470: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLabel_p) }() + case 471: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLazy_p) }() + case 472: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLeadingComments_p) }() + case 473: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMapEntry_p) }() + case 474: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMaximumEdition_p) }() + case 475: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMessageEncoding_p) }() + case 476: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMessageSetWireFormat_p) }() + case 477: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMinimumEdition_p) }() + case 478: try { try decoder.decodeSingularInt32Field(value: &_storage._hasName_p) }() + case 479: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNamePart_p) }() + case 480: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNegativeIntValue_p) }() + case 481: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNoStandardDescriptorAccessor_p) }() + case 482: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNumber_p) }() + case 483: try { try decoder.decodeSingularInt32Field(value: &_storage._hasObjcClassPrefix_p) }() + case 484: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOneofIndex_p) }() + case 485: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOptimizeFor_p) }() + case 486: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOptions_p) }() + case 487: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOutputType_p) }() + case 488: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOverridableFeatures_p) }() + case 489: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPackage_p) }() + case 490: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPacked_p) }() + case 491: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpClassPrefix_p) }() + case 492: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpMetadataNamespace_p) }() + case 493: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpNamespace_p) }() + case 494: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPositiveIntValue_p) }() + case 495: try { try decoder.decodeSingularInt32Field(value: &_storage._hasProto3Optional_p) }() + case 496: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPyGenericServices_p) }() + case 497: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRepeated_p) }() + case 498: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRepeatedFieldEncoding_p) }() + case 499: try { try decoder.decodeSingularInt32Field(value: &_storage._hasReserved_p) }() + case 500: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRetention_p) }() + case 501: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRubyPackage_p) }() + case 502: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSemantic_p) }() + case 503: try { try decoder.decodeSingularInt32Field(value: &_storage._hasServerStreaming_p) }() + case 504: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceCodeInfo_p) }() + case 505: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceContext_p) }() + case 506: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceFile_p) }() + case 507: try { try decoder.decodeSingularInt32Field(value: &_storage._hasStart_p) }() + case 508: try { try decoder.decodeSingularInt32Field(value: &_storage._hasStringValue_p) }() + case 509: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSwiftPrefix_p) }() + case 510: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSyntax_p) }() + case 511: try { try decoder.decodeSingularInt32Field(value: &_storage._hasTrailingComments_p) }() + case 512: try { try decoder.decodeSingularInt32Field(value: &_storage._hasType_p) }() + case 513: try { try decoder.decodeSingularInt32Field(value: &_storage._hasTypeName_p) }() + case 514: try { try decoder.decodeSingularInt32Field(value: &_storage._hasUnverifiedLazy_p) }() + case 515: try { try decoder.decodeSingularInt32Field(value: &_storage._hasUtf8Validation_p) }() + case 516: try { try decoder.decodeSingularInt32Field(value: &_storage._hasValue_p) }() + case 517: try { try decoder.decodeSingularInt32Field(value: &_storage._hasVerification_p) }() + case 518: try { try decoder.decodeSingularInt32Field(value: &_storage._hasWeak_p) }() + case 519: try { try decoder.decodeSingularInt32Field(value: &_storage._hour) }() + case 520: try { try decoder.decodeSingularInt32Field(value: &_storage._i) }() + case 521: try { try decoder.decodeSingularInt32Field(value: &_storage._idempotencyLevel) }() + case 522: try { try decoder.decodeSingularInt32Field(value: &_storage._identifierValue) }() + case 523: try { try decoder.decodeSingularInt32Field(value: &_storage._if) }() + case 524: try { try decoder.decodeSingularInt32Field(value: &_storage._ignoreUnknownExtensionFields) }() + case 525: try { try decoder.decodeSingularInt32Field(value: &_storage._ignoreUnknownFields) }() + case 526: try { try decoder.decodeSingularInt32Field(value: &_storage._index) }() + case 527: try { try decoder.decodeSingularInt32Field(value: &_storage._init_p) }() + case 528: try { try decoder.decodeSingularInt32Field(value: &_storage._inout) }() + case 529: try { try decoder.decodeSingularInt32Field(value: &_storage._inputType) }() + case 530: try { try decoder.decodeSingularInt32Field(value: &_storage._insert) }() + case 531: try { try decoder.decodeSingularInt32Field(value: &_storage._int) }() + case 532: try { try decoder.decodeSingularInt32Field(value: &_storage._int32) }() + case 533: try { try decoder.decodeSingularInt32Field(value: &_storage._int32Value) }() + case 534: try { try decoder.decodeSingularInt32Field(value: &_storage._int64) }() + case 535: try { try decoder.decodeSingularInt32Field(value: &_storage._int64Value) }() + case 536: try { try decoder.decodeSingularInt32Field(value: &_storage._int8) }() + case 537: try { try decoder.decodeSingularInt32Field(value: &_storage._integerLiteral) }() + case 538: try { try decoder.decodeSingularInt32Field(value: &_storage._integerLiteralType) }() + case 539: try { try decoder.decodeSingularInt32Field(value: &_storage._intern) }() + case 540: try { try decoder.decodeSingularInt32Field(value: &_storage._internal) }() + case 541: try { try decoder.decodeSingularInt32Field(value: &_storage._internalState) }() + case 542: try { try decoder.decodeSingularInt32Field(value: &_storage._into) }() + case 543: try { try decoder.decodeSingularInt32Field(value: &_storage._ints) }() + case 544: try { try decoder.decodeSingularInt32Field(value: &_storage._isA) }() + case 545: try { try decoder.decodeSingularInt32Field(value: &_storage._isEqual) }() + case 546: try { try decoder.decodeSingularInt32Field(value: &_storage._isEqualTo) }() + case 547: try { try decoder.decodeSingularInt32Field(value: &_storage._isExtension) }() + case 548: try { try decoder.decodeSingularInt32Field(value: &_storage._isInitialized_p) }() + case 549: try { try decoder.decodeSingularInt32Field(value: &_storage._isNegative) }() + case 550: try { try decoder.decodeSingularInt32Field(value: &_storage._itemTagsEncodedSize) }() + case 551: try { try decoder.decodeSingularInt32Field(value: &_storage._iterator) }() + case 552: try { try decoder.decodeSingularInt32Field(value: &_storage._javaGenerateEqualsAndHash) }() + case 553: try { try decoder.decodeSingularInt32Field(value: &_storage._javaGenericServices) }() + case 554: try { try decoder.decodeSingularInt32Field(value: &_storage._javaMultipleFiles) }() + case 555: try { try decoder.decodeSingularInt32Field(value: &_storage._javaOuterClassname) }() + case 556: try { try decoder.decodeSingularInt32Field(value: &_storage._javaPackage) }() + case 557: try { try decoder.decodeSingularInt32Field(value: &_storage._javaStringCheckUtf8) }() + case 558: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecoder) }() + case 559: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecodingError) }() + case 560: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecodingOptions) }() + case 561: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonEncoder) }() + case 562: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingError) }() + case 563: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingOptions) }() + case 564: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingVisitor) }() + case 565: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonFormat) }() + case 566: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonmapEncodingVisitor) }() + case 567: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonName) }() + case 568: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonPath) }() + case 569: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonPaths) }() + case 570: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonscanner) }() + case 571: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonString) }() + case 572: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonText) }() + case 573: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonUtf8Bytes) }() + case 574: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonUtf8Data) }() + case 575: try { try decoder.decodeSingularInt32Field(value: &_storage._jstype) }() + case 576: try { try decoder.decodeSingularInt32Field(value: &_storage._k) }() + case 577: try { try decoder.decodeSingularInt32Field(value: &_storage._kChunkSize) }() + case 578: try { try decoder.decodeSingularInt32Field(value: &_storage._key) }() + case 579: try { try decoder.decodeSingularInt32Field(value: &_storage._keyField) }() + case 580: try { try decoder.decodeSingularInt32Field(value: &_storage._keyFieldOpt) }() + case 581: try { try decoder.decodeSingularInt32Field(value: &_storage._keyType) }() + case 582: try { try decoder.decodeSingularInt32Field(value: &_storage._kind) }() + case 583: try { try decoder.decodeSingularInt32Field(value: &_storage._l) }() + case 584: try { try decoder.decodeSingularInt32Field(value: &_storage._label) }() + case 585: try { try decoder.decodeSingularInt32Field(value: &_storage._lazy) }() + case 586: try { try decoder.decodeSingularInt32Field(value: &_storage._leadingComments) }() + case 587: try { try decoder.decodeSingularInt32Field(value: &_storage._leadingDetachedComments) }() + case 588: try { try decoder.decodeSingularInt32Field(value: &_storage._length) }() + case 589: try { try decoder.decodeSingularInt32Field(value: &_storage._lessThan) }() + case 590: try { try decoder.decodeSingularInt32Field(value: &_storage._let) }() + case 591: try { try decoder.decodeSingularInt32Field(value: &_storage._lhs) }() + case 592: try { try decoder.decodeSingularInt32Field(value: &_storage._line) }() + case 593: try { try decoder.decodeSingularInt32Field(value: &_storage._list) }() + case 594: try { try decoder.decodeSingularInt32Field(value: &_storage._listOfMessages) }() + case 595: try { try decoder.decodeSingularInt32Field(value: &_storage._listValue) }() + case 596: try { try decoder.decodeSingularInt32Field(value: &_storage._littleEndian) }() + case 597: try { try decoder.decodeSingularInt32Field(value: &_storage._load) }() + case 598: try { try decoder.decodeSingularInt32Field(value: &_storage._localHasher) }() + case 599: try { try decoder.decodeSingularInt32Field(value: &_storage._location) }() + case 600: try { try decoder.decodeSingularInt32Field(value: &_storage._m) }() + case 601: try { try decoder.decodeSingularInt32Field(value: &_storage._major) }() + case 602: try { try decoder.decodeSingularInt32Field(value: &_storage._makeAsyncIterator) }() + case 603: try { try decoder.decodeSingularInt32Field(value: &_storage._makeIterator) }() + case 604: try { try decoder.decodeSingularInt32Field(value: &_storage._malformedLength) }() + case 605: try { try decoder.decodeSingularInt32Field(value: &_storage._mapEntry) }() + case 606: try { try decoder.decodeSingularInt32Field(value: &_storage._mapKeyType) }() + case 607: try { try decoder.decodeSingularInt32Field(value: &_storage._mapToMessages) }() + case 608: try { try decoder.decodeSingularInt32Field(value: &_storage._mapValueType) }() + case 609: try { try decoder.decodeSingularInt32Field(value: &_storage._mapVisitor) }() + case 610: try { try decoder.decodeSingularInt32Field(value: &_storage._maximumEdition) }() + case 611: try { try decoder.decodeSingularInt32Field(value: &_storage._mdayStart) }() + case 612: try { try decoder.decodeSingularInt32Field(value: &_storage._merge) }() + case 613: try { try decoder.decodeSingularInt32Field(value: &_storage._message) }() + case 614: try { try decoder.decodeSingularInt32Field(value: &_storage._messageDepthLimit) }() + case 615: try { try decoder.decodeSingularInt32Field(value: &_storage._messageEncoding) }() + case 616: try { try decoder.decodeSingularInt32Field(value: &_storage._messageExtension) }() + case 617: try { try decoder.decodeSingularInt32Field(value: &_storage._messageImplementationBase) }() + case 618: try { try decoder.decodeSingularInt32Field(value: &_storage._messageOptions) }() + case 619: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSet) }() + case 620: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSetWireFormat) }() + case 621: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSize) }() + case 622: try { try decoder.decodeSingularInt32Field(value: &_storage._messageType) }() + case 623: try { try decoder.decodeSingularInt32Field(value: &_storage._method) }() + case 624: try { try decoder.decodeSingularInt32Field(value: &_storage._methodDescriptorProto) }() + case 625: try { try decoder.decodeSingularInt32Field(value: &_storage._methodOptions) }() + case 626: try { try decoder.decodeSingularInt32Field(value: &_storage._methods) }() + case 627: try { try decoder.decodeSingularInt32Field(value: &_storage._min) }() + case 628: try { try decoder.decodeSingularInt32Field(value: &_storage._minimumEdition) }() + case 629: try { try decoder.decodeSingularInt32Field(value: &_storage._minor) }() + case 630: try { try decoder.decodeSingularInt32Field(value: &_storage._mixin) }() + case 631: try { try decoder.decodeSingularInt32Field(value: &_storage._mixins) }() + case 632: try { try decoder.decodeSingularInt32Field(value: &_storage._modifier) }() + case 633: try { try decoder.decodeSingularInt32Field(value: &_storage._modify) }() + case 634: try { try decoder.decodeSingularInt32Field(value: &_storage._month) }() + case 635: try { try decoder.decodeSingularInt32Field(value: &_storage._msgExtension) }() + case 636: try { try decoder.decodeSingularInt32Field(value: &_storage._mutating) }() + case 637: try { try decoder.decodeSingularInt32Field(value: &_storage._n) }() + case 638: try { try decoder.decodeSingularInt32Field(value: &_storage._name) }() + case 639: try { try decoder.decodeSingularInt32Field(value: &_storage._nameDescription) }() + case 640: try { try decoder.decodeSingularInt32Field(value: &_storage._nameMap) }() + case 641: try { try decoder.decodeSingularInt32Field(value: &_storage._namePart) }() + case 642: try { try decoder.decodeSingularInt32Field(value: &_storage._names) }() + case 643: try { try decoder.decodeSingularInt32Field(value: &_storage._nanos) }() + case 644: try { try decoder.decodeSingularInt32Field(value: &_storage._negativeIntValue) }() + case 645: try { try decoder.decodeSingularInt32Field(value: &_storage._nestedType) }() + case 646: try { try decoder.decodeSingularInt32Field(value: &_storage._newL) }() + case 647: try { try decoder.decodeSingularInt32Field(value: &_storage._newList) }() + case 648: try { try decoder.decodeSingularInt32Field(value: &_storage._newValue) }() + case 649: try { try decoder.decodeSingularInt32Field(value: &_storage._next) }() + case 650: try { try decoder.decodeSingularInt32Field(value: &_storage._nextByte) }() + case 651: try { try decoder.decodeSingularInt32Field(value: &_storage._nextFieldNumber) }() + case 652: try { try decoder.decodeSingularInt32Field(value: &_storage._nextVarInt) }() + case 653: try { try decoder.decodeSingularInt32Field(value: &_storage._nil) }() + case 654: try { try decoder.decodeSingularInt32Field(value: &_storage._nilLiteral) }() + case 655: try { try decoder.decodeSingularInt32Field(value: &_storage._noBytesAvailable) }() + case 656: try { try decoder.decodeSingularInt32Field(value: &_storage._noStandardDescriptorAccessor) }() + case 657: try { try decoder.decodeSingularInt32Field(value: &_storage._nullValue) }() + case 658: try { try decoder.decodeSingularInt32Field(value: &_storage._number) }() + case 659: try { try decoder.decodeSingularInt32Field(value: &_storage._numberValue) }() + case 660: try { try decoder.decodeSingularInt32Field(value: &_storage._objcClassPrefix) }() + case 661: try { try decoder.decodeSingularInt32Field(value: &_storage._of) }() + case 662: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofDecl) }() + case 663: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofDescriptorProto) }() + case 664: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofIndex) }() + case 665: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofOptions) }() + case 666: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofs) }() + case 667: try { try decoder.decodeSingularInt32Field(value: &_storage._oneOfKind) }() + case 668: try { try decoder.decodeSingularInt32Field(value: &_storage._optimizeFor) }() + case 669: try { try decoder.decodeSingularInt32Field(value: &_storage._optimizeMode) }() + case 670: try { try decoder.decodeSingularInt32Field(value: &_storage._option) }() + case 671: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalEnumExtensionField) }() + case 672: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalExtensionField) }() + case 673: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalGroupExtensionField) }() + case 674: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalMessageExtensionField) }() + case 675: try { try decoder.decodeSingularInt32Field(value: &_storage._optionRetention) }() + case 676: try { try decoder.decodeSingularInt32Field(value: &_storage._options) }() + case 677: try { try decoder.decodeSingularInt32Field(value: &_storage._optionTargetType) }() + case 678: try { try decoder.decodeSingularInt32Field(value: &_storage._other) }() + case 679: try { try decoder.decodeSingularInt32Field(value: &_storage._others) }() + case 680: try { try decoder.decodeSingularInt32Field(value: &_storage._out) }() + case 681: try { try decoder.decodeSingularInt32Field(value: &_storage._outputType) }() + case 682: try { try decoder.decodeSingularInt32Field(value: &_storage._overridableFeatures) }() + case 683: try { try decoder.decodeSingularInt32Field(value: &_storage._p) }() + case 684: try { try decoder.decodeSingularInt32Field(value: &_storage._package) }() + case 685: try { try decoder.decodeSingularInt32Field(value: &_storage._packed) }() + case 686: try { try decoder.decodeSingularInt32Field(value: &_storage._packedEnumExtensionField) }() + case 687: try { try decoder.decodeSingularInt32Field(value: &_storage._packedExtensionField) }() + case 688: try { try decoder.decodeSingularInt32Field(value: &_storage._padding) }() + case 689: try { try decoder.decodeSingularInt32Field(value: &_storage._parent) }() + case 690: try { try decoder.decodeSingularInt32Field(value: &_storage._parse) }() + case 691: try { try decoder.decodeSingularInt32Field(value: &_storage._path) }() + case 692: try { try decoder.decodeSingularInt32Field(value: &_storage._paths) }() + case 693: try { try decoder.decodeSingularInt32Field(value: &_storage._payload) }() + case 694: try { try decoder.decodeSingularInt32Field(value: &_storage._payloadSize) }() + case 695: try { try decoder.decodeSingularInt32Field(value: &_storage._phpClassPrefix) }() + case 696: try { try decoder.decodeSingularInt32Field(value: &_storage._phpMetadataNamespace) }() + case 697: try { try decoder.decodeSingularInt32Field(value: &_storage._phpNamespace) }() + case 698: try { try decoder.decodeSingularInt32Field(value: &_storage._pos) }() + case 699: try { try decoder.decodeSingularInt32Field(value: &_storage._positiveIntValue) }() + case 700: try { try decoder.decodeSingularInt32Field(value: &_storage._prefix) }() + case 701: try { try decoder.decodeSingularInt32Field(value: &_storage._preserveProtoFieldNames) }() + case 702: try { try decoder.decodeSingularInt32Field(value: &_storage._preTraverse) }() + case 703: try { try decoder.decodeSingularInt32Field(value: &_storage._printUnknownFields) }() + case 704: try { try decoder.decodeSingularInt32Field(value: &_storage._proto2) }() + case 705: try { try decoder.decodeSingularInt32Field(value: &_storage._proto3DefaultValue) }() + case 706: try { try decoder.decodeSingularInt32Field(value: &_storage._proto3Optional) }() + case 707: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufApiversionCheck) }() + case 708: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufApiversion3) }() + case 709: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufBool) }() + case 710: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufBytes) }() + case 711: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufDouble) }() + case 712: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufEnumMap) }() + case 713: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufExtension) }() + case 714: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFixed32) }() + case 715: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFixed64) }() + case 716: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFloat) }() + case 717: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufInt32) }() + case 718: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufInt64) }() + case 719: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufMap) }() + case 720: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufMessageMap) }() + case 721: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSfixed32) }() + case 722: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSfixed64) }() + case 723: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSint32) }() + case 724: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSint64) }() + case 725: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufString) }() + case 726: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufUint32) }() + case 727: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufUint64) }() + case 728: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufExtensionFieldValues) }() + case 729: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFieldNumber) }() + case 730: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufGeneratedIsEqualTo) }() + case 731: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufNameMap) }() + case 732: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufNewField) }() + case 733: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufPackage) }() + case 734: try { try decoder.decodeSingularInt32Field(value: &_storage._protocol) }() + case 735: try { try decoder.decodeSingularInt32Field(value: &_storage._protoFieldName) }() + case 736: try { try decoder.decodeSingularInt32Field(value: &_storage._protoMessageName) }() + case 737: try { try decoder.decodeSingularInt32Field(value: &_storage._protoNameProviding) }() + case 738: try { try decoder.decodeSingularInt32Field(value: &_storage._protoPaths) }() + case 739: try { try decoder.decodeSingularInt32Field(value: &_storage._public) }() + case 740: try { try decoder.decodeSingularInt32Field(value: &_storage._publicDependency) }() + case 741: try { try decoder.decodeSingularInt32Field(value: &_storage._putBoolValue) }() + case 742: try { try decoder.decodeSingularInt32Field(value: &_storage._putBytesValue) }() + case 743: try { try decoder.decodeSingularInt32Field(value: &_storage._putDoubleValue) }() + case 744: try { try decoder.decodeSingularInt32Field(value: &_storage._putEnumValue) }() + case 745: try { try decoder.decodeSingularInt32Field(value: &_storage._putFixedUint32) }() + case 746: try { try decoder.decodeSingularInt32Field(value: &_storage._putFixedUint64) }() + case 747: try { try decoder.decodeSingularInt32Field(value: &_storage._putFloatValue) }() + case 748: try { try decoder.decodeSingularInt32Field(value: &_storage._putInt64) }() + case 749: try { try decoder.decodeSingularInt32Field(value: &_storage._putStringValue) }() + case 750: try { try decoder.decodeSingularInt32Field(value: &_storage._putUint64) }() + case 751: try { try decoder.decodeSingularInt32Field(value: &_storage._putUint64Hex) }() + case 752: try { try decoder.decodeSingularInt32Field(value: &_storage._putVarInt) }() + case 753: try { try decoder.decodeSingularInt32Field(value: &_storage._putZigZagVarInt) }() + case 754: try { try decoder.decodeSingularInt32Field(value: &_storage._pyGenericServices) }() + case 755: try { try decoder.decodeSingularInt32Field(value: &_storage._r) }() + case 756: try { try decoder.decodeSingularInt32Field(value: &_storage._rawChars) }() + case 757: try { try decoder.decodeSingularInt32Field(value: &_storage._rawRepresentable) }() + case 758: try { try decoder.decodeSingularInt32Field(value: &_storage._rawValue) }() + case 759: try { try decoder.decodeSingularInt32Field(value: &_storage._read4HexDigits) }() + case 760: try { try decoder.decodeSingularInt32Field(value: &_storage._readBytes) }() + case 761: try { try decoder.decodeSingularInt32Field(value: &_storage._register) }() + case 762: try { try decoder.decodeSingularInt32Field(value: &_storage._repeated) }() + case 763: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedEnumExtensionField) }() + case 764: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedExtensionField) }() + case 765: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedFieldEncoding) }() + case 766: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedGroupExtensionField) }() + case 767: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedMessageExtensionField) }() + case 768: try { try decoder.decodeSingularInt32Field(value: &_storage._repeating) }() + case 769: try { try decoder.decodeSingularInt32Field(value: &_storage._requestStreaming) }() + case 770: try { try decoder.decodeSingularInt32Field(value: &_storage._requestTypeURL) }() + case 771: try { try decoder.decodeSingularInt32Field(value: &_storage._requiredSize) }() + case 772: try { try decoder.decodeSingularInt32Field(value: &_storage._responseStreaming) }() + case 773: try { try decoder.decodeSingularInt32Field(value: &_storage._responseTypeURL) }() + case 774: try { try decoder.decodeSingularInt32Field(value: &_storage._result) }() + case 775: try { try decoder.decodeSingularInt32Field(value: &_storage._retention) }() + case 776: try { try decoder.decodeSingularInt32Field(value: &_storage._rethrows) }() + case 777: try { try decoder.decodeSingularInt32Field(value: &_storage._return) }() + case 778: try { try decoder.decodeSingularInt32Field(value: &_storage._returnType) }() + case 779: try { try decoder.decodeSingularInt32Field(value: &_storage._revision) }() + case 780: try { try decoder.decodeSingularInt32Field(value: &_storage._rhs) }() + case 781: try { try decoder.decodeSingularInt32Field(value: &_storage._root) }() + case 782: try { try decoder.decodeSingularInt32Field(value: &_storage._rubyPackage) }() + case 783: try { try decoder.decodeSingularInt32Field(value: &_storage._s) }() + case 784: try { try decoder.decodeSingularInt32Field(value: &_storage._sawBackslash) }() + case 785: try { try decoder.decodeSingularInt32Field(value: &_storage._sawSection4Characters) }() + case 786: try { try decoder.decodeSingularInt32Field(value: &_storage._sawSection5Characters) }() + case 787: try { try decoder.decodeSingularInt32Field(value: &_storage._scan) }() + case 788: try { try decoder.decodeSingularInt32Field(value: &_storage._scanner) }() + case 789: try { try decoder.decodeSingularInt32Field(value: &_storage._seconds) }() + case 790: try { try decoder.decodeSingularInt32Field(value: &_storage._self_p) }() + case 791: try { try decoder.decodeSingularInt32Field(value: &_storage._semantic) }() + case 792: try { try decoder.decodeSingularInt32Field(value: &_storage._sendable) }() + case 793: try { try decoder.decodeSingularInt32Field(value: &_storage._separator) }() + case 794: try { try decoder.decodeSingularInt32Field(value: &_storage._serialize) }() + case 795: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedBytes) }() + case 796: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedData) }() + case 797: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedSize) }() + case 798: try { try decoder.decodeSingularInt32Field(value: &_storage._serverStreaming) }() + case 799: try { try decoder.decodeSingularInt32Field(value: &_storage._service) }() + case 800: try { try decoder.decodeSingularInt32Field(value: &_storage._serviceDescriptorProto) }() + case 801: try { try decoder.decodeSingularInt32Field(value: &_storage._serviceOptions) }() + case 802: try { try decoder.decodeSingularInt32Field(value: &_storage._set) }() + case 803: try { try decoder.decodeSingularInt32Field(value: &_storage._setExtensionValue) }() + case 804: try { try decoder.decodeSingularInt32Field(value: &_storage._shift) }() + case 805: try { try decoder.decodeSingularInt32Field(value: &_storage._simpleExtensionMap) }() + case 806: try { try decoder.decodeSingularInt32Field(value: &_storage._size) }() + case 807: try { try decoder.decodeSingularInt32Field(value: &_storage._sizer) }() + case 808: try { try decoder.decodeSingularInt32Field(value: &_storage._source) }() + case 809: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceCodeInfo) }() + case 810: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceContext) }() + case 811: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceEncoding) }() + case 812: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceFile) }() + case 813: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceLocation) }() + case 814: try { try decoder.decodeSingularInt32Field(value: &_storage._span) }() + case 815: try { try decoder.decodeSingularInt32Field(value: &_storage._split) }() + case 816: try { try decoder.decodeSingularInt32Field(value: &_storage._start) }() + case 817: try { try decoder.decodeSingularInt32Field(value: &_storage._startArray) }() + case 818: try { try decoder.decodeSingularInt32Field(value: &_storage._startArrayObject) }() + case 819: try { try decoder.decodeSingularInt32Field(value: &_storage._startField) }() + case 820: try { try decoder.decodeSingularInt32Field(value: &_storage._startIndex) }() + case 821: try { try decoder.decodeSingularInt32Field(value: &_storage._startMessageField) }() + case 822: try { try decoder.decodeSingularInt32Field(value: &_storage._startObject) }() + case 823: try { try decoder.decodeSingularInt32Field(value: &_storage._startRegularField) }() + case 824: try { try decoder.decodeSingularInt32Field(value: &_storage._state) }() + case 825: try { try decoder.decodeSingularInt32Field(value: &_storage._static) }() + case 826: try { try decoder.decodeSingularInt32Field(value: &_storage._staticString) }() + case 827: try { try decoder.decodeSingularInt32Field(value: &_storage._storage) }() + case 828: try { try decoder.decodeSingularInt32Field(value: &_storage._string) }() + case 829: try { try decoder.decodeSingularInt32Field(value: &_storage._stringLiteral) }() + case 830: try { try decoder.decodeSingularInt32Field(value: &_storage._stringLiteralType) }() + case 831: try { try decoder.decodeSingularInt32Field(value: &_storage._stringResult) }() + case 832: try { try decoder.decodeSingularInt32Field(value: &_storage._stringValue) }() + case 833: try { try decoder.decodeSingularInt32Field(value: &_storage._struct) }() + case 834: try { try decoder.decodeSingularInt32Field(value: &_storage._structValue) }() + case 835: try { try decoder.decodeSingularInt32Field(value: &_storage._subDecoder) }() + case 836: try { try decoder.decodeSingularInt32Field(value: &_storage._subscript) }() + case 837: try { try decoder.decodeSingularInt32Field(value: &_storage._subVisitor) }() + case 838: try { try decoder.decodeSingularInt32Field(value: &_storage._swift) }() + case 839: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftPrefix) }() + case 840: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftProtobufContiguousBytes) }() + case 841: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftProtobufError) }() + case 842: try { try decoder.decodeSingularInt32Field(value: &_storage._syntax) }() + case 843: try { try decoder.decodeSingularInt32Field(value: &_storage._t) }() + case 844: try { try decoder.decodeSingularInt32Field(value: &_storage._tag) }() + case 845: try { try decoder.decodeSingularInt32Field(value: &_storage._targets) }() + case 846: try { try decoder.decodeSingularInt32Field(value: &_storage._terminator) }() + case 847: try { try decoder.decodeSingularInt32Field(value: &_storage._testDecoder) }() + case 848: try { try decoder.decodeSingularInt32Field(value: &_storage._text) }() + case 849: try { try decoder.decodeSingularInt32Field(value: &_storage._textDecoder) }() + case 850: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecoder) }() + case 851: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecodingError) }() + case 852: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecodingOptions) }() + case 853: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatEncodingOptions) }() + case 854: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatEncodingVisitor) }() + case 855: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatString) }() + case 856: try { try decoder.decodeSingularInt32Field(value: &_storage._throwOrIgnore) }() + case 857: try { try decoder.decodeSingularInt32Field(value: &_storage._throws) }() + case 858: try { try decoder.decodeSingularInt32Field(value: &_storage._timeInterval) }() + case 859: try { try decoder.decodeSingularInt32Field(value: &_storage._timeIntervalSince1970) }() + case 860: try { try decoder.decodeSingularInt32Field(value: &_storage._timeIntervalSinceReferenceDate) }() + case 861: try { try decoder.decodeSingularInt32Field(value: &_storage._timestamp) }() + case 862: try { try decoder.decodeSingularInt32Field(value: &_storage._tooLarge) }() + case 863: try { try decoder.decodeSingularInt32Field(value: &_storage._total) }() + case 864: try { try decoder.decodeSingularInt32Field(value: &_storage._totalArrayDepth) }() + case 865: try { try decoder.decodeSingularInt32Field(value: &_storage._totalSize) }() + case 866: try { try decoder.decodeSingularInt32Field(value: &_storage._trailingComments) }() + case 867: try { try decoder.decodeSingularInt32Field(value: &_storage._traverse) }() + case 868: try { try decoder.decodeSingularInt32Field(value: &_storage._true) }() + case 869: try { try decoder.decodeSingularInt32Field(value: &_storage._try) }() + case 870: try { try decoder.decodeSingularInt32Field(value: &_storage._type) }() + case 871: try { try decoder.decodeSingularInt32Field(value: &_storage._typealias) }() + case 872: try { try decoder.decodeSingularInt32Field(value: &_storage._typeEnum) }() + case 873: try { try decoder.decodeSingularInt32Field(value: &_storage._typeName) }() + case 874: try { try decoder.decodeSingularInt32Field(value: &_storage._typePrefix) }() + case 875: try { try decoder.decodeSingularInt32Field(value: &_storage._typeStart) }() + case 876: try { try decoder.decodeSingularInt32Field(value: &_storage._typeUnknown) }() + case 877: try { try decoder.decodeSingularInt32Field(value: &_storage._typeURL) }() + case 878: try { try decoder.decodeSingularInt32Field(value: &_storage._uint32) }() + case 879: try { try decoder.decodeSingularInt32Field(value: &_storage._uint32Value) }() + case 880: try { try decoder.decodeSingularInt32Field(value: &_storage._uint64) }() + case 881: try { try decoder.decodeSingularInt32Field(value: &_storage._uint64Value) }() + case 882: try { try decoder.decodeSingularInt32Field(value: &_storage._uint8) }() + case 883: try { try decoder.decodeSingularInt32Field(value: &_storage._unchecked) }() + case 884: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarLiteral) }() + case 885: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarLiteralType) }() + case 886: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalars) }() + case 887: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarView) }() + case 888: try { try decoder.decodeSingularInt32Field(value: &_storage._uninterpretedOption) }() + case 889: try { try decoder.decodeSingularInt32Field(value: &_storage._union) }() + case 890: try { try decoder.decodeSingularInt32Field(value: &_storage._uniqueStorage) }() + case 891: try { try decoder.decodeSingularInt32Field(value: &_storage._unknown) }() + case 892: try { try decoder.decodeSingularInt32Field(value: &_storage._unknownFields_p) }() + case 893: try { try decoder.decodeSingularInt32Field(value: &_storage._unknownStorage) }() + case 894: try { try decoder.decodeSingularInt32Field(value: &_storage._unpackTo) }() + case 895: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeBufferPointer) }() + case 896: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeMutablePointer) }() + case 897: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeMutableRawBufferPointer) }() + case 898: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeRawBufferPointer) }() + case 899: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeRawPointer) }() + case 900: try { try decoder.decodeSingularInt32Field(value: &_storage._unverifiedLazy) }() + case 901: try { try decoder.decodeSingularInt32Field(value: &_storage._updatedOptions) }() + case 902: try { try decoder.decodeSingularInt32Field(value: &_storage._url) }() + case 903: try { try decoder.decodeSingularInt32Field(value: &_storage._useDeterministicOrdering) }() + case 904: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8) }() + case 905: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8Ptr) }() + case 906: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8ToDouble) }() + case 907: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8Validation) }() + case 908: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8View) }() + case 909: try { try decoder.decodeSingularInt32Field(value: &_storage._v) }() + case 910: try { try decoder.decodeSingularInt32Field(value: &_storage._value) }() + case 911: try { try decoder.decodeSingularInt32Field(value: &_storage._valueField) }() + case 912: try { try decoder.decodeSingularInt32Field(value: &_storage._values) }() + case 913: try { try decoder.decodeSingularInt32Field(value: &_storage._valueType) }() + case 914: try { try decoder.decodeSingularInt32Field(value: &_storage._var) }() + case 915: try { try decoder.decodeSingularInt32Field(value: &_storage._verification) }() + case 916: try { try decoder.decodeSingularInt32Field(value: &_storage._verificationState) }() + case 917: try { try decoder.decodeSingularInt32Field(value: &_storage._version) }() + case 918: try { try decoder.decodeSingularInt32Field(value: &_storage._versionString) }() + case 919: try { try decoder.decodeSingularInt32Field(value: &_storage._visitExtensionFields) }() + case 920: try { try decoder.decodeSingularInt32Field(value: &_storage._visitExtensionFieldsAsMessageSet) }() + case 921: try { try decoder.decodeSingularInt32Field(value: &_storage._visitMapField) }() + case 922: try { try decoder.decodeSingularInt32Field(value: &_storage._visitor) }() + case 923: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPacked) }() + case 924: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedBoolField) }() + case 925: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedDoubleField) }() + case 926: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedEnumField) }() + case 927: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFixed32Field) }() + case 928: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFixed64Field) }() + case 929: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFloatField) }() + case 930: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedInt32Field) }() + case 931: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedInt64Field) }() + case 932: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSfixed32Field) }() + case 933: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSfixed64Field) }() + case 934: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSint32Field) }() + case 935: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSint64Field) }() + case 936: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedUint32Field) }() + case 937: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedUint64Field) }() + case 938: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeated) }() + case 939: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedBoolField) }() + case 940: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedBytesField) }() + case 941: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedDoubleField) }() + case 942: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedEnumField) }() + case 943: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFixed32Field) }() + case 944: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFixed64Field) }() + case 945: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFloatField) }() + case 946: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedGroupField) }() + case 947: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedInt32Field) }() + case 948: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedInt64Field) }() + case 949: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedMessageField) }() + case 950: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSfixed32Field) }() + case 951: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSfixed64Field) }() + case 952: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSint32Field) }() + case 953: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSint64Field) }() + case 954: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedStringField) }() + case 955: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedUint32Field) }() + case 956: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedUint64Field) }() + case 957: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingular) }() + case 958: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularBoolField) }() + case 959: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularBytesField) }() + case 960: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularDoubleField) }() + case 961: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularEnumField) }() + case 962: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFixed32Field) }() + case 963: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFixed64Field) }() + case 964: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFloatField) }() + case 965: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularGroupField) }() + case 966: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularInt32Field) }() + case 967: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularInt64Field) }() + case 968: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularMessageField) }() + case 969: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSfixed32Field) }() + case 970: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSfixed64Field) }() + case 971: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSint32Field) }() + case 972: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSint64Field) }() + case 973: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularStringField) }() + case 974: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularUint32Field) }() + case 975: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularUint64Field) }() + case 976: try { try decoder.decodeSingularInt32Field(value: &_storage._visitUnknown) }() + case 977: try { try decoder.decodeSingularInt32Field(value: &_storage._wasDecoded) }() + case 978: try { try decoder.decodeSingularInt32Field(value: &_storage._weak) }() + case 979: try { try decoder.decodeSingularInt32Field(value: &_storage._weakDependency) }() + case 980: try { try decoder.decodeSingularInt32Field(value: &_storage._where) }() + case 981: try { try decoder.decodeSingularInt32Field(value: &_storage._wireFormat) }() + case 982: try { try decoder.decodeSingularInt32Field(value: &_storage._with) }() + case 983: try { try decoder.decodeSingularInt32Field(value: &_storage._withUnsafeBytes) }() + case 984: try { try decoder.decodeSingularInt32Field(value: &_storage._withUnsafeMutableBytes) }() + case 985: try { try decoder.decodeSingularInt32Field(value: &_storage._work) }() + case 986: try { try decoder.decodeSingularInt32Field(value: &_storage._wrapped) }() + case 987: try { try decoder.decodeSingularInt32Field(value: &_storage._wrappedType) }() + case 988: try { try decoder.decodeSingularInt32Field(value: &_storage._wrappedValue) }() + case 989: try { try decoder.decodeSingularInt32Field(value: &_storage._written) }() + case 990: try { try decoder.decodeSingularInt32Field(value: &_storage._yday) }() default: break } } @@ -9065,2954 +9029,2942 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._anyMessageStorage != 0 { try visitor.visitSingularInt32Field(value: _storage._anyMessageStorage, fieldNumber: 11) } - if _storage._anyTypeUrlnotRegistered != 0 { - try visitor.visitSingularInt32Field(value: _storage._anyTypeUrlnotRegistered, fieldNumber: 12) - } if _storage._anyUnpackError != 0 { - try visitor.visitSingularInt32Field(value: _storage._anyUnpackError, fieldNumber: 13) + try visitor.visitSingularInt32Field(value: _storage._anyUnpackError, fieldNumber: 12) } if _storage._api != 0 { - try visitor.visitSingularInt32Field(value: _storage._api, fieldNumber: 14) + try visitor.visitSingularInt32Field(value: _storage._api, fieldNumber: 13) } if _storage._appended != 0 { - try visitor.visitSingularInt32Field(value: _storage._appended, fieldNumber: 15) + try visitor.visitSingularInt32Field(value: _storage._appended, fieldNumber: 14) } if _storage._appendUintHex != 0 { - try visitor.visitSingularInt32Field(value: _storage._appendUintHex, fieldNumber: 16) + try visitor.visitSingularInt32Field(value: _storage._appendUintHex, fieldNumber: 15) } if _storage._appendUnknown != 0 { - try visitor.visitSingularInt32Field(value: _storage._appendUnknown, fieldNumber: 17) + try visitor.visitSingularInt32Field(value: _storage._appendUnknown, fieldNumber: 16) } if _storage._areAllInitialized != 0 { - try visitor.visitSingularInt32Field(value: _storage._areAllInitialized, fieldNumber: 18) + try visitor.visitSingularInt32Field(value: _storage._areAllInitialized, fieldNumber: 17) } if _storage._array != 0 { - try visitor.visitSingularInt32Field(value: _storage._array, fieldNumber: 19) + try visitor.visitSingularInt32Field(value: _storage._array, fieldNumber: 18) } if _storage._arrayDepth != 0 { - try visitor.visitSingularInt32Field(value: _storage._arrayDepth, fieldNumber: 20) + try visitor.visitSingularInt32Field(value: _storage._arrayDepth, fieldNumber: 19) } if _storage._arrayLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._arrayLiteral, fieldNumber: 21) + try visitor.visitSingularInt32Field(value: _storage._arrayLiteral, fieldNumber: 20) } if _storage._arraySeparator != 0 { - try visitor.visitSingularInt32Field(value: _storage._arraySeparator, fieldNumber: 22) + try visitor.visitSingularInt32Field(value: _storage._arraySeparator, fieldNumber: 21) } if _storage._as != 0 { - try visitor.visitSingularInt32Field(value: _storage._as, fieldNumber: 23) + try visitor.visitSingularInt32Field(value: _storage._as, fieldNumber: 22) } if _storage._asciiOpenCurlyBracket != 0 { - try visitor.visitSingularInt32Field(value: _storage._asciiOpenCurlyBracket, fieldNumber: 24) + try visitor.visitSingularInt32Field(value: _storage._asciiOpenCurlyBracket, fieldNumber: 23) } if _storage._asciiZero != 0 { - try visitor.visitSingularInt32Field(value: _storage._asciiZero, fieldNumber: 25) + try visitor.visitSingularInt32Field(value: _storage._asciiZero, fieldNumber: 24) } if _storage._async != 0 { - try visitor.visitSingularInt32Field(value: _storage._async, fieldNumber: 26) + try visitor.visitSingularInt32Field(value: _storage._async, fieldNumber: 25) } if _storage._asyncIterator != 0 { - try visitor.visitSingularInt32Field(value: _storage._asyncIterator, fieldNumber: 27) + try visitor.visitSingularInt32Field(value: _storage._asyncIterator, fieldNumber: 26) } if _storage._asyncIteratorProtocol != 0 { - try visitor.visitSingularInt32Field(value: _storage._asyncIteratorProtocol, fieldNumber: 28) + try visitor.visitSingularInt32Field(value: _storage._asyncIteratorProtocol, fieldNumber: 27) } if _storage._asyncMessageSequence != 0 { - try visitor.visitSingularInt32Field(value: _storage._asyncMessageSequence, fieldNumber: 29) + try visitor.visitSingularInt32Field(value: _storage._asyncMessageSequence, fieldNumber: 28) } if _storage._available != 0 { - try visitor.visitSingularInt32Field(value: _storage._available, fieldNumber: 30) + try visitor.visitSingularInt32Field(value: _storage._available, fieldNumber: 29) } if _storage._b != 0 { - try visitor.visitSingularInt32Field(value: _storage._b, fieldNumber: 31) + try visitor.visitSingularInt32Field(value: _storage._b, fieldNumber: 30) } if _storage._base != 0 { - try visitor.visitSingularInt32Field(value: _storage._base, fieldNumber: 32) + try visitor.visitSingularInt32Field(value: _storage._base, fieldNumber: 31) } if _storage._base64Values != 0 { - try visitor.visitSingularInt32Field(value: _storage._base64Values, fieldNumber: 33) + try visitor.visitSingularInt32Field(value: _storage._base64Values, fieldNumber: 32) } if _storage._baseAddress != 0 { - try visitor.visitSingularInt32Field(value: _storage._baseAddress, fieldNumber: 34) + try visitor.visitSingularInt32Field(value: _storage._baseAddress, fieldNumber: 33) } if _storage._baseType != 0 { - try visitor.visitSingularInt32Field(value: _storage._baseType, fieldNumber: 35) + try visitor.visitSingularInt32Field(value: _storage._baseType, fieldNumber: 34) } if _storage._begin != 0 { - try visitor.visitSingularInt32Field(value: _storage._begin, fieldNumber: 36) + try visitor.visitSingularInt32Field(value: _storage._begin, fieldNumber: 35) } if _storage._binary != 0 { - try visitor.visitSingularInt32Field(value: _storage._binary, fieldNumber: 37) + try visitor.visitSingularInt32Field(value: _storage._binary, fieldNumber: 36) } if _storage._binaryDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryDecoder, fieldNumber: 38) + try visitor.visitSingularInt32Field(value: _storage._binaryDecoder, fieldNumber: 37) } if _storage._binaryDecoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryDecoding, fieldNumber: 39) + try visitor.visitSingularInt32Field(value: _storage._binaryDecoding, fieldNumber: 38) } if _storage._binaryDecodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryDecodingError, fieldNumber: 40) + try visitor.visitSingularInt32Field(value: _storage._binaryDecodingError, fieldNumber: 39) } if _storage._binaryDecodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryDecodingOptions, fieldNumber: 41) + try visitor.visitSingularInt32Field(value: _storage._binaryDecodingOptions, fieldNumber: 40) } if _storage._binaryDelimited != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryDelimited, fieldNumber: 42) + try visitor.visitSingularInt32Field(value: _storage._binaryDelimited, fieldNumber: 41) } if _storage._binaryEncoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncoder, fieldNumber: 43) - } - if _storage._binaryEncoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncoding, fieldNumber: 44) + try visitor.visitSingularInt32Field(value: _storage._binaryEncoder, fieldNumber: 42) } if _storage._binaryEncodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingError, fieldNumber: 45) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingError, fieldNumber: 43) } if _storage._binaryEncodingMessageSetSizeVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingMessageSetSizeVisitor, fieldNumber: 46) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingMessageSetSizeVisitor, fieldNumber: 44) } if _storage._binaryEncodingMessageSetVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingMessageSetVisitor, fieldNumber: 47) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingMessageSetVisitor, fieldNumber: 45) } if _storage._binaryEncodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingOptions, fieldNumber: 48) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingOptions, fieldNumber: 46) } if _storage._binaryEncodingSizeVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingSizeVisitor, fieldNumber: 49) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingSizeVisitor, fieldNumber: 47) } if _storage._binaryEncodingVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingVisitor, fieldNumber: 50) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingVisitor, fieldNumber: 48) } if _storage._binaryOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryOptions, fieldNumber: 51) + try visitor.visitSingularInt32Field(value: _storage._binaryOptions, fieldNumber: 49) } if _storage._binaryProtobufDelimitedMessages != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryProtobufDelimitedMessages, fieldNumber: 52) + try visitor.visitSingularInt32Field(value: _storage._binaryProtobufDelimitedMessages, fieldNumber: 50) } if _storage._binaryStreamDecoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryStreamDecoding, fieldNumber: 53) + try visitor.visitSingularInt32Field(value: _storage._binaryStreamDecoding, fieldNumber: 51) } if _storage._binaryStreamDecodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryStreamDecodingError, fieldNumber: 54) + try visitor.visitSingularInt32Field(value: _storage._binaryStreamDecodingError, fieldNumber: 52) } if _storage._bitPattern != 0 { - try visitor.visitSingularInt32Field(value: _storage._bitPattern, fieldNumber: 55) + try visitor.visitSingularInt32Field(value: _storage._bitPattern, fieldNumber: 53) } if _storage._body != 0 { - try visitor.visitSingularInt32Field(value: _storage._body, fieldNumber: 56) + try visitor.visitSingularInt32Field(value: _storage._body, fieldNumber: 54) } if _storage._bool != 0 { - try visitor.visitSingularInt32Field(value: _storage._bool, fieldNumber: 57) + try visitor.visitSingularInt32Field(value: _storage._bool, fieldNumber: 55) } if _storage._booleanLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._booleanLiteral, fieldNumber: 58) + try visitor.visitSingularInt32Field(value: _storage._booleanLiteral, fieldNumber: 56) } if _storage._booleanLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._booleanLiteralType, fieldNumber: 59) + try visitor.visitSingularInt32Field(value: _storage._booleanLiteralType, fieldNumber: 57) } if _storage._boolValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._boolValue, fieldNumber: 60) + try visitor.visitSingularInt32Field(value: _storage._boolValue, fieldNumber: 58) } if _storage._buffer != 0 { - try visitor.visitSingularInt32Field(value: _storage._buffer, fieldNumber: 61) + try visitor.visitSingularInt32Field(value: _storage._buffer, fieldNumber: 59) } if _storage._bytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytes, fieldNumber: 62) + try visitor.visitSingularInt32Field(value: _storage._bytes, fieldNumber: 60) } if _storage._bytesInGroup != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytesInGroup, fieldNumber: 63) + try visitor.visitSingularInt32Field(value: _storage._bytesInGroup, fieldNumber: 61) } if _storage._bytesNeeded != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytesNeeded, fieldNumber: 64) + try visitor.visitSingularInt32Field(value: _storage._bytesNeeded, fieldNumber: 62) } if _storage._bytesRead != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytesRead, fieldNumber: 65) + try visitor.visitSingularInt32Field(value: _storage._bytesRead, fieldNumber: 63) } if _storage._bytesValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytesValue, fieldNumber: 66) + try visitor.visitSingularInt32Field(value: _storage._bytesValue, fieldNumber: 64) } if _storage._c != 0 { - try visitor.visitSingularInt32Field(value: _storage._c, fieldNumber: 67) + try visitor.visitSingularInt32Field(value: _storage._c, fieldNumber: 65) } if _storage._capitalizeNext != 0 { - try visitor.visitSingularInt32Field(value: _storage._capitalizeNext, fieldNumber: 68) + try visitor.visitSingularInt32Field(value: _storage._capitalizeNext, fieldNumber: 66) } if _storage._cardinality != 0 { - try visitor.visitSingularInt32Field(value: _storage._cardinality, fieldNumber: 69) + try visitor.visitSingularInt32Field(value: _storage._cardinality, fieldNumber: 67) } if _storage._caseIterable != 0 { - try visitor.visitSingularInt32Field(value: _storage._caseIterable, fieldNumber: 70) + try visitor.visitSingularInt32Field(value: _storage._caseIterable, fieldNumber: 68) } if _storage._ccEnableArenas != 0 { - try visitor.visitSingularInt32Field(value: _storage._ccEnableArenas, fieldNumber: 71) + try visitor.visitSingularInt32Field(value: _storage._ccEnableArenas, fieldNumber: 69) } if _storage._ccGenericServices != 0 { - try visitor.visitSingularInt32Field(value: _storage._ccGenericServices, fieldNumber: 72) + try visitor.visitSingularInt32Field(value: _storage._ccGenericServices, fieldNumber: 70) } if _storage._character != 0 { - try visitor.visitSingularInt32Field(value: _storage._character, fieldNumber: 73) + try visitor.visitSingularInt32Field(value: _storage._character, fieldNumber: 71) } if _storage._chars != 0 { - try visitor.visitSingularInt32Field(value: _storage._chars, fieldNumber: 74) + try visitor.visitSingularInt32Field(value: _storage._chars, fieldNumber: 72) } if _storage._chunk != 0 { - try visitor.visitSingularInt32Field(value: _storage._chunk, fieldNumber: 75) + try visitor.visitSingularInt32Field(value: _storage._chunk, fieldNumber: 73) } if _storage._class != 0 { - try visitor.visitSingularInt32Field(value: _storage._class, fieldNumber: 76) + try visitor.visitSingularInt32Field(value: _storage._class, fieldNumber: 74) } if _storage._clearAggregateValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearAggregateValue_p, fieldNumber: 77) + try visitor.visitSingularInt32Field(value: _storage._clearAggregateValue_p, fieldNumber: 75) } if _storage._clearAllowAlias_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearAllowAlias_p, fieldNumber: 78) + try visitor.visitSingularInt32Field(value: _storage._clearAllowAlias_p, fieldNumber: 76) } if _storage._clearBegin_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearBegin_p, fieldNumber: 79) + try visitor.visitSingularInt32Field(value: _storage._clearBegin_p, fieldNumber: 77) } if _storage._clearCcEnableArenas_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearCcEnableArenas_p, fieldNumber: 80) + try visitor.visitSingularInt32Field(value: _storage._clearCcEnableArenas_p, fieldNumber: 78) } if _storage._clearCcGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearCcGenericServices_p, fieldNumber: 81) + try visitor.visitSingularInt32Field(value: _storage._clearCcGenericServices_p, fieldNumber: 79) } if _storage._clearClientStreaming_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearClientStreaming_p, fieldNumber: 82) + try visitor.visitSingularInt32Field(value: _storage._clearClientStreaming_p, fieldNumber: 80) } if _storage._clearCsharpNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearCsharpNamespace_p, fieldNumber: 83) + try visitor.visitSingularInt32Field(value: _storage._clearCsharpNamespace_p, fieldNumber: 81) } if _storage._clearCtype_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearCtype_p, fieldNumber: 84) + try visitor.visitSingularInt32Field(value: _storage._clearCtype_p, fieldNumber: 82) } if _storage._clearDebugRedact_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDebugRedact_p, fieldNumber: 85) + try visitor.visitSingularInt32Field(value: _storage._clearDebugRedact_p, fieldNumber: 83) } if _storage._clearDefaultValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDefaultValue_p, fieldNumber: 86) + try visitor.visitSingularInt32Field(value: _storage._clearDefaultValue_p, fieldNumber: 84) } if _storage._clearDeprecated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDeprecated_p, fieldNumber: 87) + try visitor.visitSingularInt32Field(value: _storage._clearDeprecated_p, fieldNumber: 85) } if _storage._clearDeprecatedLegacyJsonFieldConflicts_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDeprecatedLegacyJsonFieldConflicts_p, fieldNumber: 88) + try visitor.visitSingularInt32Field(value: _storage._clearDeprecatedLegacyJsonFieldConflicts_p, fieldNumber: 86) } if _storage._clearDeprecationWarning_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDeprecationWarning_p, fieldNumber: 89) + try visitor.visitSingularInt32Field(value: _storage._clearDeprecationWarning_p, fieldNumber: 87) } if _storage._clearDoubleValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDoubleValue_p, fieldNumber: 90) + try visitor.visitSingularInt32Field(value: _storage._clearDoubleValue_p, fieldNumber: 88) } if _storage._clearEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEdition_p, fieldNumber: 91) + try visitor.visitSingularInt32Field(value: _storage._clearEdition_p, fieldNumber: 89) } if _storage._clearEditionDeprecated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEditionDeprecated_p, fieldNumber: 92) + try visitor.visitSingularInt32Field(value: _storage._clearEditionDeprecated_p, fieldNumber: 90) } if _storage._clearEditionIntroduced_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEditionIntroduced_p, fieldNumber: 93) + try visitor.visitSingularInt32Field(value: _storage._clearEditionIntroduced_p, fieldNumber: 91) } if _storage._clearEditionRemoved_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEditionRemoved_p, fieldNumber: 94) + try visitor.visitSingularInt32Field(value: _storage._clearEditionRemoved_p, fieldNumber: 92) } if _storage._clearEnd_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEnd_p, fieldNumber: 95) + try visitor.visitSingularInt32Field(value: _storage._clearEnd_p, fieldNumber: 93) } if _storage._clearEnumType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEnumType_p, fieldNumber: 96) + try visitor.visitSingularInt32Field(value: _storage._clearEnumType_p, fieldNumber: 94) } if _storage._clearExtendee_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearExtendee_p, fieldNumber: 97) + try visitor.visitSingularInt32Field(value: _storage._clearExtendee_p, fieldNumber: 95) } if _storage._clearExtensionValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearExtensionValue_p, fieldNumber: 98) + try visitor.visitSingularInt32Field(value: _storage._clearExtensionValue_p, fieldNumber: 96) } if _storage._clearFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFeatures_p, fieldNumber: 99) + try visitor.visitSingularInt32Field(value: _storage._clearFeatures_p, fieldNumber: 97) } if _storage._clearFeatureSupport_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFeatureSupport_p, fieldNumber: 100) + try visitor.visitSingularInt32Field(value: _storage._clearFeatureSupport_p, fieldNumber: 98) } if _storage._clearFieldPresence_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFieldPresence_p, fieldNumber: 101) + try visitor.visitSingularInt32Field(value: _storage._clearFieldPresence_p, fieldNumber: 99) } if _storage._clearFixedFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFixedFeatures_p, fieldNumber: 102) + try visitor.visitSingularInt32Field(value: _storage._clearFixedFeatures_p, fieldNumber: 100) } if _storage._clearFullName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFullName_p, fieldNumber: 103) + try visitor.visitSingularInt32Field(value: _storage._clearFullName_p, fieldNumber: 101) } if _storage._clearGoPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearGoPackage_p, fieldNumber: 104) + try visitor.visitSingularInt32Field(value: _storage._clearGoPackage_p, fieldNumber: 102) } if _storage._clearIdempotencyLevel_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearIdempotencyLevel_p, fieldNumber: 105) + try visitor.visitSingularInt32Field(value: _storage._clearIdempotencyLevel_p, fieldNumber: 103) } if _storage._clearIdentifierValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearIdentifierValue_p, fieldNumber: 106) + try visitor.visitSingularInt32Field(value: _storage._clearIdentifierValue_p, fieldNumber: 104) } if _storage._clearInputType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearInputType_p, fieldNumber: 107) + try visitor.visitSingularInt32Field(value: _storage._clearInputType_p, fieldNumber: 105) } if _storage._clearIsExtension_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearIsExtension_p, fieldNumber: 108) + try visitor.visitSingularInt32Field(value: _storage._clearIsExtension_p, fieldNumber: 106) } if _storage._clearJavaGenerateEqualsAndHash_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaGenerateEqualsAndHash_p, fieldNumber: 109) + try visitor.visitSingularInt32Field(value: _storage._clearJavaGenerateEqualsAndHash_p, fieldNumber: 107) } if _storage._clearJavaGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaGenericServices_p, fieldNumber: 110) + try visitor.visitSingularInt32Field(value: _storage._clearJavaGenericServices_p, fieldNumber: 108) } if _storage._clearJavaMultipleFiles_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaMultipleFiles_p, fieldNumber: 111) + try visitor.visitSingularInt32Field(value: _storage._clearJavaMultipleFiles_p, fieldNumber: 109) } if _storage._clearJavaOuterClassname_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaOuterClassname_p, fieldNumber: 112) + try visitor.visitSingularInt32Field(value: _storage._clearJavaOuterClassname_p, fieldNumber: 110) } if _storage._clearJavaPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaPackage_p, fieldNumber: 113) + try visitor.visitSingularInt32Field(value: _storage._clearJavaPackage_p, fieldNumber: 111) } if _storage._clearJavaStringCheckUtf8_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaStringCheckUtf8_p, fieldNumber: 114) + try visitor.visitSingularInt32Field(value: _storage._clearJavaStringCheckUtf8_p, fieldNumber: 112) } if _storage._clearJsonFormat_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJsonFormat_p, fieldNumber: 115) + try visitor.visitSingularInt32Field(value: _storage._clearJsonFormat_p, fieldNumber: 113) } if _storage._clearJsonName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJsonName_p, fieldNumber: 116) + try visitor.visitSingularInt32Field(value: _storage._clearJsonName_p, fieldNumber: 114) } if _storage._clearJstype_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJstype_p, fieldNumber: 117) + try visitor.visitSingularInt32Field(value: _storage._clearJstype_p, fieldNumber: 115) } if _storage._clearLabel_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearLabel_p, fieldNumber: 118) + try visitor.visitSingularInt32Field(value: _storage._clearLabel_p, fieldNumber: 116) } if _storage._clearLazy_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearLazy_p, fieldNumber: 119) + try visitor.visitSingularInt32Field(value: _storage._clearLazy_p, fieldNumber: 117) } if _storage._clearLeadingComments_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearLeadingComments_p, fieldNumber: 120) + try visitor.visitSingularInt32Field(value: _storage._clearLeadingComments_p, fieldNumber: 118) } if _storage._clearMapEntry_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMapEntry_p, fieldNumber: 121) + try visitor.visitSingularInt32Field(value: _storage._clearMapEntry_p, fieldNumber: 119) } if _storage._clearMaximumEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMaximumEdition_p, fieldNumber: 122) + try visitor.visitSingularInt32Field(value: _storage._clearMaximumEdition_p, fieldNumber: 120) } if _storage._clearMessageEncoding_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMessageEncoding_p, fieldNumber: 123) + try visitor.visitSingularInt32Field(value: _storage._clearMessageEncoding_p, fieldNumber: 121) } if _storage._clearMessageSetWireFormat_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMessageSetWireFormat_p, fieldNumber: 124) + try visitor.visitSingularInt32Field(value: _storage._clearMessageSetWireFormat_p, fieldNumber: 122) } if _storage._clearMinimumEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMinimumEdition_p, fieldNumber: 125) + try visitor.visitSingularInt32Field(value: _storage._clearMinimumEdition_p, fieldNumber: 123) } if _storage._clearName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearName_p, fieldNumber: 126) + try visitor.visitSingularInt32Field(value: _storage._clearName_p, fieldNumber: 124) } if _storage._clearNamePart_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearNamePart_p, fieldNumber: 127) + try visitor.visitSingularInt32Field(value: _storage._clearNamePart_p, fieldNumber: 125) } if _storage._clearNegativeIntValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearNegativeIntValue_p, fieldNumber: 128) + try visitor.visitSingularInt32Field(value: _storage._clearNegativeIntValue_p, fieldNumber: 126) } if _storage._clearNoStandardDescriptorAccessor_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearNoStandardDescriptorAccessor_p, fieldNumber: 129) + try visitor.visitSingularInt32Field(value: _storage._clearNoStandardDescriptorAccessor_p, fieldNumber: 127) } if _storage._clearNumber_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearNumber_p, fieldNumber: 130) + try visitor.visitSingularInt32Field(value: _storage._clearNumber_p, fieldNumber: 128) } if _storage._clearObjcClassPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearObjcClassPrefix_p, fieldNumber: 131) + try visitor.visitSingularInt32Field(value: _storage._clearObjcClassPrefix_p, fieldNumber: 129) } if _storage._clearOneofIndex_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOneofIndex_p, fieldNumber: 132) + try visitor.visitSingularInt32Field(value: _storage._clearOneofIndex_p, fieldNumber: 130) } if _storage._clearOptimizeFor_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOptimizeFor_p, fieldNumber: 133) + try visitor.visitSingularInt32Field(value: _storage._clearOptimizeFor_p, fieldNumber: 131) } if _storage._clearOptions_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOptions_p, fieldNumber: 134) + try visitor.visitSingularInt32Field(value: _storage._clearOptions_p, fieldNumber: 132) } if _storage._clearOutputType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOutputType_p, fieldNumber: 135) + try visitor.visitSingularInt32Field(value: _storage._clearOutputType_p, fieldNumber: 133) } if _storage._clearOverridableFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOverridableFeatures_p, fieldNumber: 136) + try visitor.visitSingularInt32Field(value: _storage._clearOverridableFeatures_p, fieldNumber: 134) } if _storage._clearPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPackage_p, fieldNumber: 137) + try visitor.visitSingularInt32Field(value: _storage._clearPackage_p, fieldNumber: 135) } if _storage._clearPacked_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPacked_p, fieldNumber: 138) + try visitor.visitSingularInt32Field(value: _storage._clearPacked_p, fieldNumber: 136) } if _storage._clearPhpClassPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPhpClassPrefix_p, fieldNumber: 139) + try visitor.visitSingularInt32Field(value: _storage._clearPhpClassPrefix_p, fieldNumber: 137) } if _storage._clearPhpMetadataNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPhpMetadataNamespace_p, fieldNumber: 140) + try visitor.visitSingularInt32Field(value: _storage._clearPhpMetadataNamespace_p, fieldNumber: 138) } if _storage._clearPhpNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPhpNamespace_p, fieldNumber: 141) + try visitor.visitSingularInt32Field(value: _storage._clearPhpNamespace_p, fieldNumber: 139) } if _storage._clearPositiveIntValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPositiveIntValue_p, fieldNumber: 142) + try visitor.visitSingularInt32Field(value: _storage._clearPositiveIntValue_p, fieldNumber: 140) } if _storage._clearProto3Optional_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearProto3Optional_p, fieldNumber: 143) + try visitor.visitSingularInt32Field(value: _storage._clearProto3Optional_p, fieldNumber: 141) } if _storage._clearPyGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPyGenericServices_p, fieldNumber: 144) + try visitor.visitSingularInt32Field(value: _storage._clearPyGenericServices_p, fieldNumber: 142) } if _storage._clearRepeated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearRepeated_p, fieldNumber: 145) + try visitor.visitSingularInt32Field(value: _storage._clearRepeated_p, fieldNumber: 143) } if _storage._clearRepeatedFieldEncoding_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearRepeatedFieldEncoding_p, fieldNumber: 146) + try visitor.visitSingularInt32Field(value: _storage._clearRepeatedFieldEncoding_p, fieldNumber: 144) } if _storage._clearReserved_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearReserved_p, fieldNumber: 147) + try visitor.visitSingularInt32Field(value: _storage._clearReserved_p, fieldNumber: 145) } if _storage._clearRetention_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearRetention_p, fieldNumber: 148) + try visitor.visitSingularInt32Field(value: _storage._clearRetention_p, fieldNumber: 146) } if _storage._clearRubyPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearRubyPackage_p, fieldNumber: 149) + try visitor.visitSingularInt32Field(value: _storage._clearRubyPackage_p, fieldNumber: 147) } if _storage._clearSemantic_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSemantic_p, fieldNumber: 150) + try visitor.visitSingularInt32Field(value: _storage._clearSemantic_p, fieldNumber: 148) } if _storage._clearServerStreaming_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearServerStreaming_p, fieldNumber: 151) + try visitor.visitSingularInt32Field(value: _storage._clearServerStreaming_p, fieldNumber: 149) } if _storage._clearSourceCodeInfo_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSourceCodeInfo_p, fieldNumber: 152) + try visitor.visitSingularInt32Field(value: _storage._clearSourceCodeInfo_p, fieldNumber: 150) } if _storage._clearSourceContext_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSourceContext_p, fieldNumber: 153) + try visitor.visitSingularInt32Field(value: _storage._clearSourceContext_p, fieldNumber: 151) } if _storage._clearSourceFile_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSourceFile_p, fieldNumber: 154) + try visitor.visitSingularInt32Field(value: _storage._clearSourceFile_p, fieldNumber: 152) } if _storage._clearStart_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearStart_p, fieldNumber: 155) + try visitor.visitSingularInt32Field(value: _storage._clearStart_p, fieldNumber: 153) } if _storage._clearStringValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearStringValue_p, fieldNumber: 156) + try visitor.visitSingularInt32Field(value: _storage._clearStringValue_p, fieldNumber: 154) } if _storage._clearSwiftPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSwiftPrefix_p, fieldNumber: 157) + try visitor.visitSingularInt32Field(value: _storage._clearSwiftPrefix_p, fieldNumber: 155) } if _storage._clearSyntax_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSyntax_p, fieldNumber: 158) + try visitor.visitSingularInt32Field(value: _storage._clearSyntax_p, fieldNumber: 156) } if _storage._clearTrailingComments_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearTrailingComments_p, fieldNumber: 159) + try visitor.visitSingularInt32Field(value: _storage._clearTrailingComments_p, fieldNumber: 157) } if _storage._clearType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearType_p, fieldNumber: 160) + try visitor.visitSingularInt32Field(value: _storage._clearType_p, fieldNumber: 158) } if _storage._clearTypeName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearTypeName_p, fieldNumber: 161) + try visitor.visitSingularInt32Field(value: _storage._clearTypeName_p, fieldNumber: 159) } if _storage._clearUnverifiedLazy_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearUnverifiedLazy_p, fieldNumber: 162) + try visitor.visitSingularInt32Field(value: _storage._clearUnverifiedLazy_p, fieldNumber: 160) } if _storage._clearUtf8Validation_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearUtf8Validation_p, fieldNumber: 163) + try visitor.visitSingularInt32Field(value: _storage._clearUtf8Validation_p, fieldNumber: 161) } if _storage._clearValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearValue_p, fieldNumber: 164) + try visitor.visitSingularInt32Field(value: _storage._clearValue_p, fieldNumber: 162) } if _storage._clearVerification_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearVerification_p, fieldNumber: 165) + try visitor.visitSingularInt32Field(value: _storage._clearVerification_p, fieldNumber: 163) } if _storage._clearWeak_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearWeak_p, fieldNumber: 166) + try visitor.visitSingularInt32Field(value: _storage._clearWeak_p, fieldNumber: 164) } if _storage._clientStreaming != 0 { - try visitor.visitSingularInt32Field(value: _storage._clientStreaming, fieldNumber: 167) + try visitor.visitSingularInt32Field(value: _storage._clientStreaming, fieldNumber: 165) } if _storage._code != 0 { - try visitor.visitSingularInt32Field(value: _storage._code, fieldNumber: 168) + try visitor.visitSingularInt32Field(value: _storage._code, fieldNumber: 166) } if _storage._codePoint != 0 { - try visitor.visitSingularInt32Field(value: _storage._codePoint, fieldNumber: 169) + try visitor.visitSingularInt32Field(value: _storage._codePoint, fieldNumber: 167) } if _storage._codeUnits != 0 { - try visitor.visitSingularInt32Field(value: _storage._codeUnits, fieldNumber: 170) + try visitor.visitSingularInt32Field(value: _storage._codeUnits, fieldNumber: 168) } if _storage._collection != 0 { - try visitor.visitSingularInt32Field(value: _storage._collection, fieldNumber: 171) + try visitor.visitSingularInt32Field(value: _storage._collection, fieldNumber: 169) } if _storage._com != 0 { - try visitor.visitSingularInt32Field(value: _storage._com, fieldNumber: 172) + try visitor.visitSingularInt32Field(value: _storage._com, fieldNumber: 170) } if _storage._comma != 0 { - try visitor.visitSingularInt32Field(value: _storage._comma, fieldNumber: 173) + try visitor.visitSingularInt32Field(value: _storage._comma, fieldNumber: 171) } if _storage._consumedBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._consumedBytes, fieldNumber: 174) + try visitor.visitSingularInt32Field(value: _storage._consumedBytes, fieldNumber: 172) } if _storage._contentsOf != 0 { - try visitor.visitSingularInt32Field(value: _storage._contentsOf, fieldNumber: 175) + try visitor.visitSingularInt32Field(value: _storage._contentsOf, fieldNumber: 173) } if _storage._copy != 0 { - try visitor.visitSingularInt32Field(value: _storage._copy, fieldNumber: 176) + try visitor.visitSingularInt32Field(value: _storage._copy, fieldNumber: 174) } if _storage._count != 0 { - try visitor.visitSingularInt32Field(value: _storage._count, fieldNumber: 177) + try visitor.visitSingularInt32Field(value: _storage._count, fieldNumber: 175) } if _storage._countVarintsInBuffer != 0 { - try visitor.visitSingularInt32Field(value: _storage._countVarintsInBuffer, fieldNumber: 178) + try visitor.visitSingularInt32Field(value: _storage._countVarintsInBuffer, fieldNumber: 176) } if _storage._csharpNamespace != 0 { - try visitor.visitSingularInt32Field(value: _storage._csharpNamespace, fieldNumber: 179) + try visitor.visitSingularInt32Field(value: _storage._csharpNamespace, fieldNumber: 177) } if _storage._ctype != 0 { - try visitor.visitSingularInt32Field(value: _storage._ctype, fieldNumber: 180) + try visitor.visitSingularInt32Field(value: _storage._ctype, fieldNumber: 178) } if _storage._customCodable != 0 { - try visitor.visitSingularInt32Field(value: _storage._customCodable, fieldNumber: 181) + try visitor.visitSingularInt32Field(value: _storage._customCodable, fieldNumber: 179) } if _storage._customDebugStringConvertible != 0 { - try visitor.visitSingularInt32Field(value: _storage._customDebugStringConvertible, fieldNumber: 182) + try visitor.visitSingularInt32Field(value: _storage._customDebugStringConvertible, fieldNumber: 180) } if _storage._customStringConvertible != 0 { - try visitor.visitSingularInt32Field(value: _storage._customStringConvertible, fieldNumber: 183) + try visitor.visitSingularInt32Field(value: _storage._customStringConvertible, fieldNumber: 181) } if _storage._d != 0 { - try visitor.visitSingularInt32Field(value: _storage._d, fieldNumber: 184) + try visitor.visitSingularInt32Field(value: _storage._d, fieldNumber: 182) } if _storage._data != 0 { - try visitor.visitSingularInt32Field(value: _storage._data, fieldNumber: 185) + try visitor.visitSingularInt32Field(value: _storage._data, fieldNumber: 183) } if _storage._dataResult != 0 { - try visitor.visitSingularInt32Field(value: _storage._dataResult, fieldNumber: 186) + try visitor.visitSingularInt32Field(value: _storage._dataResult, fieldNumber: 184) } if _storage._date != 0 { - try visitor.visitSingularInt32Field(value: _storage._date, fieldNumber: 187) + try visitor.visitSingularInt32Field(value: _storage._date, fieldNumber: 185) } if _storage._daySec != 0 { - try visitor.visitSingularInt32Field(value: _storage._daySec, fieldNumber: 188) + try visitor.visitSingularInt32Field(value: _storage._daySec, fieldNumber: 186) } if _storage._daysSinceEpoch != 0 { - try visitor.visitSingularInt32Field(value: _storage._daysSinceEpoch, fieldNumber: 189) + try visitor.visitSingularInt32Field(value: _storage._daysSinceEpoch, fieldNumber: 187) } if _storage._debugDescription_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._debugDescription_p, fieldNumber: 190) + try visitor.visitSingularInt32Field(value: _storage._debugDescription_p, fieldNumber: 188) } if _storage._debugRedact != 0 { - try visitor.visitSingularInt32Field(value: _storage._debugRedact, fieldNumber: 191) + try visitor.visitSingularInt32Field(value: _storage._debugRedact, fieldNumber: 189) } if _storage._declaration != 0 { - try visitor.visitSingularInt32Field(value: _storage._declaration, fieldNumber: 192) + try visitor.visitSingularInt32Field(value: _storage._declaration, fieldNumber: 190) } if _storage._decoded != 0 { - try visitor.visitSingularInt32Field(value: _storage._decoded, fieldNumber: 193) + try visitor.visitSingularInt32Field(value: _storage._decoded, fieldNumber: 191) } if _storage._decodedFromJsonnull != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodedFromJsonnull, fieldNumber: 194) + try visitor.visitSingularInt32Field(value: _storage._decodedFromJsonnull, fieldNumber: 192) } if _storage._decodeExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeExtensionField, fieldNumber: 195) + try visitor.visitSingularInt32Field(value: _storage._decodeExtensionField, fieldNumber: 193) } if _storage._decodeExtensionFieldsAsMessageSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeExtensionFieldsAsMessageSet, fieldNumber: 196) + try visitor.visitSingularInt32Field(value: _storage._decodeExtensionFieldsAsMessageSet, fieldNumber: 194) } if _storage._decodeJson != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeJson, fieldNumber: 197) + try visitor.visitSingularInt32Field(value: _storage._decodeJson, fieldNumber: 195) } if _storage._decodeMapField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeMapField, fieldNumber: 198) + try visitor.visitSingularInt32Field(value: _storage._decodeMapField, fieldNumber: 196) } if _storage._decodeMessage != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeMessage, fieldNumber: 199) + try visitor.visitSingularInt32Field(value: _storage._decodeMessage, fieldNumber: 197) } if _storage._decoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._decoder, fieldNumber: 200) + try visitor.visitSingularInt32Field(value: _storage._decoder, fieldNumber: 198) } if _storage._decodeRepeated != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeated, fieldNumber: 201) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeated, fieldNumber: 199) } if _storage._decodeRepeatedBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedBoolField, fieldNumber: 202) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedBoolField, fieldNumber: 200) } if _storage._decodeRepeatedBytesField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedBytesField, fieldNumber: 203) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedBytesField, fieldNumber: 201) } if _storage._decodeRepeatedDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedDoubleField, fieldNumber: 204) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedDoubleField, fieldNumber: 202) } if _storage._decodeRepeatedEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedEnumField, fieldNumber: 205) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedEnumField, fieldNumber: 203) } if _storage._decodeRepeatedFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFixed32Field, fieldNumber: 206) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFixed32Field, fieldNumber: 204) } if _storage._decodeRepeatedFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFixed64Field, fieldNumber: 207) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFixed64Field, fieldNumber: 205) } if _storage._decodeRepeatedFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFloatField, fieldNumber: 208) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFloatField, fieldNumber: 206) } if _storage._decodeRepeatedGroupField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedGroupField, fieldNumber: 209) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedGroupField, fieldNumber: 207) } if _storage._decodeRepeatedInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedInt32Field, fieldNumber: 210) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedInt32Field, fieldNumber: 208) } if _storage._decodeRepeatedInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedInt64Field, fieldNumber: 211) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedInt64Field, fieldNumber: 209) } if _storage._decodeRepeatedMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedMessageField, fieldNumber: 212) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedMessageField, fieldNumber: 210) } if _storage._decodeRepeatedSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSfixed32Field, fieldNumber: 213) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSfixed32Field, fieldNumber: 211) } if _storage._decodeRepeatedSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSfixed64Field, fieldNumber: 214) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSfixed64Field, fieldNumber: 212) } if _storage._decodeRepeatedSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSint32Field, fieldNumber: 215) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSint32Field, fieldNumber: 213) } if _storage._decodeRepeatedSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSint64Field, fieldNumber: 216) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSint64Field, fieldNumber: 214) } if _storage._decodeRepeatedStringField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedStringField, fieldNumber: 217) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedStringField, fieldNumber: 215) } if _storage._decodeRepeatedUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedUint32Field, fieldNumber: 218) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedUint32Field, fieldNumber: 216) } if _storage._decodeRepeatedUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedUint64Field, fieldNumber: 219) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedUint64Field, fieldNumber: 217) } if _storage._decodeSingular != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingular, fieldNumber: 220) + try visitor.visitSingularInt32Field(value: _storage._decodeSingular, fieldNumber: 218) } if _storage._decodeSingularBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularBoolField, fieldNumber: 221) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularBoolField, fieldNumber: 219) } if _storage._decodeSingularBytesField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularBytesField, fieldNumber: 222) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularBytesField, fieldNumber: 220) } if _storage._decodeSingularDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularDoubleField, fieldNumber: 223) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularDoubleField, fieldNumber: 221) } if _storage._decodeSingularEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularEnumField, fieldNumber: 224) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularEnumField, fieldNumber: 222) } if _storage._decodeSingularFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularFixed32Field, fieldNumber: 225) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularFixed32Field, fieldNumber: 223) } if _storage._decodeSingularFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularFixed64Field, fieldNumber: 226) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularFixed64Field, fieldNumber: 224) } if _storage._decodeSingularFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularFloatField, fieldNumber: 227) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularFloatField, fieldNumber: 225) } if _storage._decodeSingularGroupField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularGroupField, fieldNumber: 228) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularGroupField, fieldNumber: 226) } if _storage._decodeSingularInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularInt32Field, fieldNumber: 229) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularInt32Field, fieldNumber: 227) } if _storage._decodeSingularInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularInt64Field, fieldNumber: 230) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularInt64Field, fieldNumber: 228) } if _storage._decodeSingularMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularMessageField, fieldNumber: 231) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularMessageField, fieldNumber: 229) } if _storage._decodeSingularSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularSfixed32Field, fieldNumber: 232) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularSfixed32Field, fieldNumber: 230) } if _storage._decodeSingularSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularSfixed64Field, fieldNumber: 233) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularSfixed64Field, fieldNumber: 231) } if _storage._decodeSingularSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularSint32Field, fieldNumber: 234) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularSint32Field, fieldNumber: 232) } if _storage._decodeSingularSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularSint64Field, fieldNumber: 235) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularSint64Field, fieldNumber: 233) } if _storage._decodeSingularStringField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularStringField, fieldNumber: 236) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularStringField, fieldNumber: 234) } if _storage._decodeSingularUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularUint32Field, fieldNumber: 237) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularUint32Field, fieldNumber: 235) } if _storage._decodeSingularUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularUint64Field, fieldNumber: 238) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularUint64Field, fieldNumber: 236) } if _storage._decodeTextFormat != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeTextFormat, fieldNumber: 239) + try visitor.visitSingularInt32Field(value: _storage._decodeTextFormat, fieldNumber: 237) } if _storage._defaultAnyTypeUrlprefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._defaultAnyTypeUrlprefix, fieldNumber: 240) + try visitor.visitSingularInt32Field(value: _storage._defaultAnyTypeUrlprefix, fieldNumber: 238) } if _storage._defaults != 0 { - try visitor.visitSingularInt32Field(value: _storage._defaults, fieldNumber: 241) + try visitor.visitSingularInt32Field(value: _storage._defaults, fieldNumber: 239) } if _storage._defaultValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._defaultValue, fieldNumber: 242) + try visitor.visitSingularInt32Field(value: _storage._defaultValue, fieldNumber: 240) } if _storage._dependency != 0 { - try visitor.visitSingularInt32Field(value: _storage._dependency, fieldNumber: 243) + try visitor.visitSingularInt32Field(value: _storage._dependency, fieldNumber: 241) } if _storage._deprecated != 0 { - try visitor.visitSingularInt32Field(value: _storage._deprecated, fieldNumber: 244) + try visitor.visitSingularInt32Field(value: _storage._deprecated, fieldNumber: 242) } if _storage._deprecatedLegacyJsonFieldConflicts != 0 { - try visitor.visitSingularInt32Field(value: _storage._deprecatedLegacyJsonFieldConflicts, fieldNumber: 245) + try visitor.visitSingularInt32Field(value: _storage._deprecatedLegacyJsonFieldConflicts, fieldNumber: 243) } if _storage._deprecationWarning != 0 { - try visitor.visitSingularInt32Field(value: _storage._deprecationWarning, fieldNumber: 246) + try visitor.visitSingularInt32Field(value: _storage._deprecationWarning, fieldNumber: 244) } if _storage._description_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._description_p, fieldNumber: 247) + try visitor.visitSingularInt32Field(value: _storage._description_p, fieldNumber: 245) } if _storage._descriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._descriptorProto, fieldNumber: 248) + try visitor.visitSingularInt32Field(value: _storage._descriptorProto, fieldNumber: 246) } if _storage._dictionary != 0 { - try visitor.visitSingularInt32Field(value: _storage._dictionary, fieldNumber: 249) + try visitor.visitSingularInt32Field(value: _storage._dictionary, fieldNumber: 247) } if _storage._dictionaryLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._dictionaryLiteral, fieldNumber: 250) + try visitor.visitSingularInt32Field(value: _storage._dictionaryLiteral, fieldNumber: 248) } if _storage._digit != 0 { - try visitor.visitSingularInt32Field(value: _storage._digit, fieldNumber: 251) + try visitor.visitSingularInt32Field(value: _storage._digit, fieldNumber: 249) } if _storage._digit0 != 0 { - try visitor.visitSingularInt32Field(value: _storage._digit0, fieldNumber: 252) + try visitor.visitSingularInt32Field(value: _storage._digit0, fieldNumber: 250) } if _storage._digit1 != 0 { - try visitor.visitSingularInt32Field(value: _storage._digit1, fieldNumber: 253) + try visitor.visitSingularInt32Field(value: _storage._digit1, fieldNumber: 251) } if _storage._digitCount != 0 { - try visitor.visitSingularInt32Field(value: _storage._digitCount, fieldNumber: 254) + try visitor.visitSingularInt32Field(value: _storage._digitCount, fieldNumber: 252) } if _storage._digits != 0 { - try visitor.visitSingularInt32Field(value: _storage._digits, fieldNumber: 255) + try visitor.visitSingularInt32Field(value: _storage._digits, fieldNumber: 253) } if _storage._digitValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._digitValue, fieldNumber: 256) + try visitor.visitSingularInt32Field(value: _storage._digitValue, fieldNumber: 254) } if _storage._discardableResult != 0 { - try visitor.visitSingularInt32Field(value: _storage._discardableResult, fieldNumber: 257) + try visitor.visitSingularInt32Field(value: _storage._discardableResult, fieldNumber: 255) } if _storage._discardUnknownFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._discardUnknownFields, fieldNumber: 258) + try visitor.visitSingularInt32Field(value: _storage._discardUnknownFields, fieldNumber: 256) } if _storage._double != 0 { - try visitor.visitSingularInt32Field(value: _storage._double, fieldNumber: 259) + try visitor.visitSingularInt32Field(value: _storage._double, fieldNumber: 257) } if _storage._doubleValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._doubleValue, fieldNumber: 260) + try visitor.visitSingularInt32Field(value: _storage._doubleValue, fieldNumber: 258) } if _storage._duration != 0 { - try visitor.visitSingularInt32Field(value: _storage._duration, fieldNumber: 261) + try visitor.visitSingularInt32Field(value: _storage._duration, fieldNumber: 259) } if _storage._e != 0 { - try visitor.visitSingularInt32Field(value: _storage._e, fieldNumber: 262) + try visitor.visitSingularInt32Field(value: _storage._e, fieldNumber: 260) } if _storage._edition != 0 { - try visitor.visitSingularInt32Field(value: _storage._edition, fieldNumber: 263) + try visitor.visitSingularInt32Field(value: _storage._edition, fieldNumber: 261) } if _storage._editionDefault != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionDefault, fieldNumber: 264) + try visitor.visitSingularInt32Field(value: _storage._editionDefault, fieldNumber: 262) } if _storage._editionDefaults != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionDefaults, fieldNumber: 265) + try visitor.visitSingularInt32Field(value: _storage._editionDefaults, fieldNumber: 263) } if _storage._editionDeprecated != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionDeprecated, fieldNumber: 266) + try visitor.visitSingularInt32Field(value: _storage._editionDeprecated, fieldNumber: 264) } if _storage._editionIntroduced != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionIntroduced, fieldNumber: 267) + try visitor.visitSingularInt32Field(value: _storage._editionIntroduced, fieldNumber: 265) } if _storage._editionRemoved != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionRemoved, fieldNumber: 268) + try visitor.visitSingularInt32Field(value: _storage._editionRemoved, fieldNumber: 266) } if _storage._element != 0 { - try visitor.visitSingularInt32Field(value: _storage._element, fieldNumber: 269) + try visitor.visitSingularInt32Field(value: _storage._element, fieldNumber: 267) } if _storage._elements != 0 { - try visitor.visitSingularInt32Field(value: _storage._elements, fieldNumber: 270) + try visitor.visitSingularInt32Field(value: _storage._elements, fieldNumber: 268) } if _storage._emitExtensionFieldName != 0 { - try visitor.visitSingularInt32Field(value: _storage._emitExtensionFieldName, fieldNumber: 271) + try visitor.visitSingularInt32Field(value: _storage._emitExtensionFieldName, fieldNumber: 269) } if _storage._emitFieldName != 0 { - try visitor.visitSingularInt32Field(value: _storage._emitFieldName, fieldNumber: 272) + try visitor.visitSingularInt32Field(value: _storage._emitFieldName, fieldNumber: 270) } if _storage._emitFieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._emitFieldNumber, fieldNumber: 273) + try visitor.visitSingularInt32Field(value: _storage._emitFieldNumber, fieldNumber: 271) } if _storage._empty != 0 { - try visitor.visitSingularInt32Field(value: _storage._empty, fieldNumber: 274) + try visitor.visitSingularInt32Field(value: _storage._empty, fieldNumber: 272) } if _storage._encodeAsBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._encodeAsBytes, fieldNumber: 275) + try visitor.visitSingularInt32Field(value: _storage._encodeAsBytes, fieldNumber: 273) } if _storage._encoded != 0 { - try visitor.visitSingularInt32Field(value: _storage._encoded, fieldNumber: 276) + try visitor.visitSingularInt32Field(value: _storage._encoded, fieldNumber: 274) } if _storage._encodedJsonstring != 0 { - try visitor.visitSingularInt32Field(value: _storage._encodedJsonstring, fieldNumber: 277) + try visitor.visitSingularInt32Field(value: _storage._encodedJsonstring, fieldNumber: 275) } if _storage._encodedSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._encodedSize, fieldNumber: 278) + try visitor.visitSingularInt32Field(value: _storage._encodedSize, fieldNumber: 276) } if _storage._encodeField != 0 { - try visitor.visitSingularInt32Field(value: _storage._encodeField, fieldNumber: 279) + try visitor.visitSingularInt32Field(value: _storage._encodeField, fieldNumber: 277) } if _storage._encoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._encoder, fieldNumber: 280) + try visitor.visitSingularInt32Field(value: _storage._encoder, fieldNumber: 278) } if _storage._end != 0 { - try visitor.visitSingularInt32Field(value: _storage._end, fieldNumber: 281) + try visitor.visitSingularInt32Field(value: _storage._end, fieldNumber: 279) } if _storage._endArray != 0 { - try visitor.visitSingularInt32Field(value: _storage._endArray, fieldNumber: 282) + try visitor.visitSingularInt32Field(value: _storage._endArray, fieldNumber: 280) } if _storage._endMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._endMessageField, fieldNumber: 283) + try visitor.visitSingularInt32Field(value: _storage._endMessageField, fieldNumber: 281) } if _storage._endObject != 0 { - try visitor.visitSingularInt32Field(value: _storage._endObject, fieldNumber: 284) + try visitor.visitSingularInt32Field(value: _storage._endObject, fieldNumber: 282) } if _storage._endRegularField != 0 { - try visitor.visitSingularInt32Field(value: _storage._endRegularField, fieldNumber: 285) + try visitor.visitSingularInt32Field(value: _storage._endRegularField, fieldNumber: 283) } if _storage._enum != 0 { - try visitor.visitSingularInt32Field(value: _storage._enum, fieldNumber: 286) + try visitor.visitSingularInt32Field(value: _storage._enum, fieldNumber: 284) } if _storage._enumDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumDescriptorProto, fieldNumber: 287) + try visitor.visitSingularInt32Field(value: _storage._enumDescriptorProto, fieldNumber: 285) } if _storage._enumOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumOptions, fieldNumber: 288) + try visitor.visitSingularInt32Field(value: _storage._enumOptions, fieldNumber: 286) } if _storage._enumReservedRange != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumReservedRange, fieldNumber: 289) + try visitor.visitSingularInt32Field(value: _storage._enumReservedRange, fieldNumber: 287) } if _storage._enumType != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumType, fieldNumber: 290) + try visitor.visitSingularInt32Field(value: _storage._enumType, fieldNumber: 288) } if _storage._enumvalue != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumvalue, fieldNumber: 291) + try visitor.visitSingularInt32Field(value: _storage._enumvalue, fieldNumber: 289) } if _storage._enumValueDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumValueDescriptorProto, fieldNumber: 292) + try visitor.visitSingularInt32Field(value: _storage._enumValueDescriptorProto, fieldNumber: 290) } if _storage._enumValueOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumValueOptions, fieldNumber: 293) + try visitor.visitSingularInt32Field(value: _storage._enumValueOptions, fieldNumber: 291) } if _storage._equatable != 0 { - try visitor.visitSingularInt32Field(value: _storage._equatable, fieldNumber: 294) + try visitor.visitSingularInt32Field(value: _storage._equatable, fieldNumber: 292) } if _storage._error != 0 { - try visitor.visitSingularInt32Field(value: _storage._error, fieldNumber: 295) + try visitor.visitSingularInt32Field(value: _storage._error, fieldNumber: 293) } if _storage._expressibleByArrayLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._expressibleByArrayLiteral, fieldNumber: 296) + try visitor.visitSingularInt32Field(value: _storage._expressibleByArrayLiteral, fieldNumber: 294) } if _storage._expressibleByDictionaryLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._expressibleByDictionaryLiteral, fieldNumber: 297) + try visitor.visitSingularInt32Field(value: _storage._expressibleByDictionaryLiteral, fieldNumber: 295) } if _storage._ext != 0 { - try visitor.visitSingularInt32Field(value: _storage._ext, fieldNumber: 298) + try visitor.visitSingularInt32Field(value: _storage._ext, fieldNumber: 296) } if _storage._extDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._extDecoder, fieldNumber: 299) + try visitor.visitSingularInt32Field(value: _storage._extDecoder, fieldNumber: 297) } if _storage._extendedGraphemeClusterLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._extendedGraphemeClusterLiteral, fieldNumber: 300) + try visitor.visitSingularInt32Field(value: _storage._extendedGraphemeClusterLiteral, fieldNumber: 298) } if _storage._extendedGraphemeClusterLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._extendedGraphemeClusterLiteralType, fieldNumber: 301) + try visitor.visitSingularInt32Field(value: _storage._extendedGraphemeClusterLiteralType, fieldNumber: 299) } if _storage._extendee != 0 { - try visitor.visitSingularInt32Field(value: _storage._extendee, fieldNumber: 302) + try visitor.visitSingularInt32Field(value: _storage._extendee, fieldNumber: 300) } if _storage._extensibleMessage != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensibleMessage, fieldNumber: 303) + try visitor.visitSingularInt32Field(value: _storage._extensibleMessage, fieldNumber: 301) } if _storage._extension != 0 { - try visitor.visitSingularInt32Field(value: _storage._extension, fieldNumber: 304) + try visitor.visitSingularInt32Field(value: _storage._extension, fieldNumber: 302) } if _storage._extensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionField, fieldNumber: 305) + try visitor.visitSingularInt32Field(value: _storage._extensionField, fieldNumber: 303) } if _storage._extensionFieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionFieldNumber, fieldNumber: 306) + try visitor.visitSingularInt32Field(value: _storage._extensionFieldNumber, fieldNumber: 304) } if _storage._extensionFieldValueSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionFieldValueSet, fieldNumber: 307) + try visitor.visitSingularInt32Field(value: _storage._extensionFieldValueSet, fieldNumber: 305) } if _storage._extensionMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionMap, fieldNumber: 308) + try visitor.visitSingularInt32Field(value: _storage._extensionMap, fieldNumber: 306) } if _storage._extensionRange != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionRange, fieldNumber: 309) + try visitor.visitSingularInt32Field(value: _storage._extensionRange, fieldNumber: 307) } if _storage._extensionRangeOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionRangeOptions, fieldNumber: 310) + try visitor.visitSingularInt32Field(value: _storage._extensionRangeOptions, fieldNumber: 308) } if _storage._extensions != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensions, fieldNumber: 311) + try visitor.visitSingularInt32Field(value: _storage._extensions, fieldNumber: 309) } if _storage._extras != 0 { - try visitor.visitSingularInt32Field(value: _storage._extras, fieldNumber: 312) + try visitor.visitSingularInt32Field(value: _storage._extras, fieldNumber: 310) } if _storage._f != 0 { - try visitor.visitSingularInt32Field(value: _storage._f, fieldNumber: 313) + try visitor.visitSingularInt32Field(value: _storage._f, fieldNumber: 311) } if _storage._false != 0 { - try visitor.visitSingularInt32Field(value: _storage._false, fieldNumber: 314) + try visitor.visitSingularInt32Field(value: _storage._false, fieldNumber: 312) } if _storage._features != 0 { - try visitor.visitSingularInt32Field(value: _storage._features, fieldNumber: 315) + try visitor.visitSingularInt32Field(value: _storage._features, fieldNumber: 313) } if _storage._featureSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._featureSet, fieldNumber: 316) + try visitor.visitSingularInt32Field(value: _storage._featureSet, fieldNumber: 314) } if _storage._featureSetDefaults != 0 { - try visitor.visitSingularInt32Field(value: _storage._featureSetDefaults, fieldNumber: 317) + try visitor.visitSingularInt32Field(value: _storage._featureSetDefaults, fieldNumber: 315) } if _storage._featureSetEditionDefault != 0 { - try visitor.visitSingularInt32Field(value: _storage._featureSetEditionDefault, fieldNumber: 318) + try visitor.visitSingularInt32Field(value: _storage._featureSetEditionDefault, fieldNumber: 316) } if _storage._featureSupport != 0 { - try visitor.visitSingularInt32Field(value: _storage._featureSupport, fieldNumber: 319) + try visitor.visitSingularInt32Field(value: _storage._featureSupport, fieldNumber: 317) } if _storage._field != 0 { - try visitor.visitSingularInt32Field(value: _storage._field, fieldNumber: 320) + try visitor.visitSingularInt32Field(value: _storage._field, fieldNumber: 318) } if _storage._fieldData != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldData, fieldNumber: 321) + try visitor.visitSingularInt32Field(value: _storage._fieldData, fieldNumber: 319) } if _storage._fieldDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldDescriptorProto, fieldNumber: 322) + try visitor.visitSingularInt32Field(value: _storage._fieldDescriptorProto, fieldNumber: 320) } if _storage._fieldMask != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldMask, fieldNumber: 323) + try visitor.visitSingularInt32Field(value: _storage._fieldMask, fieldNumber: 321) } if _storage._fieldName != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldName, fieldNumber: 324) + try visitor.visitSingularInt32Field(value: _storage._fieldName, fieldNumber: 322) } if _storage._fieldNameCount != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldNameCount, fieldNumber: 325) + try visitor.visitSingularInt32Field(value: _storage._fieldNameCount, fieldNumber: 323) } if _storage._fieldNum != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldNum, fieldNumber: 326) + try visitor.visitSingularInt32Field(value: _storage._fieldNum, fieldNumber: 324) } if _storage._fieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldNumber, fieldNumber: 327) + try visitor.visitSingularInt32Field(value: _storage._fieldNumber, fieldNumber: 325) } if _storage._fieldNumberForProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldNumberForProto, fieldNumber: 328) + try visitor.visitSingularInt32Field(value: _storage._fieldNumberForProto, fieldNumber: 326) } if _storage._fieldOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldOptions, fieldNumber: 329) + try visitor.visitSingularInt32Field(value: _storage._fieldOptions, fieldNumber: 327) } if _storage._fieldPresence != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldPresence, fieldNumber: 330) + try visitor.visitSingularInt32Field(value: _storage._fieldPresence, fieldNumber: 328) } if _storage._fields != 0 { - try visitor.visitSingularInt32Field(value: _storage._fields, fieldNumber: 331) + try visitor.visitSingularInt32Field(value: _storage._fields, fieldNumber: 329) } if _storage._fieldSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldSize, fieldNumber: 332) + try visitor.visitSingularInt32Field(value: _storage._fieldSize, fieldNumber: 330) } if _storage._fieldTag != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldTag, fieldNumber: 333) + try visitor.visitSingularInt32Field(value: _storage._fieldTag, fieldNumber: 331) } if _storage._fieldType != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldType, fieldNumber: 334) + try visitor.visitSingularInt32Field(value: _storage._fieldType, fieldNumber: 332) } if _storage._file != 0 { - try visitor.visitSingularInt32Field(value: _storage._file, fieldNumber: 335) + try visitor.visitSingularInt32Field(value: _storage._file, fieldNumber: 333) } if _storage._fileDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._fileDescriptorProto, fieldNumber: 336) + try visitor.visitSingularInt32Field(value: _storage._fileDescriptorProto, fieldNumber: 334) } if _storage._fileDescriptorSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._fileDescriptorSet, fieldNumber: 337) + try visitor.visitSingularInt32Field(value: _storage._fileDescriptorSet, fieldNumber: 335) } if _storage._fileName != 0 { - try visitor.visitSingularInt32Field(value: _storage._fileName, fieldNumber: 338) + try visitor.visitSingularInt32Field(value: _storage._fileName, fieldNumber: 336) } if _storage._fileOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._fileOptions, fieldNumber: 339) + try visitor.visitSingularInt32Field(value: _storage._fileOptions, fieldNumber: 337) } if _storage._filter != 0 { - try visitor.visitSingularInt32Field(value: _storage._filter, fieldNumber: 340) + try visitor.visitSingularInt32Field(value: _storage._filter, fieldNumber: 338) } if _storage._final != 0 { - try visitor.visitSingularInt32Field(value: _storage._final, fieldNumber: 341) + try visitor.visitSingularInt32Field(value: _storage._final, fieldNumber: 339) } if _storage._finiteOnly != 0 { - try visitor.visitSingularInt32Field(value: _storage._finiteOnly, fieldNumber: 342) + try visitor.visitSingularInt32Field(value: _storage._finiteOnly, fieldNumber: 340) } if _storage._first != 0 { - try visitor.visitSingularInt32Field(value: _storage._first, fieldNumber: 343) + try visitor.visitSingularInt32Field(value: _storage._first, fieldNumber: 341) } if _storage._firstItem != 0 { - try visitor.visitSingularInt32Field(value: _storage._firstItem, fieldNumber: 344) + try visitor.visitSingularInt32Field(value: _storage._firstItem, fieldNumber: 342) } if _storage._fixedFeatures != 0 { - try visitor.visitSingularInt32Field(value: _storage._fixedFeatures, fieldNumber: 345) + try visitor.visitSingularInt32Field(value: _storage._fixedFeatures, fieldNumber: 343) } if _storage._float != 0 { - try visitor.visitSingularInt32Field(value: _storage._float, fieldNumber: 346) + try visitor.visitSingularInt32Field(value: _storage._float, fieldNumber: 344) } if _storage._floatLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._floatLiteral, fieldNumber: 347) + try visitor.visitSingularInt32Field(value: _storage._floatLiteral, fieldNumber: 345) } if _storage._floatLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._floatLiteralType, fieldNumber: 348) + try visitor.visitSingularInt32Field(value: _storage._floatLiteralType, fieldNumber: 346) } if _storage._floatValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._floatValue, fieldNumber: 349) + try visitor.visitSingularInt32Field(value: _storage._floatValue, fieldNumber: 347) } if _storage._forMessageName != 0 { - try visitor.visitSingularInt32Field(value: _storage._forMessageName, fieldNumber: 350) + try visitor.visitSingularInt32Field(value: _storage._forMessageName, fieldNumber: 348) } if _storage._formUnion != 0 { - try visitor.visitSingularInt32Field(value: _storage._formUnion, fieldNumber: 351) + try visitor.visitSingularInt32Field(value: _storage._formUnion, fieldNumber: 349) } if _storage._forReadingFrom != 0 { - try visitor.visitSingularInt32Field(value: _storage._forReadingFrom, fieldNumber: 352) + try visitor.visitSingularInt32Field(value: _storage._forReadingFrom, fieldNumber: 350) } if _storage._forTypeURL != 0 { - try visitor.visitSingularInt32Field(value: _storage._forTypeURL, fieldNumber: 353) + try visitor.visitSingularInt32Field(value: _storage._forTypeURL, fieldNumber: 351) } if _storage._forwardParser != 0 { - try visitor.visitSingularInt32Field(value: _storage._forwardParser, fieldNumber: 354) + try visitor.visitSingularInt32Field(value: _storage._forwardParser, fieldNumber: 352) } if _storage._forWritingInto != 0 { - try visitor.visitSingularInt32Field(value: _storage._forWritingInto, fieldNumber: 355) + try visitor.visitSingularInt32Field(value: _storage._forWritingInto, fieldNumber: 353) } if _storage._from != 0 { - try visitor.visitSingularInt32Field(value: _storage._from, fieldNumber: 356) + try visitor.visitSingularInt32Field(value: _storage._from, fieldNumber: 354) } if _storage._fromAscii2 != 0 { - try visitor.visitSingularInt32Field(value: _storage._fromAscii2, fieldNumber: 357) + try visitor.visitSingularInt32Field(value: _storage._fromAscii2, fieldNumber: 355) } if _storage._fromAscii4 != 0 { - try visitor.visitSingularInt32Field(value: _storage._fromAscii4, fieldNumber: 358) + try visitor.visitSingularInt32Field(value: _storage._fromAscii4, fieldNumber: 356) } if _storage._fromByteOffset != 0 { - try visitor.visitSingularInt32Field(value: _storage._fromByteOffset, fieldNumber: 359) + try visitor.visitSingularInt32Field(value: _storage._fromByteOffset, fieldNumber: 357) } if _storage._fromHexDigit != 0 { - try visitor.visitSingularInt32Field(value: _storage._fromHexDigit, fieldNumber: 360) + try visitor.visitSingularInt32Field(value: _storage._fromHexDigit, fieldNumber: 358) } if _storage._fullName != 0 { - try visitor.visitSingularInt32Field(value: _storage._fullName, fieldNumber: 361) + try visitor.visitSingularInt32Field(value: _storage._fullName, fieldNumber: 359) } if _storage._func != 0 { - try visitor.visitSingularInt32Field(value: _storage._func, fieldNumber: 362) + try visitor.visitSingularInt32Field(value: _storage._func, fieldNumber: 360) } if _storage._function != 0 { - try visitor.visitSingularInt32Field(value: _storage._function, fieldNumber: 363) + try visitor.visitSingularInt32Field(value: _storage._function, fieldNumber: 361) } if _storage._g != 0 { - try visitor.visitSingularInt32Field(value: _storage._g, fieldNumber: 364) + try visitor.visitSingularInt32Field(value: _storage._g, fieldNumber: 362) } if _storage._generatedCodeInfo != 0 { - try visitor.visitSingularInt32Field(value: _storage._generatedCodeInfo, fieldNumber: 365) + try visitor.visitSingularInt32Field(value: _storage._generatedCodeInfo, fieldNumber: 363) } if _storage._get != 0 { - try visitor.visitSingularInt32Field(value: _storage._get, fieldNumber: 366) + try visitor.visitSingularInt32Field(value: _storage._get, fieldNumber: 364) } if _storage._getExtensionValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._getExtensionValue, fieldNumber: 367) + try visitor.visitSingularInt32Field(value: _storage._getExtensionValue, fieldNumber: 365) } if _storage._googleapis != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleapis, fieldNumber: 368) + try visitor.visitSingularInt32Field(value: _storage._googleapis, fieldNumber: 366) } if _storage._googleProtobufAny != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufAny, fieldNumber: 369) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufAny, fieldNumber: 367) } if _storage._googleProtobufApi != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufApi, fieldNumber: 370) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufApi, fieldNumber: 368) } if _storage._googleProtobufBoolValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufBoolValue, fieldNumber: 371) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufBoolValue, fieldNumber: 369) } if _storage._googleProtobufBytesValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufBytesValue, fieldNumber: 372) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufBytesValue, fieldNumber: 370) } if _storage._googleProtobufDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufDescriptorProto, fieldNumber: 373) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufDescriptorProto, fieldNumber: 371) } if _storage._googleProtobufDoubleValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufDoubleValue, fieldNumber: 374) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufDoubleValue, fieldNumber: 372) } if _storage._googleProtobufDuration != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufDuration, fieldNumber: 375) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufDuration, fieldNumber: 373) } if _storage._googleProtobufEdition != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEdition, fieldNumber: 376) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEdition, fieldNumber: 374) } if _storage._googleProtobufEmpty != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEmpty, fieldNumber: 377) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEmpty, fieldNumber: 375) } if _storage._googleProtobufEnum != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnum, fieldNumber: 378) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnum, fieldNumber: 376) } if _storage._googleProtobufEnumDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumDescriptorProto, fieldNumber: 379) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumDescriptorProto, fieldNumber: 377) } if _storage._googleProtobufEnumOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumOptions, fieldNumber: 380) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumOptions, fieldNumber: 378) } if _storage._googleProtobufEnumValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValue, fieldNumber: 381) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValue, fieldNumber: 379) } if _storage._googleProtobufEnumValueDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValueDescriptorProto, fieldNumber: 382) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValueDescriptorProto, fieldNumber: 380) } if _storage._googleProtobufEnumValueOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValueOptions, fieldNumber: 383) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValueOptions, fieldNumber: 381) } if _storage._googleProtobufExtensionRangeOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufExtensionRangeOptions, fieldNumber: 384) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufExtensionRangeOptions, fieldNumber: 382) } if _storage._googleProtobufFeatureSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFeatureSet, fieldNumber: 385) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFeatureSet, fieldNumber: 383) } if _storage._googleProtobufFeatureSetDefaults != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFeatureSetDefaults, fieldNumber: 386) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFeatureSetDefaults, fieldNumber: 384) } if _storage._googleProtobufField != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufField, fieldNumber: 387) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufField, fieldNumber: 385) } if _storage._googleProtobufFieldDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldDescriptorProto, fieldNumber: 388) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldDescriptorProto, fieldNumber: 386) } if _storage._googleProtobufFieldMask != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldMask, fieldNumber: 389) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldMask, fieldNumber: 387) } if _storage._googleProtobufFieldOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldOptions, fieldNumber: 390) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldOptions, fieldNumber: 388) } if _storage._googleProtobufFileDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileDescriptorProto, fieldNumber: 391) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileDescriptorProto, fieldNumber: 389) } if _storage._googleProtobufFileDescriptorSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileDescriptorSet, fieldNumber: 392) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileDescriptorSet, fieldNumber: 390) } if _storage._googleProtobufFileOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileOptions, fieldNumber: 393) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileOptions, fieldNumber: 391) } if _storage._googleProtobufFloatValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFloatValue, fieldNumber: 394) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFloatValue, fieldNumber: 392) } if _storage._googleProtobufGeneratedCodeInfo != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufGeneratedCodeInfo, fieldNumber: 395) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufGeneratedCodeInfo, fieldNumber: 393) } if _storage._googleProtobufInt32Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufInt32Value, fieldNumber: 396) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufInt32Value, fieldNumber: 394) } if _storage._googleProtobufInt64Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufInt64Value, fieldNumber: 397) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufInt64Value, fieldNumber: 395) } if _storage._googleProtobufListValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufListValue, fieldNumber: 398) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufListValue, fieldNumber: 396) } if _storage._googleProtobufMessageOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMessageOptions, fieldNumber: 399) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMessageOptions, fieldNumber: 397) } if _storage._googleProtobufMethod != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethod, fieldNumber: 400) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethod, fieldNumber: 398) } if _storage._googleProtobufMethodDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethodDescriptorProto, fieldNumber: 401) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethodDescriptorProto, fieldNumber: 399) } if _storage._googleProtobufMethodOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethodOptions, fieldNumber: 402) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethodOptions, fieldNumber: 400) } if _storage._googleProtobufMixin != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMixin, fieldNumber: 403) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMixin, fieldNumber: 401) } if _storage._googleProtobufNullValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufNullValue, fieldNumber: 404) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufNullValue, fieldNumber: 402) } if _storage._googleProtobufOneofDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufOneofDescriptorProto, fieldNumber: 405) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufOneofDescriptorProto, fieldNumber: 403) } if _storage._googleProtobufOneofOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufOneofOptions, fieldNumber: 406) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufOneofOptions, fieldNumber: 404) } if _storage._googleProtobufOption != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufOption, fieldNumber: 407) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufOption, fieldNumber: 405) } if _storage._googleProtobufServiceDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufServiceDescriptorProto, fieldNumber: 408) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufServiceDescriptorProto, fieldNumber: 406) } if _storage._googleProtobufServiceOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufServiceOptions, fieldNumber: 409) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufServiceOptions, fieldNumber: 407) } if _storage._googleProtobufSourceCodeInfo != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufSourceCodeInfo, fieldNumber: 410) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufSourceCodeInfo, fieldNumber: 408) } if _storage._googleProtobufSourceContext != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufSourceContext, fieldNumber: 411) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufSourceContext, fieldNumber: 409) } if _storage._googleProtobufStringValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufStringValue, fieldNumber: 412) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufStringValue, fieldNumber: 410) } if _storage._googleProtobufStruct != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufStruct, fieldNumber: 413) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufStruct, fieldNumber: 411) } if _storage._googleProtobufSyntax != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufSyntax, fieldNumber: 414) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufSyntax, fieldNumber: 412) } if _storage._googleProtobufTimestamp != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufTimestamp, fieldNumber: 415) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufTimestamp, fieldNumber: 413) } if _storage._googleProtobufType != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufType, fieldNumber: 416) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufType, fieldNumber: 414) } if _storage._googleProtobufUint32Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufUint32Value, fieldNumber: 417) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufUint32Value, fieldNumber: 415) } if _storage._googleProtobufUint64Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufUint64Value, fieldNumber: 418) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufUint64Value, fieldNumber: 416) } if _storage._googleProtobufUninterpretedOption != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufUninterpretedOption, fieldNumber: 419) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufUninterpretedOption, fieldNumber: 417) } if _storage._googleProtobufValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufValue, fieldNumber: 420) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufValue, fieldNumber: 418) } if _storage._goPackage != 0 { - try visitor.visitSingularInt32Field(value: _storage._goPackage, fieldNumber: 421) + try visitor.visitSingularInt32Field(value: _storage._goPackage, fieldNumber: 419) } if _storage._group != 0 { - try visitor.visitSingularInt32Field(value: _storage._group, fieldNumber: 422) + try visitor.visitSingularInt32Field(value: _storage._group, fieldNumber: 420) } if _storage._groupFieldNumberStack != 0 { - try visitor.visitSingularInt32Field(value: _storage._groupFieldNumberStack, fieldNumber: 423) + try visitor.visitSingularInt32Field(value: _storage._groupFieldNumberStack, fieldNumber: 421) } if _storage._groupSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._groupSize, fieldNumber: 424) + try visitor.visitSingularInt32Field(value: _storage._groupSize, fieldNumber: 422) } if _storage._hadOneofValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._hadOneofValue, fieldNumber: 425) + try visitor.visitSingularInt32Field(value: _storage._hadOneofValue, fieldNumber: 423) } if _storage._handleConflictingOneOf != 0 { - try visitor.visitSingularInt32Field(value: _storage._handleConflictingOneOf, fieldNumber: 426) + try visitor.visitSingularInt32Field(value: _storage._handleConflictingOneOf, fieldNumber: 424) } if _storage._hasAggregateValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasAggregateValue_p, fieldNumber: 427) + try visitor.visitSingularInt32Field(value: _storage._hasAggregateValue_p, fieldNumber: 425) } if _storage._hasAllowAlias_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasAllowAlias_p, fieldNumber: 428) + try visitor.visitSingularInt32Field(value: _storage._hasAllowAlias_p, fieldNumber: 426) } if _storage._hasBegin_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasBegin_p, fieldNumber: 429) + try visitor.visitSingularInt32Field(value: _storage._hasBegin_p, fieldNumber: 427) } if _storage._hasCcEnableArenas_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasCcEnableArenas_p, fieldNumber: 430) + try visitor.visitSingularInt32Field(value: _storage._hasCcEnableArenas_p, fieldNumber: 428) } if _storage._hasCcGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasCcGenericServices_p, fieldNumber: 431) + try visitor.visitSingularInt32Field(value: _storage._hasCcGenericServices_p, fieldNumber: 429) } if _storage._hasClientStreaming_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasClientStreaming_p, fieldNumber: 432) + try visitor.visitSingularInt32Field(value: _storage._hasClientStreaming_p, fieldNumber: 430) } if _storage._hasCsharpNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasCsharpNamespace_p, fieldNumber: 433) + try visitor.visitSingularInt32Field(value: _storage._hasCsharpNamespace_p, fieldNumber: 431) } if _storage._hasCtype_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasCtype_p, fieldNumber: 434) + try visitor.visitSingularInt32Field(value: _storage._hasCtype_p, fieldNumber: 432) } if _storage._hasDebugRedact_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDebugRedact_p, fieldNumber: 435) + try visitor.visitSingularInt32Field(value: _storage._hasDebugRedact_p, fieldNumber: 433) } if _storage._hasDefaultValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDefaultValue_p, fieldNumber: 436) + try visitor.visitSingularInt32Field(value: _storage._hasDefaultValue_p, fieldNumber: 434) } if _storage._hasDeprecated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDeprecated_p, fieldNumber: 437) + try visitor.visitSingularInt32Field(value: _storage._hasDeprecated_p, fieldNumber: 435) } if _storage._hasDeprecatedLegacyJsonFieldConflicts_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDeprecatedLegacyJsonFieldConflicts_p, fieldNumber: 438) + try visitor.visitSingularInt32Field(value: _storage._hasDeprecatedLegacyJsonFieldConflicts_p, fieldNumber: 436) } if _storage._hasDeprecationWarning_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDeprecationWarning_p, fieldNumber: 439) + try visitor.visitSingularInt32Field(value: _storage._hasDeprecationWarning_p, fieldNumber: 437) } if _storage._hasDoubleValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDoubleValue_p, fieldNumber: 440) + try visitor.visitSingularInt32Field(value: _storage._hasDoubleValue_p, fieldNumber: 438) } if _storage._hasEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEdition_p, fieldNumber: 441) + try visitor.visitSingularInt32Field(value: _storage._hasEdition_p, fieldNumber: 439) } if _storage._hasEditionDeprecated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEditionDeprecated_p, fieldNumber: 442) + try visitor.visitSingularInt32Field(value: _storage._hasEditionDeprecated_p, fieldNumber: 440) } if _storage._hasEditionIntroduced_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEditionIntroduced_p, fieldNumber: 443) + try visitor.visitSingularInt32Field(value: _storage._hasEditionIntroduced_p, fieldNumber: 441) } if _storage._hasEditionRemoved_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEditionRemoved_p, fieldNumber: 444) + try visitor.visitSingularInt32Field(value: _storage._hasEditionRemoved_p, fieldNumber: 442) } if _storage._hasEnd_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEnd_p, fieldNumber: 445) + try visitor.visitSingularInt32Field(value: _storage._hasEnd_p, fieldNumber: 443) } if _storage._hasEnumType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEnumType_p, fieldNumber: 446) + try visitor.visitSingularInt32Field(value: _storage._hasEnumType_p, fieldNumber: 444) } if _storage._hasExtendee_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasExtendee_p, fieldNumber: 447) + try visitor.visitSingularInt32Field(value: _storage._hasExtendee_p, fieldNumber: 445) } if _storage._hasExtensionValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasExtensionValue_p, fieldNumber: 448) + try visitor.visitSingularInt32Field(value: _storage._hasExtensionValue_p, fieldNumber: 446) } if _storage._hasFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFeatures_p, fieldNumber: 449) + try visitor.visitSingularInt32Field(value: _storage._hasFeatures_p, fieldNumber: 447) } if _storage._hasFeatureSupport_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFeatureSupport_p, fieldNumber: 450) + try visitor.visitSingularInt32Field(value: _storage._hasFeatureSupport_p, fieldNumber: 448) } if _storage._hasFieldPresence_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFieldPresence_p, fieldNumber: 451) + try visitor.visitSingularInt32Field(value: _storage._hasFieldPresence_p, fieldNumber: 449) } if _storage._hasFixedFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFixedFeatures_p, fieldNumber: 452) + try visitor.visitSingularInt32Field(value: _storage._hasFixedFeatures_p, fieldNumber: 450) } if _storage._hasFullName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFullName_p, fieldNumber: 453) + try visitor.visitSingularInt32Field(value: _storage._hasFullName_p, fieldNumber: 451) } if _storage._hasGoPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasGoPackage_p, fieldNumber: 454) + try visitor.visitSingularInt32Field(value: _storage._hasGoPackage_p, fieldNumber: 452) } if _storage._hash != 0 { - try visitor.visitSingularInt32Field(value: _storage._hash, fieldNumber: 455) + try visitor.visitSingularInt32Field(value: _storage._hash, fieldNumber: 453) } if _storage._hashable != 0 { - try visitor.visitSingularInt32Field(value: _storage._hashable, fieldNumber: 456) + try visitor.visitSingularInt32Field(value: _storage._hashable, fieldNumber: 454) } if _storage._hasher != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasher, fieldNumber: 457) + try visitor.visitSingularInt32Field(value: _storage._hasher, fieldNumber: 455) } if _storage._hashVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._hashVisitor, fieldNumber: 458) + try visitor.visitSingularInt32Field(value: _storage._hashVisitor, fieldNumber: 456) } if _storage._hasIdempotencyLevel_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasIdempotencyLevel_p, fieldNumber: 459) + try visitor.visitSingularInt32Field(value: _storage._hasIdempotencyLevel_p, fieldNumber: 457) } if _storage._hasIdentifierValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasIdentifierValue_p, fieldNumber: 460) + try visitor.visitSingularInt32Field(value: _storage._hasIdentifierValue_p, fieldNumber: 458) } if _storage._hasInputType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasInputType_p, fieldNumber: 461) + try visitor.visitSingularInt32Field(value: _storage._hasInputType_p, fieldNumber: 459) } if _storage._hasIsExtension_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasIsExtension_p, fieldNumber: 462) + try visitor.visitSingularInt32Field(value: _storage._hasIsExtension_p, fieldNumber: 460) } if _storage._hasJavaGenerateEqualsAndHash_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaGenerateEqualsAndHash_p, fieldNumber: 463) + try visitor.visitSingularInt32Field(value: _storage._hasJavaGenerateEqualsAndHash_p, fieldNumber: 461) } if _storage._hasJavaGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaGenericServices_p, fieldNumber: 464) + try visitor.visitSingularInt32Field(value: _storage._hasJavaGenericServices_p, fieldNumber: 462) } if _storage._hasJavaMultipleFiles_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaMultipleFiles_p, fieldNumber: 465) + try visitor.visitSingularInt32Field(value: _storage._hasJavaMultipleFiles_p, fieldNumber: 463) } if _storage._hasJavaOuterClassname_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaOuterClassname_p, fieldNumber: 466) + try visitor.visitSingularInt32Field(value: _storage._hasJavaOuterClassname_p, fieldNumber: 464) } if _storage._hasJavaPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaPackage_p, fieldNumber: 467) + try visitor.visitSingularInt32Field(value: _storage._hasJavaPackage_p, fieldNumber: 465) } if _storage._hasJavaStringCheckUtf8_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaStringCheckUtf8_p, fieldNumber: 468) + try visitor.visitSingularInt32Field(value: _storage._hasJavaStringCheckUtf8_p, fieldNumber: 466) } if _storage._hasJsonFormat_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJsonFormat_p, fieldNumber: 469) + try visitor.visitSingularInt32Field(value: _storage._hasJsonFormat_p, fieldNumber: 467) } if _storage._hasJsonName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJsonName_p, fieldNumber: 470) + try visitor.visitSingularInt32Field(value: _storage._hasJsonName_p, fieldNumber: 468) } if _storage._hasJstype_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJstype_p, fieldNumber: 471) + try visitor.visitSingularInt32Field(value: _storage._hasJstype_p, fieldNumber: 469) } if _storage._hasLabel_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasLabel_p, fieldNumber: 472) + try visitor.visitSingularInt32Field(value: _storage._hasLabel_p, fieldNumber: 470) } if _storage._hasLazy_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasLazy_p, fieldNumber: 473) + try visitor.visitSingularInt32Field(value: _storage._hasLazy_p, fieldNumber: 471) } if _storage._hasLeadingComments_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasLeadingComments_p, fieldNumber: 474) + try visitor.visitSingularInt32Field(value: _storage._hasLeadingComments_p, fieldNumber: 472) } if _storage._hasMapEntry_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMapEntry_p, fieldNumber: 475) + try visitor.visitSingularInt32Field(value: _storage._hasMapEntry_p, fieldNumber: 473) } if _storage._hasMaximumEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMaximumEdition_p, fieldNumber: 476) + try visitor.visitSingularInt32Field(value: _storage._hasMaximumEdition_p, fieldNumber: 474) } if _storage._hasMessageEncoding_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMessageEncoding_p, fieldNumber: 477) + try visitor.visitSingularInt32Field(value: _storage._hasMessageEncoding_p, fieldNumber: 475) } if _storage._hasMessageSetWireFormat_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMessageSetWireFormat_p, fieldNumber: 478) + try visitor.visitSingularInt32Field(value: _storage._hasMessageSetWireFormat_p, fieldNumber: 476) } if _storage._hasMinimumEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMinimumEdition_p, fieldNumber: 479) + try visitor.visitSingularInt32Field(value: _storage._hasMinimumEdition_p, fieldNumber: 477) } if _storage._hasName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasName_p, fieldNumber: 480) + try visitor.visitSingularInt32Field(value: _storage._hasName_p, fieldNumber: 478) } if _storage._hasNamePart_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasNamePart_p, fieldNumber: 481) + try visitor.visitSingularInt32Field(value: _storage._hasNamePart_p, fieldNumber: 479) } if _storage._hasNegativeIntValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasNegativeIntValue_p, fieldNumber: 482) + try visitor.visitSingularInt32Field(value: _storage._hasNegativeIntValue_p, fieldNumber: 480) } if _storage._hasNoStandardDescriptorAccessor_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasNoStandardDescriptorAccessor_p, fieldNumber: 483) + try visitor.visitSingularInt32Field(value: _storage._hasNoStandardDescriptorAccessor_p, fieldNumber: 481) } if _storage._hasNumber_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasNumber_p, fieldNumber: 484) + try visitor.visitSingularInt32Field(value: _storage._hasNumber_p, fieldNumber: 482) } if _storage._hasObjcClassPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasObjcClassPrefix_p, fieldNumber: 485) + try visitor.visitSingularInt32Field(value: _storage._hasObjcClassPrefix_p, fieldNumber: 483) } if _storage._hasOneofIndex_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOneofIndex_p, fieldNumber: 486) + try visitor.visitSingularInt32Field(value: _storage._hasOneofIndex_p, fieldNumber: 484) } if _storage._hasOptimizeFor_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOptimizeFor_p, fieldNumber: 487) + try visitor.visitSingularInt32Field(value: _storage._hasOptimizeFor_p, fieldNumber: 485) } if _storage._hasOptions_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOptions_p, fieldNumber: 488) + try visitor.visitSingularInt32Field(value: _storage._hasOptions_p, fieldNumber: 486) } if _storage._hasOutputType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOutputType_p, fieldNumber: 489) + try visitor.visitSingularInt32Field(value: _storage._hasOutputType_p, fieldNumber: 487) } if _storage._hasOverridableFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOverridableFeatures_p, fieldNumber: 490) + try visitor.visitSingularInt32Field(value: _storage._hasOverridableFeatures_p, fieldNumber: 488) } if _storage._hasPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPackage_p, fieldNumber: 491) + try visitor.visitSingularInt32Field(value: _storage._hasPackage_p, fieldNumber: 489) } if _storage._hasPacked_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPacked_p, fieldNumber: 492) + try visitor.visitSingularInt32Field(value: _storage._hasPacked_p, fieldNumber: 490) } if _storage._hasPhpClassPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPhpClassPrefix_p, fieldNumber: 493) + try visitor.visitSingularInt32Field(value: _storage._hasPhpClassPrefix_p, fieldNumber: 491) } if _storage._hasPhpMetadataNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPhpMetadataNamespace_p, fieldNumber: 494) + try visitor.visitSingularInt32Field(value: _storage._hasPhpMetadataNamespace_p, fieldNumber: 492) } if _storage._hasPhpNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPhpNamespace_p, fieldNumber: 495) + try visitor.visitSingularInt32Field(value: _storage._hasPhpNamespace_p, fieldNumber: 493) } if _storage._hasPositiveIntValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPositiveIntValue_p, fieldNumber: 496) + try visitor.visitSingularInt32Field(value: _storage._hasPositiveIntValue_p, fieldNumber: 494) } if _storage._hasProto3Optional_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasProto3Optional_p, fieldNumber: 497) + try visitor.visitSingularInt32Field(value: _storage._hasProto3Optional_p, fieldNumber: 495) } if _storage._hasPyGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPyGenericServices_p, fieldNumber: 498) + try visitor.visitSingularInt32Field(value: _storage._hasPyGenericServices_p, fieldNumber: 496) } if _storage._hasRepeated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasRepeated_p, fieldNumber: 499) + try visitor.visitSingularInt32Field(value: _storage._hasRepeated_p, fieldNumber: 497) } if _storage._hasRepeatedFieldEncoding_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasRepeatedFieldEncoding_p, fieldNumber: 500) + try visitor.visitSingularInt32Field(value: _storage._hasRepeatedFieldEncoding_p, fieldNumber: 498) } if _storage._hasReserved_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasReserved_p, fieldNumber: 501) + try visitor.visitSingularInt32Field(value: _storage._hasReserved_p, fieldNumber: 499) } if _storage._hasRetention_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasRetention_p, fieldNumber: 502) + try visitor.visitSingularInt32Field(value: _storage._hasRetention_p, fieldNumber: 500) } if _storage._hasRubyPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasRubyPackage_p, fieldNumber: 503) + try visitor.visitSingularInt32Field(value: _storage._hasRubyPackage_p, fieldNumber: 501) } if _storage._hasSemantic_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSemantic_p, fieldNumber: 504) + try visitor.visitSingularInt32Field(value: _storage._hasSemantic_p, fieldNumber: 502) } if _storage._hasServerStreaming_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasServerStreaming_p, fieldNumber: 505) + try visitor.visitSingularInt32Field(value: _storage._hasServerStreaming_p, fieldNumber: 503) } if _storage._hasSourceCodeInfo_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSourceCodeInfo_p, fieldNumber: 506) + try visitor.visitSingularInt32Field(value: _storage._hasSourceCodeInfo_p, fieldNumber: 504) } if _storage._hasSourceContext_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSourceContext_p, fieldNumber: 507) + try visitor.visitSingularInt32Field(value: _storage._hasSourceContext_p, fieldNumber: 505) } if _storage._hasSourceFile_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSourceFile_p, fieldNumber: 508) + try visitor.visitSingularInt32Field(value: _storage._hasSourceFile_p, fieldNumber: 506) } if _storage._hasStart_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasStart_p, fieldNumber: 509) + try visitor.visitSingularInt32Field(value: _storage._hasStart_p, fieldNumber: 507) } if _storage._hasStringValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasStringValue_p, fieldNumber: 510) + try visitor.visitSingularInt32Field(value: _storage._hasStringValue_p, fieldNumber: 508) } if _storage._hasSwiftPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSwiftPrefix_p, fieldNumber: 511) + try visitor.visitSingularInt32Field(value: _storage._hasSwiftPrefix_p, fieldNumber: 509) } if _storage._hasSyntax_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSyntax_p, fieldNumber: 512) + try visitor.visitSingularInt32Field(value: _storage._hasSyntax_p, fieldNumber: 510) } if _storage._hasTrailingComments_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasTrailingComments_p, fieldNumber: 513) + try visitor.visitSingularInt32Field(value: _storage._hasTrailingComments_p, fieldNumber: 511) } if _storage._hasType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasType_p, fieldNumber: 514) + try visitor.visitSingularInt32Field(value: _storage._hasType_p, fieldNumber: 512) } if _storage._hasTypeName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasTypeName_p, fieldNumber: 515) + try visitor.visitSingularInt32Field(value: _storage._hasTypeName_p, fieldNumber: 513) } if _storage._hasUnverifiedLazy_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasUnverifiedLazy_p, fieldNumber: 516) + try visitor.visitSingularInt32Field(value: _storage._hasUnverifiedLazy_p, fieldNumber: 514) } if _storage._hasUtf8Validation_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasUtf8Validation_p, fieldNumber: 517) + try visitor.visitSingularInt32Field(value: _storage._hasUtf8Validation_p, fieldNumber: 515) } if _storage._hasValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasValue_p, fieldNumber: 518) + try visitor.visitSingularInt32Field(value: _storage._hasValue_p, fieldNumber: 516) } if _storage._hasVerification_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasVerification_p, fieldNumber: 519) + try visitor.visitSingularInt32Field(value: _storage._hasVerification_p, fieldNumber: 517) } if _storage._hasWeak_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasWeak_p, fieldNumber: 520) + try visitor.visitSingularInt32Field(value: _storage._hasWeak_p, fieldNumber: 518) } if _storage._hour != 0 { - try visitor.visitSingularInt32Field(value: _storage._hour, fieldNumber: 521) + try visitor.visitSingularInt32Field(value: _storage._hour, fieldNumber: 519) } if _storage._i != 0 { - try visitor.visitSingularInt32Field(value: _storage._i, fieldNumber: 522) + try visitor.visitSingularInt32Field(value: _storage._i, fieldNumber: 520) } if _storage._idempotencyLevel != 0 { - try visitor.visitSingularInt32Field(value: _storage._idempotencyLevel, fieldNumber: 523) + try visitor.visitSingularInt32Field(value: _storage._idempotencyLevel, fieldNumber: 521) } if _storage._identifierValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._identifierValue, fieldNumber: 524) + try visitor.visitSingularInt32Field(value: _storage._identifierValue, fieldNumber: 522) } if _storage._if != 0 { - try visitor.visitSingularInt32Field(value: _storage._if, fieldNumber: 525) + try visitor.visitSingularInt32Field(value: _storage._if, fieldNumber: 523) } if _storage._ignoreUnknownExtensionFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._ignoreUnknownExtensionFields, fieldNumber: 526) + try visitor.visitSingularInt32Field(value: _storage._ignoreUnknownExtensionFields, fieldNumber: 524) } if _storage._ignoreUnknownFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._ignoreUnknownFields, fieldNumber: 527) + try visitor.visitSingularInt32Field(value: _storage._ignoreUnknownFields, fieldNumber: 525) } if _storage._index != 0 { - try visitor.visitSingularInt32Field(value: _storage._index, fieldNumber: 528) + try visitor.visitSingularInt32Field(value: _storage._index, fieldNumber: 526) } if _storage._init_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._init_p, fieldNumber: 529) + try visitor.visitSingularInt32Field(value: _storage._init_p, fieldNumber: 527) } if _storage._inout != 0 { - try visitor.visitSingularInt32Field(value: _storage._inout, fieldNumber: 530) + try visitor.visitSingularInt32Field(value: _storage._inout, fieldNumber: 528) } if _storage._inputType != 0 { - try visitor.visitSingularInt32Field(value: _storage._inputType, fieldNumber: 531) + try visitor.visitSingularInt32Field(value: _storage._inputType, fieldNumber: 529) } if _storage._insert != 0 { - try visitor.visitSingularInt32Field(value: _storage._insert, fieldNumber: 532) + try visitor.visitSingularInt32Field(value: _storage._insert, fieldNumber: 530) } if _storage._int != 0 { - try visitor.visitSingularInt32Field(value: _storage._int, fieldNumber: 533) + try visitor.visitSingularInt32Field(value: _storage._int, fieldNumber: 531) } if _storage._int32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._int32, fieldNumber: 534) + try visitor.visitSingularInt32Field(value: _storage._int32, fieldNumber: 532) } if _storage._int32Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._int32Value, fieldNumber: 535) + try visitor.visitSingularInt32Field(value: _storage._int32Value, fieldNumber: 533) } if _storage._int64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._int64, fieldNumber: 536) + try visitor.visitSingularInt32Field(value: _storage._int64, fieldNumber: 534) } if _storage._int64Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._int64Value, fieldNumber: 537) + try visitor.visitSingularInt32Field(value: _storage._int64Value, fieldNumber: 535) } if _storage._int8 != 0 { - try visitor.visitSingularInt32Field(value: _storage._int8, fieldNumber: 538) + try visitor.visitSingularInt32Field(value: _storage._int8, fieldNumber: 536) } if _storage._integerLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._integerLiteral, fieldNumber: 539) + try visitor.visitSingularInt32Field(value: _storage._integerLiteral, fieldNumber: 537) } if _storage._integerLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._integerLiteralType, fieldNumber: 540) + try visitor.visitSingularInt32Field(value: _storage._integerLiteralType, fieldNumber: 538) } if _storage._intern != 0 { - try visitor.visitSingularInt32Field(value: _storage._intern, fieldNumber: 541) + try visitor.visitSingularInt32Field(value: _storage._intern, fieldNumber: 539) } if _storage._internal != 0 { - try visitor.visitSingularInt32Field(value: _storage._internal, fieldNumber: 542) + try visitor.visitSingularInt32Field(value: _storage._internal, fieldNumber: 540) } if _storage._internalState != 0 { - try visitor.visitSingularInt32Field(value: _storage._internalState, fieldNumber: 543) + try visitor.visitSingularInt32Field(value: _storage._internalState, fieldNumber: 541) } if _storage._into != 0 { - try visitor.visitSingularInt32Field(value: _storage._into, fieldNumber: 544) + try visitor.visitSingularInt32Field(value: _storage._into, fieldNumber: 542) } if _storage._ints != 0 { - try visitor.visitSingularInt32Field(value: _storage._ints, fieldNumber: 545) + try visitor.visitSingularInt32Field(value: _storage._ints, fieldNumber: 543) } if _storage._isA != 0 { - try visitor.visitSingularInt32Field(value: _storage._isA, fieldNumber: 546) + try visitor.visitSingularInt32Field(value: _storage._isA, fieldNumber: 544) } if _storage._isEqual != 0 { - try visitor.visitSingularInt32Field(value: _storage._isEqual, fieldNumber: 547) + try visitor.visitSingularInt32Field(value: _storage._isEqual, fieldNumber: 545) } if _storage._isEqualTo != 0 { - try visitor.visitSingularInt32Field(value: _storage._isEqualTo, fieldNumber: 548) + try visitor.visitSingularInt32Field(value: _storage._isEqualTo, fieldNumber: 546) } if _storage._isExtension != 0 { - try visitor.visitSingularInt32Field(value: _storage._isExtension, fieldNumber: 549) + try visitor.visitSingularInt32Field(value: _storage._isExtension, fieldNumber: 547) } if _storage._isInitialized_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._isInitialized_p, fieldNumber: 550) + try visitor.visitSingularInt32Field(value: _storage._isInitialized_p, fieldNumber: 548) } if _storage._isNegative != 0 { - try visitor.visitSingularInt32Field(value: _storage._isNegative, fieldNumber: 551) + try visitor.visitSingularInt32Field(value: _storage._isNegative, fieldNumber: 549) } if _storage._itemTagsEncodedSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._itemTagsEncodedSize, fieldNumber: 552) + try visitor.visitSingularInt32Field(value: _storage._itemTagsEncodedSize, fieldNumber: 550) } if _storage._iterator != 0 { - try visitor.visitSingularInt32Field(value: _storage._iterator, fieldNumber: 553) + try visitor.visitSingularInt32Field(value: _storage._iterator, fieldNumber: 551) } if _storage._javaGenerateEqualsAndHash != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaGenerateEqualsAndHash, fieldNumber: 554) + try visitor.visitSingularInt32Field(value: _storage._javaGenerateEqualsAndHash, fieldNumber: 552) } if _storage._javaGenericServices != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaGenericServices, fieldNumber: 555) + try visitor.visitSingularInt32Field(value: _storage._javaGenericServices, fieldNumber: 553) } if _storage._javaMultipleFiles != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaMultipleFiles, fieldNumber: 556) + try visitor.visitSingularInt32Field(value: _storage._javaMultipleFiles, fieldNumber: 554) } if _storage._javaOuterClassname != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaOuterClassname, fieldNumber: 557) + try visitor.visitSingularInt32Field(value: _storage._javaOuterClassname, fieldNumber: 555) } if _storage._javaPackage != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaPackage, fieldNumber: 558) + try visitor.visitSingularInt32Field(value: _storage._javaPackage, fieldNumber: 556) } if _storage._javaStringCheckUtf8 != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaStringCheckUtf8, fieldNumber: 559) + try visitor.visitSingularInt32Field(value: _storage._javaStringCheckUtf8, fieldNumber: 557) } if _storage._jsondecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsondecoder, fieldNumber: 560) + try visitor.visitSingularInt32Field(value: _storage._jsondecoder, fieldNumber: 558) } if _storage._jsondecodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsondecodingError, fieldNumber: 561) + try visitor.visitSingularInt32Field(value: _storage._jsondecodingError, fieldNumber: 559) } if _storage._jsondecodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsondecodingOptions, fieldNumber: 562) + try visitor.visitSingularInt32Field(value: _storage._jsondecodingOptions, fieldNumber: 560) } if _storage._jsonEncoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonEncoder, fieldNumber: 563) - } - if _storage._jsonencoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonencoding, fieldNumber: 564) + try visitor.visitSingularInt32Field(value: _storage._jsonEncoder, fieldNumber: 561) } if _storage._jsonencodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonencodingError, fieldNumber: 565) + try visitor.visitSingularInt32Field(value: _storage._jsonencodingError, fieldNumber: 562) } if _storage._jsonencodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonencodingOptions, fieldNumber: 566) + try visitor.visitSingularInt32Field(value: _storage._jsonencodingOptions, fieldNumber: 563) } if _storage._jsonencodingVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonencodingVisitor, fieldNumber: 567) + try visitor.visitSingularInt32Field(value: _storage._jsonencodingVisitor, fieldNumber: 564) } if _storage._jsonFormat != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonFormat, fieldNumber: 568) + try visitor.visitSingularInt32Field(value: _storage._jsonFormat, fieldNumber: 565) } if _storage._jsonmapEncodingVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonmapEncodingVisitor, fieldNumber: 569) + try visitor.visitSingularInt32Field(value: _storage._jsonmapEncodingVisitor, fieldNumber: 566) } if _storage._jsonName != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonName, fieldNumber: 570) + try visitor.visitSingularInt32Field(value: _storage._jsonName, fieldNumber: 567) } if _storage._jsonPath != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonPath, fieldNumber: 571) + try visitor.visitSingularInt32Field(value: _storage._jsonPath, fieldNumber: 568) } if _storage._jsonPaths != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonPaths, fieldNumber: 572) + try visitor.visitSingularInt32Field(value: _storage._jsonPaths, fieldNumber: 569) } if _storage._jsonscanner != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonscanner, fieldNumber: 573) + try visitor.visitSingularInt32Field(value: _storage._jsonscanner, fieldNumber: 570) } if _storage._jsonString != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonString, fieldNumber: 574) + try visitor.visitSingularInt32Field(value: _storage._jsonString, fieldNumber: 571) } if _storage._jsonText != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonText, fieldNumber: 575) + try visitor.visitSingularInt32Field(value: _storage._jsonText, fieldNumber: 572) } if _storage._jsonUtf8Bytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonUtf8Bytes, fieldNumber: 576) + try visitor.visitSingularInt32Field(value: _storage._jsonUtf8Bytes, fieldNumber: 573) } if _storage._jsonUtf8Data != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonUtf8Data, fieldNumber: 577) + try visitor.visitSingularInt32Field(value: _storage._jsonUtf8Data, fieldNumber: 574) } if _storage._jstype != 0 { - try visitor.visitSingularInt32Field(value: _storage._jstype, fieldNumber: 578) + try visitor.visitSingularInt32Field(value: _storage._jstype, fieldNumber: 575) } if _storage._k != 0 { - try visitor.visitSingularInt32Field(value: _storage._k, fieldNumber: 579) + try visitor.visitSingularInt32Field(value: _storage._k, fieldNumber: 576) } if _storage._kChunkSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._kChunkSize, fieldNumber: 580) + try visitor.visitSingularInt32Field(value: _storage._kChunkSize, fieldNumber: 577) } if _storage._key != 0 { - try visitor.visitSingularInt32Field(value: _storage._key, fieldNumber: 581) + try visitor.visitSingularInt32Field(value: _storage._key, fieldNumber: 578) } if _storage._keyField != 0 { - try visitor.visitSingularInt32Field(value: _storage._keyField, fieldNumber: 582) + try visitor.visitSingularInt32Field(value: _storage._keyField, fieldNumber: 579) } if _storage._keyFieldOpt != 0 { - try visitor.visitSingularInt32Field(value: _storage._keyFieldOpt, fieldNumber: 583) + try visitor.visitSingularInt32Field(value: _storage._keyFieldOpt, fieldNumber: 580) } if _storage._keyType != 0 { - try visitor.visitSingularInt32Field(value: _storage._keyType, fieldNumber: 584) + try visitor.visitSingularInt32Field(value: _storage._keyType, fieldNumber: 581) } if _storage._kind != 0 { - try visitor.visitSingularInt32Field(value: _storage._kind, fieldNumber: 585) + try visitor.visitSingularInt32Field(value: _storage._kind, fieldNumber: 582) } if _storage._l != 0 { - try visitor.visitSingularInt32Field(value: _storage._l, fieldNumber: 586) + try visitor.visitSingularInt32Field(value: _storage._l, fieldNumber: 583) } if _storage._label != 0 { - try visitor.visitSingularInt32Field(value: _storage._label, fieldNumber: 587) + try visitor.visitSingularInt32Field(value: _storage._label, fieldNumber: 584) } if _storage._lazy != 0 { - try visitor.visitSingularInt32Field(value: _storage._lazy, fieldNumber: 588) + try visitor.visitSingularInt32Field(value: _storage._lazy, fieldNumber: 585) } if _storage._leadingComments != 0 { - try visitor.visitSingularInt32Field(value: _storage._leadingComments, fieldNumber: 589) + try visitor.visitSingularInt32Field(value: _storage._leadingComments, fieldNumber: 586) } if _storage._leadingDetachedComments != 0 { - try visitor.visitSingularInt32Field(value: _storage._leadingDetachedComments, fieldNumber: 590) + try visitor.visitSingularInt32Field(value: _storage._leadingDetachedComments, fieldNumber: 587) } if _storage._length != 0 { - try visitor.visitSingularInt32Field(value: _storage._length, fieldNumber: 591) + try visitor.visitSingularInt32Field(value: _storage._length, fieldNumber: 588) } if _storage._lessThan != 0 { - try visitor.visitSingularInt32Field(value: _storage._lessThan, fieldNumber: 592) + try visitor.visitSingularInt32Field(value: _storage._lessThan, fieldNumber: 589) } if _storage._let != 0 { - try visitor.visitSingularInt32Field(value: _storage._let, fieldNumber: 593) + try visitor.visitSingularInt32Field(value: _storage._let, fieldNumber: 590) } if _storage._lhs != 0 { - try visitor.visitSingularInt32Field(value: _storage._lhs, fieldNumber: 594) + try visitor.visitSingularInt32Field(value: _storage._lhs, fieldNumber: 591) } if _storage._line != 0 { - try visitor.visitSingularInt32Field(value: _storage._line, fieldNumber: 595) + try visitor.visitSingularInt32Field(value: _storage._line, fieldNumber: 592) } if _storage._list != 0 { - try visitor.visitSingularInt32Field(value: _storage._list, fieldNumber: 596) + try visitor.visitSingularInt32Field(value: _storage._list, fieldNumber: 593) } if _storage._listOfMessages != 0 { - try visitor.visitSingularInt32Field(value: _storage._listOfMessages, fieldNumber: 597) + try visitor.visitSingularInt32Field(value: _storage._listOfMessages, fieldNumber: 594) } if _storage._listValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._listValue, fieldNumber: 598) + try visitor.visitSingularInt32Field(value: _storage._listValue, fieldNumber: 595) } if _storage._littleEndian != 0 { - try visitor.visitSingularInt32Field(value: _storage._littleEndian, fieldNumber: 599) + try visitor.visitSingularInt32Field(value: _storage._littleEndian, fieldNumber: 596) } if _storage._load != 0 { - try visitor.visitSingularInt32Field(value: _storage._load, fieldNumber: 600) + try visitor.visitSingularInt32Field(value: _storage._load, fieldNumber: 597) } if _storage._localHasher != 0 { - try visitor.visitSingularInt32Field(value: _storage._localHasher, fieldNumber: 601) + try visitor.visitSingularInt32Field(value: _storage._localHasher, fieldNumber: 598) } if _storage._location != 0 { - try visitor.visitSingularInt32Field(value: _storage._location, fieldNumber: 602) + try visitor.visitSingularInt32Field(value: _storage._location, fieldNumber: 599) } if _storage._m != 0 { - try visitor.visitSingularInt32Field(value: _storage._m, fieldNumber: 603) + try visitor.visitSingularInt32Field(value: _storage._m, fieldNumber: 600) } if _storage._major != 0 { - try visitor.visitSingularInt32Field(value: _storage._major, fieldNumber: 604) + try visitor.visitSingularInt32Field(value: _storage._major, fieldNumber: 601) } if _storage._makeAsyncIterator != 0 { - try visitor.visitSingularInt32Field(value: _storage._makeAsyncIterator, fieldNumber: 605) + try visitor.visitSingularInt32Field(value: _storage._makeAsyncIterator, fieldNumber: 602) } if _storage._makeIterator != 0 { - try visitor.visitSingularInt32Field(value: _storage._makeIterator, fieldNumber: 606) + try visitor.visitSingularInt32Field(value: _storage._makeIterator, fieldNumber: 603) } if _storage._malformedLength != 0 { - try visitor.visitSingularInt32Field(value: _storage._malformedLength, fieldNumber: 607) + try visitor.visitSingularInt32Field(value: _storage._malformedLength, fieldNumber: 604) } if _storage._mapEntry != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapEntry, fieldNumber: 608) + try visitor.visitSingularInt32Field(value: _storage._mapEntry, fieldNumber: 605) } if _storage._mapKeyType != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapKeyType, fieldNumber: 609) + try visitor.visitSingularInt32Field(value: _storage._mapKeyType, fieldNumber: 606) } if _storage._mapToMessages != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapToMessages, fieldNumber: 610) + try visitor.visitSingularInt32Field(value: _storage._mapToMessages, fieldNumber: 607) } if _storage._mapValueType != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapValueType, fieldNumber: 611) + try visitor.visitSingularInt32Field(value: _storage._mapValueType, fieldNumber: 608) } if _storage._mapVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapVisitor, fieldNumber: 612) + try visitor.visitSingularInt32Field(value: _storage._mapVisitor, fieldNumber: 609) } if _storage._maximumEdition != 0 { - try visitor.visitSingularInt32Field(value: _storage._maximumEdition, fieldNumber: 613) + try visitor.visitSingularInt32Field(value: _storage._maximumEdition, fieldNumber: 610) } if _storage._mdayStart != 0 { - try visitor.visitSingularInt32Field(value: _storage._mdayStart, fieldNumber: 614) + try visitor.visitSingularInt32Field(value: _storage._mdayStart, fieldNumber: 611) } if _storage._merge != 0 { - try visitor.visitSingularInt32Field(value: _storage._merge, fieldNumber: 615) + try visitor.visitSingularInt32Field(value: _storage._merge, fieldNumber: 612) } if _storage._message != 0 { - try visitor.visitSingularInt32Field(value: _storage._message, fieldNumber: 616) + try visitor.visitSingularInt32Field(value: _storage._message, fieldNumber: 613) } if _storage._messageDepthLimit != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageDepthLimit, fieldNumber: 617) + try visitor.visitSingularInt32Field(value: _storage._messageDepthLimit, fieldNumber: 614) } if _storage._messageEncoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageEncoding, fieldNumber: 618) + try visitor.visitSingularInt32Field(value: _storage._messageEncoding, fieldNumber: 615) } if _storage._messageExtension != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageExtension, fieldNumber: 619) + try visitor.visitSingularInt32Field(value: _storage._messageExtension, fieldNumber: 616) } if _storage._messageImplementationBase != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageImplementationBase, fieldNumber: 620) + try visitor.visitSingularInt32Field(value: _storage._messageImplementationBase, fieldNumber: 617) } if _storage._messageOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageOptions, fieldNumber: 621) + try visitor.visitSingularInt32Field(value: _storage._messageOptions, fieldNumber: 618) } if _storage._messageSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageSet, fieldNumber: 622) + try visitor.visitSingularInt32Field(value: _storage._messageSet, fieldNumber: 619) } if _storage._messageSetWireFormat != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageSetWireFormat, fieldNumber: 623) + try visitor.visitSingularInt32Field(value: _storage._messageSetWireFormat, fieldNumber: 620) } if _storage._messageSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageSize, fieldNumber: 624) + try visitor.visitSingularInt32Field(value: _storage._messageSize, fieldNumber: 621) } if _storage._messageType != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageType, fieldNumber: 625) + try visitor.visitSingularInt32Field(value: _storage._messageType, fieldNumber: 622) } if _storage._method != 0 { - try visitor.visitSingularInt32Field(value: _storage._method, fieldNumber: 626) + try visitor.visitSingularInt32Field(value: _storage._method, fieldNumber: 623) } if _storage._methodDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._methodDescriptorProto, fieldNumber: 627) + try visitor.visitSingularInt32Field(value: _storage._methodDescriptorProto, fieldNumber: 624) } if _storage._methodOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._methodOptions, fieldNumber: 628) + try visitor.visitSingularInt32Field(value: _storage._methodOptions, fieldNumber: 625) } if _storage._methods != 0 { - try visitor.visitSingularInt32Field(value: _storage._methods, fieldNumber: 629) + try visitor.visitSingularInt32Field(value: _storage._methods, fieldNumber: 626) } if _storage._min != 0 { - try visitor.visitSingularInt32Field(value: _storage._min, fieldNumber: 630) + try visitor.visitSingularInt32Field(value: _storage._min, fieldNumber: 627) } if _storage._minimumEdition != 0 { - try visitor.visitSingularInt32Field(value: _storage._minimumEdition, fieldNumber: 631) + try visitor.visitSingularInt32Field(value: _storage._minimumEdition, fieldNumber: 628) } if _storage._minor != 0 { - try visitor.visitSingularInt32Field(value: _storage._minor, fieldNumber: 632) + try visitor.visitSingularInt32Field(value: _storage._minor, fieldNumber: 629) } if _storage._mixin != 0 { - try visitor.visitSingularInt32Field(value: _storage._mixin, fieldNumber: 633) + try visitor.visitSingularInt32Field(value: _storage._mixin, fieldNumber: 630) } if _storage._mixins != 0 { - try visitor.visitSingularInt32Field(value: _storage._mixins, fieldNumber: 634) + try visitor.visitSingularInt32Field(value: _storage._mixins, fieldNumber: 631) } if _storage._modifier != 0 { - try visitor.visitSingularInt32Field(value: _storage._modifier, fieldNumber: 635) + try visitor.visitSingularInt32Field(value: _storage._modifier, fieldNumber: 632) } if _storage._modify != 0 { - try visitor.visitSingularInt32Field(value: _storage._modify, fieldNumber: 636) + try visitor.visitSingularInt32Field(value: _storage._modify, fieldNumber: 633) } if _storage._month != 0 { - try visitor.visitSingularInt32Field(value: _storage._month, fieldNumber: 637) + try visitor.visitSingularInt32Field(value: _storage._month, fieldNumber: 634) } if _storage._msgExtension != 0 { - try visitor.visitSingularInt32Field(value: _storage._msgExtension, fieldNumber: 638) + try visitor.visitSingularInt32Field(value: _storage._msgExtension, fieldNumber: 635) } if _storage._mutating != 0 { - try visitor.visitSingularInt32Field(value: _storage._mutating, fieldNumber: 639) + try visitor.visitSingularInt32Field(value: _storage._mutating, fieldNumber: 636) } if _storage._n != 0 { - try visitor.visitSingularInt32Field(value: _storage._n, fieldNumber: 640) + try visitor.visitSingularInt32Field(value: _storage._n, fieldNumber: 637) } if _storage._name != 0 { - try visitor.visitSingularInt32Field(value: _storage._name, fieldNumber: 641) + try visitor.visitSingularInt32Field(value: _storage._name, fieldNumber: 638) } if _storage._nameDescription != 0 { - try visitor.visitSingularInt32Field(value: _storage._nameDescription, fieldNumber: 642) + try visitor.visitSingularInt32Field(value: _storage._nameDescription, fieldNumber: 639) } if _storage._nameMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._nameMap, fieldNumber: 643) + try visitor.visitSingularInt32Field(value: _storage._nameMap, fieldNumber: 640) } if _storage._namePart != 0 { - try visitor.visitSingularInt32Field(value: _storage._namePart, fieldNumber: 644) + try visitor.visitSingularInt32Field(value: _storage._namePart, fieldNumber: 641) } if _storage._names != 0 { - try visitor.visitSingularInt32Field(value: _storage._names, fieldNumber: 645) + try visitor.visitSingularInt32Field(value: _storage._names, fieldNumber: 642) } if _storage._nanos != 0 { - try visitor.visitSingularInt32Field(value: _storage._nanos, fieldNumber: 646) + try visitor.visitSingularInt32Field(value: _storage._nanos, fieldNumber: 643) } if _storage._negativeIntValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._negativeIntValue, fieldNumber: 647) + try visitor.visitSingularInt32Field(value: _storage._negativeIntValue, fieldNumber: 644) } if _storage._nestedType != 0 { - try visitor.visitSingularInt32Field(value: _storage._nestedType, fieldNumber: 648) + try visitor.visitSingularInt32Field(value: _storage._nestedType, fieldNumber: 645) } if _storage._newL != 0 { - try visitor.visitSingularInt32Field(value: _storage._newL, fieldNumber: 649) + try visitor.visitSingularInt32Field(value: _storage._newL, fieldNumber: 646) } if _storage._newList != 0 { - try visitor.visitSingularInt32Field(value: _storage._newList, fieldNumber: 650) + try visitor.visitSingularInt32Field(value: _storage._newList, fieldNumber: 647) } if _storage._newValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._newValue, fieldNumber: 651) + try visitor.visitSingularInt32Field(value: _storage._newValue, fieldNumber: 648) } if _storage._next != 0 { - try visitor.visitSingularInt32Field(value: _storage._next, fieldNumber: 652) + try visitor.visitSingularInt32Field(value: _storage._next, fieldNumber: 649) } if _storage._nextByte != 0 { - try visitor.visitSingularInt32Field(value: _storage._nextByte, fieldNumber: 653) + try visitor.visitSingularInt32Field(value: _storage._nextByte, fieldNumber: 650) } if _storage._nextFieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._nextFieldNumber, fieldNumber: 654) + try visitor.visitSingularInt32Field(value: _storage._nextFieldNumber, fieldNumber: 651) } if _storage._nextVarInt != 0 { - try visitor.visitSingularInt32Field(value: _storage._nextVarInt, fieldNumber: 655) + try visitor.visitSingularInt32Field(value: _storage._nextVarInt, fieldNumber: 652) } if _storage._nil != 0 { - try visitor.visitSingularInt32Field(value: _storage._nil, fieldNumber: 656) + try visitor.visitSingularInt32Field(value: _storage._nil, fieldNumber: 653) } if _storage._nilLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._nilLiteral, fieldNumber: 657) + try visitor.visitSingularInt32Field(value: _storage._nilLiteral, fieldNumber: 654) } if _storage._noBytesAvailable != 0 { - try visitor.visitSingularInt32Field(value: _storage._noBytesAvailable, fieldNumber: 658) + try visitor.visitSingularInt32Field(value: _storage._noBytesAvailable, fieldNumber: 655) } if _storage._noStandardDescriptorAccessor != 0 { - try visitor.visitSingularInt32Field(value: _storage._noStandardDescriptorAccessor, fieldNumber: 659) + try visitor.visitSingularInt32Field(value: _storage._noStandardDescriptorAccessor, fieldNumber: 656) } if _storage._nullValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._nullValue, fieldNumber: 660) + try visitor.visitSingularInt32Field(value: _storage._nullValue, fieldNumber: 657) } if _storage._number != 0 { - try visitor.visitSingularInt32Field(value: _storage._number, fieldNumber: 661) + try visitor.visitSingularInt32Field(value: _storage._number, fieldNumber: 658) } if _storage._numberValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._numberValue, fieldNumber: 662) + try visitor.visitSingularInt32Field(value: _storage._numberValue, fieldNumber: 659) } if _storage._objcClassPrefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._objcClassPrefix, fieldNumber: 663) + try visitor.visitSingularInt32Field(value: _storage._objcClassPrefix, fieldNumber: 660) } if _storage._of != 0 { - try visitor.visitSingularInt32Field(value: _storage._of, fieldNumber: 664) + try visitor.visitSingularInt32Field(value: _storage._of, fieldNumber: 661) } if _storage._oneofDecl != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofDecl, fieldNumber: 665) + try visitor.visitSingularInt32Field(value: _storage._oneofDecl, fieldNumber: 662) } if _storage._oneofDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofDescriptorProto, fieldNumber: 666) + try visitor.visitSingularInt32Field(value: _storage._oneofDescriptorProto, fieldNumber: 663) } if _storage._oneofIndex != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofIndex, fieldNumber: 667) + try visitor.visitSingularInt32Field(value: _storage._oneofIndex, fieldNumber: 664) } if _storage._oneofOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofOptions, fieldNumber: 668) + try visitor.visitSingularInt32Field(value: _storage._oneofOptions, fieldNumber: 665) } if _storage._oneofs != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofs, fieldNumber: 669) + try visitor.visitSingularInt32Field(value: _storage._oneofs, fieldNumber: 666) } if _storage._oneOfKind != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneOfKind, fieldNumber: 670) + try visitor.visitSingularInt32Field(value: _storage._oneOfKind, fieldNumber: 667) } if _storage._optimizeFor != 0 { - try visitor.visitSingularInt32Field(value: _storage._optimizeFor, fieldNumber: 671) + try visitor.visitSingularInt32Field(value: _storage._optimizeFor, fieldNumber: 668) } if _storage._optimizeMode != 0 { - try visitor.visitSingularInt32Field(value: _storage._optimizeMode, fieldNumber: 672) + try visitor.visitSingularInt32Field(value: _storage._optimizeMode, fieldNumber: 669) } if _storage._option != 0 { - try visitor.visitSingularInt32Field(value: _storage._option, fieldNumber: 673) + try visitor.visitSingularInt32Field(value: _storage._option, fieldNumber: 670) } if _storage._optionalEnumExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionalEnumExtensionField, fieldNumber: 674) + try visitor.visitSingularInt32Field(value: _storage._optionalEnumExtensionField, fieldNumber: 671) } if _storage._optionalExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionalExtensionField, fieldNumber: 675) + try visitor.visitSingularInt32Field(value: _storage._optionalExtensionField, fieldNumber: 672) } if _storage._optionalGroupExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionalGroupExtensionField, fieldNumber: 676) + try visitor.visitSingularInt32Field(value: _storage._optionalGroupExtensionField, fieldNumber: 673) } if _storage._optionalMessageExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionalMessageExtensionField, fieldNumber: 677) + try visitor.visitSingularInt32Field(value: _storage._optionalMessageExtensionField, fieldNumber: 674) } if _storage._optionRetention != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionRetention, fieldNumber: 678) + try visitor.visitSingularInt32Field(value: _storage._optionRetention, fieldNumber: 675) } if _storage._options != 0 { - try visitor.visitSingularInt32Field(value: _storage._options, fieldNumber: 679) + try visitor.visitSingularInt32Field(value: _storage._options, fieldNumber: 676) } if _storage._optionTargetType != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionTargetType, fieldNumber: 680) + try visitor.visitSingularInt32Field(value: _storage._optionTargetType, fieldNumber: 677) } if _storage._other != 0 { - try visitor.visitSingularInt32Field(value: _storage._other, fieldNumber: 681) + try visitor.visitSingularInt32Field(value: _storage._other, fieldNumber: 678) } if _storage._others != 0 { - try visitor.visitSingularInt32Field(value: _storage._others, fieldNumber: 682) + try visitor.visitSingularInt32Field(value: _storage._others, fieldNumber: 679) } if _storage._out != 0 { - try visitor.visitSingularInt32Field(value: _storage._out, fieldNumber: 683) + try visitor.visitSingularInt32Field(value: _storage._out, fieldNumber: 680) } if _storage._outputType != 0 { - try visitor.visitSingularInt32Field(value: _storage._outputType, fieldNumber: 684) + try visitor.visitSingularInt32Field(value: _storage._outputType, fieldNumber: 681) } if _storage._overridableFeatures != 0 { - try visitor.visitSingularInt32Field(value: _storage._overridableFeatures, fieldNumber: 685) + try visitor.visitSingularInt32Field(value: _storage._overridableFeatures, fieldNumber: 682) } if _storage._p != 0 { - try visitor.visitSingularInt32Field(value: _storage._p, fieldNumber: 686) + try visitor.visitSingularInt32Field(value: _storage._p, fieldNumber: 683) } if _storage._package != 0 { - try visitor.visitSingularInt32Field(value: _storage._package, fieldNumber: 687) + try visitor.visitSingularInt32Field(value: _storage._package, fieldNumber: 684) } if _storage._packed != 0 { - try visitor.visitSingularInt32Field(value: _storage._packed, fieldNumber: 688) + try visitor.visitSingularInt32Field(value: _storage._packed, fieldNumber: 685) } if _storage._packedEnumExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._packedEnumExtensionField, fieldNumber: 689) + try visitor.visitSingularInt32Field(value: _storage._packedEnumExtensionField, fieldNumber: 686) } if _storage._packedExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._packedExtensionField, fieldNumber: 690) + try visitor.visitSingularInt32Field(value: _storage._packedExtensionField, fieldNumber: 687) } if _storage._padding != 0 { - try visitor.visitSingularInt32Field(value: _storage._padding, fieldNumber: 691) + try visitor.visitSingularInt32Field(value: _storage._padding, fieldNumber: 688) } if _storage._parent != 0 { - try visitor.visitSingularInt32Field(value: _storage._parent, fieldNumber: 692) + try visitor.visitSingularInt32Field(value: _storage._parent, fieldNumber: 689) } if _storage._parse != 0 { - try visitor.visitSingularInt32Field(value: _storage._parse, fieldNumber: 693) + try visitor.visitSingularInt32Field(value: _storage._parse, fieldNumber: 690) } if _storage._path != 0 { - try visitor.visitSingularInt32Field(value: _storage._path, fieldNumber: 694) + try visitor.visitSingularInt32Field(value: _storage._path, fieldNumber: 691) } if _storage._paths != 0 { - try visitor.visitSingularInt32Field(value: _storage._paths, fieldNumber: 695) + try visitor.visitSingularInt32Field(value: _storage._paths, fieldNumber: 692) } if _storage._payload != 0 { - try visitor.visitSingularInt32Field(value: _storage._payload, fieldNumber: 696) + try visitor.visitSingularInt32Field(value: _storage._payload, fieldNumber: 693) } if _storage._payloadSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._payloadSize, fieldNumber: 697) + try visitor.visitSingularInt32Field(value: _storage._payloadSize, fieldNumber: 694) } if _storage._phpClassPrefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._phpClassPrefix, fieldNumber: 698) + try visitor.visitSingularInt32Field(value: _storage._phpClassPrefix, fieldNumber: 695) } if _storage._phpMetadataNamespace != 0 { - try visitor.visitSingularInt32Field(value: _storage._phpMetadataNamespace, fieldNumber: 699) + try visitor.visitSingularInt32Field(value: _storage._phpMetadataNamespace, fieldNumber: 696) } if _storage._phpNamespace != 0 { - try visitor.visitSingularInt32Field(value: _storage._phpNamespace, fieldNumber: 700) + try visitor.visitSingularInt32Field(value: _storage._phpNamespace, fieldNumber: 697) } if _storage._pos != 0 { - try visitor.visitSingularInt32Field(value: _storage._pos, fieldNumber: 701) + try visitor.visitSingularInt32Field(value: _storage._pos, fieldNumber: 698) } if _storage._positiveIntValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._positiveIntValue, fieldNumber: 702) + try visitor.visitSingularInt32Field(value: _storage._positiveIntValue, fieldNumber: 699) } if _storage._prefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._prefix, fieldNumber: 703) + try visitor.visitSingularInt32Field(value: _storage._prefix, fieldNumber: 700) } if _storage._preserveProtoFieldNames != 0 { - try visitor.visitSingularInt32Field(value: _storage._preserveProtoFieldNames, fieldNumber: 704) + try visitor.visitSingularInt32Field(value: _storage._preserveProtoFieldNames, fieldNumber: 701) } if _storage._preTraverse != 0 { - try visitor.visitSingularInt32Field(value: _storage._preTraverse, fieldNumber: 705) + try visitor.visitSingularInt32Field(value: _storage._preTraverse, fieldNumber: 702) } if _storage._printUnknownFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._printUnknownFields, fieldNumber: 706) + try visitor.visitSingularInt32Field(value: _storage._printUnknownFields, fieldNumber: 703) } if _storage._proto2 != 0 { - try visitor.visitSingularInt32Field(value: _storage._proto2, fieldNumber: 707) + try visitor.visitSingularInt32Field(value: _storage._proto2, fieldNumber: 704) } if _storage._proto3DefaultValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._proto3DefaultValue, fieldNumber: 708) + try visitor.visitSingularInt32Field(value: _storage._proto3DefaultValue, fieldNumber: 705) } if _storage._proto3Optional != 0 { - try visitor.visitSingularInt32Field(value: _storage._proto3Optional, fieldNumber: 709) + try visitor.visitSingularInt32Field(value: _storage._proto3Optional, fieldNumber: 706) } if _storage._protobufApiversionCheck != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufApiversionCheck, fieldNumber: 710) + try visitor.visitSingularInt32Field(value: _storage._protobufApiversionCheck, fieldNumber: 707) } if _storage._protobufApiversion3 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufApiversion3, fieldNumber: 711) + try visitor.visitSingularInt32Field(value: _storage._protobufApiversion3, fieldNumber: 708) } if _storage._protobufBool != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufBool, fieldNumber: 712) + try visitor.visitSingularInt32Field(value: _storage._protobufBool, fieldNumber: 709) } if _storage._protobufBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufBytes, fieldNumber: 713) + try visitor.visitSingularInt32Field(value: _storage._protobufBytes, fieldNumber: 710) } if _storage._protobufDouble != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufDouble, fieldNumber: 714) + try visitor.visitSingularInt32Field(value: _storage._protobufDouble, fieldNumber: 711) } if _storage._protobufEnumMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufEnumMap, fieldNumber: 715) + try visitor.visitSingularInt32Field(value: _storage._protobufEnumMap, fieldNumber: 712) } if _storage._protobufExtension != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufExtension, fieldNumber: 716) + try visitor.visitSingularInt32Field(value: _storage._protobufExtension, fieldNumber: 713) } if _storage._protobufFixed32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufFixed32, fieldNumber: 717) + try visitor.visitSingularInt32Field(value: _storage._protobufFixed32, fieldNumber: 714) } if _storage._protobufFixed64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufFixed64, fieldNumber: 718) + try visitor.visitSingularInt32Field(value: _storage._protobufFixed64, fieldNumber: 715) } if _storage._protobufFloat != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufFloat, fieldNumber: 719) + try visitor.visitSingularInt32Field(value: _storage._protobufFloat, fieldNumber: 716) } if _storage._protobufInt32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufInt32, fieldNumber: 720) + try visitor.visitSingularInt32Field(value: _storage._protobufInt32, fieldNumber: 717) } if _storage._protobufInt64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufInt64, fieldNumber: 721) + try visitor.visitSingularInt32Field(value: _storage._protobufInt64, fieldNumber: 718) } if _storage._protobufMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufMap, fieldNumber: 722) + try visitor.visitSingularInt32Field(value: _storage._protobufMap, fieldNumber: 719) } if _storage._protobufMessageMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufMessageMap, fieldNumber: 723) + try visitor.visitSingularInt32Field(value: _storage._protobufMessageMap, fieldNumber: 720) } if _storage._protobufSfixed32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufSfixed32, fieldNumber: 724) + try visitor.visitSingularInt32Field(value: _storage._protobufSfixed32, fieldNumber: 721) } if _storage._protobufSfixed64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufSfixed64, fieldNumber: 725) + try visitor.visitSingularInt32Field(value: _storage._protobufSfixed64, fieldNumber: 722) } if _storage._protobufSint32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufSint32, fieldNumber: 726) + try visitor.visitSingularInt32Field(value: _storage._protobufSint32, fieldNumber: 723) } if _storage._protobufSint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufSint64, fieldNumber: 727) + try visitor.visitSingularInt32Field(value: _storage._protobufSint64, fieldNumber: 724) } if _storage._protobufString != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufString, fieldNumber: 728) + try visitor.visitSingularInt32Field(value: _storage._protobufString, fieldNumber: 725) } if _storage._protobufUint32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufUint32, fieldNumber: 729) + try visitor.visitSingularInt32Field(value: _storage._protobufUint32, fieldNumber: 726) } if _storage._protobufUint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufUint64, fieldNumber: 730) + try visitor.visitSingularInt32Field(value: _storage._protobufUint64, fieldNumber: 727) } if _storage._protobufExtensionFieldValues != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufExtensionFieldValues, fieldNumber: 731) + try visitor.visitSingularInt32Field(value: _storage._protobufExtensionFieldValues, fieldNumber: 728) } if _storage._protobufFieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufFieldNumber, fieldNumber: 732) + try visitor.visitSingularInt32Field(value: _storage._protobufFieldNumber, fieldNumber: 729) } if _storage._protobufGeneratedIsEqualTo != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufGeneratedIsEqualTo, fieldNumber: 733) + try visitor.visitSingularInt32Field(value: _storage._protobufGeneratedIsEqualTo, fieldNumber: 730) } if _storage._protobufNameMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufNameMap, fieldNumber: 734) + try visitor.visitSingularInt32Field(value: _storage._protobufNameMap, fieldNumber: 731) } if _storage._protobufNewField != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufNewField, fieldNumber: 735) + try visitor.visitSingularInt32Field(value: _storage._protobufNewField, fieldNumber: 732) } if _storage._protobufPackage != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufPackage, fieldNumber: 736) + try visitor.visitSingularInt32Field(value: _storage._protobufPackage, fieldNumber: 733) } if _storage._protocol != 0 { - try visitor.visitSingularInt32Field(value: _storage._protocol, fieldNumber: 737) + try visitor.visitSingularInt32Field(value: _storage._protocol, fieldNumber: 734) } if _storage._protoFieldName != 0 { - try visitor.visitSingularInt32Field(value: _storage._protoFieldName, fieldNumber: 738) + try visitor.visitSingularInt32Field(value: _storage._protoFieldName, fieldNumber: 735) } if _storage._protoMessageName != 0 { - try visitor.visitSingularInt32Field(value: _storage._protoMessageName, fieldNumber: 739) + try visitor.visitSingularInt32Field(value: _storage._protoMessageName, fieldNumber: 736) } if _storage._protoNameProviding != 0 { - try visitor.visitSingularInt32Field(value: _storage._protoNameProviding, fieldNumber: 740) + try visitor.visitSingularInt32Field(value: _storage._protoNameProviding, fieldNumber: 737) } if _storage._protoPaths != 0 { - try visitor.visitSingularInt32Field(value: _storage._protoPaths, fieldNumber: 741) + try visitor.visitSingularInt32Field(value: _storage._protoPaths, fieldNumber: 738) } if _storage._public != 0 { - try visitor.visitSingularInt32Field(value: _storage._public, fieldNumber: 742) + try visitor.visitSingularInt32Field(value: _storage._public, fieldNumber: 739) } if _storage._publicDependency != 0 { - try visitor.visitSingularInt32Field(value: _storage._publicDependency, fieldNumber: 743) + try visitor.visitSingularInt32Field(value: _storage._publicDependency, fieldNumber: 740) } if _storage._putBoolValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putBoolValue, fieldNumber: 744) + try visitor.visitSingularInt32Field(value: _storage._putBoolValue, fieldNumber: 741) } if _storage._putBytesValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putBytesValue, fieldNumber: 745) + try visitor.visitSingularInt32Field(value: _storage._putBytesValue, fieldNumber: 742) } if _storage._putDoubleValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putDoubleValue, fieldNumber: 746) + try visitor.visitSingularInt32Field(value: _storage._putDoubleValue, fieldNumber: 743) } if _storage._putEnumValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putEnumValue, fieldNumber: 747) + try visitor.visitSingularInt32Field(value: _storage._putEnumValue, fieldNumber: 744) } if _storage._putFixedUint32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._putFixedUint32, fieldNumber: 748) + try visitor.visitSingularInt32Field(value: _storage._putFixedUint32, fieldNumber: 745) } if _storage._putFixedUint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._putFixedUint64, fieldNumber: 749) + try visitor.visitSingularInt32Field(value: _storage._putFixedUint64, fieldNumber: 746) } if _storage._putFloatValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putFloatValue, fieldNumber: 750) + try visitor.visitSingularInt32Field(value: _storage._putFloatValue, fieldNumber: 747) } if _storage._putInt64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._putInt64, fieldNumber: 751) + try visitor.visitSingularInt32Field(value: _storage._putInt64, fieldNumber: 748) } if _storage._putStringValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putStringValue, fieldNumber: 752) + try visitor.visitSingularInt32Field(value: _storage._putStringValue, fieldNumber: 749) } if _storage._putUint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._putUint64, fieldNumber: 753) + try visitor.visitSingularInt32Field(value: _storage._putUint64, fieldNumber: 750) } if _storage._putUint64Hex != 0 { - try visitor.visitSingularInt32Field(value: _storage._putUint64Hex, fieldNumber: 754) + try visitor.visitSingularInt32Field(value: _storage._putUint64Hex, fieldNumber: 751) } if _storage._putVarInt != 0 { - try visitor.visitSingularInt32Field(value: _storage._putVarInt, fieldNumber: 755) + try visitor.visitSingularInt32Field(value: _storage._putVarInt, fieldNumber: 752) } if _storage._putZigZagVarInt != 0 { - try visitor.visitSingularInt32Field(value: _storage._putZigZagVarInt, fieldNumber: 756) + try visitor.visitSingularInt32Field(value: _storage._putZigZagVarInt, fieldNumber: 753) } if _storage._pyGenericServices != 0 { - try visitor.visitSingularInt32Field(value: _storage._pyGenericServices, fieldNumber: 757) + try visitor.visitSingularInt32Field(value: _storage._pyGenericServices, fieldNumber: 754) } if _storage._r != 0 { - try visitor.visitSingularInt32Field(value: _storage._r, fieldNumber: 758) + try visitor.visitSingularInt32Field(value: _storage._r, fieldNumber: 755) } if _storage._rawChars != 0 { - try visitor.visitSingularInt32Field(value: _storage._rawChars, fieldNumber: 759) + try visitor.visitSingularInt32Field(value: _storage._rawChars, fieldNumber: 756) } if _storage._rawRepresentable != 0 { - try visitor.visitSingularInt32Field(value: _storage._rawRepresentable, fieldNumber: 760) + try visitor.visitSingularInt32Field(value: _storage._rawRepresentable, fieldNumber: 757) } if _storage._rawValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._rawValue, fieldNumber: 761) + try visitor.visitSingularInt32Field(value: _storage._rawValue, fieldNumber: 758) } if _storage._read4HexDigits != 0 { - try visitor.visitSingularInt32Field(value: _storage._read4HexDigits, fieldNumber: 762) + try visitor.visitSingularInt32Field(value: _storage._read4HexDigits, fieldNumber: 759) } if _storage._readBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._readBytes, fieldNumber: 763) + try visitor.visitSingularInt32Field(value: _storage._readBytes, fieldNumber: 760) } if _storage._register != 0 { - try visitor.visitSingularInt32Field(value: _storage._register, fieldNumber: 764) + try visitor.visitSingularInt32Field(value: _storage._register, fieldNumber: 761) } if _storage._repeated != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeated, fieldNumber: 765) + try visitor.visitSingularInt32Field(value: _storage._repeated, fieldNumber: 762) } if _storage._repeatedEnumExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedEnumExtensionField, fieldNumber: 766) + try visitor.visitSingularInt32Field(value: _storage._repeatedEnumExtensionField, fieldNumber: 763) } if _storage._repeatedExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedExtensionField, fieldNumber: 767) + try visitor.visitSingularInt32Field(value: _storage._repeatedExtensionField, fieldNumber: 764) } if _storage._repeatedFieldEncoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedFieldEncoding, fieldNumber: 768) + try visitor.visitSingularInt32Field(value: _storage._repeatedFieldEncoding, fieldNumber: 765) } if _storage._repeatedGroupExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedGroupExtensionField, fieldNumber: 769) + try visitor.visitSingularInt32Field(value: _storage._repeatedGroupExtensionField, fieldNumber: 766) } if _storage._repeatedMessageExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedMessageExtensionField, fieldNumber: 770) + try visitor.visitSingularInt32Field(value: _storage._repeatedMessageExtensionField, fieldNumber: 767) } if _storage._repeating != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeating, fieldNumber: 771) + try visitor.visitSingularInt32Field(value: _storage._repeating, fieldNumber: 768) } if _storage._requestStreaming != 0 { - try visitor.visitSingularInt32Field(value: _storage._requestStreaming, fieldNumber: 772) + try visitor.visitSingularInt32Field(value: _storage._requestStreaming, fieldNumber: 769) } if _storage._requestTypeURL != 0 { - try visitor.visitSingularInt32Field(value: _storage._requestTypeURL, fieldNumber: 773) + try visitor.visitSingularInt32Field(value: _storage._requestTypeURL, fieldNumber: 770) } if _storage._requiredSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._requiredSize, fieldNumber: 774) + try visitor.visitSingularInt32Field(value: _storage._requiredSize, fieldNumber: 771) } if _storage._responseStreaming != 0 { - try visitor.visitSingularInt32Field(value: _storage._responseStreaming, fieldNumber: 775) + try visitor.visitSingularInt32Field(value: _storage._responseStreaming, fieldNumber: 772) } if _storage._responseTypeURL != 0 { - try visitor.visitSingularInt32Field(value: _storage._responseTypeURL, fieldNumber: 776) + try visitor.visitSingularInt32Field(value: _storage._responseTypeURL, fieldNumber: 773) } if _storage._result != 0 { - try visitor.visitSingularInt32Field(value: _storage._result, fieldNumber: 777) + try visitor.visitSingularInt32Field(value: _storage._result, fieldNumber: 774) } if _storage._retention != 0 { - try visitor.visitSingularInt32Field(value: _storage._retention, fieldNumber: 778) + try visitor.visitSingularInt32Field(value: _storage._retention, fieldNumber: 775) } if _storage._rethrows != 0 { - try visitor.visitSingularInt32Field(value: _storage._rethrows, fieldNumber: 779) + try visitor.visitSingularInt32Field(value: _storage._rethrows, fieldNumber: 776) } if _storage._return != 0 { - try visitor.visitSingularInt32Field(value: _storage._return, fieldNumber: 780) + try visitor.visitSingularInt32Field(value: _storage._return, fieldNumber: 777) } if _storage._returnType != 0 { - try visitor.visitSingularInt32Field(value: _storage._returnType, fieldNumber: 781) + try visitor.visitSingularInt32Field(value: _storage._returnType, fieldNumber: 778) } if _storage._revision != 0 { - try visitor.visitSingularInt32Field(value: _storage._revision, fieldNumber: 782) + try visitor.visitSingularInt32Field(value: _storage._revision, fieldNumber: 779) } if _storage._rhs != 0 { - try visitor.visitSingularInt32Field(value: _storage._rhs, fieldNumber: 783) + try visitor.visitSingularInt32Field(value: _storage._rhs, fieldNumber: 780) } if _storage._root != 0 { - try visitor.visitSingularInt32Field(value: _storage._root, fieldNumber: 784) + try visitor.visitSingularInt32Field(value: _storage._root, fieldNumber: 781) } if _storage._rubyPackage != 0 { - try visitor.visitSingularInt32Field(value: _storage._rubyPackage, fieldNumber: 785) + try visitor.visitSingularInt32Field(value: _storage._rubyPackage, fieldNumber: 782) } if _storage._s != 0 { - try visitor.visitSingularInt32Field(value: _storage._s, fieldNumber: 786) + try visitor.visitSingularInt32Field(value: _storage._s, fieldNumber: 783) } if _storage._sawBackslash != 0 { - try visitor.visitSingularInt32Field(value: _storage._sawBackslash, fieldNumber: 787) + try visitor.visitSingularInt32Field(value: _storage._sawBackslash, fieldNumber: 784) } if _storage._sawSection4Characters != 0 { - try visitor.visitSingularInt32Field(value: _storage._sawSection4Characters, fieldNumber: 788) + try visitor.visitSingularInt32Field(value: _storage._sawSection4Characters, fieldNumber: 785) } if _storage._sawSection5Characters != 0 { - try visitor.visitSingularInt32Field(value: _storage._sawSection5Characters, fieldNumber: 789) + try visitor.visitSingularInt32Field(value: _storage._sawSection5Characters, fieldNumber: 786) } if _storage._scan != 0 { - try visitor.visitSingularInt32Field(value: _storage._scan, fieldNumber: 790) + try visitor.visitSingularInt32Field(value: _storage._scan, fieldNumber: 787) } if _storage._scanner != 0 { - try visitor.visitSingularInt32Field(value: _storage._scanner, fieldNumber: 791) + try visitor.visitSingularInt32Field(value: _storage._scanner, fieldNumber: 788) } if _storage._seconds != 0 { - try visitor.visitSingularInt32Field(value: _storage._seconds, fieldNumber: 792) + try visitor.visitSingularInt32Field(value: _storage._seconds, fieldNumber: 789) } if _storage._self_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._self_p, fieldNumber: 793) + try visitor.visitSingularInt32Field(value: _storage._self_p, fieldNumber: 790) } if _storage._semantic != 0 { - try visitor.visitSingularInt32Field(value: _storage._semantic, fieldNumber: 794) + try visitor.visitSingularInt32Field(value: _storage._semantic, fieldNumber: 791) } if _storage._sendable != 0 { - try visitor.visitSingularInt32Field(value: _storage._sendable, fieldNumber: 795) + try visitor.visitSingularInt32Field(value: _storage._sendable, fieldNumber: 792) } if _storage._separator != 0 { - try visitor.visitSingularInt32Field(value: _storage._separator, fieldNumber: 796) + try visitor.visitSingularInt32Field(value: _storage._separator, fieldNumber: 793) } if _storage._serialize != 0 { - try visitor.visitSingularInt32Field(value: _storage._serialize, fieldNumber: 797) + try visitor.visitSingularInt32Field(value: _storage._serialize, fieldNumber: 794) } if _storage._serializedBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._serializedBytes, fieldNumber: 798) + try visitor.visitSingularInt32Field(value: _storage._serializedBytes, fieldNumber: 795) } if _storage._serializedData != 0 { - try visitor.visitSingularInt32Field(value: _storage._serializedData, fieldNumber: 799) + try visitor.visitSingularInt32Field(value: _storage._serializedData, fieldNumber: 796) } if _storage._serializedSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._serializedSize, fieldNumber: 800) + try visitor.visitSingularInt32Field(value: _storage._serializedSize, fieldNumber: 797) } if _storage._serverStreaming != 0 { - try visitor.visitSingularInt32Field(value: _storage._serverStreaming, fieldNumber: 801) + try visitor.visitSingularInt32Field(value: _storage._serverStreaming, fieldNumber: 798) } if _storage._service != 0 { - try visitor.visitSingularInt32Field(value: _storage._service, fieldNumber: 802) + try visitor.visitSingularInt32Field(value: _storage._service, fieldNumber: 799) } if _storage._serviceDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._serviceDescriptorProto, fieldNumber: 803) + try visitor.visitSingularInt32Field(value: _storage._serviceDescriptorProto, fieldNumber: 800) } if _storage._serviceOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._serviceOptions, fieldNumber: 804) + try visitor.visitSingularInt32Field(value: _storage._serviceOptions, fieldNumber: 801) } if _storage._set != 0 { - try visitor.visitSingularInt32Field(value: _storage._set, fieldNumber: 805) + try visitor.visitSingularInt32Field(value: _storage._set, fieldNumber: 802) } if _storage._setExtensionValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._setExtensionValue, fieldNumber: 806) + try visitor.visitSingularInt32Field(value: _storage._setExtensionValue, fieldNumber: 803) } if _storage._shift != 0 { - try visitor.visitSingularInt32Field(value: _storage._shift, fieldNumber: 807) + try visitor.visitSingularInt32Field(value: _storage._shift, fieldNumber: 804) } if _storage._simpleExtensionMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._simpleExtensionMap, fieldNumber: 808) + try visitor.visitSingularInt32Field(value: _storage._simpleExtensionMap, fieldNumber: 805) } if _storage._size != 0 { - try visitor.visitSingularInt32Field(value: _storage._size, fieldNumber: 809) + try visitor.visitSingularInt32Field(value: _storage._size, fieldNumber: 806) } if _storage._sizer != 0 { - try visitor.visitSingularInt32Field(value: _storage._sizer, fieldNumber: 810) + try visitor.visitSingularInt32Field(value: _storage._sizer, fieldNumber: 807) } if _storage._source != 0 { - try visitor.visitSingularInt32Field(value: _storage._source, fieldNumber: 811) + try visitor.visitSingularInt32Field(value: _storage._source, fieldNumber: 808) } if _storage._sourceCodeInfo != 0 { - try visitor.visitSingularInt32Field(value: _storage._sourceCodeInfo, fieldNumber: 812) + try visitor.visitSingularInt32Field(value: _storage._sourceCodeInfo, fieldNumber: 809) } if _storage._sourceContext != 0 { - try visitor.visitSingularInt32Field(value: _storage._sourceContext, fieldNumber: 813) + try visitor.visitSingularInt32Field(value: _storage._sourceContext, fieldNumber: 810) } if _storage._sourceEncoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._sourceEncoding, fieldNumber: 814) + try visitor.visitSingularInt32Field(value: _storage._sourceEncoding, fieldNumber: 811) } if _storage._sourceFile != 0 { - try visitor.visitSingularInt32Field(value: _storage._sourceFile, fieldNumber: 815) + try visitor.visitSingularInt32Field(value: _storage._sourceFile, fieldNumber: 812) } if _storage._sourceLocation != 0 { - try visitor.visitSingularInt32Field(value: _storage._sourceLocation, fieldNumber: 816) + try visitor.visitSingularInt32Field(value: _storage._sourceLocation, fieldNumber: 813) } if _storage._span != 0 { - try visitor.visitSingularInt32Field(value: _storage._span, fieldNumber: 817) + try visitor.visitSingularInt32Field(value: _storage._span, fieldNumber: 814) } if _storage._split != 0 { - try visitor.visitSingularInt32Field(value: _storage._split, fieldNumber: 818) + try visitor.visitSingularInt32Field(value: _storage._split, fieldNumber: 815) } if _storage._start != 0 { - try visitor.visitSingularInt32Field(value: _storage._start, fieldNumber: 819) + try visitor.visitSingularInt32Field(value: _storage._start, fieldNumber: 816) } if _storage._startArray != 0 { - try visitor.visitSingularInt32Field(value: _storage._startArray, fieldNumber: 820) + try visitor.visitSingularInt32Field(value: _storage._startArray, fieldNumber: 817) } if _storage._startArrayObject != 0 { - try visitor.visitSingularInt32Field(value: _storage._startArrayObject, fieldNumber: 821) + try visitor.visitSingularInt32Field(value: _storage._startArrayObject, fieldNumber: 818) } if _storage._startField != 0 { - try visitor.visitSingularInt32Field(value: _storage._startField, fieldNumber: 822) + try visitor.visitSingularInt32Field(value: _storage._startField, fieldNumber: 819) } if _storage._startIndex != 0 { - try visitor.visitSingularInt32Field(value: _storage._startIndex, fieldNumber: 823) + try visitor.visitSingularInt32Field(value: _storage._startIndex, fieldNumber: 820) } if _storage._startMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._startMessageField, fieldNumber: 824) + try visitor.visitSingularInt32Field(value: _storage._startMessageField, fieldNumber: 821) } if _storage._startObject != 0 { - try visitor.visitSingularInt32Field(value: _storage._startObject, fieldNumber: 825) + try visitor.visitSingularInt32Field(value: _storage._startObject, fieldNumber: 822) } if _storage._startRegularField != 0 { - try visitor.visitSingularInt32Field(value: _storage._startRegularField, fieldNumber: 826) + try visitor.visitSingularInt32Field(value: _storage._startRegularField, fieldNumber: 823) } if _storage._state != 0 { - try visitor.visitSingularInt32Field(value: _storage._state, fieldNumber: 827) + try visitor.visitSingularInt32Field(value: _storage._state, fieldNumber: 824) } if _storage._static != 0 { - try visitor.visitSingularInt32Field(value: _storage._static, fieldNumber: 828) + try visitor.visitSingularInt32Field(value: _storage._static, fieldNumber: 825) } if _storage._staticString != 0 { - try visitor.visitSingularInt32Field(value: _storage._staticString, fieldNumber: 829) + try visitor.visitSingularInt32Field(value: _storage._staticString, fieldNumber: 826) } if _storage._storage != 0 { - try visitor.visitSingularInt32Field(value: _storage._storage, fieldNumber: 830) + try visitor.visitSingularInt32Field(value: _storage._storage, fieldNumber: 827) } if _storage._string != 0 { - try visitor.visitSingularInt32Field(value: _storage._string, fieldNumber: 831) + try visitor.visitSingularInt32Field(value: _storage._string, fieldNumber: 828) } if _storage._stringLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._stringLiteral, fieldNumber: 832) + try visitor.visitSingularInt32Field(value: _storage._stringLiteral, fieldNumber: 829) } if _storage._stringLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._stringLiteralType, fieldNumber: 833) + try visitor.visitSingularInt32Field(value: _storage._stringLiteralType, fieldNumber: 830) } if _storage._stringResult != 0 { - try visitor.visitSingularInt32Field(value: _storage._stringResult, fieldNumber: 834) + try visitor.visitSingularInt32Field(value: _storage._stringResult, fieldNumber: 831) } if _storage._stringValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._stringValue, fieldNumber: 835) + try visitor.visitSingularInt32Field(value: _storage._stringValue, fieldNumber: 832) } if _storage._struct != 0 { - try visitor.visitSingularInt32Field(value: _storage._struct, fieldNumber: 836) + try visitor.visitSingularInt32Field(value: _storage._struct, fieldNumber: 833) } if _storage._structValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._structValue, fieldNumber: 837) + try visitor.visitSingularInt32Field(value: _storage._structValue, fieldNumber: 834) } if _storage._subDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._subDecoder, fieldNumber: 838) + try visitor.visitSingularInt32Field(value: _storage._subDecoder, fieldNumber: 835) } if _storage._subscript != 0 { - try visitor.visitSingularInt32Field(value: _storage._subscript, fieldNumber: 839) + try visitor.visitSingularInt32Field(value: _storage._subscript, fieldNumber: 836) } if _storage._subVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._subVisitor, fieldNumber: 840) + try visitor.visitSingularInt32Field(value: _storage._subVisitor, fieldNumber: 837) } if _storage._swift != 0 { - try visitor.visitSingularInt32Field(value: _storage._swift, fieldNumber: 841) + try visitor.visitSingularInt32Field(value: _storage._swift, fieldNumber: 838) } if _storage._swiftPrefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._swiftPrefix, fieldNumber: 842) + try visitor.visitSingularInt32Field(value: _storage._swiftPrefix, fieldNumber: 839) } if _storage._swiftProtobufContiguousBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._swiftProtobufContiguousBytes, fieldNumber: 843) + try visitor.visitSingularInt32Field(value: _storage._swiftProtobufContiguousBytes, fieldNumber: 840) } if _storage._swiftProtobufError != 0 { - try visitor.visitSingularInt32Field(value: _storage._swiftProtobufError, fieldNumber: 844) + try visitor.visitSingularInt32Field(value: _storage._swiftProtobufError, fieldNumber: 841) } if _storage._syntax != 0 { - try visitor.visitSingularInt32Field(value: _storage._syntax, fieldNumber: 845) + try visitor.visitSingularInt32Field(value: _storage._syntax, fieldNumber: 842) } if _storage._t != 0 { - try visitor.visitSingularInt32Field(value: _storage._t, fieldNumber: 846) + try visitor.visitSingularInt32Field(value: _storage._t, fieldNumber: 843) } if _storage._tag != 0 { - try visitor.visitSingularInt32Field(value: _storage._tag, fieldNumber: 847) + try visitor.visitSingularInt32Field(value: _storage._tag, fieldNumber: 844) } if _storage._targets != 0 { - try visitor.visitSingularInt32Field(value: _storage._targets, fieldNumber: 848) + try visitor.visitSingularInt32Field(value: _storage._targets, fieldNumber: 845) } if _storage._terminator != 0 { - try visitor.visitSingularInt32Field(value: _storage._terminator, fieldNumber: 849) + try visitor.visitSingularInt32Field(value: _storage._terminator, fieldNumber: 846) } if _storage._testDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._testDecoder, fieldNumber: 850) + try visitor.visitSingularInt32Field(value: _storage._testDecoder, fieldNumber: 847) } if _storage._text != 0 { - try visitor.visitSingularInt32Field(value: _storage._text, fieldNumber: 851) + try visitor.visitSingularInt32Field(value: _storage._text, fieldNumber: 848) } if _storage._textDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._textDecoder, fieldNumber: 852) + try visitor.visitSingularInt32Field(value: _storage._textDecoder, fieldNumber: 849) } if _storage._textFormatDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatDecoder, fieldNumber: 853) + try visitor.visitSingularInt32Field(value: _storage._textFormatDecoder, fieldNumber: 850) } if _storage._textFormatDecodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatDecodingError, fieldNumber: 854) + try visitor.visitSingularInt32Field(value: _storage._textFormatDecodingError, fieldNumber: 851) } if _storage._textFormatDecodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatDecodingOptions, fieldNumber: 855) + try visitor.visitSingularInt32Field(value: _storage._textFormatDecodingOptions, fieldNumber: 852) } if _storage._textFormatEncodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatEncodingOptions, fieldNumber: 856) + try visitor.visitSingularInt32Field(value: _storage._textFormatEncodingOptions, fieldNumber: 853) } if _storage._textFormatEncodingVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatEncodingVisitor, fieldNumber: 857) + try visitor.visitSingularInt32Field(value: _storage._textFormatEncodingVisitor, fieldNumber: 854) } if _storage._textFormatString != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatString, fieldNumber: 858) + try visitor.visitSingularInt32Field(value: _storage._textFormatString, fieldNumber: 855) } if _storage._throwOrIgnore != 0 { - try visitor.visitSingularInt32Field(value: _storage._throwOrIgnore, fieldNumber: 859) + try visitor.visitSingularInt32Field(value: _storage._throwOrIgnore, fieldNumber: 856) } if _storage._throws != 0 { - try visitor.visitSingularInt32Field(value: _storage._throws, fieldNumber: 860) + try visitor.visitSingularInt32Field(value: _storage._throws, fieldNumber: 857) } if _storage._timeInterval != 0 { - try visitor.visitSingularInt32Field(value: _storage._timeInterval, fieldNumber: 861) + try visitor.visitSingularInt32Field(value: _storage._timeInterval, fieldNumber: 858) } if _storage._timeIntervalSince1970 != 0 { - try visitor.visitSingularInt32Field(value: _storage._timeIntervalSince1970, fieldNumber: 862) + try visitor.visitSingularInt32Field(value: _storage._timeIntervalSince1970, fieldNumber: 859) } if _storage._timeIntervalSinceReferenceDate != 0 { - try visitor.visitSingularInt32Field(value: _storage._timeIntervalSinceReferenceDate, fieldNumber: 863) + try visitor.visitSingularInt32Field(value: _storage._timeIntervalSinceReferenceDate, fieldNumber: 860) } if _storage._timestamp != 0 { - try visitor.visitSingularInt32Field(value: _storage._timestamp, fieldNumber: 864) + try visitor.visitSingularInt32Field(value: _storage._timestamp, fieldNumber: 861) } if _storage._tooLarge != 0 { - try visitor.visitSingularInt32Field(value: _storage._tooLarge, fieldNumber: 865) + try visitor.visitSingularInt32Field(value: _storage._tooLarge, fieldNumber: 862) } if _storage._total != 0 { - try visitor.visitSingularInt32Field(value: _storage._total, fieldNumber: 866) + try visitor.visitSingularInt32Field(value: _storage._total, fieldNumber: 863) } if _storage._totalArrayDepth != 0 { - try visitor.visitSingularInt32Field(value: _storage._totalArrayDepth, fieldNumber: 867) + try visitor.visitSingularInt32Field(value: _storage._totalArrayDepth, fieldNumber: 864) } if _storage._totalSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._totalSize, fieldNumber: 868) + try visitor.visitSingularInt32Field(value: _storage._totalSize, fieldNumber: 865) } if _storage._trailingComments != 0 { - try visitor.visitSingularInt32Field(value: _storage._trailingComments, fieldNumber: 869) + try visitor.visitSingularInt32Field(value: _storage._trailingComments, fieldNumber: 866) } if _storage._traverse != 0 { - try visitor.visitSingularInt32Field(value: _storage._traverse, fieldNumber: 870) + try visitor.visitSingularInt32Field(value: _storage._traverse, fieldNumber: 867) } if _storage._true != 0 { - try visitor.visitSingularInt32Field(value: _storage._true, fieldNumber: 871) + try visitor.visitSingularInt32Field(value: _storage._true, fieldNumber: 868) } if _storage._try != 0 { - try visitor.visitSingularInt32Field(value: _storage._try, fieldNumber: 872) + try visitor.visitSingularInt32Field(value: _storage._try, fieldNumber: 869) } if _storage._type != 0 { - try visitor.visitSingularInt32Field(value: _storage._type, fieldNumber: 873) + try visitor.visitSingularInt32Field(value: _storage._type, fieldNumber: 870) } if _storage._typealias != 0 { - try visitor.visitSingularInt32Field(value: _storage._typealias, fieldNumber: 874) + try visitor.visitSingularInt32Field(value: _storage._typealias, fieldNumber: 871) } if _storage._typeEnum != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeEnum, fieldNumber: 875) + try visitor.visitSingularInt32Field(value: _storage._typeEnum, fieldNumber: 872) } if _storage._typeName != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeName, fieldNumber: 876) + try visitor.visitSingularInt32Field(value: _storage._typeName, fieldNumber: 873) } if _storage._typePrefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._typePrefix, fieldNumber: 877) + try visitor.visitSingularInt32Field(value: _storage._typePrefix, fieldNumber: 874) } if _storage._typeStart != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeStart, fieldNumber: 878) + try visitor.visitSingularInt32Field(value: _storage._typeStart, fieldNumber: 875) } if _storage._typeUnknown != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeUnknown, fieldNumber: 879) + try visitor.visitSingularInt32Field(value: _storage._typeUnknown, fieldNumber: 876) } if _storage._typeURL != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeURL, fieldNumber: 880) + try visitor.visitSingularInt32Field(value: _storage._typeURL, fieldNumber: 877) } if _storage._uint32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint32, fieldNumber: 881) + try visitor.visitSingularInt32Field(value: _storage._uint32, fieldNumber: 878) } if _storage._uint32Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint32Value, fieldNumber: 882) + try visitor.visitSingularInt32Field(value: _storage._uint32Value, fieldNumber: 879) } if _storage._uint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint64, fieldNumber: 883) + try visitor.visitSingularInt32Field(value: _storage._uint64, fieldNumber: 880) } if _storage._uint64Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint64Value, fieldNumber: 884) + try visitor.visitSingularInt32Field(value: _storage._uint64Value, fieldNumber: 881) } if _storage._uint8 != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint8, fieldNumber: 885) + try visitor.visitSingularInt32Field(value: _storage._uint8, fieldNumber: 882) } if _storage._unchecked != 0 { - try visitor.visitSingularInt32Field(value: _storage._unchecked, fieldNumber: 886) + try visitor.visitSingularInt32Field(value: _storage._unchecked, fieldNumber: 883) } if _storage._unicodeScalarLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._unicodeScalarLiteral, fieldNumber: 887) + try visitor.visitSingularInt32Field(value: _storage._unicodeScalarLiteral, fieldNumber: 884) } if _storage._unicodeScalarLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._unicodeScalarLiteralType, fieldNumber: 888) + try visitor.visitSingularInt32Field(value: _storage._unicodeScalarLiteralType, fieldNumber: 885) } if _storage._unicodeScalars != 0 { - try visitor.visitSingularInt32Field(value: _storage._unicodeScalars, fieldNumber: 889) + try visitor.visitSingularInt32Field(value: _storage._unicodeScalars, fieldNumber: 886) } if _storage._unicodeScalarView != 0 { - try visitor.visitSingularInt32Field(value: _storage._unicodeScalarView, fieldNumber: 890) + try visitor.visitSingularInt32Field(value: _storage._unicodeScalarView, fieldNumber: 887) } if _storage._uninterpretedOption != 0 { - try visitor.visitSingularInt32Field(value: _storage._uninterpretedOption, fieldNumber: 891) + try visitor.visitSingularInt32Field(value: _storage._uninterpretedOption, fieldNumber: 888) } if _storage._union != 0 { - try visitor.visitSingularInt32Field(value: _storage._union, fieldNumber: 892) + try visitor.visitSingularInt32Field(value: _storage._union, fieldNumber: 889) } if _storage._uniqueStorage != 0 { - try visitor.visitSingularInt32Field(value: _storage._uniqueStorage, fieldNumber: 893) + try visitor.visitSingularInt32Field(value: _storage._uniqueStorage, fieldNumber: 890) } if _storage._unknown != 0 { - try visitor.visitSingularInt32Field(value: _storage._unknown, fieldNumber: 894) + try visitor.visitSingularInt32Field(value: _storage._unknown, fieldNumber: 891) } if _storage._unknownFields_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._unknownFields_p, fieldNumber: 895) + try visitor.visitSingularInt32Field(value: _storage._unknownFields_p, fieldNumber: 892) } if _storage._unknownStorage != 0 { - try visitor.visitSingularInt32Field(value: _storage._unknownStorage, fieldNumber: 896) + try visitor.visitSingularInt32Field(value: _storage._unknownStorage, fieldNumber: 893) } if _storage._unpackTo != 0 { - try visitor.visitSingularInt32Field(value: _storage._unpackTo, fieldNumber: 897) - } - if _storage._unregisteredTypeURL != 0 { - try visitor.visitSingularInt32Field(value: _storage._unregisteredTypeURL, fieldNumber: 898) + try visitor.visitSingularInt32Field(value: _storage._unpackTo, fieldNumber: 894) } if _storage._unsafeBufferPointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeBufferPointer, fieldNumber: 899) + try visitor.visitSingularInt32Field(value: _storage._unsafeBufferPointer, fieldNumber: 895) } if _storage._unsafeMutablePointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeMutablePointer, fieldNumber: 900) + try visitor.visitSingularInt32Field(value: _storage._unsafeMutablePointer, fieldNumber: 896) } if _storage._unsafeMutableRawBufferPointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeMutableRawBufferPointer, fieldNumber: 901) + try visitor.visitSingularInt32Field(value: _storage._unsafeMutableRawBufferPointer, fieldNumber: 897) } if _storage._unsafeRawBufferPointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeRawBufferPointer, fieldNumber: 902) + try visitor.visitSingularInt32Field(value: _storage._unsafeRawBufferPointer, fieldNumber: 898) } if _storage._unsafeRawPointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeRawPointer, fieldNumber: 903) + try visitor.visitSingularInt32Field(value: _storage._unsafeRawPointer, fieldNumber: 899) } if _storage._unverifiedLazy != 0 { - try visitor.visitSingularInt32Field(value: _storage._unverifiedLazy, fieldNumber: 904) + try visitor.visitSingularInt32Field(value: _storage._unverifiedLazy, fieldNumber: 900) } if _storage._updatedOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._updatedOptions, fieldNumber: 905) + try visitor.visitSingularInt32Field(value: _storage._updatedOptions, fieldNumber: 901) } if _storage._url != 0 { - try visitor.visitSingularInt32Field(value: _storage._url, fieldNumber: 906) + try visitor.visitSingularInt32Field(value: _storage._url, fieldNumber: 902) } if _storage._useDeterministicOrdering != 0 { - try visitor.visitSingularInt32Field(value: _storage._useDeterministicOrdering, fieldNumber: 907) + try visitor.visitSingularInt32Field(value: _storage._useDeterministicOrdering, fieldNumber: 903) } if _storage._utf8 != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8, fieldNumber: 908) + try visitor.visitSingularInt32Field(value: _storage._utf8, fieldNumber: 904) } if _storage._utf8Ptr != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8Ptr, fieldNumber: 909) + try visitor.visitSingularInt32Field(value: _storage._utf8Ptr, fieldNumber: 905) } if _storage._utf8ToDouble != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8ToDouble, fieldNumber: 910) + try visitor.visitSingularInt32Field(value: _storage._utf8ToDouble, fieldNumber: 906) } if _storage._utf8Validation != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8Validation, fieldNumber: 911) + try visitor.visitSingularInt32Field(value: _storage._utf8Validation, fieldNumber: 907) } if _storage._utf8View != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8View, fieldNumber: 912) + try visitor.visitSingularInt32Field(value: _storage._utf8View, fieldNumber: 908) } if _storage._v != 0 { - try visitor.visitSingularInt32Field(value: _storage._v, fieldNumber: 913) + try visitor.visitSingularInt32Field(value: _storage._v, fieldNumber: 909) } if _storage._value != 0 { - try visitor.visitSingularInt32Field(value: _storage._value, fieldNumber: 914) + try visitor.visitSingularInt32Field(value: _storage._value, fieldNumber: 910) } if _storage._valueField != 0 { - try visitor.visitSingularInt32Field(value: _storage._valueField, fieldNumber: 915) + try visitor.visitSingularInt32Field(value: _storage._valueField, fieldNumber: 911) } if _storage._values != 0 { - try visitor.visitSingularInt32Field(value: _storage._values, fieldNumber: 916) + try visitor.visitSingularInt32Field(value: _storage._values, fieldNumber: 912) } if _storage._valueType != 0 { - try visitor.visitSingularInt32Field(value: _storage._valueType, fieldNumber: 917) + try visitor.visitSingularInt32Field(value: _storage._valueType, fieldNumber: 913) } if _storage._var != 0 { - try visitor.visitSingularInt32Field(value: _storage._var, fieldNumber: 918) + try visitor.visitSingularInt32Field(value: _storage._var, fieldNumber: 914) } if _storage._verification != 0 { - try visitor.visitSingularInt32Field(value: _storage._verification, fieldNumber: 919) + try visitor.visitSingularInt32Field(value: _storage._verification, fieldNumber: 915) } if _storage._verificationState != 0 { - try visitor.visitSingularInt32Field(value: _storage._verificationState, fieldNumber: 920) + try visitor.visitSingularInt32Field(value: _storage._verificationState, fieldNumber: 916) } if _storage._version != 0 { - try visitor.visitSingularInt32Field(value: _storage._version, fieldNumber: 921) + try visitor.visitSingularInt32Field(value: _storage._version, fieldNumber: 917) } if _storage._versionString != 0 { - try visitor.visitSingularInt32Field(value: _storage._versionString, fieldNumber: 922) + try visitor.visitSingularInt32Field(value: _storage._versionString, fieldNumber: 918) } if _storage._visitExtensionFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitExtensionFields, fieldNumber: 923) + try visitor.visitSingularInt32Field(value: _storage._visitExtensionFields, fieldNumber: 919) } if _storage._visitExtensionFieldsAsMessageSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitExtensionFieldsAsMessageSet, fieldNumber: 924) + try visitor.visitSingularInt32Field(value: _storage._visitExtensionFieldsAsMessageSet, fieldNumber: 920) } if _storage._visitMapField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitMapField, fieldNumber: 925) + try visitor.visitSingularInt32Field(value: _storage._visitMapField, fieldNumber: 921) } if _storage._visitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitor, fieldNumber: 926) + try visitor.visitSingularInt32Field(value: _storage._visitor, fieldNumber: 922) } if _storage._visitPacked != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPacked, fieldNumber: 927) + try visitor.visitSingularInt32Field(value: _storage._visitPacked, fieldNumber: 923) } if _storage._visitPackedBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedBoolField, fieldNumber: 928) + try visitor.visitSingularInt32Field(value: _storage._visitPackedBoolField, fieldNumber: 924) } if _storage._visitPackedDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedDoubleField, fieldNumber: 929) + try visitor.visitSingularInt32Field(value: _storage._visitPackedDoubleField, fieldNumber: 925) } if _storage._visitPackedEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedEnumField, fieldNumber: 930) + try visitor.visitSingularInt32Field(value: _storage._visitPackedEnumField, fieldNumber: 926) } if _storage._visitPackedFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedFixed32Field, fieldNumber: 931) + try visitor.visitSingularInt32Field(value: _storage._visitPackedFixed32Field, fieldNumber: 927) } if _storage._visitPackedFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedFixed64Field, fieldNumber: 932) + try visitor.visitSingularInt32Field(value: _storage._visitPackedFixed64Field, fieldNumber: 928) } if _storage._visitPackedFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedFloatField, fieldNumber: 933) + try visitor.visitSingularInt32Field(value: _storage._visitPackedFloatField, fieldNumber: 929) } if _storage._visitPackedInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedInt32Field, fieldNumber: 934) + try visitor.visitSingularInt32Field(value: _storage._visitPackedInt32Field, fieldNumber: 930) } if _storage._visitPackedInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedInt64Field, fieldNumber: 935) + try visitor.visitSingularInt32Field(value: _storage._visitPackedInt64Field, fieldNumber: 931) } if _storage._visitPackedSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedSfixed32Field, fieldNumber: 936) + try visitor.visitSingularInt32Field(value: _storage._visitPackedSfixed32Field, fieldNumber: 932) } if _storage._visitPackedSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedSfixed64Field, fieldNumber: 937) + try visitor.visitSingularInt32Field(value: _storage._visitPackedSfixed64Field, fieldNumber: 933) } if _storage._visitPackedSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedSint32Field, fieldNumber: 938) + try visitor.visitSingularInt32Field(value: _storage._visitPackedSint32Field, fieldNumber: 934) } if _storage._visitPackedSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedSint64Field, fieldNumber: 939) + try visitor.visitSingularInt32Field(value: _storage._visitPackedSint64Field, fieldNumber: 935) } if _storage._visitPackedUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedUint32Field, fieldNumber: 940) + try visitor.visitSingularInt32Field(value: _storage._visitPackedUint32Field, fieldNumber: 936) } if _storage._visitPackedUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedUint64Field, fieldNumber: 941) + try visitor.visitSingularInt32Field(value: _storage._visitPackedUint64Field, fieldNumber: 937) } if _storage._visitRepeated != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeated, fieldNumber: 942) + try visitor.visitSingularInt32Field(value: _storage._visitRepeated, fieldNumber: 938) } if _storage._visitRepeatedBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedBoolField, fieldNumber: 943) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedBoolField, fieldNumber: 939) } if _storage._visitRepeatedBytesField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedBytesField, fieldNumber: 944) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedBytesField, fieldNumber: 940) } if _storage._visitRepeatedDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedDoubleField, fieldNumber: 945) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedDoubleField, fieldNumber: 941) } if _storage._visitRepeatedEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedEnumField, fieldNumber: 946) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedEnumField, fieldNumber: 942) } if _storage._visitRepeatedFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFixed32Field, fieldNumber: 947) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFixed32Field, fieldNumber: 943) } if _storage._visitRepeatedFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFixed64Field, fieldNumber: 948) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFixed64Field, fieldNumber: 944) } if _storage._visitRepeatedFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFloatField, fieldNumber: 949) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFloatField, fieldNumber: 945) } if _storage._visitRepeatedGroupField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedGroupField, fieldNumber: 950) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedGroupField, fieldNumber: 946) } if _storage._visitRepeatedInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedInt32Field, fieldNumber: 951) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedInt32Field, fieldNumber: 947) } if _storage._visitRepeatedInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedInt64Field, fieldNumber: 952) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedInt64Field, fieldNumber: 948) } if _storage._visitRepeatedMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedMessageField, fieldNumber: 953) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedMessageField, fieldNumber: 949) } if _storage._visitRepeatedSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSfixed32Field, fieldNumber: 954) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSfixed32Field, fieldNumber: 950) } if _storage._visitRepeatedSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSfixed64Field, fieldNumber: 955) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSfixed64Field, fieldNumber: 951) } if _storage._visitRepeatedSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSint32Field, fieldNumber: 956) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSint32Field, fieldNumber: 952) } if _storage._visitRepeatedSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSint64Field, fieldNumber: 957) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSint64Field, fieldNumber: 953) } if _storage._visitRepeatedStringField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedStringField, fieldNumber: 958) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedStringField, fieldNumber: 954) } if _storage._visitRepeatedUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedUint32Field, fieldNumber: 959) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedUint32Field, fieldNumber: 955) } if _storage._visitRepeatedUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedUint64Field, fieldNumber: 960) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedUint64Field, fieldNumber: 956) } if _storage._visitSingular != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingular, fieldNumber: 961) + try visitor.visitSingularInt32Field(value: _storage._visitSingular, fieldNumber: 957) } if _storage._visitSingularBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularBoolField, fieldNumber: 962) + try visitor.visitSingularInt32Field(value: _storage._visitSingularBoolField, fieldNumber: 958) } if _storage._visitSingularBytesField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularBytesField, fieldNumber: 963) + try visitor.visitSingularInt32Field(value: _storage._visitSingularBytesField, fieldNumber: 959) } if _storage._visitSingularDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularDoubleField, fieldNumber: 964) + try visitor.visitSingularInt32Field(value: _storage._visitSingularDoubleField, fieldNumber: 960) } if _storage._visitSingularEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularEnumField, fieldNumber: 965) + try visitor.visitSingularInt32Field(value: _storage._visitSingularEnumField, fieldNumber: 961) } if _storage._visitSingularFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularFixed32Field, fieldNumber: 966) + try visitor.visitSingularInt32Field(value: _storage._visitSingularFixed32Field, fieldNumber: 962) } if _storage._visitSingularFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularFixed64Field, fieldNumber: 967) + try visitor.visitSingularInt32Field(value: _storage._visitSingularFixed64Field, fieldNumber: 963) } if _storage._visitSingularFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularFloatField, fieldNumber: 968) + try visitor.visitSingularInt32Field(value: _storage._visitSingularFloatField, fieldNumber: 964) } if _storage._visitSingularGroupField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularGroupField, fieldNumber: 969) + try visitor.visitSingularInt32Field(value: _storage._visitSingularGroupField, fieldNumber: 965) } if _storage._visitSingularInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularInt32Field, fieldNumber: 970) + try visitor.visitSingularInt32Field(value: _storage._visitSingularInt32Field, fieldNumber: 966) } if _storage._visitSingularInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularInt64Field, fieldNumber: 971) + try visitor.visitSingularInt32Field(value: _storage._visitSingularInt64Field, fieldNumber: 967) } if _storage._visitSingularMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularMessageField, fieldNumber: 972) + try visitor.visitSingularInt32Field(value: _storage._visitSingularMessageField, fieldNumber: 968) } if _storage._visitSingularSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularSfixed32Field, fieldNumber: 973) + try visitor.visitSingularInt32Field(value: _storage._visitSingularSfixed32Field, fieldNumber: 969) } if _storage._visitSingularSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularSfixed64Field, fieldNumber: 974) + try visitor.visitSingularInt32Field(value: _storage._visitSingularSfixed64Field, fieldNumber: 970) } if _storage._visitSingularSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularSint32Field, fieldNumber: 975) + try visitor.visitSingularInt32Field(value: _storage._visitSingularSint32Field, fieldNumber: 971) } if _storage._visitSingularSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularSint64Field, fieldNumber: 976) + try visitor.visitSingularInt32Field(value: _storage._visitSingularSint64Field, fieldNumber: 972) } if _storage._visitSingularStringField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularStringField, fieldNumber: 977) + try visitor.visitSingularInt32Field(value: _storage._visitSingularStringField, fieldNumber: 973) } if _storage._visitSingularUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularUint32Field, fieldNumber: 978) + try visitor.visitSingularInt32Field(value: _storage._visitSingularUint32Field, fieldNumber: 974) } if _storage._visitSingularUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularUint64Field, fieldNumber: 979) + try visitor.visitSingularInt32Field(value: _storage._visitSingularUint64Field, fieldNumber: 975) } if _storage._visitUnknown != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitUnknown, fieldNumber: 980) + try visitor.visitSingularInt32Field(value: _storage._visitUnknown, fieldNumber: 976) } if _storage._wasDecoded != 0 { - try visitor.visitSingularInt32Field(value: _storage._wasDecoded, fieldNumber: 981) + try visitor.visitSingularInt32Field(value: _storage._wasDecoded, fieldNumber: 977) } if _storage._weak != 0 { - try visitor.visitSingularInt32Field(value: _storage._weak, fieldNumber: 982) + try visitor.visitSingularInt32Field(value: _storage._weak, fieldNumber: 978) } if _storage._weakDependency != 0 { - try visitor.visitSingularInt32Field(value: _storage._weakDependency, fieldNumber: 983) + try visitor.visitSingularInt32Field(value: _storage._weakDependency, fieldNumber: 979) } if _storage._where != 0 { - try visitor.visitSingularInt32Field(value: _storage._where, fieldNumber: 984) + try visitor.visitSingularInt32Field(value: _storage._where, fieldNumber: 980) } if _storage._wireFormat != 0 { - try visitor.visitSingularInt32Field(value: _storage._wireFormat, fieldNumber: 985) + try visitor.visitSingularInt32Field(value: _storage._wireFormat, fieldNumber: 981) } if _storage._with != 0 { - try visitor.visitSingularInt32Field(value: _storage._with, fieldNumber: 986) + try visitor.visitSingularInt32Field(value: _storage._with, fieldNumber: 982) } if _storage._withUnsafeBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._withUnsafeBytes, fieldNumber: 987) + try visitor.visitSingularInt32Field(value: _storage._withUnsafeBytes, fieldNumber: 983) } if _storage._withUnsafeMutableBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._withUnsafeMutableBytes, fieldNumber: 988) + try visitor.visitSingularInt32Field(value: _storage._withUnsafeMutableBytes, fieldNumber: 984) } if _storage._work != 0 { - try visitor.visitSingularInt32Field(value: _storage._work, fieldNumber: 989) + try visitor.visitSingularInt32Field(value: _storage._work, fieldNumber: 985) } if _storage._wrapped != 0 { - try visitor.visitSingularInt32Field(value: _storage._wrapped, fieldNumber: 990) + try visitor.visitSingularInt32Field(value: _storage._wrapped, fieldNumber: 986) } if _storage._wrappedType != 0 { - try visitor.visitSingularInt32Field(value: _storage._wrappedType, fieldNumber: 991) + try visitor.visitSingularInt32Field(value: _storage._wrappedType, fieldNumber: 987) } if _storage._wrappedValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._wrappedValue, fieldNumber: 992) + try visitor.visitSingularInt32Field(value: _storage._wrappedValue, fieldNumber: 988) } if _storage._written != 0 { - try visitor.visitSingularInt32Field(value: _storage._written, fieldNumber: 993) + try visitor.visitSingularInt32Field(value: _storage._written, fieldNumber: 989) } if _storage._yday != 0 { - try visitor.visitSingularInt32Field(value: _storage._yday, fieldNumber: 994) + try visitor.visitSingularInt32Field(value: _storage._yday, fieldNumber: 990) } } try unknownFields.traverse(visitor: &visitor) @@ -12034,7 +11986,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._anyExtensionField != rhs_storage._anyExtensionField {return false} if _storage._anyMessageExtension != rhs_storage._anyMessageExtension {return false} if _storage._anyMessageStorage != rhs_storage._anyMessageStorage {return false} - if _storage._anyTypeUrlnotRegistered != rhs_storage._anyTypeUrlnotRegistered {return false} if _storage._anyUnpackError != rhs_storage._anyUnpackError {return false} if _storage._api != rhs_storage._api {return false} if _storage._appended != rhs_storage._appended {return false} @@ -12066,7 +12017,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._binaryDecodingOptions != rhs_storage._binaryDecodingOptions {return false} if _storage._binaryDelimited != rhs_storage._binaryDelimited {return false} if _storage._binaryEncoder != rhs_storage._binaryEncoder {return false} - if _storage._binaryEncoding != rhs_storage._binaryEncoding {return false} if _storage._binaryEncodingError != rhs_storage._binaryEncodingError {return false} if _storage._binaryEncodingMessageSetSizeVisitor != rhs_storage._binaryEncodingMessageSetSizeVisitor {return false} if _storage._binaryEncodingMessageSetVisitor != rhs_storage._binaryEncodingMessageSetVisitor {return false} @@ -12586,7 +12536,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._jsondecodingError != rhs_storage._jsondecodingError {return false} if _storage._jsondecodingOptions != rhs_storage._jsondecodingOptions {return false} if _storage._jsonEncoder != rhs_storage._jsonEncoder {return false} - if _storage._jsonencoding != rhs_storage._jsonencoding {return false} if _storage._jsonencodingError != rhs_storage._jsonencodingError {return false} if _storage._jsonencodingOptions != rhs_storage._jsonencodingOptions {return false} if _storage._jsonencodingVisitor != rhs_storage._jsonencodingVisitor {return false} @@ -12920,7 +12869,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._unknownFields_p != rhs_storage._unknownFields_p {return false} if _storage._unknownStorage != rhs_storage._unknownStorage {return false} if _storage._unpackTo != rhs_storage._unpackTo {return false} - if _storage._unregisteredTypeURL != rhs_storage._unregisteredTypeURL {return false} if _storage._unsafeBufferPointer != rhs_storage._unsafeBufferPointer {return false} if _storage._unsafeMutablePointer != rhs_storage._unsafeMutablePointer {return false} if _storage._unsafeMutableRawBufferPointer != rhs_storage._unsafeMutableRawBufferPointer {return false} diff --git a/Reference/SwiftProtobufTests/generated_swift_names_messages.pb.swift b/Reference/SwiftProtobufTests/generated_swift_names_messages.pb.swift index 9f29280d9..2ff026346 100644 --- a/Reference/SwiftProtobufTests/generated_swift_names_messages.pb.swift +++ b/Reference/SwiftProtobufTests/generated_swift_names_messages.pb.swift @@ -163,18 +163,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct anyTypeURLNotRegistered: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var anyTypeUrlnotRegistered: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct AnyUnpackError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -547,18 +535,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct BinaryEncoding: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var binaryEncoding: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct BinaryEncodingError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6787,18 +6763,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct JSONEncoding: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var jsonencoding: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct JSONEncodingError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10795,18 +10759,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct unregisteredTypeURL: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var unregisteredTypeURL: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct UnsafeBufferPointer: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -12337,38 +12289,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyMessageS } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.anyTypeURLNotRegistered: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".anyTypeURLNotRegistered" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "anyTypeURLNotRegistered"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.anyTypeUrlnotRegistered) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.anyTypeUrlnotRegistered != 0 { - try visitor.visitSingularInt32Field(value: self.anyTypeUrlnotRegistered, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.anyTypeURLNotRegistered, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.anyTypeURLNotRegistered) -> Bool { - if lhs.anyTypeUrlnotRegistered != rhs.anyTypeUrlnotRegistered {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyUnpackError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".AnyUnpackError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -13361,38 +13281,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncod } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".BinaryEncoding" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "BinaryEncoding"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.binaryEncoding) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.binaryEncoding != 0 { - try visitor.visitSingularInt32Field(value: self.binaryEncoding, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncoding) -> Bool { - if lhs.binaryEncoding != rhs.binaryEncoding {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".BinaryEncodingError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -30001,38 +29889,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.jsonEncoder } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONEncoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".JSONEncoding" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "JSONEncoding"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.jsonencoding) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.jsonencoding != 0 { - try visitor.visitSingularInt32Field(value: self.jsonencoding, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONEncoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONEncoding) -> Bool { - if lhs.jsonencoding != rhs.jsonencoding {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONEncodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".JSONEncodingError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -40689,38 +40545,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unpackTo: S } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unregisteredTypeURL: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unregisteredTypeURL" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "unregisteredTypeURL"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.unregisteredTypeURL) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.unregisteredTypeURL != 0 { - try visitor.visitSingularInt32Field(value: self.unregisteredTypeURL, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unregisteredTypeURL, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unregisteredTypeURL) -> Bool { - if lhs.unregisteredTypeURL != rhs.unregisteredTypeURL {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.UnsafeBufferPointer: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".UnsafeBufferPointer" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ diff --git a/Tests/SwiftProtobufTests/generated_swift_names_enum_cases.pb.swift b/Tests/SwiftProtobufTests/generated_swift_names_enum_cases.pb.swift index a05747e62..30b0ebb4a 100644 --- a/Tests/SwiftProtobufTests/generated_swift_names_enum_cases.pb.swift +++ b/Tests/SwiftProtobufTests/generated_swift_names_enum_cases.pb.swift @@ -38,989 +38,985 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, case anyExtensionField // = 9 case anyMessageExtension // = 10 case anyMessageStorage // = 11 - case anyTypeUrlnotRegistered // = 12 - case anyUnpackError // = 13 - case api // = 14 - case appended // = 15 - case appendUintHex // = 16 - case appendUnknown // = 17 - case areAllInitialized // = 18 - case array // = 19 - case arrayDepth // = 20 - case arrayLiteral // = 21 - case arraySeparator // = 22 - case `as` // = 23 - case asciiOpenCurlyBracket // = 24 - case asciiZero // = 25 - case async // = 26 - case asyncIterator // = 27 - case asyncIteratorProtocol // = 28 - case asyncMessageSequence // = 29 - case available // = 30 - case b // = 31 - case base // = 32 - case base64Values // = 33 - case baseAddress // = 34 - case baseType // = 35 - case begin // = 36 - case binary // = 37 - case binaryDecoder // = 38 - case binaryDecoding // = 39 - case binaryDecodingError // = 40 - case binaryDecodingOptions // = 41 - case binaryDelimited // = 42 - case binaryEncoder // = 43 - case binaryEncoding // = 44 - case binaryEncodingError // = 45 - case binaryEncodingMessageSetSizeVisitor // = 46 - case binaryEncodingMessageSetVisitor // = 47 - case binaryEncodingOptions // = 48 - case binaryEncodingSizeVisitor // = 49 - case binaryEncodingVisitor // = 50 - case binaryOptions // = 51 - case binaryProtobufDelimitedMessages // = 52 - case binaryStreamDecoding // = 53 - case binaryStreamDecodingError // = 54 - case bitPattern // = 55 - case body // = 56 - case bool // = 57 - case booleanLiteral // = 58 - case booleanLiteralType // = 59 - case boolValue // = 60 - case buffer // = 61 - case bytes // = 62 - case bytesInGroup // = 63 - case bytesNeeded // = 64 - case bytesRead // = 65 - case bytesValue // = 66 - case c // = 67 - case capitalizeNext // = 68 - case cardinality // = 69 - case caseIterable // = 70 - case ccEnableArenas // = 71 - case ccGenericServices // = 72 - case character // = 73 - case chars // = 74 - case chunk // = 75 - case `class` // = 76 - case clearAggregateValue // = 77 - case clearAllowAlias // = 78 - case clearBegin // = 79 - case clearCcEnableArenas // = 80 - case clearCcGenericServices // = 81 - case clearClientStreaming // = 82 - case clearCsharpNamespace // = 83 - case clearCtype // = 84 - case clearDebugRedact // = 85 - case clearDefaultValue // = 86 - case clearDeprecated // = 87 - case clearDeprecatedLegacyJsonFieldConflicts // = 88 - case clearDeprecationWarning // = 89 - case clearDoubleValue // = 90 - case clearEdition // = 91 - case clearEditionDeprecated // = 92 - case clearEditionIntroduced // = 93 - case clearEditionRemoved // = 94 - case clearEnd // = 95 - case clearEnumType // = 96 - case clearExtendee // = 97 - case clearExtensionValue // = 98 - case clearFeatures // = 99 - case clearFeatureSupport // = 100 - case clearFieldPresence // = 101 - case clearFixedFeatures // = 102 - case clearFullName // = 103 - case clearGoPackage // = 104 - case clearIdempotencyLevel // = 105 - case clearIdentifierValue // = 106 - case clearInputType // = 107 - case clearIsExtension // = 108 - case clearJavaGenerateEqualsAndHash // = 109 - case clearJavaGenericServices // = 110 - case clearJavaMultipleFiles // = 111 - case clearJavaOuterClassname // = 112 - case clearJavaPackage // = 113 - case clearJavaStringCheckUtf8 // = 114 - case clearJsonFormat // = 115 - case clearJsonName // = 116 - case clearJstype // = 117 - case clearLabel // = 118 - case clearLazy // = 119 - case clearLeadingComments // = 120 - case clearMapEntry // = 121 - case clearMaximumEdition // = 122 - case clearMessageEncoding // = 123 - case clearMessageSetWireFormat // = 124 - case clearMinimumEdition // = 125 - case clearName // = 126 - case clearNamePart // = 127 - case clearNegativeIntValue // = 128 - case clearNoStandardDescriptorAccessor // = 129 - case clearNumber // = 130 - case clearObjcClassPrefix // = 131 - case clearOneofIndex // = 132 - case clearOptimizeFor // = 133 - case clearOptions // = 134 - case clearOutputType // = 135 - case clearOverridableFeatures // = 136 - case clearPackage // = 137 - case clearPacked // = 138 - case clearPhpClassPrefix // = 139 - case clearPhpMetadataNamespace // = 140 - case clearPhpNamespace // = 141 - case clearPositiveIntValue // = 142 - case clearProto3Optional // = 143 - case clearPyGenericServices // = 144 - case clearRepeated // = 145 - case clearRepeatedFieldEncoding // = 146 - case clearReserved // = 147 - case clearRetention // = 148 - case clearRubyPackage // = 149 - case clearSemantic // = 150 - case clearServerStreaming // = 151 - case clearSourceCodeInfo // = 152 - case clearSourceContext // = 153 - case clearSourceFile // = 154 - case clearStart // = 155 - case clearStringValue // = 156 - case clearSwiftPrefix // = 157 - case clearSyntax // = 158 - case clearTrailingComments // = 159 - case clearType // = 160 - case clearTypeName // = 161 - case clearUnverifiedLazy // = 162 - case clearUtf8Validation // = 163 - case clearValue // = 164 - case clearVerification // = 165 - case clearWeak // = 166 - case clientStreaming // = 167 - case code // = 168 - case codePoint // = 169 - case codeUnits // = 170 - case collection // = 171 - case com // = 172 - case comma // = 173 - case consumedBytes // = 174 - case contentsOf // = 175 - case copy // = 176 - case count // = 177 - case countVarintsInBuffer // = 178 - case csharpNamespace // = 179 - case ctype // = 180 - case customCodable // = 181 - case customDebugStringConvertible // = 182 - case customStringConvertible // = 183 - case d // = 184 - case data // = 185 - case dataResult // = 186 - case date // = 187 - case daySec // = 188 - case daysSinceEpoch // = 189 - case debugDescription_ // = 190 - case debugRedact // = 191 - case declaration // = 192 - case decoded // = 193 - case decodedFromJsonnull // = 194 - case decodeExtensionField // = 195 - case decodeExtensionFieldsAsMessageSet // = 196 - case decodeJson // = 197 - case decodeMapField // = 198 - case decodeMessage // = 199 - case decoder // = 200 - case decodeRepeated // = 201 - case decodeRepeatedBoolField // = 202 - case decodeRepeatedBytesField // = 203 - case decodeRepeatedDoubleField // = 204 - case decodeRepeatedEnumField // = 205 - case decodeRepeatedFixed32Field // = 206 - case decodeRepeatedFixed64Field // = 207 - case decodeRepeatedFloatField // = 208 - case decodeRepeatedGroupField // = 209 - case decodeRepeatedInt32Field // = 210 - case decodeRepeatedInt64Field // = 211 - case decodeRepeatedMessageField // = 212 - case decodeRepeatedSfixed32Field // = 213 - case decodeRepeatedSfixed64Field // = 214 - case decodeRepeatedSint32Field // = 215 - case decodeRepeatedSint64Field // = 216 - case decodeRepeatedStringField // = 217 - case decodeRepeatedUint32Field // = 218 - case decodeRepeatedUint64Field // = 219 - case decodeSingular // = 220 - case decodeSingularBoolField // = 221 - case decodeSingularBytesField // = 222 - case decodeSingularDoubleField // = 223 - case decodeSingularEnumField // = 224 - case decodeSingularFixed32Field // = 225 - case decodeSingularFixed64Field // = 226 - case decodeSingularFloatField // = 227 - case decodeSingularGroupField // = 228 - case decodeSingularInt32Field // = 229 - case decodeSingularInt64Field // = 230 - case decodeSingularMessageField // = 231 - case decodeSingularSfixed32Field // = 232 - case decodeSingularSfixed64Field // = 233 - case decodeSingularSint32Field // = 234 - case decodeSingularSint64Field // = 235 - case decodeSingularStringField // = 236 - case decodeSingularUint32Field // = 237 - case decodeSingularUint64Field // = 238 - case decodeTextFormat // = 239 - case defaultAnyTypeUrlprefix // = 240 - case defaults // = 241 - case defaultValue // = 242 - case dependency // = 243 - case deprecated // = 244 - case deprecatedLegacyJsonFieldConflicts // = 245 - case deprecationWarning // = 246 - case description_ // = 247 - case descriptorProto // = 248 - case dictionary // = 249 - case dictionaryLiteral // = 250 - case digit // = 251 - case digit0 // = 252 - case digit1 // = 253 - case digitCount // = 254 - case digits // = 255 - case digitValue // = 256 - case discardableResult // = 257 - case discardUnknownFields // = 258 - case double // = 259 - case doubleValue // = 260 - case duration // = 261 - case e // = 262 - case edition // = 263 - case editionDefault // = 264 - case editionDefaults // = 265 - case editionDeprecated // = 266 - case editionIntroduced // = 267 - case editionRemoved // = 268 - case element // = 269 - case elements // = 270 - case emitExtensionFieldName // = 271 - case emitFieldName // = 272 - case emitFieldNumber // = 273 - case empty // = 274 - case encodeAsBytes // = 275 - case encoded // = 276 - case encodedJsonstring // = 277 - case encodedSize // = 278 - case encodeField // = 279 - case encoder // = 280 - case end // = 281 - case endArray // = 282 - case endMessageField // = 283 - case endObject // = 284 - case endRegularField // = 285 - case `enum` // = 286 - case enumDescriptorProto // = 287 - case enumOptions // = 288 - case enumReservedRange // = 289 - case enumType // = 290 - case enumvalue // = 291 - case enumValueDescriptorProto // = 292 - case enumValueOptions // = 293 - case equatable // = 294 - case error // = 295 - case expressibleByArrayLiteral // = 296 - case expressibleByDictionaryLiteral // = 297 - case ext // = 298 - case extDecoder // = 299 - case extendedGraphemeClusterLiteral // = 300 - case extendedGraphemeClusterLiteralType // = 301 - case extendee // = 302 - case extensibleMessage // = 303 - case `extension` // = 304 - case extensionField // = 305 - case extensionFieldNumber // = 306 - case extensionFieldValueSet // = 307 - case extensionMap // = 308 - case extensionRange // = 309 - case extensionRangeOptions // = 310 - case extensions // = 311 - case extras // = 312 - case f // = 313 - case `false` // = 314 - case features // = 315 - case featureSet // = 316 - case featureSetDefaults // = 317 - case featureSetEditionDefault // = 318 - case featureSupport // = 319 - case field // = 320 - case fieldData // = 321 - case fieldDescriptorProto // = 322 - case fieldMask // = 323 - case fieldName // = 324 - case fieldNameCount // = 325 - case fieldNum // = 326 - case fieldNumber // = 327 - case fieldNumberForProto // = 328 - case fieldOptions // = 329 - case fieldPresence // = 330 - case fields // = 331 - case fieldSize // = 332 - case fieldTag // = 333 - case fieldType // = 334 - case file // = 335 - case fileDescriptorProto // = 336 - case fileDescriptorSet // = 337 - case fileName // = 338 - case fileOptions // = 339 - case filter // = 340 - case final // = 341 - case finiteOnly // = 342 - case first // = 343 - case firstItem // = 344 - case fixedFeatures // = 345 - case float // = 346 - case floatLiteral // = 347 - case floatLiteralType // = 348 - case floatValue // = 349 - case forMessageName // = 350 - case formUnion // = 351 - case forReadingFrom // = 352 - case forTypeURL // = 353 - case forwardParser // = 354 - case forWritingInto // = 355 - case from // = 356 - case fromAscii2 // = 357 - case fromAscii4 // = 358 - case fromByteOffset // = 359 - case fromHexDigit // = 360 - case fullName // = 361 - case `func` // = 362 - case function // = 363 - case g // = 364 - case generatedCodeInfo // = 365 - case get // = 366 - case getExtensionValue // = 367 - case googleapis // = 368 - case googleProtobufAny // = 369 - case googleProtobufApi // = 370 - case googleProtobufBoolValue // = 371 - case googleProtobufBytesValue // = 372 - case googleProtobufDescriptorProto // = 373 - case googleProtobufDoubleValue // = 374 - case googleProtobufDuration // = 375 - case googleProtobufEdition // = 376 - case googleProtobufEmpty // = 377 - case googleProtobufEnum // = 378 - case googleProtobufEnumDescriptorProto // = 379 - case googleProtobufEnumOptions // = 380 - case googleProtobufEnumValue // = 381 - case googleProtobufEnumValueDescriptorProto // = 382 - case googleProtobufEnumValueOptions // = 383 - case googleProtobufExtensionRangeOptions // = 384 - case googleProtobufFeatureSet // = 385 - case googleProtobufFeatureSetDefaults // = 386 - case googleProtobufField // = 387 - case googleProtobufFieldDescriptorProto // = 388 - case googleProtobufFieldMask // = 389 - case googleProtobufFieldOptions // = 390 - case googleProtobufFileDescriptorProto // = 391 - case googleProtobufFileDescriptorSet // = 392 - case googleProtobufFileOptions // = 393 - case googleProtobufFloatValue // = 394 - case googleProtobufGeneratedCodeInfo // = 395 - case googleProtobufInt32Value // = 396 - case googleProtobufInt64Value // = 397 - case googleProtobufListValue // = 398 - case googleProtobufMessageOptions // = 399 - case googleProtobufMethod // = 400 - case googleProtobufMethodDescriptorProto // = 401 - case googleProtobufMethodOptions // = 402 - case googleProtobufMixin // = 403 - case googleProtobufNullValue // = 404 - case googleProtobufOneofDescriptorProto // = 405 - case googleProtobufOneofOptions // = 406 - case googleProtobufOption // = 407 - case googleProtobufServiceDescriptorProto // = 408 - case googleProtobufServiceOptions // = 409 - case googleProtobufSourceCodeInfo // = 410 - case googleProtobufSourceContext // = 411 - case googleProtobufStringValue // = 412 - case googleProtobufStruct // = 413 - case googleProtobufSyntax // = 414 - case googleProtobufTimestamp // = 415 - case googleProtobufType // = 416 - case googleProtobufUint32Value // = 417 - case googleProtobufUint64Value // = 418 - case googleProtobufUninterpretedOption // = 419 - case googleProtobufValue // = 420 - case goPackage // = 421 - case group // = 422 - case groupFieldNumberStack // = 423 - case groupSize // = 424 - case hadOneofValue // = 425 - case handleConflictingOneOf // = 426 - case hasAggregateValue // = 427 - case hasAllowAlias // = 428 - case hasBegin // = 429 - case hasCcEnableArenas // = 430 - case hasCcGenericServices // = 431 - case hasClientStreaming // = 432 - case hasCsharpNamespace // = 433 - case hasCtype // = 434 - case hasDebugRedact // = 435 - case hasDefaultValue // = 436 - case hasDeprecated // = 437 - case hasDeprecatedLegacyJsonFieldConflicts // = 438 - case hasDeprecationWarning // = 439 - case hasDoubleValue // = 440 - case hasEdition // = 441 - case hasEditionDeprecated // = 442 - case hasEditionIntroduced // = 443 - case hasEditionRemoved // = 444 - case hasEnd // = 445 - case hasEnumType // = 446 - case hasExtendee // = 447 - case hasExtensionValue // = 448 - case hasFeatures // = 449 - case hasFeatureSupport // = 450 - case hasFieldPresence // = 451 - case hasFixedFeatures // = 452 - case hasFullName // = 453 - case hasGoPackage // = 454 - case hash // = 455 - case hashable // = 456 - case hasher // = 457 - case hashVisitor // = 458 - case hasIdempotencyLevel // = 459 - case hasIdentifierValue // = 460 - case hasInputType // = 461 - case hasIsExtension // = 462 - case hasJavaGenerateEqualsAndHash // = 463 - case hasJavaGenericServices // = 464 - case hasJavaMultipleFiles // = 465 - case hasJavaOuterClassname // = 466 - case hasJavaPackage // = 467 - case hasJavaStringCheckUtf8 // = 468 - case hasJsonFormat // = 469 - case hasJsonName // = 470 - case hasJstype // = 471 - case hasLabel // = 472 - case hasLazy // = 473 - case hasLeadingComments // = 474 - case hasMapEntry // = 475 - case hasMaximumEdition // = 476 - case hasMessageEncoding // = 477 - case hasMessageSetWireFormat // = 478 - case hasMinimumEdition // = 479 - case hasName // = 480 - case hasNamePart // = 481 - case hasNegativeIntValue // = 482 - case hasNoStandardDescriptorAccessor // = 483 - case hasNumber // = 484 - case hasObjcClassPrefix // = 485 - case hasOneofIndex // = 486 - case hasOptimizeFor // = 487 - case hasOptions // = 488 - case hasOutputType // = 489 - case hasOverridableFeatures // = 490 - case hasPackage // = 491 - case hasPacked // = 492 - case hasPhpClassPrefix // = 493 - case hasPhpMetadataNamespace // = 494 - case hasPhpNamespace // = 495 - case hasPositiveIntValue // = 496 - case hasProto3Optional // = 497 - case hasPyGenericServices // = 498 - case hasRepeated // = 499 - case hasRepeatedFieldEncoding // = 500 - case hasReserved // = 501 - case hasRetention // = 502 - case hasRubyPackage // = 503 - case hasSemantic // = 504 - case hasServerStreaming // = 505 - case hasSourceCodeInfo // = 506 - case hasSourceContext // = 507 - case hasSourceFile // = 508 - case hasStart // = 509 - case hasStringValue // = 510 - case hasSwiftPrefix // = 511 - case hasSyntax // = 512 - case hasTrailingComments // = 513 - case hasType // = 514 - case hasTypeName // = 515 - case hasUnverifiedLazy // = 516 - case hasUtf8Validation // = 517 - case hasValue // = 518 - case hasVerification // = 519 - case hasWeak // = 520 - case hour // = 521 - case i // = 522 - case idempotencyLevel // = 523 - case identifierValue // = 524 - case `if` // = 525 - case ignoreUnknownExtensionFields // = 526 - case ignoreUnknownFields // = 527 - case index // = 528 - case init_ // = 529 - case `inout` // = 530 - case inputType // = 531 - case insert // = 532 - case int // = 533 - case int32 // = 534 - case int32Value // = 535 - case int64 // = 536 - case int64Value // = 537 - case int8 // = 538 - case integerLiteral // = 539 - case integerLiteralType // = 540 - case intern // = 541 - case `internal` // = 542 - case internalState // = 543 - case into // = 544 - case ints // = 545 - case isA // = 546 - case isEqual // = 547 - case isEqualTo // = 548 - case isExtension // = 549 - case isInitialized // = 550 - case isNegative // = 551 - case itemTagsEncodedSize // = 552 - case iterator // = 553 - case javaGenerateEqualsAndHash // = 554 - case javaGenericServices // = 555 - case javaMultipleFiles // = 556 - case javaOuterClassname // = 557 - case javaPackage // = 558 - case javaStringCheckUtf8 // = 559 - case jsondecoder // = 560 - case jsondecodingError // = 561 - case jsondecodingOptions // = 562 - case jsonEncoder // = 563 - case jsonencoding // = 564 - case jsonencodingError // = 565 - case jsonencodingOptions // = 566 - case jsonencodingVisitor // = 567 - case jsonFormat // = 568 - case jsonmapEncodingVisitor // = 569 - case jsonName // = 570 - case jsonPath // = 571 - case jsonPaths // = 572 - case jsonscanner // = 573 - case jsonString // = 574 - case jsonText // = 575 - case jsonUtf8Bytes // = 576 - case jsonUtf8Data // = 577 - case jstype // = 578 - case k // = 579 - case kChunkSize // = 580 - case key // = 581 - case keyField // = 582 - case keyFieldOpt // = 583 - case keyType // = 584 - case kind // = 585 - case l // = 586 - case label // = 587 - case lazy // = 588 - case leadingComments // = 589 - case leadingDetachedComments // = 590 - case length // = 591 - case lessThan // = 592 - case `let` // = 593 - case lhs // = 594 - case line // = 595 - case list // = 596 - case listOfMessages // = 597 - case listValue // = 598 - case littleEndian // = 599 - case load // = 600 - case localHasher // = 601 - case location // = 602 - case m // = 603 - case major // = 604 - case makeAsyncIterator // = 605 - case makeIterator // = 606 - case malformedLength // = 607 - case mapEntry // = 608 - case mapKeyType // = 609 - case mapToMessages // = 610 - case mapValueType // = 611 - case mapVisitor // = 612 - case maximumEdition // = 613 - case mdayStart // = 614 - case merge // = 615 - case message // = 616 - case messageDepthLimit // = 617 - case messageEncoding // = 618 - case messageExtension // = 619 - case messageImplementationBase // = 620 - case messageOptions // = 621 - case messageSet // = 622 - case messageSetWireFormat // = 623 - case messageSize // = 624 - case messageType // = 625 - case method // = 626 - case methodDescriptorProto // = 627 - case methodOptions // = 628 - case methods // = 629 - case min // = 630 - case minimumEdition // = 631 - case minor // = 632 - case mixin // = 633 - case mixins // = 634 - case modifier // = 635 - case modify // = 636 - case month // = 637 - case msgExtension // = 638 - case mutating // = 639 - case n // = 640 - case name // = 641 - case nameDescription // = 642 - case nameMap // = 643 - case namePart // = 644 - case names // = 645 - case nanos // = 646 - case negativeIntValue // = 647 - case nestedType // = 648 - case newL // = 649 - case newList // = 650 - case newValue // = 651 - case next // = 652 - case nextByte // = 653 - case nextFieldNumber // = 654 - case nextVarInt // = 655 - case `nil` // = 656 - case nilLiteral // = 657 - case noBytesAvailable // = 658 - case noStandardDescriptorAccessor // = 659 - case nullValue // = 660 - case number // = 661 - case numberValue // = 662 - case objcClassPrefix // = 663 - case of // = 664 - case oneofDecl // = 665 - case oneofDescriptorProto // = 666 - case oneofIndex // = 667 - case oneofOptions // = 668 - case oneofs // = 669 - case oneOfKind // = 670 - case optimizeFor // = 671 - case optimizeMode // = 672 - case option // = 673 - case optionalEnumExtensionField // = 674 - case optionalExtensionField // = 675 - case optionalGroupExtensionField // = 676 - case optionalMessageExtensionField // = 677 - case optionRetention // = 678 - case options // = 679 - case optionTargetType // = 680 - case other // = 681 - case others // = 682 - case out // = 683 - case outputType // = 684 - case overridableFeatures // = 685 - case p // = 686 - case package // = 687 - case packed // = 688 - case packedEnumExtensionField // = 689 - case packedExtensionField // = 690 - case padding // = 691 - case parent // = 692 - case parse // = 693 - case path // = 694 - case paths // = 695 - case payload // = 696 - case payloadSize // = 697 - case phpClassPrefix // = 698 - case phpMetadataNamespace // = 699 - case phpNamespace // = 700 - case pos // = 701 - case positiveIntValue // = 702 - case prefix // = 703 - case preserveProtoFieldNames // = 704 - case preTraverse // = 705 - case printUnknownFields // = 706 - case proto2 // = 707 - case proto3DefaultValue // = 708 - case proto3Optional // = 709 - case protobufApiversionCheck // = 710 - case protobufApiversion3 // = 711 - case protobufBool // = 712 - case protobufBytes // = 713 - case protobufDouble // = 714 - case protobufEnumMap // = 715 - case protobufExtension // = 716 - case protobufFixed32 // = 717 - case protobufFixed64 // = 718 - case protobufFloat // = 719 - case protobufInt32 // = 720 - case protobufInt64 // = 721 - case protobufMap // = 722 - case protobufMessageMap // = 723 - case protobufSfixed32 // = 724 - case protobufSfixed64 // = 725 - case protobufSint32 // = 726 - case protobufSint64 // = 727 - case protobufString // = 728 - case protobufUint32 // = 729 - case protobufUint64 // = 730 - case protobufExtensionFieldValues // = 731 - case protobufFieldNumber // = 732 - case protobufGeneratedIsEqualTo // = 733 - case protobufNameMap // = 734 - case protobufNewField // = 735 - case protobufPackage // = 736 - case `protocol` // = 737 - case protoFieldName // = 738 - case protoMessageName // = 739 - case protoNameProviding // = 740 - case protoPaths // = 741 - case `public` // = 742 - case publicDependency // = 743 - case putBoolValue // = 744 - case putBytesValue // = 745 - case putDoubleValue // = 746 - case putEnumValue // = 747 - case putFixedUint32 // = 748 - case putFixedUint64 // = 749 - case putFloatValue // = 750 - case putInt64 // = 751 - case putStringValue // = 752 - case putUint64 // = 753 - case putUint64Hex // = 754 - case putVarInt // = 755 - case putZigZagVarInt // = 756 - case pyGenericServices // = 757 - case r // = 758 - case rawChars // = 759 - case rawRepresentable // = 760 - case rawValue_ // = 761 - case read4HexDigits // = 762 - case readBytes // = 763 - case register // = 764 - case repeated // = 765 - case repeatedEnumExtensionField // = 766 - case repeatedExtensionField // = 767 - case repeatedFieldEncoding // = 768 - case repeatedGroupExtensionField // = 769 - case repeatedMessageExtensionField // = 770 - case repeating // = 771 - case requestStreaming // = 772 - case requestTypeURL // = 773 - case requiredSize // = 774 - case responseStreaming // = 775 - case responseTypeURL // = 776 - case result // = 777 - case retention // = 778 - case `rethrows` // = 779 - case `return` // = 780 - case returnType // = 781 - case revision // = 782 - case rhs // = 783 - case root // = 784 - case rubyPackage // = 785 - case s // = 786 - case sawBackslash // = 787 - case sawSection4Characters // = 788 - case sawSection5Characters // = 789 - case scan // = 790 - case scanner // = 791 - case seconds // = 792 - case self_ // = 793 - case semantic // = 794 - case sendable // = 795 - case separator // = 796 - case serialize // = 797 - case serializedBytes // = 798 - case serializedData // = 799 - case serializedSize // = 800 - case serverStreaming // = 801 - case service // = 802 - case serviceDescriptorProto // = 803 - case serviceOptions // = 804 - case set // = 805 - case setExtensionValue // = 806 - case shift // = 807 - case simpleExtensionMap // = 808 - case size // = 809 - case sizer // = 810 - case source // = 811 - case sourceCodeInfo // = 812 - case sourceContext // = 813 - case sourceEncoding // = 814 - case sourceFile // = 815 - case sourceLocation // = 816 - case span // = 817 - case split // = 818 - case start // = 819 - case startArray // = 820 - case startArrayObject // = 821 - case startField // = 822 - case startIndex // = 823 - case startMessageField // = 824 - case startObject // = 825 - case startRegularField // = 826 - case state // = 827 - case `static` // = 828 - case staticString // = 829 - case storage // = 830 - case string // = 831 - case stringLiteral // = 832 - case stringLiteralType // = 833 - case stringResult // = 834 - case stringValue // = 835 - case `struct` // = 836 - case structValue // = 837 - case subDecoder // = 838 - case `subscript` // = 839 - case subVisitor // = 840 - case swift // = 841 - case swiftPrefix // = 842 - case swiftProtobufContiguousBytes // = 843 - case swiftProtobufError // = 844 - case syntax // = 845 - case t // = 846 - case tag // = 847 - case targets // = 848 - case terminator // = 849 - case testDecoder // = 850 - case text // = 851 - case textDecoder // = 852 - case textFormatDecoder // = 853 - case textFormatDecodingError // = 854 - case textFormatDecodingOptions // = 855 - case textFormatEncodingOptions // = 856 - case textFormatEncodingVisitor // = 857 - case textFormatString // = 858 - case throwOrIgnore // = 859 - case `throws` // = 860 - case timeInterval // = 861 - case timeIntervalSince1970 // = 862 - case timeIntervalSinceReferenceDate // = 863 - case timestamp // = 864 - case tooLarge // = 865 - case total // = 866 - case totalArrayDepth // = 867 - case totalSize // = 868 - case trailingComments // = 869 - case traverse // = 870 - case `true` // = 871 - case `try` // = 872 - case type // = 873 - case `typealias` // = 874 - case typeEnum // = 875 - case typeName // = 876 - case typePrefix // = 877 - case typeStart // = 878 - case typeUnknown // = 879 - case typeURL // = 880 - case uint32 // = 881 - case uint32Value // = 882 - case uint64 // = 883 - case uint64Value // = 884 - case uint8 // = 885 - case unchecked // = 886 - case unicodeScalarLiteral // = 887 - case unicodeScalarLiteralType // = 888 - case unicodeScalars // = 889 - case unicodeScalarView // = 890 - case uninterpretedOption // = 891 - case union // = 892 - case uniqueStorage // = 893 - case unknown // = 894 - case unknownFields // = 895 - case unknownStorage // = 896 - case unpackTo // = 897 - case unregisteredTypeURL // = 898 - case unsafeBufferPointer // = 899 - case unsafeMutablePointer // = 900 - case unsafeMutableRawBufferPointer // = 901 - case unsafeRawBufferPointer // = 902 - case unsafeRawPointer // = 903 - case unverifiedLazy // = 904 - case updatedOptions // = 905 - case url // = 906 - case useDeterministicOrdering // = 907 - case utf8 // = 908 - case utf8Ptr // = 909 - case utf8ToDouble // = 910 - case utf8Validation // = 911 - case utf8View // = 912 - case v // = 913 - case value // = 914 - case valueField // = 915 - case values // = 916 - case valueType // = 917 - case `var` // = 918 - case verification // = 919 - case verificationState // = 920 - case version // = 921 - case versionString // = 922 - case visitExtensionFields // = 923 - case visitExtensionFieldsAsMessageSet // = 924 - case visitMapField // = 925 - case visitor // = 926 - case visitPacked // = 927 - case visitPackedBoolField // = 928 - case visitPackedDoubleField // = 929 - case visitPackedEnumField // = 930 - case visitPackedFixed32Field // = 931 - case visitPackedFixed64Field // = 932 - case visitPackedFloatField // = 933 - case visitPackedInt32Field // = 934 - case visitPackedInt64Field // = 935 - case visitPackedSfixed32Field // = 936 - case visitPackedSfixed64Field // = 937 - case visitPackedSint32Field // = 938 - case visitPackedSint64Field // = 939 - case visitPackedUint32Field // = 940 - case visitPackedUint64Field // = 941 - case visitRepeated // = 942 - case visitRepeatedBoolField // = 943 - case visitRepeatedBytesField // = 944 - case visitRepeatedDoubleField // = 945 - case visitRepeatedEnumField // = 946 - case visitRepeatedFixed32Field // = 947 - case visitRepeatedFixed64Field // = 948 - case visitRepeatedFloatField // = 949 - case visitRepeatedGroupField // = 950 - case visitRepeatedInt32Field // = 951 - case visitRepeatedInt64Field // = 952 - case visitRepeatedMessageField // = 953 - case visitRepeatedSfixed32Field // = 954 - case visitRepeatedSfixed64Field // = 955 - case visitRepeatedSint32Field // = 956 - case visitRepeatedSint64Field // = 957 - case visitRepeatedStringField // = 958 - case visitRepeatedUint32Field // = 959 - case visitRepeatedUint64Field // = 960 - case visitSingular // = 961 - case visitSingularBoolField // = 962 - case visitSingularBytesField // = 963 - case visitSingularDoubleField // = 964 - case visitSingularEnumField // = 965 - case visitSingularFixed32Field // = 966 - case visitSingularFixed64Field // = 967 - case visitSingularFloatField // = 968 - case visitSingularGroupField // = 969 - case visitSingularInt32Field // = 970 - case visitSingularInt64Field // = 971 - case visitSingularMessageField // = 972 - case visitSingularSfixed32Field // = 973 - case visitSingularSfixed64Field // = 974 - case visitSingularSint32Field // = 975 - case visitSingularSint64Field // = 976 - case visitSingularStringField // = 977 - case visitSingularUint32Field // = 978 - case visitSingularUint64Field // = 979 - case visitUnknown // = 980 - case wasDecoded // = 981 - case weak // = 982 - case weakDependency // = 983 - case `where` // = 984 - case wireFormat // = 985 - case with // = 986 - case withUnsafeBytes // = 987 - case withUnsafeMutableBytes // = 988 - case work // = 989 - case wrapped // = 990 - case wrappedType // = 991 - case wrappedValue // = 992 - case written // = 993 - case yday // = 994 + case anyUnpackError // = 12 + case api // = 13 + case appended // = 14 + case appendUintHex // = 15 + case appendUnknown // = 16 + case areAllInitialized // = 17 + case array // = 18 + case arrayDepth // = 19 + case arrayLiteral // = 20 + case arraySeparator // = 21 + case `as` // = 22 + case asciiOpenCurlyBracket // = 23 + case asciiZero // = 24 + case async // = 25 + case asyncIterator // = 26 + case asyncIteratorProtocol // = 27 + case asyncMessageSequence // = 28 + case available // = 29 + case b // = 30 + case base // = 31 + case base64Values // = 32 + case baseAddress // = 33 + case baseType // = 34 + case begin // = 35 + case binary // = 36 + case binaryDecoder // = 37 + case binaryDecoding // = 38 + case binaryDecodingError // = 39 + case binaryDecodingOptions // = 40 + case binaryDelimited // = 41 + case binaryEncoder // = 42 + case binaryEncodingError // = 43 + case binaryEncodingMessageSetSizeVisitor // = 44 + case binaryEncodingMessageSetVisitor // = 45 + case binaryEncodingOptions // = 46 + case binaryEncodingSizeVisitor // = 47 + case binaryEncodingVisitor // = 48 + case binaryOptions // = 49 + case binaryProtobufDelimitedMessages // = 50 + case binaryStreamDecoding // = 51 + case binaryStreamDecodingError // = 52 + case bitPattern // = 53 + case body // = 54 + case bool // = 55 + case booleanLiteral // = 56 + case booleanLiteralType // = 57 + case boolValue // = 58 + case buffer // = 59 + case bytes // = 60 + case bytesInGroup // = 61 + case bytesNeeded // = 62 + case bytesRead // = 63 + case bytesValue // = 64 + case c // = 65 + case capitalizeNext // = 66 + case cardinality // = 67 + case caseIterable // = 68 + case ccEnableArenas // = 69 + case ccGenericServices // = 70 + case character // = 71 + case chars // = 72 + case chunk // = 73 + case `class` // = 74 + case clearAggregateValue // = 75 + case clearAllowAlias // = 76 + case clearBegin // = 77 + case clearCcEnableArenas // = 78 + case clearCcGenericServices // = 79 + case clearClientStreaming // = 80 + case clearCsharpNamespace // = 81 + case clearCtype // = 82 + case clearDebugRedact // = 83 + case clearDefaultValue // = 84 + case clearDeprecated // = 85 + case clearDeprecatedLegacyJsonFieldConflicts // = 86 + case clearDeprecationWarning // = 87 + case clearDoubleValue // = 88 + case clearEdition // = 89 + case clearEditionDeprecated // = 90 + case clearEditionIntroduced // = 91 + case clearEditionRemoved // = 92 + case clearEnd // = 93 + case clearEnumType // = 94 + case clearExtendee // = 95 + case clearExtensionValue // = 96 + case clearFeatures // = 97 + case clearFeatureSupport // = 98 + case clearFieldPresence // = 99 + case clearFixedFeatures // = 100 + case clearFullName // = 101 + case clearGoPackage // = 102 + case clearIdempotencyLevel // = 103 + case clearIdentifierValue // = 104 + case clearInputType // = 105 + case clearIsExtension // = 106 + case clearJavaGenerateEqualsAndHash // = 107 + case clearJavaGenericServices // = 108 + case clearJavaMultipleFiles // = 109 + case clearJavaOuterClassname // = 110 + case clearJavaPackage // = 111 + case clearJavaStringCheckUtf8 // = 112 + case clearJsonFormat // = 113 + case clearJsonName // = 114 + case clearJstype // = 115 + case clearLabel // = 116 + case clearLazy // = 117 + case clearLeadingComments // = 118 + case clearMapEntry // = 119 + case clearMaximumEdition // = 120 + case clearMessageEncoding // = 121 + case clearMessageSetWireFormat // = 122 + case clearMinimumEdition // = 123 + case clearName // = 124 + case clearNamePart // = 125 + case clearNegativeIntValue // = 126 + case clearNoStandardDescriptorAccessor // = 127 + case clearNumber // = 128 + case clearObjcClassPrefix // = 129 + case clearOneofIndex // = 130 + case clearOptimizeFor // = 131 + case clearOptions // = 132 + case clearOutputType // = 133 + case clearOverridableFeatures // = 134 + case clearPackage // = 135 + case clearPacked // = 136 + case clearPhpClassPrefix // = 137 + case clearPhpMetadataNamespace // = 138 + case clearPhpNamespace // = 139 + case clearPositiveIntValue // = 140 + case clearProto3Optional // = 141 + case clearPyGenericServices // = 142 + case clearRepeated // = 143 + case clearRepeatedFieldEncoding // = 144 + case clearReserved // = 145 + case clearRetention // = 146 + case clearRubyPackage // = 147 + case clearSemantic // = 148 + case clearServerStreaming // = 149 + case clearSourceCodeInfo // = 150 + case clearSourceContext // = 151 + case clearSourceFile // = 152 + case clearStart // = 153 + case clearStringValue // = 154 + case clearSwiftPrefix // = 155 + case clearSyntax // = 156 + case clearTrailingComments // = 157 + case clearType // = 158 + case clearTypeName // = 159 + case clearUnverifiedLazy // = 160 + case clearUtf8Validation // = 161 + case clearValue // = 162 + case clearVerification // = 163 + case clearWeak // = 164 + case clientStreaming // = 165 + case code // = 166 + case codePoint // = 167 + case codeUnits // = 168 + case collection // = 169 + case com // = 170 + case comma // = 171 + case consumedBytes // = 172 + case contentsOf // = 173 + case copy // = 174 + case count // = 175 + case countVarintsInBuffer // = 176 + case csharpNamespace // = 177 + case ctype // = 178 + case customCodable // = 179 + case customDebugStringConvertible // = 180 + case customStringConvertible // = 181 + case d // = 182 + case data // = 183 + case dataResult // = 184 + case date // = 185 + case daySec // = 186 + case daysSinceEpoch // = 187 + case debugDescription_ // = 188 + case debugRedact // = 189 + case declaration // = 190 + case decoded // = 191 + case decodedFromJsonnull // = 192 + case decodeExtensionField // = 193 + case decodeExtensionFieldsAsMessageSet // = 194 + case decodeJson // = 195 + case decodeMapField // = 196 + case decodeMessage // = 197 + case decoder // = 198 + case decodeRepeated // = 199 + case decodeRepeatedBoolField // = 200 + case decodeRepeatedBytesField // = 201 + case decodeRepeatedDoubleField // = 202 + case decodeRepeatedEnumField // = 203 + case decodeRepeatedFixed32Field // = 204 + case decodeRepeatedFixed64Field // = 205 + case decodeRepeatedFloatField // = 206 + case decodeRepeatedGroupField // = 207 + case decodeRepeatedInt32Field // = 208 + case decodeRepeatedInt64Field // = 209 + case decodeRepeatedMessageField // = 210 + case decodeRepeatedSfixed32Field // = 211 + case decodeRepeatedSfixed64Field // = 212 + case decodeRepeatedSint32Field // = 213 + case decodeRepeatedSint64Field // = 214 + case decodeRepeatedStringField // = 215 + case decodeRepeatedUint32Field // = 216 + case decodeRepeatedUint64Field // = 217 + case decodeSingular // = 218 + case decodeSingularBoolField // = 219 + case decodeSingularBytesField // = 220 + case decodeSingularDoubleField // = 221 + case decodeSingularEnumField // = 222 + case decodeSingularFixed32Field // = 223 + case decodeSingularFixed64Field // = 224 + case decodeSingularFloatField // = 225 + case decodeSingularGroupField // = 226 + case decodeSingularInt32Field // = 227 + case decodeSingularInt64Field // = 228 + case decodeSingularMessageField // = 229 + case decodeSingularSfixed32Field // = 230 + case decodeSingularSfixed64Field // = 231 + case decodeSingularSint32Field // = 232 + case decodeSingularSint64Field // = 233 + case decodeSingularStringField // = 234 + case decodeSingularUint32Field // = 235 + case decodeSingularUint64Field // = 236 + case decodeTextFormat // = 237 + case defaultAnyTypeUrlprefix // = 238 + case defaults // = 239 + case defaultValue // = 240 + case dependency // = 241 + case deprecated // = 242 + case deprecatedLegacyJsonFieldConflicts // = 243 + case deprecationWarning // = 244 + case description_ // = 245 + case descriptorProto // = 246 + case dictionary // = 247 + case dictionaryLiteral // = 248 + case digit // = 249 + case digit0 // = 250 + case digit1 // = 251 + case digitCount // = 252 + case digits // = 253 + case digitValue // = 254 + case discardableResult // = 255 + case discardUnknownFields // = 256 + case double // = 257 + case doubleValue // = 258 + case duration // = 259 + case e // = 260 + case edition // = 261 + case editionDefault // = 262 + case editionDefaults // = 263 + case editionDeprecated // = 264 + case editionIntroduced // = 265 + case editionRemoved // = 266 + case element // = 267 + case elements // = 268 + case emitExtensionFieldName // = 269 + case emitFieldName // = 270 + case emitFieldNumber // = 271 + case empty // = 272 + case encodeAsBytes // = 273 + case encoded // = 274 + case encodedJsonstring // = 275 + case encodedSize // = 276 + case encodeField // = 277 + case encoder // = 278 + case end // = 279 + case endArray // = 280 + case endMessageField // = 281 + case endObject // = 282 + case endRegularField // = 283 + case `enum` // = 284 + case enumDescriptorProto // = 285 + case enumOptions // = 286 + case enumReservedRange // = 287 + case enumType // = 288 + case enumvalue // = 289 + case enumValueDescriptorProto // = 290 + case enumValueOptions // = 291 + case equatable // = 292 + case error // = 293 + case expressibleByArrayLiteral // = 294 + case expressibleByDictionaryLiteral // = 295 + case ext // = 296 + case extDecoder // = 297 + case extendedGraphemeClusterLiteral // = 298 + case extendedGraphemeClusterLiteralType // = 299 + case extendee // = 300 + case extensibleMessage // = 301 + case `extension` // = 302 + case extensionField // = 303 + case extensionFieldNumber // = 304 + case extensionFieldValueSet // = 305 + case extensionMap // = 306 + case extensionRange // = 307 + case extensionRangeOptions // = 308 + case extensions // = 309 + case extras // = 310 + case f // = 311 + case `false` // = 312 + case features // = 313 + case featureSet // = 314 + case featureSetDefaults // = 315 + case featureSetEditionDefault // = 316 + case featureSupport // = 317 + case field // = 318 + case fieldData // = 319 + case fieldDescriptorProto // = 320 + case fieldMask // = 321 + case fieldName // = 322 + case fieldNameCount // = 323 + case fieldNum // = 324 + case fieldNumber // = 325 + case fieldNumberForProto // = 326 + case fieldOptions // = 327 + case fieldPresence // = 328 + case fields // = 329 + case fieldSize // = 330 + case fieldTag // = 331 + case fieldType // = 332 + case file // = 333 + case fileDescriptorProto // = 334 + case fileDescriptorSet // = 335 + case fileName // = 336 + case fileOptions // = 337 + case filter // = 338 + case final // = 339 + case finiteOnly // = 340 + case first // = 341 + case firstItem // = 342 + case fixedFeatures // = 343 + case float // = 344 + case floatLiteral // = 345 + case floatLiteralType // = 346 + case floatValue // = 347 + case forMessageName // = 348 + case formUnion // = 349 + case forReadingFrom // = 350 + case forTypeURL // = 351 + case forwardParser // = 352 + case forWritingInto // = 353 + case from // = 354 + case fromAscii2 // = 355 + case fromAscii4 // = 356 + case fromByteOffset // = 357 + case fromHexDigit // = 358 + case fullName // = 359 + case `func` // = 360 + case function // = 361 + case g // = 362 + case generatedCodeInfo // = 363 + case get // = 364 + case getExtensionValue // = 365 + case googleapis // = 366 + case googleProtobufAny // = 367 + case googleProtobufApi // = 368 + case googleProtobufBoolValue // = 369 + case googleProtobufBytesValue // = 370 + case googleProtobufDescriptorProto // = 371 + case googleProtobufDoubleValue // = 372 + case googleProtobufDuration // = 373 + case googleProtobufEdition // = 374 + case googleProtobufEmpty // = 375 + case googleProtobufEnum // = 376 + case googleProtobufEnumDescriptorProto // = 377 + case googleProtobufEnumOptions // = 378 + case googleProtobufEnumValue // = 379 + case googleProtobufEnumValueDescriptorProto // = 380 + case googleProtobufEnumValueOptions // = 381 + case googleProtobufExtensionRangeOptions // = 382 + case googleProtobufFeatureSet // = 383 + case googleProtobufFeatureSetDefaults // = 384 + case googleProtobufField // = 385 + case googleProtobufFieldDescriptorProto // = 386 + case googleProtobufFieldMask // = 387 + case googleProtobufFieldOptions // = 388 + case googleProtobufFileDescriptorProto // = 389 + case googleProtobufFileDescriptorSet // = 390 + case googleProtobufFileOptions // = 391 + case googleProtobufFloatValue // = 392 + case googleProtobufGeneratedCodeInfo // = 393 + case googleProtobufInt32Value // = 394 + case googleProtobufInt64Value // = 395 + case googleProtobufListValue // = 396 + case googleProtobufMessageOptions // = 397 + case googleProtobufMethod // = 398 + case googleProtobufMethodDescriptorProto // = 399 + case googleProtobufMethodOptions // = 400 + case googleProtobufMixin // = 401 + case googleProtobufNullValue // = 402 + case googleProtobufOneofDescriptorProto // = 403 + case googleProtobufOneofOptions // = 404 + case googleProtobufOption // = 405 + case googleProtobufServiceDescriptorProto // = 406 + case googleProtobufServiceOptions // = 407 + case googleProtobufSourceCodeInfo // = 408 + case googleProtobufSourceContext // = 409 + case googleProtobufStringValue // = 410 + case googleProtobufStruct // = 411 + case googleProtobufSyntax // = 412 + case googleProtobufTimestamp // = 413 + case googleProtobufType // = 414 + case googleProtobufUint32Value // = 415 + case googleProtobufUint64Value // = 416 + case googleProtobufUninterpretedOption // = 417 + case googleProtobufValue // = 418 + case goPackage // = 419 + case group // = 420 + case groupFieldNumberStack // = 421 + case groupSize // = 422 + case hadOneofValue // = 423 + case handleConflictingOneOf // = 424 + case hasAggregateValue // = 425 + case hasAllowAlias // = 426 + case hasBegin // = 427 + case hasCcEnableArenas // = 428 + case hasCcGenericServices // = 429 + case hasClientStreaming // = 430 + case hasCsharpNamespace // = 431 + case hasCtype // = 432 + case hasDebugRedact // = 433 + case hasDefaultValue // = 434 + case hasDeprecated // = 435 + case hasDeprecatedLegacyJsonFieldConflicts // = 436 + case hasDeprecationWarning // = 437 + case hasDoubleValue // = 438 + case hasEdition // = 439 + case hasEditionDeprecated // = 440 + case hasEditionIntroduced // = 441 + case hasEditionRemoved // = 442 + case hasEnd // = 443 + case hasEnumType // = 444 + case hasExtendee // = 445 + case hasExtensionValue // = 446 + case hasFeatures // = 447 + case hasFeatureSupport // = 448 + case hasFieldPresence // = 449 + case hasFixedFeatures // = 450 + case hasFullName // = 451 + case hasGoPackage // = 452 + case hash // = 453 + case hashable // = 454 + case hasher // = 455 + case hashVisitor // = 456 + case hasIdempotencyLevel // = 457 + case hasIdentifierValue // = 458 + case hasInputType // = 459 + case hasIsExtension // = 460 + case hasJavaGenerateEqualsAndHash // = 461 + case hasJavaGenericServices // = 462 + case hasJavaMultipleFiles // = 463 + case hasJavaOuterClassname // = 464 + case hasJavaPackage // = 465 + case hasJavaStringCheckUtf8 // = 466 + case hasJsonFormat // = 467 + case hasJsonName // = 468 + case hasJstype // = 469 + case hasLabel // = 470 + case hasLazy // = 471 + case hasLeadingComments // = 472 + case hasMapEntry // = 473 + case hasMaximumEdition // = 474 + case hasMessageEncoding // = 475 + case hasMessageSetWireFormat // = 476 + case hasMinimumEdition // = 477 + case hasName // = 478 + case hasNamePart // = 479 + case hasNegativeIntValue // = 480 + case hasNoStandardDescriptorAccessor // = 481 + case hasNumber // = 482 + case hasObjcClassPrefix // = 483 + case hasOneofIndex // = 484 + case hasOptimizeFor // = 485 + case hasOptions // = 486 + case hasOutputType // = 487 + case hasOverridableFeatures // = 488 + case hasPackage // = 489 + case hasPacked // = 490 + case hasPhpClassPrefix // = 491 + case hasPhpMetadataNamespace // = 492 + case hasPhpNamespace // = 493 + case hasPositiveIntValue // = 494 + case hasProto3Optional // = 495 + case hasPyGenericServices // = 496 + case hasRepeated // = 497 + case hasRepeatedFieldEncoding // = 498 + case hasReserved // = 499 + case hasRetention // = 500 + case hasRubyPackage // = 501 + case hasSemantic // = 502 + case hasServerStreaming // = 503 + case hasSourceCodeInfo // = 504 + case hasSourceContext // = 505 + case hasSourceFile // = 506 + case hasStart // = 507 + case hasStringValue // = 508 + case hasSwiftPrefix // = 509 + case hasSyntax // = 510 + case hasTrailingComments // = 511 + case hasType // = 512 + case hasTypeName // = 513 + case hasUnverifiedLazy // = 514 + case hasUtf8Validation // = 515 + case hasValue // = 516 + case hasVerification // = 517 + case hasWeak // = 518 + case hour // = 519 + case i // = 520 + case idempotencyLevel // = 521 + case identifierValue // = 522 + case `if` // = 523 + case ignoreUnknownExtensionFields // = 524 + case ignoreUnknownFields // = 525 + case index // = 526 + case init_ // = 527 + case `inout` // = 528 + case inputType // = 529 + case insert // = 530 + case int // = 531 + case int32 // = 532 + case int32Value // = 533 + case int64 // = 534 + case int64Value // = 535 + case int8 // = 536 + case integerLiteral // = 537 + case integerLiteralType // = 538 + case intern // = 539 + case `internal` // = 540 + case internalState // = 541 + case into // = 542 + case ints // = 543 + case isA // = 544 + case isEqual // = 545 + case isEqualTo // = 546 + case isExtension // = 547 + case isInitialized // = 548 + case isNegative // = 549 + case itemTagsEncodedSize // = 550 + case iterator // = 551 + case javaGenerateEqualsAndHash // = 552 + case javaGenericServices // = 553 + case javaMultipleFiles // = 554 + case javaOuterClassname // = 555 + case javaPackage // = 556 + case javaStringCheckUtf8 // = 557 + case jsondecoder // = 558 + case jsondecodingError // = 559 + case jsondecodingOptions // = 560 + case jsonEncoder // = 561 + case jsonencodingError // = 562 + case jsonencodingOptions // = 563 + case jsonencodingVisitor // = 564 + case jsonFormat // = 565 + case jsonmapEncodingVisitor // = 566 + case jsonName // = 567 + case jsonPath // = 568 + case jsonPaths // = 569 + case jsonscanner // = 570 + case jsonString // = 571 + case jsonText // = 572 + case jsonUtf8Bytes // = 573 + case jsonUtf8Data // = 574 + case jstype // = 575 + case k // = 576 + case kChunkSize // = 577 + case key // = 578 + case keyField // = 579 + case keyFieldOpt // = 580 + case keyType // = 581 + case kind // = 582 + case l // = 583 + case label // = 584 + case lazy // = 585 + case leadingComments // = 586 + case leadingDetachedComments // = 587 + case length // = 588 + case lessThan // = 589 + case `let` // = 590 + case lhs // = 591 + case line // = 592 + case list // = 593 + case listOfMessages // = 594 + case listValue // = 595 + case littleEndian // = 596 + case load // = 597 + case localHasher // = 598 + case location // = 599 + case m // = 600 + case major // = 601 + case makeAsyncIterator // = 602 + case makeIterator // = 603 + case malformedLength // = 604 + case mapEntry // = 605 + case mapKeyType // = 606 + case mapToMessages // = 607 + case mapValueType // = 608 + case mapVisitor // = 609 + case maximumEdition // = 610 + case mdayStart // = 611 + case merge // = 612 + case message // = 613 + case messageDepthLimit // = 614 + case messageEncoding // = 615 + case messageExtension // = 616 + case messageImplementationBase // = 617 + case messageOptions // = 618 + case messageSet // = 619 + case messageSetWireFormat // = 620 + case messageSize // = 621 + case messageType // = 622 + case method // = 623 + case methodDescriptorProto // = 624 + case methodOptions // = 625 + case methods // = 626 + case min // = 627 + case minimumEdition // = 628 + case minor // = 629 + case mixin // = 630 + case mixins // = 631 + case modifier // = 632 + case modify // = 633 + case month // = 634 + case msgExtension // = 635 + case mutating // = 636 + case n // = 637 + case name // = 638 + case nameDescription // = 639 + case nameMap // = 640 + case namePart // = 641 + case names // = 642 + case nanos // = 643 + case negativeIntValue // = 644 + case nestedType // = 645 + case newL // = 646 + case newList // = 647 + case newValue // = 648 + case next // = 649 + case nextByte // = 650 + case nextFieldNumber // = 651 + case nextVarInt // = 652 + case `nil` // = 653 + case nilLiteral // = 654 + case noBytesAvailable // = 655 + case noStandardDescriptorAccessor // = 656 + case nullValue // = 657 + case number // = 658 + case numberValue // = 659 + case objcClassPrefix // = 660 + case of // = 661 + case oneofDecl // = 662 + case oneofDescriptorProto // = 663 + case oneofIndex // = 664 + case oneofOptions // = 665 + case oneofs // = 666 + case oneOfKind // = 667 + case optimizeFor // = 668 + case optimizeMode // = 669 + case option // = 670 + case optionalEnumExtensionField // = 671 + case optionalExtensionField // = 672 + case optionalGroupExtensionField // = 673 + case optionalMessageExtensionField // = 674 + case optionRetention // = 675 + case options // = 676 + case optionTargetType // = 677 + case other // = 678 + case others // = 679 + case out // = 680 + case outputType // = 681 + case overridableFeatures // = 682 + case p // = 683 + case package // = 684 + case packed // = 685 + case packedEnumExtensionField // = 686 + case packedExtensionField // = 687 + case padding // = 688 + case parent // = 689 + case parse // = 690 + case path // = 691 + case paths // = 692 + case payload // = 693 + case payloadSize // = 694 + case phpClassPrefix // = 695 + case phpMetadataNamespace // = 696 + case phpNamespace // = 697 + case pos // = 698 + case positiveIntValue // = 699 + case prefix // = 700 + case preserveProtoFieldNames // = 701 + case preTraverse // = 702 + case printUnknownFields // = 703 + case proto2 // = 704 + case proto3DefaultValue // = 705 + case proto3Optional // = 706 + case protobufApiversionCheck // = 707 + case protobufApiversion3 // = 708 + case protobufBool // = 709 + case protobufBytes // = 710 + case protobufDouble // = 711 + case protobufEnumMap // = 712 + case protobufExtension // = 713 + case protobufFixed32 // = 714 + case protobufFixed64 // = 715 + case protobufFloat // = 716 + case protobufInt32 // = 717 + case protobufInt64 // = 718 + case protobufMap // = 719 + case protobufMessageMap // = 720 + case protobufSfixed32 // = 721 + case protobufSfixed64 // = 722 + case protobufSint32 // = 723 + case protobufSint64 // = 724 + case protobufString // = 725 + case protobufUint32 // = 726 + case protobufUint64 // = 727 + case protobufExtensionFieldValues // = 728 + case protobufFieldNumber // = 729 + case protobufGeneratedIsEqualTo // = 730 + case protobufNameMap // = 731 + case protobufNewField // = 732 + case protobufPackage // = 733 + case `protocol` // = 734 + case protoFieldName // = 735 + case protoMessageName // = 736 + case protoNameProviding // = 737 + case protoPaths // = 738 + case `public` // = 739 + case publicDependency // = 740 + case putBoolValue // = 741 + case putBytesValue // = 742 + case putDoubleValue // = 743 + case putEnumValue // = 744 + case putFixedUint32 // = 745 + case putFixedUint64 // = 746 + case putFloatValue // = 747 + case putInt64 // = 748 + case putStringValue // = 749 + case putUint64 // = 750 + case putUint64Hex // = 751 + case putVarInt // = 752 + case putZigZagVarInt // = 753 + case pyGenericServices // = 754 + case r // = 755 + case rawChars // = 756 + case rawRepresentable // = 757 + case rawValue_ // = 758 + case read4HexDigits // = 759 + case readBytes // = 760 + case register // = 761 + case repeated // = 762 + case repeatedEnumExtensionField // = 763 + case repeatedExtensionField // = 764 + case repeatedFieldEncoding // = 765 + case repeatedGroupExtensionField // = 766 + case repeatedMessageExtensionField // = 767 + case repeating // = 768 + case requestStreaming // = 769 + case requestTypeURL // = 770 + case requiredSize // = 771 + case responseStreaming // = 772 + case responseTypeURL // = 773 + case result // = 774 + case retention // = 775 + case `rethrows` // = 776 + case `return` // = 777 + case returnType // = 778 + case revision // = 779 + case rhs // = 780 + case root // = 781 + case rubyPackage // = 782 + case s // = 783 + case sawBackslash // = 784 + case sawSection4Characters // = 785 + case sawSection5Characters // = 786 + case scan // = 787 + case scanner // = 788 + case seconds // = 789 + case self_ // = 790 + case semantic // = 791 + case sendable // = 792 + case separator // = 793 + case serialize // = 794 + case serializedBytes // = 795 + case serializedData // = 796 + case serializedSize // = 797 + case serverStreaming // = 798 + case service // = 799 + case serviceDescriptorProto // = 800 + case serviceOptions // = 801 + case set // = 802 + case setExtensionValue // = 803 + case shift // = 804 + case simpleExtensionMap // = 805 + case size // = 806 + case sizer // = 807 + case source // = 808 + case sourceCodeInfo // = 809 + case sourceContext // = 810 + case sourceEncoding // = 811 + case sourceFile // = 812 + case sourceLocation // = 813 + case span // = 814 + case split // = 815 + case start // = 816 + case startArray // = 817 + case startArrayObject // = 818 + case startField // = 819 + case startIndex // = 820 + case startMessageField // = 821 + case startObject // = 822 + case startRegularField // = 823 + case state // = 824 + case `static` // = 825 + case staticString // = 826 + case storage // = 827 + case string // = 828 + case stringLiteral // = 829 + case stringLiteralType // = 830 + case stringResult // = 831 + case stringValue // = 832 + case `struct` // = 833 + case structValue // = 834 + case subDecoder // = 835 + case `subscript` // = 836 + case subVisitor // = 837 + case swift // = 838 + case swiftPrefix // = 839 + case swiftProtobufContiguousBytes // = 840 + case swiftProtobufError // = 841 + case syntax // = 842 + case t // = 843 + case tag // = 844 + case targets // = 845 + case terminator // = 846 + case testDecoder // = 847 + case text // = 848 + case textDecoder // = 849 + case textFormatDecoder // = 850 + case textFormatDecodingError // = 851 + case textFormatDecodingOptions // = 852 + case textFormatEncodingOptions // = 853 + case textFormatEncodingVisitor // = 854 + case textFormatString // = 855 + case throwOrIgnore // = 856 + case `throws` // = 857 + case timeInterval // = 858 + case timeIntervalSince1970 // = 859 + case timeIntervalSinceReferenceDate // = 860 + case timestamp // = 861 + case tooLarge // = 862 + case total // = 863 + case totalArrayDepth // = 864 + case totalSize // = 865 + case trailingComments // = 866 + case traverse // = 867 + case `true` // = 868 + case `try` // = 869 + case type // = 870 + case `typealias` // = 871 + case typeEnum // = 872 + case typeName // = 873 + case typePrefix // = 874 + case typeStart // = 875 + case typeUnknown // = 876 + case typeURL // = 877 + case uint32 // = 878 + case uint32Value // = 879 + case uint64 // = 880 + case uint64Value // = 881 + case uint8 // = 882 + case unchecked // = 883 + case unicodeScalarLiteral // = 884 + case unicodeScalarLiteralType // = 885 + case unicodeScalars // = 886 + case unicodeScalarView // = 887 + case uninterpretedOption // = 888 + case union // = 889 + case uniqueStorage // = 890 + case unknown // = 891 + case unknownFields // = 892 + case unknownStorage // = 893 + case unpackTo // = 894 + case unsafeBufferPointer // = 895 + case unsafeMutablePointer // = 896 + case unsafeMutableRawBufferPointer // = 897 + case unsafeRawBufferPointer // = 898 + case unsafeRawPointer // = 899 + case unverifiedLazy // = 900 + case updatedOptions // = 901 + case url // = 902 + case useDeterministicOrdering // = 903 + case utf8 // = 904 + case utf8Ptr // = 905 + case utf8ToDouble // = 906 + case utf8Validation // = 907 + case utf8View // = 908 + case v // = 909 + case value // = 910 + case valueField // = 911 + case values // = 912 + case valueType // = 913 + case `var` // = 914 + case verification // = 915 + case verificationState // = 916 + case version // = 917 + case versionString // = 918 + case visitExtensionFields // = 919 + case visitExtensionFieldsAsMessageSet // = 920 + case visitMapField // = 921 + case visitor // = 922 + case visitPacked // = 923 + case visitPackedBoolField // = 924 + case visitPackedDoubleField // = 925 + case visitPackedEnumField // = 926 + case visitPackedFixed32Field // = 927 + case visitPackedFixed64Field // = 928 + case visitPackedFloatField // = 929 + case visitPackedInt32Field // = 930 + case visitPackedInt64Field // = 931 + case visitPackedSfixed32Field // = 932 + case visitPackedSfixed64Field // = 933 + case visitPackedSint32Field // = 934 + case visitPackedSint64Field // = 935 + case visitPackedUint32Field // = 936 + case visitPackedUint64Field // = 937 + case visitRepeated // = 938 + case visitRepeatedBoolField // = 939 + case visitRepeatedBytesField // = 940 + case visitRepeatedDoubleField // = 941 + case visitRepeatedEnumField // = 942 + case visitRepeatedFixed32Field // = 943 + case visitRepeatedFixed64Field // = 944 + case visitRepeatedFloatField // = 945 + case visitRepeatedGroupField // = 946 + case visitRepeatedInt32Field // = 947 + case visitRepeatedInt64Field // = 948 + case visitRepeatedMessageField // = 949 + case visitRepeatedSfixed32Field // = 950 + case visitRepeatedSfixed64Field // = 951 + case visitRepeatedSint32Field // = 952 + case visitRepeatedSint64Field // = 953 + case visitRepeatedStringField // = 954 + case visitRepeatedUint32Field // = 955 + case visitRepeatedUint64Field // = 956 + case visitSingular // = 957 + case visitSingularBoolField // = 958 + case visitSingularBytesField // = 959 + case visitSingularDoubleField // = 960 + case visitSingularEnumField // = 961 + case visitSingularFixed32Field // = 962 + case visitSingularFixed64Field // = 963 + case visitSingularFloatField // = 964 + case visitSingularGroupField // = 965 + case visitSingularInt32Field // = 966 + case visitSingularInt64Field // = 967 + case visitSingularMessageField // = 968 + case visitSingularSfixed32Field // = 969 + case visitSingularSfixed64Field // = 970 + case visitSingularSint32Field // = 971 + case visitSingularSint64Field // = 972 + case visitSingularStringField // = 973 + case visitSingularUint32Field // = 974 + case visitSingularUint64Field // = 975 + case visitUnknown // = 976 + case wasDecoded // = 977 + case weak // = 978 + case weakDependency // = 979 + case `where` // = 980 + case wireFormat // = 981 + case with // = 982 + case withUnsafeBytes // = 983 + case withUnsafeMutableBytes // = 984 + case work // = 985 + case wrapped // = 986 + case wrappedType // = 987 + case wrappedValue // = 988 + case written // = 989 + case yday // = 990 case UNRECOGNIZED(Int) init() { @@ -1041,989 +1037,985 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, case 9: self = .anyExtensionField case 10: self = .anyMessageExtension case 11: self = .anyMessageStorage - case 12: self = .anyTypeUrlnotRegistered - case 13: self = .anyUnpackError - case 14: self = .api - case 15: self = .appended - case 16: self = .appendUintHex - case 17: self = .appendUnknown - case 18: self = .areAllInitialized - case 19: self = .array - case 20: self = .arrayDepth - case 21: self = .arrayLiteral - case 22: self = .arraySeparator - case 23: self = .as - case 24: self = .asciiOpenCurlyBracket - case 25: self = .asciiZero - case 26: self = .async - case 27: self = .asyncIterator - case 28: self = .asyncIteratorProtocol - case 29: self = .asyncMessageSequence - case 30: self = .available - case 31: self = .b - case 32: self = .base - case 33: self = .base64Values - case 34: self = .baseAddress - case 35: self = .baseType - case 36: self = .begin - case 37: self = .binary - case 38: self = .binaryDecoder - case 39: self = .binaryDecoding - case 40: self = .binaryDecodingError - case 41: self = .binaryDecodingOptions - case 42: self = .binaryDelimited - case 43: self = .binaryEncoder - case 44: self = .binaryEncoding - case 45: self = .binaryEncodingError - case 46: self = .binaryEncodingMessageSetSizeVisitor - case 47: self = .binaryEncodingMessageSetVisitor - case 48: self = .binaryEncodingOptions - case 49: self = .binaryEncodingSizeVisitor - case 50: self = .binaryEncodingVisitor - case 51: self = .binaryOptions - case 52: self = .binaryProtobufDelimitedMessages - case 53: self = .binaryStreamDecoding - case 54: self = .binaryStreamDecodingError - case 55: self = .bitPattern - case 56: self = .body - case 57: self = .bool - case 58: self = .booleanLiteral - case 59: self = .booleanLiteralType - case 60: self = .boolValue - case 61: self = .buffer - case 62: self = .bytes - case 63: self = .bytesInGroup - case 64: self = .bytesNeeded - case 65: self = .bytesRead - case 66: self = .bytesValue - case 67: self = .c - case 68: self = .capitalizeNext - case 69: self = .cardinality - case 70: self = .caseIterable - case 71: self = .ccEnableArenas - case 72: self = .ccGenericServices - case 73: self = .character - case 74: self = .chars - case 75: self = .chunk - case 76: self = .class - case 77: self = .clearAggregateValue - case 78: self = .clearAllowAlias - case 79: self = .clearBegin - case 80: self = .clearCcEnableArenas - case 81: self = .clearCcGenericServices - case 82: self = .clearClientStreaming - case 83: self = .clearCsharpNamespace - case 84: self = .clearCtype - case 85: self = .clearDebugRedact - case 86: self = .clearDefaultValue - case 87: self = .clearDeprecated - case 88: self = .clearDeprecatedLegacyJsonFieldConflicts - case 89: self = .clearDeprecationWarning - case 90: self = .clearDoubleValue - case 91: self = .clearEdition - case 92: self = .clearEditionDeprecated - case 93: self = .clearEditionIntroduced - case 94: self = .clearEditionRemoved - case 95: self = .clearEnd - case 96: self = .clearEnumType - case 97: self = .clearExtendee - case 98: self = .clearExtensionValue - case 99: self = .clearFeatures - case 100: self = .clearFeatureSupport - case 101: self = .clearFieldPresence - case 102: self = .clearFixedFeatures - case 103: self = .clearFullName - case 104: self = .clearGoPackage - case 105: self = .clearIdempotencyLevel - case 106: self = .clearIdentifierValue - case 107: self = .clearInputType - case 108: self = .clearIsExtension - case 109: self = .clearJavaGenerateEqualsAndHash - case 110: self = .clearJavaGenericServices - case 111: self = .clearJavaMultipleFiles - case 112: self = .clearJavaOuterClassname - case 113: self = .clearJavaPackage - case 114: self = .clearJavaStringCheckUtf8 - case 115: self = .clearJsonFormat - case 116: self = .clearJsonName - case 117: self = .clearJstype - case 118: self = .clearLabel - case 119: self = .clearLazy - case 120: self = .clearLeadingComments - case 121: self = .clearMapEntry - case 122: self = .clearMaximumEdition - case 123: self = .clearMessageEncoding - case 124: self = .clearMessageSetWireFormat - case 125: self = .clearMinimumEdition - case 126: self = .clearName - case 127: self = .clearNamePart - case 128: self = .clearNegativeIntValue - case 129: self = .clearNoStandardDescriptorAccessor - case 130: self = .clearNumber - case 131: self = .clearObjcClassPrefix - case 132: self = .clearOneofIndex - case 133: self = .clearOptimizeFor - case 134: self = .clearOptions - case 135: self = .clearOutputType - case 136: self = .clearOverridableFeatures - case 137: self = .clearPackage - case 138: self = .clearPacked - case 139: self = .clearPhpClassPrefix - case 140: self = .clearPhpMetadataNamespace - case 141: self = .clearPhpNamespace - case 142: self = .clearPositiveIntValue - case 143: self = .clearProto3Optional - case 144: self = .clearPyGenericServices - case 145: self = .clearRepeated - case 146: self = .clearRepeatedFieldEncoding - case 147: self = .clearReserved - case 148: self = .clearRetention - case 149: self = .clearRubyPackage - case 150: self = .clearSemantic - case 151: self = .clearServerStreaming - case 152: self = .clearSourceCodeInfo - case 153: self = .clearSourceContext - case 154: self = .clearSourceFile - case 155: self = .clearStart - case 156: self = .clearStringValue - case 157: self = .clearSwiftPrefix - case 158: self = .clearSyntax - case 159: self = .clearTrailingComments - case 160: self = .clearType - case 161: self = .clearTypeName - case 162: self = .clearUnverifiedLazy - case 163: self = .clearUtf8Validation - case 164: self = .clearValue - case 165: self = .clearVerification - case 166: self = .clearWeak - case 167: self = .clientStreaming - case 168: self = .code - case 169: self = .codePoint - case 170: self = .codeUnits - case 171: self = .collection - case 172: self = .com - case 173: self = .comma - case 174: self = .consumedBytes - case 175: self = .contentsOf - case 176: self = .copy - case 177: self = .count - case 178: self = .countVarintsInBuffer - case 179: self = .csharpNamespace - case 180: self = .ctype - case 181: self = .customCodable - case 182: self = .customDebugStringConvertible - case 183: self = .customStringConvertible - case 184: self = .d - case 185: self = .data - case 186: self = .dataResult - case 187: self = .date - case 188: self = .daySec - case 189: self = .daysSinceEpoch - case 190: self = .debugDescription_ - case 191: self = .debugRedact - case 192: self = .declaration - case 193: self = .decoded - case 194: self = .decodedFromJsonnull - case 195: self = .decodeExtensionField - case 196: self = .decodeExtensionFieldsAsMessageSet - case 197: self = .decodeJson - case 198: self = .decodeMapField - case 199: self = .decodeMessage - case 200: self = .decoder - case 201: self = .decodeRepeated - case 202: self = .decodeRepeatedBoolField - case 203: self = .decodeRepeatedBytesField - case 204: self = .decodeRepeatedDoubleField - case 205: self = .decodeRepeatedEnumField - case 206: self = .decodeRepeatedFixed32Field - case 207: self = .decodeRepeatedFixed64Field - case 208: self = .decodeRepeatedFloatField - case 209: self = .decodeRepeatedGroupField - case 210: self = .decodeRepeatedInt32Field - case 211: self = .decodeRepeatedInt64Field - case 212: self = .decodeRepeatedMessageField - case 213: self = .decodeRepeatedSfixed32Field - case 214: self = .decodeRepeatedSfixed64Field - case 215: self = .decodeRepeatedSint32Field - case 216: self = .decodeRepeatedSint64Field - case 217: self = .decodeRepeatedStringField - case 218: self = .decodeRepeatedUint32Field - case 219: self = .decodeRepeatedUint64Field - case 220: self = .decodeSingular - case 221: self = .decodeSingularBoolField - case 222: self = .decodeSingularBytesField - case 223: self = .decodeSingularDoubleField - case 224: self = .decodeSingularEnumField - case 225: self = .decodeSingularFixed32Field - case 226: self = .decodeSingularFixed64Field - case 227: self = .decodeSingularFloatField - case 228: self = .decodeSingularGroupField - case 229: self = .decodeSingularInt32Field - case 230: self = .decodeSingularInt64Field - case 231: self = .decodeSingularMessageField - case 232: self = .decodeSingularSfixed32Field - case 233: self = .decodeSingularSfixed64Field - case 234: self = .decodeSingularSint32Field - case 235: self = .decodeSingularSint64Field - case 236: self = .decodeSingularStringField - case 237: self = .decodeSingularUint32Field - case 238: self = .decodeSingularUint64Field - case 239: self = .decodeTextFormat - case 240: self = .defaultAnyTypeUrlprefix - case 241: self = .defaults - case 242: self = .defaultValue - case 243: self = .dependency - case 244: self = .deprecated - case 245: self = .deprecatedLegacyJsonFieldConflicts - case 246: self = .deprecationWarning - case 247: self = .description_ - case 248: self = .descriptorProto - case 249: self = .dictionary - case 250: self = .dictionaryLiteral - case 251: self = .digit - case 252: self = .digit0 - case 253: self = .digit1 - case 254: self = .digitCount - case 255: self = .digits - case 256: self = .digitValue - case 257: self = .discardableResult - case 258: self = .discardUnknownFields - case 259: self = .double - case 260: self = .doubleValue - case 261: self = .duration - case 262: self = .e - case 263: self = .edition - case 264: self = .editionDefault - case 265: self = .editionDefaults - case 266: self = .editionDeprecated - case 267: self = .editionIntroduced - case 268: self = .editionRemoved - case 269: self = .element - case 270: self = .elements - case 271: self = .emitExtensionFieldName - case 272: self = .emitFieldName - case 273: self = .emitFieldNumber - case 274: self = .empty - case 275: self = .encodeAsBytes - case 276: self = .encoded - case 277: self = .encodedJsonstring - case 278: self = .encodedSize - case 279: self = .encodeField - case 280: self = .encoder - case 281: self = .end - case 282: self = .endArray - case 283: self = .endMessageField - case 284: self = .endObject - case 285: self = .endRegularField - case 286: self = .enum - case 287: self = .enumDescriptorProto - case 288: self = .enumOptions - case 289: self = .enumReservedRange - case 290: self = .enumType - case 291: self = .enumvalue - case 292: self = .enumValueDescriptorProto - case 293: self = .enumValueOptions - case 294: self = .equatable - case 295: self = .error - case 296: self = .expressibleByArrayLiteral - case 297: self = .expressibleByDictionaryLiteral - case 298: self = .ext - case 299: self = .extDecoder - case 300: self = .extendedGraphemeClusterLiteral - case 301: self = .extendedGraphemeClusterLiteralType - case 302: self = .extendee - case 303: self = .extensibleMessage - case 304: self = .extension - case 305: self = .extensionField - case 306: self = .extensionFieldNumber - case 307: self = .extensionFieldValueSet - case 308: self = .extensionMap - case 309: self = .extensionRange - case 310: self = .extensionRangeOptions - case 311: self = .extensions - case 312: self = .extras - case 313: self = .f - case 314: self = .false - case 315: self = .features - case 316: self = .featureSet - case 317: self = .featureSetDefaults - case 318: self = .featureSetEditionDefault - case 319: self = .featureSupport - case 320: self = .field - case 321: self = .fieldData - case 322: self = .fieldDescriptorProto - case 323: self = .fieldMask - case 324: self = .fieldName - case 325: self = .fieldNameCount - case 326: self = .fieldNum - case 327: self = .fieldNumber - case 328: self = .fieldNumberForProto - case 329: self = .fieldOptions - case 330: self = .fieldPresence - case 331: self = .fields - case 332: self = .fieldSize - case 333: self = .fieldTag - case 334: self = .fieldType - case 335: self = .file - case 336: self = .fileDescriptorProto - case 337: self = .fileDescriptorSet - case 338: self = .fileName - case 339: self = .fileOptions - case 340: self = .filter - case 341: self = .final - case 342: self = .finiteOnly - case 343: self = .first - case 344: self = .firstItem - case 345: self = .fixedFeatures - case 346: self = .float - case 347: self = .floatLiteral - case 348: self = .floatLiteralType - case 349: self = .floatValue - case 350: self = .forMessageName - case 351: self = .formUnion - case 352: self = .forReadingFrom - case 353: self = .forTypeURL - case 354: self = .forwardParser - case 355: self = .forWritingInto - case 356: self = .from - case 357: self = .fromAscii2 - case 358: self = .fromAscii4 - case 359: self = .fromByteOffset - case 360: self = .fromHexDigit - case 361: self = .fullName - case 362: self = .func - case 363: self = .function - case 364: self = .g - case 365: self = .generatedCodeInfo - case 366: self = .get - case 367: self = .getExtensionValue - case 368: self = .googleapis - case 369: self = .googleProtobufAny - case 370: self = .googleProtobufApi - case 371: self = .googleProtobufBoolValue - case 372: self = .googleProtobufBytesValue - case 373: self = .googleProtobufDescriptorProto - case 374: self = .googleProtobufDoubleValue - case 375: self = .googleProtobufDuration - case 376: self = .googleProtobufEdition - case 377: self = .googleProtobufEmpty - case 378: self = .googleProtobufEnum - case 379: self = .googleProtobufEnumDescriptorProto - case 380: self = .googleProtobufEnumOptions - case 381: self = .googleProtobufEnumValue - case 382: self = .googleProtobufEnumValueDescriptorProto - case 383: self = .googleProtobufEnumValueOptions - case 384: self = .googleProtobufExtensionRangeOptions - case 385: self = .googleProtobufFeatureSet - case 386: self = .googleProtobufFeatureSetDefaults - case 387: self = .googleProtobufField - case 388: self = .googleProtobufFieldDescriptorProto - case 389: self = .googleProtobufFieldMask - case 390: self = .googleProtobufFieldOptions - case 391: self = .googleProtobufFileDescriptorProto - case 392: self = .googleProtobufFileDescriptorSet - case 393: self = .googleProtobufFileOptions - case 394: self = .googleProtobufFloatValue - case 395: self = .googleProtobufGeneratedCodeInfo - case 396: self = .googleProtobufInt32Value - case 397: self = .googleProtobufInt64Value - case 398: self = .googleProtobufListValue - case 399: self = .googleProtobufMessageOptions - case 400: self = .googleProtobufMethod - case 401: self = .googleProtobufMethodDescriptorProto - case 402: self = .googleProtobufMethodOptions - case 403: self = .googleProtobufMixin - case 404: self = .googleProtobufNullValue - case 405: self = .googleProtobufOneofDescriptorProto - case 406: self = .googleProtobufOneofOptions - case 407: self = .googleProtobufOption - case 408: self = .googleProtobufServiceDescriptorProto - case 409: self = .googleProtobufServiceOptions - case 410: self = .googleProtobufSourceCodeInfo - case 411: self = .googleProtobufSourceContext - case 412: self = .googleProtobufStringValue - case 413: self = .googleProtobufStruct - case 414: self = .googleProtobufSyntax - case 415: self = .googleProtobufTimestamp - case 416: self = .googleProtobufType - case 417: self = .googleProtobufUint32Value - case 418: self = .googleProtobufUint64Value - case 419: self = .googleProtobufUninterpretedOption - case 420: self = .googleProtobufValue - case 421: self = .goPackage - case 422: self = .group - case 423: self = .groupFieldNumberStack - case 424: self = .groupSize - case 425: self = .hadOneofValue - case 426: self = .handleConflictingOneOf - case 427: self = .hasAggregateValue - case 428: self = .hasAllowAlias - case 429: self = .hasBegin - case 430: self = .hasCcEnableArenas - case 431: self = .hasCcGenericServices - case 432: self = .hasClientStreaming - case 433: self = .hasCsharpNamespace - case 434: self = .hasCtype - case 435: self = .hasDebugRedact - case 436: self = .hasDefaultValue - case 437: self = .hasDeprecated - case 438: self = .hasDeprecatedLegacyJsonFieldConflicts - case 439: self = .hasDeprecationWarning - case 440: self = .hasDoubleValue - case 441: self = .hasEdition - case 442: self = .hasEditionDeprecated - case 443: self = .hasEditionIntroduced - case 444: self = .hasEditionRemoved - case 445: self = .hasEnd - case 446: self = .hasEnumType - case 447: self = .hasExtendee - case 448: self = .hasExtensionValue - case 449: self = .hasFeatures - case 450: self = .hasFeatureSupport - case 451: self = .hasFieldPresence - case 452: self = .hasFixedFeatures - case 453: self = .hasFullName - case 454: self = .hasGoPackage - case 455: self = .hash - case 456: self = .hashable - case 457: self = .hasher - case 458: self = .hashVisitor - case 459: self = .hasIdempotencyLevel - case 460: self = .hasIdentifierValue - case 461: self = .hasInputType - case 462: self = .hasIsExtension - case 463: self = .hasJavaGenerateEqualsAndHash - case 464: self = .hasJavaGenericServices - case 465: self = .hasJavaMultipleFiles - case 466: self = .hasJavaOuterClassname - case 467: self = .hasJavaPackage - case 468: self = .hasJavaStringCheckUtf8 - case 469: self = .hasJsonFormat - case 470: self = .hasJsonName - case 471: self = .hasJstype - case 472: self = .hasLabel - case 473: self = .hasLazy - case 474: self = .hasLeadingComments - case 475: self = .hasMapEntry - case 476: self = .hasMaximumEdition - case 477: self = .hasMessageEncoding - case 478: self = .hasMessageSetWireFormat - case 479: self = .hasMinimumEdition - case 480: self = .hasName - case 481: self = .hasNamePart - case 482: self = .hasNegativeIntValue - case 483: self = .hasNoStandardDescriptorAccessor - case 484: self = .hasNumber - case 485: self = .hasObjcClassPrefix - case 486: self = .hasOneofIndex - case 487: self = .hasOptimizeFor - case 488: self = .hasOptions - case 489: self = .hasOutputType - case 490: self = .hasOverridableFeatures - case 491: self = .hasPackage - case 492: self = .hasPacked - case 493: self = .hasPhpClassPrefix - case 494: self = .hasPhpMetadataNamespace - case 495: self = .hasPhpNamespace - case 496: self = .hasPositiveIntValue - case 497: self = .hasProto3Optional - case 498: self = .hasPyGenericServices - case 499: self = .hasRepeated - case 500: self = .hasRepeatedFieldEncoding - case 501: self = .hasReserved - case 502: self = .hasRetention - case 503: self = .hasRubyPackage - case 504: self = .hasSemantic - case 505: self = .hasServerStreaming - case 506: self = .hasSourceCodeInfo - case 507: self = .hasSourceContext - case 508: self = .hasSourceFile - case 509: self = .hasStart - case 510: self = .hasStringValue - case 511: self = .hasSwiftPrefix - case 512: self = .hasSyntax - case 513: self = .hasTrailingComments - case 514: self = .hasType - case 515: self = .hasTypeName - case 516: self = .hasUnverifiedLazy - case 517: self = .hasUtf8Validation - case 518: self = .hasValue - case 519: self = .hasVerification - case 520: self = .hasWeak - case 521: self = .hour - case 522: self = .i - case 523: self = .idempotencyLevel - case 524: self = .identifierValue - case 525: self = .if - case 526: self = .ignoreUnknownExtensionFields - case 527: self = .ignoreUnknownFields - case 528: self = .index - case 529: self = .init_ - case 530: self = .inout - case 531: self = .inputType - case 532: self = .insert - case 533: self = .int - case 534: self = .int32 - case 535: self = .int32Value - case 536: self = .int64 - case 537: self = .int64Value - case 538: self = .int8 - case 539: self = .integerLiteral - case 540: self = .integerLiteralType - case 541: self = .intern - case 542: self = .internal - case 543: self = .internalState - case 544: self = .into - case 545: self = .ints - case 546: self = .isA - case 547: self = .isEqual - case 548: self = .isEqualTo - case 549: self = .isExtension - case 550: self = .isInitialized - case 551: self = .isNegative - case 552: self = .itemTagsEncodedSize - case 553: self = .iterator - case 554: self = .javaGenerateEqualsAndHash - case 555: self = .javaGenericServices - case 556: self = .javaMultipleFiles - case 557: self = .javaOuterClassname - case 558: self = .javaPackage - case 559: self = .javaStringCheckUtf8 - case 560: self = .jsondecoder - case 561: self = .jsondecodingError - case 562: self = .jsondecodingOptions - case 563: self = .jsonEncoder - case 564: self = .jsonencoding - case 565: self = .jsonencodingError - case 566: self = .jsonencodingOptions - case 567: self = .jsonencodingVisitor - case 568: self = .jsonFormat - case 569: self = .jsonmapEncodingVisitor - case 570: self = .jsonName - case 571: self = .jsonPath - case 572: self = .jsonPaths - case 573: self = .jsonscanner - case 574: self = .jsonString - case 575: self = .jsonText - case 576: self = .jsonUtf8Bytes - case 577: self = .jsonUtf8Data - case 578: self = .jstype - case 579: self = .k - case 580: self = .kChunkSize - case 581: self = .key - case 582: self = .keyField - case 583: self = .keyFieldOpt - case 584: self = .keyType - case 585: self = .kind - case 586: self = .l - case 587: self = .label - case 588: self = .lazy - case 589: self = .leadingComments - case 590: self = .leadingDetachedComments - case 591: self = .length - case 592: self = .lessThan - case 593: self = .let - case 594: self = .lhs - case 595: self = .line - case 596: self = .list - case 597: self = .listOfMessages - case 598: self = .listValue - case 599: self = .littleEndian - case 600: self = .load - case 601: self = .localHasher - case 602: self = .location - case 603: self = .m - case 604: self = .major - case 605: self = .makeAsyncIterator - case 606: self = .makeIterator - case 607: self = .malformedLength - case 608: self = .mapEntry - case 609: self = .mapKeyType - case 610: self = .mapToMessages - case 611: self = .mapValueType - case 612: self = .mapVisitor - case 613: self = .maximumEdition - case 614: self = .mdayStart - case 615: self = .merge - case 616: self = .message - case 617: self = .messageDepthLimit - case 618: self = .messageEncoding - case 619: self = .messageExtension - case 620: self = .messageImplementationBase - case 621: self = .messageOptions - case 622: self = .messageSet - case 623: self = .messageSetWireFormat - case 624: self = .messageSize - case 625: self = .messageType - case 626: self = .method - case 627: self = .methodDescriptorProto - case 628: self = .methodOptions - case 629: self = .methods - case 630: self = .min - case 631: self = .minimumEdition - case 632: self = .minor - case 633: self = .mixin - case 634: self = .mixins - case 635: self = .modifier - case 636: self = .modify - case 637: self = .month - case 638: self = .msgExtension - case 639: self = .mutating - case 640: self = .n - case 641: self = .name - case 642: self = .nameDescription - case 643: self = .nameMap - case 644: self = .namePart - case 645: self = .names - case 646: self = .nanos - case 647: self = .negativeIntValue - case 648: self = .nestedType - case 649: self = .newL - case 650: self = .newList - case 651: self = .newValue - case 652: self = .next - case 653: self = .nextByte - case 654: self = .nextFieldNumber - case 655: self = .nextVarInt - case 656: self = .nil - case 657: self = .nilLiteral - case 658: self = .noBytesAvailable - case 659: self = .noStandardDescriptorAccessor - case 660: self = .nullValue - case 661: self = .number - case 662: self = .numberValue - case 663: self = .objcClassPrefix - case 664: self = .of - case 665: self = .oneofDecl - case 666: self = .oneofDescriptorProto - case 667: self = .oneofIndex - case 668: self = .oneofOptions - case 669: self = .oneofs - case 670: self = .oneOfKind - case 671: self = .optimizeFor - case 672: self = .optimizeMode - case 673: self = .option - case 674: self = .optionalEnumExtensionField - case 675: self = .optionalExtensionField - case 676: self = .optionalGroupExtensionField - case 677: self = .optionalMessageExtensionField - case 678: self = .optionRetention - case 679: self = .options - case 680: self = .optionTargetType - case 681: self = .other - case 682: self = .others - case 683: self = .out - case 684: self = .outputType - case 685: self = .overridableFeatures - case 686: self = .p - case 687: self = .package - case 688: self = .packed - case 689: self = .packedEnumExtensionField - case 690: self = .packedExtensionField - case 691: self = .padding - case 692: self = .parent - case 693: self = .parse - case 694: self = .path - case 695: self = .paths - case 696: self = .payload - case 697: self = .payloadSize - case 698: self = .phpClassPrefix - case 699: self = .phpMetadataNamespace - case 700: self = .phpNamespace - case 701: self = .pos - case 702: self = .positiveIntValue - case 703: self = .prefix - case 704: self = .preserveProtoFieldNames - case 705: self = .preTraverse - case 706: self = .printUnknownFields - case 707: self = .proto2 - case 708: self = .proto3DefaultValue - case 709: self = .proto3Optional - case 710: self = .protobufApiversionCheck - case 711: self = .protobufApiversion3 - case 712: self = .protobufBool - case 713: self = .protobufBytes - case 714: self = .protobufDouble - case 715: self = .protobufEnumMap - case 716: self = .protobufExtension - case 717: self = .protobufFixed32 - case 718: self = .protobufFixed64 - case 719: self = .protobufFloat - case 720: self = .protobufInt32 - case 721: self = .protobufInt64 - case 722: self = .protobufMap - case 723: self = .protobufMessageMap - case 724: self = .protobufSfixed32 - case 725: self = .protobufSfixed64 - case 726: self = .protobufSint32 - case 727: self = .protobufSint64 - case 728: self = .protobufString - case 729: self = .protobufUint32 - case 730: self = .protobufUint64 - case 731: self = .protobufExtensionFieldValues - case 732: self = .protobufFieldNumber - case 733: self = .protobufGeneratedIsEqualTo - case 734: self = .protobufNameMap - case 735: self = .protobufNewField - case 736: self = .protobufPackage - case 737: self = .protocol - case 738: self = .protoFieldName - case 739: self = .protoMessageName - case 740: self = .protoNameProviding - case 741: self = .protoPaths - case 742: self = .public - case 743: self = .publicDependency - case 744: self = .putBoolValue - case 745: self = .putBytesValue - case 746: self = .putDoubleValue - case 747: self = .putEnumValue - case 748: self = .putFixedUint32 - case 749: self = .putFixedUint64 - case 750: self = .putFloatValue - case 751: self = .putInt64 - case 752: self = .putStringValue - case 753: self = .putUint64 - case 754: self = .putUint64Hex - case 755: self = .putVarInt - case 756: self = .putZigZagVarInt - case 757: self = .pyGenericServices - case 758: self = .r - case 759: self = .rawChars - case 760: self = .rawRepresentable - case 761: self = .rawValue_ - case 762: self = .read4HexDigits - case 763: self = .readBytes - case 764: self = .register - case 765: self = .repeated - case 766: self = .repeatedEnumExtensionField - case 767: self = .repeatedExtensionField - case 768: self = .repeatedFieldEncoding - case 769: self = .repeatedGroupExtensionField - case 770: self = .repeatedMessageExtensionField - case 771: self = .repeating - case 772: self = .requestStreaming - case 773: self = .requestTypeURL - case 774: self = .requiredSize - case 775: self = .responseStreaming - case 776: self = .responseTypeURL - case 777: self = .result - case 778: self = .retention - case 779: self = .rethrows - case 780: self = .return - case 781: self = .returnType - case 782: self = .revision - case 783: self = .rhs - case 784: self = .root - case 785: self = .rubyPackage - case 786: self = .s - case 787: self = .sawBackslash - case 788: self = .sawSection4Characters - case 789: self = .sawSection5Characters - case 790: self = .scan - case 791: self = .scanner - case 792: self = .seconds - case 793: self = .self_ - case 794: self = .semantic - case 795: self = .sendable - case 796: self = .separator - case 797: self = .serialize - case 798: self = .serializedBytes - case 799: self = .serializedData - case 800: self = .serializedSize - case 801: self = .serverStreaming - case 802: self = .service - case 803: self = .serviceDescriptorProto - case 804: self = .serviceOptions - case 805: self = .set - case 806: self = .setExtensionValue - case 807: self = .shift - case 808: self = .simpleExtensionMap - case 809: self = .size - case 810: self = .sizer - case 811: self = .source - case 812: self = .sourceCodeInfo - case 813: self = .sourceContext - case 814: self = .sourceEncoding - case 815: self = .sourceFile - case 816: self = .sourceLocation - case 817: self = .span - case 818: self = .split - case 819: self = .start - case 820: self = .startArray - case 821: self = .startArrayObject - case 822: self = .startField - case 823: self = .startIndex - case 824: self = .startMessageField - case 825: self = .startObject - case 826: self = .startRegularField - case 827: self = .state - case 828: self = .static - case 829: self = .staticString - case 830: self = .storage - case 831: self = .string - case 832: self = .stringLiteral - case 833: self = .stringLiteralType - case 834: self = .stringResult - case 835: self = .stringValue - case 836: self = .struct - case 837: self = .structValue - case 838: self = .subDecoder - case 839: self = .subscript - case 840: self = .subVisitor - case 841: self = .swift - case 842: self = .swiftPrefix - case 843: self = .swiftProtobufContiguousBytes - case 844: self = .swiftProtobufError - case 845: self = .syntax - case 846: self = .t - case 847: self = .tag - case 848: self = .targets - case 849: self = .terminator - case 850: self = .testDecoder - case 851: self = .text - case 852: self = .textDecoder - case 853: self = .textFormatDecoder - case 854: self = .textFormatDecodingError - case 855: self = .textFormatDecodingOptions - case 856: self = .textFormatEncodingOptions - case 857: self = .textFormatEncodingVisitor - case 858: self = .textFormatString - case 859: self = .throwOrIgnore - case 860: self = .throws - case 861: self = .timeInterval - case 862: self = .timeIntervalSince1970 - case 863: self = .timeIntervalSinceReferenceDate - case 864: self = .timestamp - case 865: self = .tooLarge - case 866: self = .total - case 867: self = .totalArrayDepth - case 868: self = .totalSize - case 869: self = .trailingComments - case 870: self = .traverse - case 871: self = .true - case 872: self = .try - case 873: self = .type - case 874: self = .typealias - case 875: self = .typeEnum - case 876: self = .typeName - case 877: self = .typePrefix - case 878: self = .typeStart - case 879: self = .typeUnknown - case 880: self = .typeURL - case 881: self = .uint32 - case 882: self = .uint32Value - case 883: self = .uint64 - case 884: self = .uint64Value - case 885: self = .uint8 - case 886: self = .unchecked - case 887: self = .unicodeScalarLiteral - case 888: self = .unicodeScalarLiteralType - case 889: self = .unicodeScalars - case 890: self = .unicodeScalarView - case 891: self = .uninterpretedOption - case 892: self = .union - case 893: self = .uniqueStorage - case 894: self = .unknown - case 895: self = .unknownFields - case 896: self = .unknownStorage - case 897: self = .unpackTo - case 898: self = .unregisteredTypeURL - case 899: self = .unsafeBufferPointer - case 900: self = .unsafeMutablePointer - case 901: self = .unsafeMutableRawBufferPointer - case 902: self = .unsafeRawBufferPointer - case 903: self = .unsafeRawPointer - case 904: self = .unverifiedLazy - case 905: self = .updatedOptions - case 906: self = .url - case 907: self = .useDeterministicOrdering - case 908: self = .utf8 - case 909: self = .utf8Ptr - case 910: self = .utf8ToDouble - case 911: self = .utf8Validation - case 912: self = .utf8View - case 913: self = .v - case 914: self = .value - case 915: self = .valueField - case 916: self = .values - case 917: self = .valueType - case 918: self = .var - case 919: self = .verification - case 920: self = .verificationState - case 921: self = .version - case 922: self = .versionString - case 923: self = .visitExtensionFields - case 924: self = .visitExtensionFieldsAsMessageSet - case 925: self = .visitMapField - case 926: self = .visitor - case 927: self = .visitPacked - case 928: self = .visitPackedBoolField - case 929: self = .visitPackedDoubleField - case 930: self = .visitPackedEnumField - case 931: self = .visitPackedFixed32Field - case 932: self = .visitPackedFixed64Field - case 933: self = .visitPackedFloatField - case 934: self = .visitPackedInt32Field - case 935: self = .visitPackedInt64Field - case 936: self = .visitPackedSfixed32Field - case 937: self = .visitPackedSfixed64Field - case 938: self = .visitPackedSint32Field - case 939: self = .visitPackedSint64Field - case 940: self = .visitPackedUint32Field - case 941: self = .visitPackedUint64Field - case 942: self = .visitRepeated - case 943: self = .visitRepeatedBoolField - case 944: self = .visitRepeatedBytesField - case 945: self = .visitRepeatedDoubleField - case 946: self = .visitRepeatedEnumField - case 947: self = .visitRepeatedFixed32Field - case 948: self = .visitRepeatedFixed64Field - case 949: self = .visitRepeatedFloatField - case 950: self = .visitRepeatedGroupField - case 951: self = .visitRepeatedInt32Field - case 952: self = .visitRepeatedInt64Field - case 953: self = .visitRepeatedMessageField - case 954: self = .visitRepeatedSfixed32Field - case 955: self = .visitRepeatedSfixed64Field - case 956: self = .visitRepeatedSint32Field - case 957: self = .visitRepeatedSint64Field - case 958: self = .visitRepeatedStringField - case 959: self = .visitRepeatedUint32Field - case 960: self = .visitRepeatedUint64Field - case 961: self = .visitSingular - case 962: self = .visitSingularBoolField - case 963: self = .visitSingularBytesField - case 964: self = .visitSingularDoubleField - case 965: self = .visitSingularEnumField - case 966: self = .visitSingularFixed32Field - case 967: self = .visitSingularFixed64Field - case 968: self = .visitSingularFloatField - case 969: self = .visitSingularGroupField - case 970: self = .visitSingularInt32Field - case 971: self = .visitSingularInt64Field - case 972: self = .visitSingularMessageField - case 973: self = .visitSingularSfixed32Field - case 974: self = .visitSingularSfixed64Field - case 975: self = .visitSingularSint32Field - case 976: self = .visitSingularSint64Field - case 977: self = .visitSingularStringField - case 978: self = .visitSingularUint32Field - case 979: self = .visitSingularUint64Field - case 980: self = .visitUnknown - case 981: self = .wasDecoded - case 982: self = .weak - case 983: self = .weakDependency - case 984: self = .where - case 985: self = .wireFormat - case 986: self = .with - case 987: self = .withUnsafeBytes - case 988: self = .withUnsafeMutableBytes - case 989: self = .work - case 990: self = .wrapped - case 991: self = .wrappedType - case 992: self = .wrappedValue - case 993: self = .written - case 994: self = .yday + case 12: self = .anyUnpackError + case 13: self = .api + case 14: self = .appended + case 15: self = .appendUintHex + case 16: self = .appendUnknown + case 17: self = .areAllInitialized + case 18: self = .array + case 19: self = .arrayDepth + case 20: self = .arrayLiteral + case 21: self = .arraySeparator + case 22: self = .as + case 23: self = .asciiOpenCurlyBracket + case 24: self = .asciiZero + case 25: self = .async + case 26: self = .asyncIterator + case 27: self = .asyncIteratorProtocol + case 28: self = .asyncMessageSequence + case 29: self = .available + case 30: self = .b + case 31: self = .base + case 32: self = .base64Values + case 33: self = .baseAddress + case 34: self = .baseType + case 35: self = .begin + case 36: self = .binary + case 37: self = .binaryDecoder + case 38: self = .binaryDecoding + case 39: self = .binaryDecodingError + case 40: self = .binaryDecodingOptions + case 41: self = .binaryDelimited + case 42: self = .binaryEncoder + case 43: self = .binaryEncodingError + case 44: self = .binaryEncodingMessageSetSizeVisitor + case 45: self = .binaryEncodingMessageSetVisitor + case 46: self = .binaryEncodingOptions + case 47: self = .binaryEncodingSizeVisitor + case 48: self = .binaryEncodingVisitor + case 49: self = .binaryOptions + case 50: self = .binaryProtobufDelimitedMessages + case 51: self = .binaryStreamDecoding + case 52: self = .binaryStreamDecodingError + case 53: self = .bitPattern + case 54: self = .body + case 55: self = .bool + case 56: self = .booleanLiteral + case 57: self = .booleanLiteralType + case 58: self = .boolValue + case 59: self = .buffer + case 60: self = .bytes + case 61: self = .bytesInGroup + case 62: self = .bytesNeeded + case 63: self = .bytesRead + case 64: self = .bytesValue + case 65: self = .c + case 66: self = .capitalizeNext + case 67: self = .cardinality + case 68: self = .caseIterable + case 69: self = .ccEnableArenas + case 70: self = .ccGenericServices + case 71: self = .character + case 72: self = .chars + case 73: self = .chunk + case 74: self = .class + case 75: self = .clearAggregateValue + case 76: self = .clearAllowAlias + case 77: self = .clearBegin + case 78: self = .clearCcEnableArenas + case 79: self = .clearCcGenericServices + case 80: self = .clearClientStreaming + case 81: self = .clearCsharpNamespace + case 82: self = .clearCtype + case 83: self = .clearDebugRedact + case 84: self = .clearDefaultValue + case 85: self = .clearDeprecated + case 86: self = .clearDeprecatedLegacyJsonFieldConflicts + case 87: self = .clearDeprecationWarning + case 88: self = .clearDoubleValue + case 89: self = .clearEdition + case 90: self = .clearEditionDeprecated + case 91: self = .clearEditionIntroduced + case 92: self = .clearEditionRemoved + case 93: self = .clearEnd + case 94: self = .clearEnumType + case 95: self = .clearExtendee + case 96: self = .clearExtensionValue + case 97: self = .clearFeatures + case 98: self = .clearFeatureSupport + case 99: self = .clearFieldPresence + case 100: self = .clearFixedFeatures + case 101: self = .clearFullName + case 102: self = .clearGoPackage + case 103: self = .clearIdempotencyLevel + case 104: self = .clearIdentifierValue + case 105: self = .clearInputType + case 106: self = .clearIsExtension + case 107: self = .clearJavaGenerateEqualsAndHash + case 108: self = .clearJavaGenericServices + case 109: self = .clearJavaMultipleFiles + case 110: self = .clearJavaOuterClassname + case 111: self = .clearJavaPackage + case 112: self = .clearJavaStringCheckUtf8 + case 113: self = .clearJsonFormat + case 114: self = .clearJsonName + case 115: self = .clearJstype + case 116: self = .clearLabel + case 117: self = .clearLazy + case 118: self = .clearLeadingComments + case 119: self = .clearMapEntry + case 120: self = .clearMaximumEdition + case 121: self = .clearMessageEncoding + case 122: self = .clearMessageSetWireFormat + case 123: self = .clearMinimumEdition + case 124: self = .clearName + case 125: self = .clearNamePart + case 126: self = .clearNegativeIntValue + case 127: self = .clearNoStandardDescriptorAccessor + case 128: self = .clearNumber + case 129: self = .clearObjcClassPrefix + case 130: self = .clearOneofIndex + case 131: self = .clearOptimizeFor + case 132: self = .clearOptions + case 133: self = .clearOutputType + case 134: self = .clearOverridableFeatures + case 135: self = .clearPackage + case 136: self = .clearPacked + case 137: self = .clearPhpClassPrefix + case 138: self = .clearPhpMetadataNamespace + case 139: self = .clearPhpNamespace + case 140: self = .clearPositiveIntValue + case 141: self = .clearProto3Optional + case 142: self = .clearPyGenericServices + case 143: self = .clearRepeated + case 144: self = .clearRepeatedFieldEncoding + case 145: self = .clearReserved + case 146: self = .clearRetention + case 147: self = .clearRubyPackage + case 148: self = .clearSemantic + case 149: self = .clearServerStreaming + case 150: self = .clearSourceCodeInfo + case 151: self = .clearSourceContext + case 152: self = .clearSourceFile + case 153: self = .clearStart + case 154: self = .clearStringValue + case 155: self = .clearSwiftPrefix + case 156: self = .clearSyntax + case 157: self = .clearTrailingComments + case 158: self = .clearType + case 159: self = .clearTypeName + case 160: self = .clearUnverifiedLazy + case 161: self = .clearUtf8Validation + case 162: self = .clearValue + case 163: self = .clearVerification + case 164: self = .clearWeak + case 165: self = .clientStreaming + case 166: self = .code + case 167: self = .codePoint + case 168: self = .codeUnits + case 169: self = .collection + case 170: self = .com + case 171: self = .comma + case 172: self = .consumedBytes + case 173: self = .contentsOf + case 174: self = .copy + case 175: self = .count + case 176: self = .countVarintsInBuffer + case 177: self = .csharpNamespace + case 178: self = .ctype + case 179: self = .customCodable + case 180: self = .customDebugStringConvertible + case 181: self = .customStringConvertible + case 182: self = .d + case 183: self = .data + case 184: self = .dataResult + case 185: self = .date + case 186: self = .daySec + case 187: self = .daysSinceEpoch + case 188: self = .debugDescription_ + case 189: self = .debugRedact + case 190: self = .declaration + case 191: self = .decoded + case 192: self = .decodedFromJsonnull + case 193: self = .decodeExtensionField + case 194: self = .decodeExtensionFieldsAsMessageSet + case 195: self = .decodeJson + case 196: self = .decodeMapField + case 197: self = .decodeMessage + case 198: self = .decoder + case 199: self = .decodeRepeated + case 200: self = .decodeRepeatedBoolField + case 201: self = .decodeRepeatedBytesField + case 202: self = .decodeRepeatedDoubleField + case 203: self = .decodeRepeatedEnumField + case 204: self = .decodeRepeatedFixed32Field + case 205: self = .decodeRepeatedFixed64Field + case 206: self = .decodeRepeatedFloatField + case 207: self = .decodeRepeatedGroupField + case 208: self = .decodeRepeatedInt32Field + case 209: self = .decodeRepeatedInt64Field + case 210: self = .decodeRepeatedMessageField + case 211: self = .decodeRepeatedSfixed32Field + case 212: self = .decodeRepeatedSfixed64Field + case 213: self = .decodeRepeatedSint32Field + case 214: self = .decodeRepeatedSint64Field + case 215: self = .decodeRepeatedStringField + case 216: self = .decodeRepeatedUint32Field + case 217: self = .decodeRepeatedUint64Field + case 218: self = .decodeSingular + case 219: self = .decodeSingularBoolField + case 220: self = .decodeSingularBytesField + case 221: self = .decodeSingularDoubleField + case 222: self = .decodeSingularEnumField + case 223: self = .decodeSingularFixed32Field + case 224: self = .decodeSingularFixed64Field + case 225: self = .decodeSingularFloatField + case 226: self = .decodeSingularGroupField + case 227: self = .decodeSingularInt32Field + case 228: self = .decodeSingularInt64Field + case 229: self = .decodeSingularMessageField + case 230: self = .decodeSingularSfixed32Field + case 231: self = .decodeSingularSfixed64Field + case 232: self = .decodeSingularSint32Field + case 233: self = .decodeSingularSint64Field + case 234: self = .decodeSingularStringField + case 235: self = .decodeSingularUint32Field + case 236: self = .decodeSingularUint64Field + case 237: self = .decodeTextFormat + case 238: self = .defaultAnyTypeUrlprefix + case 239: self = .defaults + case 240: self = .defaultValue + case 241: self = .dependency + case 242: self = .deprecated + case 243: self = .deprecatedLegacyJsonFieldConflicts + case 244: self = .deprecationWarning + case 245: self = .description_ + case 246: self = .descriptorProto + case 247: self = .dictionary + case 248: self = .dictionaryLiteral + case 249: self = .digit + case 250: self = .digit0 + case 251: self = .digit1 + case 252: self = .digitCount + case 253: self = .digits + case 254: self = .digitValue + case 255: self = .discardableResult + case 256: self = .discardUnknownFields + case 257: self = .double + case 258: self = .doubleValue + case 259: self = .duration + case 260: self = .e + case 261: self = .edition + case 262: self = .editionDefault + case 263: self = .editionDefaults + case 264: self = .editionDeprecated + case 265: self = .editionIntroduced + case 266: self = .editionRemoved + case 267: self = .element + case 268: self = .elements + case 269: self = .emitExtensionFieldName + case 270: self = .emitFieldName + case 271: self = .emitFieldNumber + case 272: self = .empty + case 273: self = .encodeAsBytes + case 274: self = .encoded + case 275: self = .encodedJsonstring + case 276: self = .encodedSize + case 277: self = .encodeField + case 278: self = .encoder + case 279: self = .end + case 280: self = .endArray + case 281: self = .endMessageField + case 282: self = .endObject + case 283: self = .endRegularField + case 284: self = .enum + case 285: self = .enumDescriptorProto + case 286: self = .enumOptions + case 287: self = .enumReservedRange + case 288: self = .enumType + case 289: self = .enumvalue + case 290: self = .enumValueDescriptorProto + case 291: self = .enumValueOptions + case 292: self = .equatable + case 293: self = .error + case 294: self = .expressibleByArrayLiteral + case 295: self = .expressibleByDictionaryLiteral + case 296: self = .ext + case 297: self = .extDecoder + case 298: self = .extendedGraphemeClusterLiteral + case 299: self = .extendedGraphemeClusterLiteralType + case 300: self = .extendee + case 301: self = .extensibleMessage + case 302: self = .extension + case 303: self = .extensionField + case 304: self = .extensionFieldNumber + case 305: self = .extensionFieldValueSet + case 306: self = .extensionMap + case 307: self = .extensionRange + case 308: self = .extensionRangeOptions + case 309: self = .extensions + case 310: self = .extras + case 311: self = .f + case 312: self = .false + case 313: self = .features + case 314: self = .featureSet + case 315: self = .featureSetDefaults + case 316: self = .featureSetEditionDefault + case 317: self = .featureSupport + case 318: self = .field + case 319: self = .fieldData + case 320: self = .fieldDescriptorProto + case 321: self = .fieldMask + case 322: self = .fieldName + case 323: self = .fieldNameCount + case 324: self = .fieldNum + case 325: self = .fieldNumber + case 326: self = .fieldNumberForProto + case 327: self = .fieldOptions + case 328: self = .fieldPresence + case 329: self = .fields + case 330: self = .fieldSize + case 331: self = .fieldTag + case 332: self = .fieldType + case 333: self = .file + case 334: self = .fileDescriptorProto + case 335: self = .fileDescriptorSet + case 336: self = .fileName + case 337: self = .fileOptions + case 338: self = .filter + case 339: self = .final + case 340: self = .finiteOnly + case 341: self = .first + case 342: self = .firstItem + case 343: self = .fixedFeatures + case 344: self = .float + case 345: self = .floatLiteral + case 346: self = .floatLiteralType + case 347: self = .floatValue + case 348: self = .forMessageName + case 349: self = .formUnion + case 350: self = .forReadingFrom + case 351: self = .forTypeURL + case 352: self = .forwardParser + case 353: self = .forWritingInto + case 354: self = .from + case 355: self = .fromAscii2 + case 356: self = .fromAscii4 + case 357: self = .fromByteOffset + case 358: self = .fromHexDigit + case 359: self = .fullName + case 360: self = .func + case 361: self = .function + case 362: self = .g + case 363: self = .generatedCodeInfo + case 364: self = .get + case 365: self = .getExtensionValue + case 366: self = .googleapis + case 367: self = .googleProtobufAny + case 368: self = .googleProtobufApi + case 369: self = .googleProtobufBoolValue + case 370: self = .googleProtobufBytesValue + case 371: self = .googleProtobufDescriptorProto + case 372: self = .googleProtobufDoubleValue + case 373: self = .googleProtobufDuration + case 374: self = .googleProtobufEdition + case 375: self = .googleProtobufEmpty + case 376: self = .googleProtobufEnum + case 377: self = .googleProtobufEnumDescriptorProto + case 378: self = .googleProtobufEnumOptions + case 379: self = .googleProtobufEnumValue + case 380: self = .googleProtobufEnumValueDescriptorProto + case 381: self = .googleProtobufEnumValueOptions + case 382: self = .googleProtobufExtensionRangeOptions + case 383: self = .googleProtobufFeatureSet + case 384: self = .googleProtobufFeatureSetDefaults + case 385: self = .googleProtobufField + case 386: self = .googleProtobufFieldDescriptorProto + case 387: self = .googleProtobufFieldMask + case 388: self = .googleProtobufFieldOptions + case 389: self = .googleProtobufFileDescriptorProto + case 390: self = .googleProtobufFileDescriptorSet + case 391: self = .googleProtobufFileOptions + case 392: self = .googleProtobufFloatValue + case 393: self = .googleProtobufGeneratedCodeInfo + case 394: self = .googleProtobufInt32Value + case 395: self = .googleProtobufInt64Value + case 396: self = .googleProtobufListValue + case 397: self = .googleProtobufMessageOptions + case 398: self = .googleProtobufMethod + case 399: self = .googleProtobufMethodDescriptorProto + case 400: self = .googleProtobufMethodOptions + case 401: self = .googleProtobufMixin + case 402: self = .googleProtobufNullValue + case 403: self = .googleProtobufOneofDescriptorProto + case 404: self = .googleProtobufOneofOptions + case 405: self = .googleProtobufOption + case 406: self = .googleProtobufServiceDescriptorProto + case 407: self = .googleProtobufServiceOptions + case 408: self = .googleProtobufSourceCodeInfo + case 409: self = .googleProtobufSourceContext + case 410: self = .googleProtobufStringValue + case 411: self = .googleProtobufStruct + case 412: self = .googleProtobufSyntax + case 413: self = .googleProtobufTimestamp + case 414: self = .googleProtobufType + case 415: self = .googleProtobufUint32Value + case 416: self = .googleProtobufUint64Value + case 417: self = .googleProtobufUninterpretedOption + case 418: self = .googleProtobufValue + case 419: self = .goPackage + case 420: self = .group + case 421: self = .groupFieldNumberStack + case 422: self = .groupSize + case 423: self = .hadOneofValue + case 424: self = .handleConflictingOneOf + case 425: self = .hasAggregateValue + case 426: self = .hasAllowAlias + case 427: self = .hasBegin + case 428: self = .hasCcEnableArenas + case 429: self = .hasCcGenericServices + case 430: self = .hasClientStreaming + case 431: self = .hasCsharpNamespace + case 432: self = .hasCtype + case 433: self = .hasDebugRedact + case 434: self = .hasDefaultValue + case 435: self = .hasDeprecated + case 436: self = .hasDeprecatedLegacyJsonFieldConflicts + case 437: self = .hasDeprecationWarning + case 438: self = .hasDoubleValue + case 439: self = .hasEdition + case 440: self = .hasEditionDeprecated + case 441: self = .hasEditionIntroduced + case 442: self = .hasEditionRemoved + case 443: self = .hasEnd + case 444: self = .hasEnumType + case 445: self = .hasExtendee + case 446: self = .hasExtensionValue + case 447: self = .hasFeatures + case 448: self = .hasFeatureSupport + case 449: self = .hasFieldPresence + case 450: self = .hasFixedFeatures + case 451: self = .hasFullName + case 452: self = .hasGoPackage + case 453: self = .hash + case 454: self = .hashable + case 455: self = .hasher + case 456: self = .hashVisitor + case 457: self = .hasIdempotencyLevel + case 458: self = .hasIdentifierValue + case 459: self = .hasInputType + case 460: self = .hasIsExtension + case 461: self = .hasJavaGenerateEqualsAndHash + case 462: self = .hasJavaGenericServices + case 463: self = .hasJavaMultipleFiles + case 464: self = .hasJavaOuterClassname + case 465: self = .hasJavaPackage + case 466: self = .hasJavaStringCheckUtf8 + case 467: self = .hasJsonFormat + case 468: self = .hasJsonName + case 469: self = .hasJstype + case 470: self = .hasLabel + case 471: self = .hasLazy + case 472: self = .hasLeadingComments + case 473: self = .hasMapEntry + case 474: self = .hasMaximumEdition + case 475: self = .hasMessageEncoding + case 476: self = .hasMessageSetWireFormat + case 477: self = .hasMinimumEdition + case 478: self = .hasName + case 479: self = .hasNamePart + case 480: self = .hasNegativeIntValue + case 481: self = .hasNoStandardDescriptorAccessor + case 482: self = .hasNumber + case 483: self = .hasObjcClassPrefix + case 484: self = .hasOneofIndex + case 485: self = .hasOptimizeFor + case 486: self = .hasOptions + case 487: self = .hasOutputType + case 488: self = .hasOverridableFeatures + case 489: self = .hasPackage + case 490: self = .hasPacked + case 491: self = .hasPhpClassPrefix + case 492: self = .hasPhpMetadataNamespace + case 493: self = .hasPhpNamespace + case 494: self = .hasPositiveIntValue + case 495: self = .hasProto3Optional + case 496: self = .hasPyGenericServices + case 497: self = .hasRepeated + case 498: self = .hasRepeatedFieldEncoding + case 499: self = .hasReserved + case 500: self = .hasRetention + case 501: self = .hasRubyPackage + case 502: self = .hasSemantic + case 503: self = .hasServerStreaming + case 504: self = .hasSourceCodeInfo + case 505: self = .hasSourceContext + case 506: self = .hasSourceFile + case 507: self = .hasStart + case 508: self = .hasStringValue + case 509: self = .hasSwiftPrefix + case 510: self = .hasSyntax + case 511: self = .hasTrailingComments + case 512: self = .hasType + case 513: self = .hasTypeName + case 514: self = .hasUnverifiedLazy + case 515: self = .hasUtf8Validation + case 516: self = .hasValue + case 517: self = .hasVerification + case 518: self = .hasWeak + case 519: self = .hour + case 520: self = .i + case 521: self = .idempotencyLevel + case 522: self = .identifierValue + case 523: self = .if + case 524: self = .ignoreUnknownExtensionFields + case 525: self = .ignoreUnknownFields + case 526: self = .index + case 527: self = .init_ + case 528: self = .inout + case 529: self = .inputType + case 530: self = .insert + case 531: self = .int + case 532: self = .int32 + case 533: self = .int32Value + case 534: self = .int64 + case 535: self = .int64Value + case 536: self = .int8 + case 537: self = .integerLiteral + case 538: self = .integerLiteralType + case 539: self = .intern + case 540: self = .internal + case 541: self = .internalState + case 542: self = .into + case 543: self = .ints + case 544: self = .isA + case 545: self = .isEqual + case 546: self = .isEqualTo + case 547: self = .isExtension + case 548: self = .isInitialized + case 549: self = .isNegative + case 550: self = .itemTagsEncodedSize + case 551: self = .iterator + case 552: self = .javaGenerateEqualsAndHash + case 553: self = .javaGenericServices + case 554: self = .javaMultipleFiles + case 555: self = .javaOuterClassname + case 556: self = .javaPackage + case 557: self = .javaStringCheckUtf8 + case 558: self = .jsondecoder + case 559: self = .jsondecodingError + case 560: self = .jsondecodingOptions + case 561: self = .jsonEncoder + case 562: self = .jsonencodingError + case 563: self = .jsonencodingOptions + case 564: self = .jsonencodingVisitor + case 565: self = .jsonFormat + case 566: self = .jsonmapEncodingVisitor + case 567: self = .jsonName + case 568: self = .jsonPath + case 569: self = .jsonPaths + case 570: self = .jsonscanner + case 571: self = .jsonString + case 572: self = .jsonText + case 573: self = .jsonUtf8Bytes + case 574: self = .jsonUtf8Data + case 575: self = .jstype + case 576: self = .k + case 577: self = .kChunkSize + case 578: self = .key + case 579: self = .keyField + case 580: self = .keyFieldOpt + case 581: self = .keyType + case 582: self = .kind + case 583: self = .l + case 584: self = .label + case 585: self = .lazy + case 586: self = .leadingComments + case 587: self = .leadingDetachedComments + case 588: self = .length + case 589: self = .lessThan + case 590: self = .let + case 591: self = .lhs + case 592: self = .line + case 593: self = .list + case 594: self = .listOfMessages + case 595: self = .listValue + case 596: self = .littleEndian + case 597: self = .load + case 598: self = .localHasher + case 599: self = .location + case 600: self = .m + case 601: self = .major + case 602: self = .makeAsyncIterator + case 603: self = .makeIterator + case 604: self = .malformedLength + case 605: self = .mapEntry + case 606: self = .mapKeyType + case 607: self = .mapToMessages + case 608: self = .mapValueType + case 609: self = .mapVisitor + case 610: self = .maximumEdition + case 611: self = .mdayStart + case 612: self = .merge + case 613: self = .message + case 614: self = .messageDepthLimit + case 615: self = .messageEncoding + case 616: self = .messageExtension + case 617: self = .messageImplementationBase + case 618: self = .messageOptions + case 619: self = .messageSet + case 620: self = .messageSetWireFormat + case 621: self = .messageSize + case 622: self = .messageType + case 623: self = .method + case 624: self = .methodDescriptorProto + case 625: self = .methodOptions + case 626: self = .methods + case 627: self = .min + case 628: self = .minimumEdition + case 629: self = .minor + case 630: self = .mixin + case 631: self = .mixins + case 632: self = .modifier + case 633: self = .modify + case 634: self = .month + case 635: self = .msgExtension + case 636: self = .mutating + case 637: self = .n + case 638: self = .name + case 639: self = .nameDescription + case 640: self = .nameMap + case 641: self = .namePart + case 642: self = .names + case 643: self = .nanos + case 644: self = .negativeIntValue + case 645: self = .nestedType + case 646: self = .newL + case 647: self = .newList + case 648: self = .newValue + case 649: self = .next + case 650: self = .nextByte + case 651: self = .nextFieldNumber + case 652: self = .nextVarInt + case 653: self = .nil + case 654: self = .nilLiteral + case 655: self = .noBytesAvailable + case 656: self = .noStandardDescriptorAccessor + case 657: self = .nullValue + case 658: self = .number + case 659: self = .numberValue + case 660: self = .objcClassPrefix + case 661: self = .of + case 662: self = .oneofDecl + case 663: self = .oneofDescriptorProto + case 664: self = .oneofIndex + case 665: self = .oneofOptions + case 666: self = .oneofs + case 667: self = .oneOfKind + case 668: self = .optimizeFor + case 669: self = .optimizeMode + case 670: self = .option + case 671: self = .optionalEnumExtensionField + case 672: self = .optionalExtensionField + case 673: self = .optionalGroupExtensionField + case 674: self = .optionalMessageExtensionField + case 675: self = .optionRetention + case 676: self = .options + case 677: self = .optionTargetType + case 678: self = .other + case 679: self = .others + case 680: self = .out + case 681: self = .outputType + case 682: self = .overridableFeatures + case 683: self = .p + case 684: self = .package + case 685: self = .packed + case 686: self = .packedEnumExtensionField + case 687: self = .packedExtensionField + case 688: self = .padding + case 689: self = .parent + case 690: self = .parse + case 691: self = .path + case 692: self = .paths + case 693: self = .payload + case 694: self = .payloadSize + case 695: self = .phpClassPrefix + case 696: self = .phpMetadataNamespace + case 697: self = .phpNamespace + case 698: self = .pos + case 699: self = .positiveIntValue + case 700: self = .prefix + case 701: self = .preserveProtoFieldNames + case 702: self = .preTraverse + case 703: self = .printUnknownFields + case 704: self = .proto2 + case 705: self = .proto3DefaultValue + case 706: self = .proto3Optional + case 707: self = .protobufApiversionCheck + case 708: self = .protobufApiversion3 + case 709: self = .protobufBool + case 710: self = .protobufBytes + case 711: self = .protobufDouble + case 712: self = .protobufEnumMap + case 713: self = .protobufExtension + case 714: self = .protobufFixed32 + case 715: self = .protobufFixed64 + case 716: self = .protobufFloat + case 717: self = .protobufInt32 + case 718: self = .protobufInt64 + case 719: self = .protobufMap + case 720: self = .protobufMessageMap + case 721: self = .protobufSfixed32 + case 722: self = .protobufSfixed64 + case 723: self = .protobufSint32 + case 724: self = .protobufSint64 + case 725: self = .protobufString + case 726: self = .protobufUint32 + case 727: self = .protobufUint64 + case 728: self = .protobufExtensionFieldValues + case 729: self = .protobufFieldNumber + case 730: self = .protobufGeneratedIsEqualTo + case 731: self = .protobufNameMap + case 732: self = .protobufNewField + case 733: self = .protobufPackage + case 734: self = .protocol + case 735: self = .protoFieldName + case 736: self = .protoMessageName + case 737: self = .protoNameProviding + case 738: self = .protoPaths + case 739: self = .public + case 740: self = .publicDependency + case 741: self = .putBoolValue + case 742: self = .putBytesValue + case 743: self = .putDoubleValue + case 744: self = .putEnumValue + case 745: self = .putFixedUint32 + case 746: self = .putFixedUint64 + case 747: self = .putFloatValue + case 748: self = .putInt64 + case 749: self = .putStringValue + case 750: self = .putUint64 + case 751: self = .putUint64Hex + case 752: self = .putVarInt + case 753: self = .putZigZagVarInt + case 754: self = .pyGenericServices + case 755: self = .r + case 756: self = .rawChars + case 757: self = .rawRepresentable + case 758: self = .rawValue_ + case 759: self = .read4HexDigits + case 760: self = .readBytes + case 761: self = .register + case 762: self = .repeated + case 763: self = .repeatedEnumExtensionField + case 764: self = .repeatedExtensionField + case 765: self = .repeatedFieldEncoding + case 766: self = .repeatedGroupExtensionField + case 767: self = .repeatedMessageExtensionField + case 768: self = .repeating + case 769: self = .requestStreaming + case 770: self = .requestTypeURL + case 771: self = .requiredSize + case 772: self = .responseStreaming + case 773: self = .responseTypeURL + case 774: self = .result + case 775: self = .retention + case 776: self = .rethrows + case 777: self = .return + case 778: self = .returnType + case 779: self = .revision + case 780: self = .rhs + case 781: self = .root + case 782: self = .rubyPackage + case 783: self = .s + case 784: self = .sawBackslash + case 785: self = .sawSection4Characters + case 786: self = .sawSection5Characters + case 787: self = .scan + case 788: self = .scanner + case 789: self = .seconds + case 790: self = .self_ + case 791: self = .semantic + case 792: self = .sendable + case 793: self = .separator + case 794: self = .serialize + case 795: self = .serializedBytes + case 796: self = .serializedData + case 797: self = .serializedSize + case 798: self = .serverStreaming + case 799: self = .service + case 800: self = .serviceDescriptorProto + case 801: self = .serviceOptions + case 802: self = .set + case 803: self = .setExtensionValue + case 804: self = .shift + case 805: self = .simpleExtensionMap + case 806: self = .size + case 807: self = .sizer + case 808: self = .source + case 809: self = .sourceCodeInfo + case 810: self = .sourceContext + case 811: self = .sourceEncoding + case 812: self = .sourceFile + case 813: self = .sourceLocation + case 814: self = .span + case 815: self = .split + case 816: self = .start + case 817: self = .startArray + case 818: self = .startArrayObject + case 819: self = .startField + case 820: self = .startIndex + case 821: self = .startMessageField + case 822: self = .startObject + case 823: self = .startRegularField + case 824: self = .state + case 825: self = .static + case 826: self = .staticString + case 827: self = .storage + case 828: self = .string + case 829: self = .stringLiteral + case 830: self = .stringLiteralType + case 831: self = .stringResult + case 832: self = .stringValue + case 833: self = .struct + case 834: self = .structValue + case 835: self = .subDecoder + case 836: self = .subscript + case 837: self = .subVisitor + case 838: self = .swift + case 839: self = .swiftPrefix + case 840: self = .swiftProtobufContiguousBytes + case 841: self = .swiftProtobufError + case 842: self = .syntax + case 843: self = .t + case 844: self = .tag + case 845: self = .targets + case 846: self = .terminator + case 847: self = .testDecoder + case 848: self = .text + case 849: self = .textDecoder + case 850: self = .textFormatDecoder + case 851: self = .textFormatDecodingError + case 852: self = .textFormatDecodingOptions + case 853: self = .textFormatEncodingOptions + case 854: self = .textFormatEncodingVisitor + case 855: self = .textFormatString + case 856: self = .throwOrIgnore + case 857: self = .throws + case 858: self = .timeInterval + case 859: self = .timeIntervalSince1970 + case 860: self = .timeIntervalSinceReferenceDate + case 861: self = .timestamp + case 862: self = .tooLarge + case 863: self = .total + case 864: self = .totalArrayDepth + case 865: self = .totalSize + case 866: self = .trailingComments + case 867: self = .traverse + case 868: self = .true + case 869: self = .try + case 870: self = .type + case 871: self = .typealias + case 872: self = .typeEnum + case 873: self = .typeName + case 874: self = .typePrefix + case 875: self = .typeStart + case 876: self = .typeUnknown + case 877: self = .typeURL + case 878: self = .uint32 + case 879: self = .uint32Value + case 880: self = .uint64 + case 881: self = .uint64Value + case 882: self = .uint8 + case 883: self = .unchecked + case 884: self = .unicodeScalarLiteral + case 885: self = .unicodeScalarLiteralType + case 886: self = .unicodeScalars + case 887: self = .unicodeScalarView + case 888: self = .uninterpretedOption + case 889: self = .union + case 890: self = .uniqueStorage + case 891: self = .unknown + case 892: self = .unknownFields + case 893: self = .unknownStorage + case 894: self = .unpackTo + case 895: self = .unsafeBufferPointer + case 896: self = .unsafeMutablePointer + case 897: self = .unsafeMutableRawBufferPointer + case 898: self = .unsafeRawBufferPointer + case 899: self = .unsafeRawPointer + case 900: self = .unverifiedLazy + case 901: self = .updatedOptions + case 902: self = .url + case 903: self = .useDeterministicOrdering + case 904: self = .utf8 + case 905: self = .utf8Ptr + case 906: self = .utf8ToDouble + case 907: self = .utf8Validation + case 908: self = .utf8View + case 909: self = .v + case 910: self = .value + case 911: self = .valueField + case 912: self = .values + case 913: self = .valueType + case 914: self = .var + case 915: self = .verification + case 916: self = .verificationState + case 917: self = .version + case 918: self = .versionString + case 919: self = .visitExtensionFields + case 920: self = .visitExtensionFieldsAsMessageSet + case 921: self = .visitMapField + case 922: self = .visitor + case 923: self = .visitPacked + case 924: self = .visitPackedBoolField + case 925: self = .visitPackedDoubleField + case 926: self = .visitPackedEnumField + case 927: self = .visitPackedFixed32Field + case 928: self = .visitPackedFixed64Field + case 929: self = .visitPackedFloatField + case 930: self = .visitPackedInt32Field + case 931: self = .visitPackedInt64Field + case 932: self = .visitPackedSfixed32Field + case 933: self = .visitPackedSfixed64Field + case 934: self = .visitPackedSint32Field + case 935: self = .visitPackedSint64Field + case 936: self = .visitPackedUint32Field + case 937: self = .visitPackedUint64Field + case 938: self = .visitRepeated + case 939: self = .visitRepeatedBoolField + case 940: self = .visitRepeatedBytesField + case 941: self = .visitRepeatedDoubleField + case 942: self = .visitRepeatedEnumField + case 943: self = .visitRepeatedFixed32Field + case 944: self = .visitRepeatedFixed64Field + case 945: self = .visitRepeatedFloatField + case 946: self = .visitRepeatedGroupField + case 947: self = .visitRepeatedInt32Field + case 948: self = .visitRepeatedInt64Field + case 949: self = .visitRepeatedMessageField + case 950: self = .visitRepeatedSfixed32Field + case 951: self = .visitRepeatedSfixed64Field + case 952: self = .visitRepeatedSint32Field + case 953: self = .visitRepeatedSint64Field + case 954: self = .visitRepeatedStringField + case 955: self = .visitRepeatedUint32Field + case 956: self = .visitRepeatedUint64Field + case 957: self = .visitSingular + case 958: self = .visitSingularBoolField + case 959: self = .visitSingularBytesField + case 960: self = .visitSingularDoubleField + case 961: self = .visitSingularEnumField + case 962: self = .visitSingularFixed32Field + case 963: self = .visitSingularFixed64Field + case 964: self = .visitSingularFloatField + case 965: self = .visitSingularGroupField + case 966: self = .visitSingularInt32Field + case 967: self = .visitSingularInt64Field + case 968: self = .visitSingularMessageField + case 969: self = .visitSingularSfixed32Field + case 970: self = .visitSingularSfixed64Field + case 971: self = .visitSingularSint32Field + case 972: self = .visitSingularSint64Field + case 973: self = .visitSingularStringField + case 974: self = .visitSingularUint32Field + case 975: self = .visitSingularUint64Field + case 976: self = .visitUnknown + case 977: self = .wasDecoded + case 978: self = .weak + case 979: self = .weakDependency + case 980: self = .where + case 981: self = .wireFormat + case 982: self = .with + case 983: self = .withUnsafeBytes + case 984: self = .withUnsafeMutableBytes + case 985: self = .work + case 986: self = .wrapped + case 987: self = .wrappedType + case 988: self = .wrappedValue + case 989: self = .written + case 990: self = .yday default: self = .UNRECOGNIZED(rawValue) } } @@ -2042,992 +2034,988 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, case .anyExtensionField: return 9 case .anyMessageExtension: return 10 case .anyMessageStorage: return 11 - case .anyTypeUrlnotRegistered: return 12 - case .anyUnpackError: return 13 - case .api: return 14 - case .appended: return 15 - case .appendUintHex: return 16 - case .appendUnknown: return 17 - case .areAllInitialized: return 18 - case .array: return 19 - case .arrayDepth: return 20 - case .arrayLiteral: return 21 - case .arraySeparator: return 22 - case .as: return 23 - case .asciiOpenCurlyBracket: return 24 - case .asciiZero: return 25 - case .async: return 26 - case .asyncIterator: return 27 - case .asyncIteratorProtocol: return 28 - case .asyncMessageSequence: return 29 - case .available: return 30 - case .b: return 31 - case .base: return 32 - case .base64Values: return 33 - case .baseAddress: return 34 - case .baseType: return 35 - case .begin: return 36 - case .binary: return 37 - case .binaryDecoder: return 38 - case .binaryDecoding: return 39 - case .binaryDecodingError: return 40 - case .binaryDecodingOptions: return 41 - case .binaryDelimited: return 42 - case .binaryEncoder: return 43 - case .binaryEncoding: return 44 - case .binaryEncodingError: return 45 - case .binaryEncodingMessageSetSizeVisitor: return 46 - case .binaryEncodingMessageSetVisitor: return 47 - case .binaryEncodingOptions: return 48 - case .binaryEncodingSizeVisitor: return 49 - case .binaryEncodingVisitor: return 50 - case .binaryOptions: return 51 - case .binaryProtobufDelimitedMessages: return 52 - case .binaryStreamDecoding: return 53 - case .binaryStreamDecodingError: return 54 - case .bitPattern: return 55 - case .body: return 56 - case .bool: return 57 - case .booleanLiteral: return 58 - case .booleanLiteralType: return 59 - case .boolValue: return 60 - case .buffer: return 61 - case .bytes: return 62 - case .bytesInGroup: return 63 - case .bytesNeeded: return 64 - case .bytesRead: return 65 - case .bytesValue: return 66 - case .c: return 67 - case .capitalizeNext: return 68 - case .cardinality: return 69 - case .caseIterable: return 70 - case .ccEnableArenas: return 71 - case .ccGenericServices: return 72 - case .character: return 73 - case .chars: return 74 - case .chunk: return 75 - case .class: return 76 - case .clearAggregateValue: return 77 - case .clearAllowAlias: return 78 - case .clearBegin: return 79 - case .clearCcEnableArenas: return 80 - case .clearCcGenericServices: return 81 - case .clearClientStreaming: return 82 - case .clearCsharpNamespace: return 83 - case .clearCtype: return 84 - case .clearDebugRedact: return 85 - case .clearDefaultValue: return 86 - case .clearDeprecated: return 87 - case .clearDeprecatedLegacyJsonFieldConflicts: return 88 - case .clearDeprecationWarning: return 89 - case .clearDoubleValue: return 90 - case .clearEdition: return 91 - case .clearEditionDeprecated: return 92 - case .clearEditionIntroduced: return 93 - case .clearEditionRemoved: return 94 - case .clearEnd: return 95 - case .clearEnumType: return 96 - case .clearExtendee: return 97 - case .clearExtensionValue: return 98 - case .clearFeatures: return 99 - case .clearFeatureSupport: return 100 - case .clearFieldPresence: return 101 - case .clearFixedFeatures: return 102 - case .clearFullName: return 103 - case .clearGoPackage: return 104 - case .clearIdempotencyLevel: return 105 - case .clearIdentifierValue: return 106 - case .clearInputType: return 107 - case .clearIsExtension: return 108 - case .clearJavaGenerateEqualsAndHash: return 109 - case .clearJavaGenericServices: return 110 - case .clearJavaMultipleFiles: return 111 - case .clearJavaOuterClassname: return 112 - case .clearJavaPackage: return 113 - case .clearJavaStringCheckUtf8: return 114 - case .clearJsonFormat: return 115 - case .clearJsonName: return 116 - case .clearJstype: return 117 - case .clearLabel: return 118 - case .clearLazy: return 119 - case .clearLeadingComments: return 120 - case .clearMapEntry: return 121 - case .clearMaximumEdition: return 122 - case .clearMessageEncoding: return 123 - case .clearMessageSetWireFormat: return 124 - case .clearMinimumEdition: return 125 - case .clearName: return 126 - case .clearNamePart: return 127 - case .clearNegativeIntValue: return 128 - case .clearNoStandardDescriptorAccessor: return 129 - case .clearNumber: return 130 - case .clearObjcClassPrefix: return 131 - case .clearOneofIndex: return 132 - case .clearOptimizeFor: return 133 - case .clearOptions: return 134 - case .clearOutputType: return 135 - case .clearOverridableFeatures: return 136 - case .clearPackage: return 137 - case .clearPacked: return 138 - case .clearPhpClassPrefix: return 139 - case .clearPhpMetadataNamespace: return 140 - case .clearPhpNamespace: return 141 - case .clearPositiveIntValue: return 142 - case .clearProto3Optional: return 143 - case .clearPyGenericServices: return 144 - case .clearRepeated: return 145 - case .clearRepeatedFieldEncoding: return 146 - case .clearReserved: return 147 - case .clearRetention: return 148 - case .clearRubyPackage: return 149 - case .clearSemantic: return 150 - case .clearServerStreaming: return 151 - case .clearSourceCodeInfo: return 152 - case .clearSourceContext: return 153 - case .clearSourceFile: return 154 - case .clearStart: return 155 - case .clearStringValue: return 156 - case .clearSwiftPrefix: return 157 - case .clearSyntax: return 158 - case .clearTrailingComments: return 159 - case .clearType: return 160 - case .clearTypeName: return 161 - case .clearUnverifiedLazy: return 162 - case .clearUtf8Validation: return 163 - case .clearValue: return 164 - case .clearVerification: return 165 - case .clearWeak: return 166 - case .clientStreaming: return 167 - case .code: return 168 - case .codePoint: return 169 - case .codeUnits: return 170 - case .collection: return 171 - case .com: return 172 - case .comma: return 173 - case .consumedBytes: return 174 - case .contentsOf: return 175 - case .copy: return 176 - case .count: return 177 - case .countVarintsInBuffer: return 178 - case .csharpNamespace: return 179 - case .ctype: return 180 - case .customCodable: return 181 - case .customDebugStringConvertible: return 182 - case .customStringConvertible: return 183 - case .d: return 184 - case .data: return 185 - case .dataResult: return 186 - case .date: return 187 - case .daySec: return 188 - case .daysSinceEpoch: return 189 - case .debugDescription_: return 190 - case .debugRedact: return 191 - case .declaration: return 192 - case .decoded: return 193 - case .decodedFromJsonnull: return 194 - case .decodeExtensionField: return 195 - case .decodeExtensionFieldsAsMessageSet: return 196 - case .decodeJson: return 197 - case .decodeMapField: return 198 - case .decodeMessage: return 199 - case .decoder: return 200 - case .decodeRepeated: return 201 - case .decodeRepeatedBoolField: return 202 - case .decodeRepeatedBytesField: return 203 - case .decodeRepeatedDoubleField: return 204 - case .decodeRepeatedEnumField: return 205 - case .decodeRepeatedFixed32Field: return 206 - case .decodeRepeatedFixed64Field: return 207 - case .decodeRepeatedFloatField: return 208 - case .decodeRepeatedGroupField: return 209 - case .decodeRepeatedInt32Field: return 210 - case .decodeRepeatedInt64Field: return 211 - case .decodeRepeatedMessageField: return 212 - case .decodeRepeatedSfixed32Field: return 213 - case .decodeRepeatedSfixed64Field: return 214 - case .decodeRepeatedSint32Field: return 215 - case .decodeRepeatedSint64Field: return 216 - case .decodeRepeatedStringField: return 217 - case .decodeRepeatedUint32Field: return 218 - case .decodeRepeatedUint64Field: return 219 - case .decodeSingular: return 220 - case .decodeSingularBoolField: return 221 - case .decodeSingularBytesField: return 222 - case .decodeSingularDoubleField: return 223 - case .decodeSingularEnumField: return 224 - case .decodeSingularFixed32Field: return 225 - case .decodeSingularFixed64Field: return 226 - case .decodeSingularFloatField: return 227 - case .decodeSingularGroupField: return 228 - case .decodeSingularInt32Field: return 229 - case .decodeSingularInt64Field: return 230 - case .decodeSingularMessageField: return 231 - case .decodeSingularSfixed32Field: return 232 - case .decodeSingularSfixed64Field: return 233 - case .decodeSingularSint32Field: return 234 - case .decodeSingularSint64Field: return 235 - case .decodeSingularStringField: return 236 - case .decodeSingularUint32Field: return 237 - case .decodeSingularUint64Field: return 238 - case .decodeTextFormat: return 239 - case .defaultAnyTypeUrlprefix: return 240 - case .defaults: return 241 - case .defaultValue: return 242 - case .dependency: return 243 - case .deprecated: return 244 - case .deprecatedLegacyJsonFieldConflicts: return 245 - case .deprecationWarning: return 246 - case .description_: return 247 - case .descriptorProto: return 248 - case .dictionary: return 249 - case .dictionaryLiteral: return 250 - case .digit: return 251 - case .digit0: return 252 - case .digit1: return 253 - case .digitCount: return 254 - case .digits: return 255 - case .digitValue: return 256 - case .discardableResult: return 257 - case .discardUnknownFields: return 258 - case .double: return 259 - case .doubleValue: return 260 - case .duration: return 261 - case .e: return 262 - case .edition: return 263 - case .editionDefault: return 264 - case .editionDefaults: return 265 - case .editionDeprecated: return 266 - case .editionIntroduced: return 267 - case .editionRemoved: return 268 - case .element: return 269 - case .elements: return 270 - case .emitExtensionFieldName: return 271 - case .emitFieldName: return 272 - case .emitFieldNumber: return 273 - case .empty: return 274 - case .encodeAsBytes: return 275 - case .encoded: return 276 - case .encodedJsonstring: return 277 - case .encodedSize: return 278 - case .encodeField: return 279 - case .encoder: return 280 - case .end: return 281 - case .endArray: return 282 - case .endMessageField: return 283 - case .endObject: return 284 - case .endRegularField: return 285 - case .enum: return 286 - case .enumDescriptorProto: return 287 - case .enumOptions: return 288 - case .enumReservedRange: return 289 - case .enumType: return 290 - case .enumvalue: return 291 - case .enumValueDescriptorProto: return 292 - case .enumValueOptions: return 293 - case .equatable: return 294 - case .error: return 295 - case .expressibleByArrayLiteral: return 296 - case .expressibleByDictionaryLiteral: return 297 - case .ext: return 298 - case .extDecoder: return 299 - case .extendedGraphemeClusterLiteral: return 300 - case .extendedGraphemeClusterLiteralType: return 301 - case .extendee: return 302 - case .extensibleMessage: return 303 - case .extension: return 304 - case .extensionField: return 305 - case .extensionFieldNumber: return 306 - case .extensionFieldValueSet: return 307 - case .extensionMap: return 308 - case .extensionRange: return 309 - case .extensionRangeOptions: return 310 - case .extensions: return 311 - case .extras: return 312 - case .f: return 313 - case .false: return 314 - case .features: return 315 - case .featureSet: return 316 - case .featureSetDefaults: return 317 - case .featureSetEditionDefault: return 318 - case .featureSupport: return 319 - case .field: return 320 - case .fieldData: return 321 - case .fieldDescriptorProto: return 322 - case .fieldMask: return 323 - case .fieldName: return 324 - case .fieldNameCount: return 325 - case .fieldNum: return 326 - case .fieldNumber: return 327 - case .fieldNumberForProto: return 328 - case .fieldOptions: return 329 - case .fieldPresence: return 330 - case .fields: return 331 - case .fieldSize: return 332 - case .fieldTag: return 333 - case .fieldType: return 334 - case .file: return 335 - case .fileDescriptorProto: return 336 - case .fileDescriptorSet: return 337 - case .fileName: return 338 - case .fileOptions: return 339 - case .filter: return 340 - case .final: return 341 - case .finiteOnly: return 342 - case .first: return 343 - case .firstItem: return 344 - case .fixedFeatures: return 345 - case .float: return 346 - case .floatLiteral: return 347 - case .floatLiteralType: return 348 - case .floatValue: return 349 - case .forMessageName: return 350 - case .formUnion: return 351 - case .forReadingFrom: return 352 - case .forTypeURL: return 353 - case .forwardParser: return 354 - case .forWritingInto: return 355 - case .from: return 356 - case .fromAscii2: return 357 - case .fromAscii4: return 358 - case .fromByteOffset: return 359 - case .fromHexDigit: return 360 - case .fullName: return 361 - case .func: return 362 - case .function: return 363 - case .g: return 364 - case .generatedCodeInfo: return 365 - case .get: return 366 - case .getExtensionValue: return 367 - case .googleapis: return 368 - case .googleProtobufAny: return 369 - case .googleProtobufApi: return 370 - case .googleProtobufBoolValue: return 371 - case .googleProtobufBytesValue: return 372 - case .googleProtobufDescriptorProto: return 373 - case .googleProtobufDoubleValue: return 374 - case .googleProtobufDuration: return 375 - case .googleProtobufEdition: return 376 - case .googleProtobufEmpty: return 377 - case .googleProtobufEnum: return 378 - case .googleProtobufEnumDescriptorProto: return 379 - case .googleProtobufEnumOptions: return 380 - case .googleProtobufEnumValue: return 381 - case .googleProtobufEnumValueDescriptorProto: return 382 - case .googleProtobufEnumValueOptions: return 383 - case .googleProtobufExtensionRangeOptions: return 384 - case .googleProtobufFeatureSet: return 385 - case .googleProtobufFeatureSetDefaults: return 386 - case .googleProtobufField: return 387 - case .googleProtobufFieldDescriptorProto: return 388 - case .googleProtobufFieldMask: return 389 - case .googleProtobufFieldOptions: return 390 - case .googleProtobufFileDescriptorProto: return 391 - case .googleProtobufFileDescriptorSet: return 392 - case .googleProtobufFileOptions: return 393 - case .googleProtobufFloatValue: return 394 - case .googleProtobufGeneratedCodeInfo: return 395 - case .googleProtobufInt32Value: return 396 - case .googleProtobufInt64Value: return 397 - case .googleProtobufListValue: return 398 - case .googleProtobufMessageOptions: return 399 - case .googleProtobufMethod: return 400 - case .googleProtobufMethodDescriptorProto: return 401 - case .googleProtobufMethodOptions: return 402 - case .googleProtobufMixin: return 403 - case .googleProtobufNullValue: return 404 - case .googleProtobufOneofDescriptorProto: return 405 - case .googleProtobufOneofOptions: return 406 - case .googleProtobufOption: return 407 - case .googleProtobufServiceDescriptorProto: return 408 - case .googleProtobufServiceOptions: return 409 - case .googleProtobufSourceCodeInfo: return 410 - case .googleProtobufSourceContext: return 411 - case .googleProtobufStringValue: return 412 - case .googleProtobufStruct: return 413 - case .googleProtobufSyntax: return 414 - case .googleProtobufTimestamp: return 415 - case .googleProtobufType: return 416 - case .googleProtobufUint32Value: return 417 - case .googleProtobufUint64Value: return 418 - case .googleProtobufUninterpretedOption: return 419 - case .googleProtobufValue: return 420 - case .goPackage: return 421 - case .group: return 422 - case .groupFieldNumberStack: return 423 - case .groupSize: return 424 - case .hadOneofValue: return 425 - case .handleConflictingOneOf: return 426 - case .hasAggregateValue: return 427 - case .hasAllowAlias: return 428 - case .hasBegin: return 429 - case .hasCcEnableArenas: return 430 - case .hasCcGenericServices: return 431 - case .hasClientStreaming: return 432 - case .hasCsharpNamespace: return 433 - case .hasCtype: return 434 - case .hasDebugRedact: return 435 - case .hasDefaultValue: return 436 - case .hasDeprecated: return 437 - case .hasDeprecatedLegacyJsonFieldConflicts: return 438 - case .hasDeprecationWarning: return 439 - case .hasDoubleValue: return 440 - case .hasEdition: return 441 - case .hasEditionDeprecated: return 442 - case .hasEditionIntroduced: return 443 - case .hasEditionRemoved: return 444 - case .hasEnd: return 445 - case .hasEnumType: return 446 - case .hasExtendee: return 447 - case .hasExtensionValue: return 448 - case .hasFeatures: return 449 - case .hasFeatureSupport: return 450 - case .hasFieldPresence: return 451 - case .hasFixedFeatures: return 452 - case .hasFullName: return 453 - case .hasGoPackage: return 454 - case .hash: return 455 - case .hashable: return 456 - case .hasher: return 457 - case .hashVisitor: return 458 - case .hasIdempotencyLevel: return 459 - case .hasIdentifierValue: return 460 - case .hasInputType: return 461 - case .hasIsExtension: return 462 - case .hasJavaGenerateEqualsAndHash: return 463 - case .hasJavaGenericServices: return 464 - case .hasJavaMultipleFiles: return 465 - case .hasJavaOuterClassname: return 466 - case .hasJavaPackage: return 467 - case .hasJavaStringCheckUtf8: return 468 - case .hasJsonFormat: return 469 - case .hasJsonName: return 470 - case .hasJstype: return 471 - case .hasLabel: return 472 - case .hasLazy: return 473 - case .hasLeadingComments: return 474 - case .hasMapEntry: return 475 - case .hasMaximumEdition: return 476 - case .hasMessageEncoding: return 477 - case .hasMessageSetWireFormat: return 478 - case .hasMinimumEdition: return 479 - case .hasName: return 480 - case .hasNamePart: return 481 - case .hasNegativeIntValue: return 482 - case .hasNoStandardDescriptorAccessor: return 483 - case .hasNumber: return 484 - case .hasObjcClassPrefix: return 485 - case .hasOneofIndex: return 486 - case .hasOptimizeFor: return 487 - case .hasOptions: return 488 - case .hasOutputType: return 489 - case .hasOverridableFeatures: return 490 - case .hasPackage: return 491 - case .hasPacked: return 492 - case .hasPhpClassPrefix: return 493 - case .hasPhpMetadataNamespace: return 494 - case .hasPhpNamespace: return 495 - case .hasPositiveIntValue: return 496 - case .hasProto3Optional: return 497 - case .hasPyGenericServices: return 498 - case .hasRepeated: return 499 + case .anyUnpackError: return 12 + case .api: return 13 + case .appended: return 14 + case .appendUintHex: return 15 + case .appendUnknown: return 16 + case .areAllInitialized: return 17 + case .array: return 18 + case .arrayDepth: return 19 + case .arrayLiteral: return 20 + case .arraySeparator: return 21 + case .as: return 22 + case .asciiOpenCurlyBracket: return 23 + case .asciiZero: return 24 + case .async: return 25 + case .asyncIterator: return 26 + case .asyncIteratorProtocol: return 27 + case .asyncMessageSequence: return 28 + case .available: return 29 + case .b: return 30 + case .base: return 31 + case .base64Values: return 32 + case .baseAddress: return 33 + case .baseType: return 34 + case .begin: return 35 + case .binary: return 36 + case .binaryDecoder: return 37 + case .binaryDecoding: return 38 + case .binaryDecodingError: return 39 + case .binaryDecodingOptions: return 40 + case .binaryDelimited: return 41 + case .binaryEncoder: return 42 + case .binaryEncodingError: return 43 + case .binaryEncodingMessageSetSizeVisitor: return 44 + case .binaryEncodingMessageSetVisitor: return 45 + case .binaryEncodingOptions: return 46 + case .binaryEncodingSizeVisitor: return 47 + case .binaryEncodingVisitor: return 48 + case .binaryOptions: return 49 + case .binaryProtobufDelimitedMessages: return 50 + case .binaryStreamDecoding: return 51 + case .binaryStreamDecodingError: return 52 + case .bitPattern: return 53 + case .body: return 54 + case .bool: return 55 + case .booleanLiteral: return 56 + case .booleanLiteralType: return 57 + case .boolValue: return 58 + case .buffer: return 59 + case .bytes: return 60 + case .bytesInGroup: return 61 + case .bytesNeeded: return 62 + case .bytesRead: return 63 + case .bytesValue: return 64 + case .c: return 65 + case .capitalizeNext: return 66 + case .cardinality: return 67 + case .caseIterable: return 68 + case .ccEnableArenas: return 69 + case .ccGenericServices: return 70 + case .character: return 71 + case .chars: return 72 + case .chunk: return 73 + case .class: return 74 + case .clearAggregateValue: return 75 + case .clearAllowAlias: return 76 + case .clearBegin: return 77 + case .clearCcEnableArenas: return 78 + case .clearCcGenericServices: return 79 + case .clearClientStreaming: return 80 + case .clearCsharpNamespace: return 81 + case .clearCtype: return 82 + case .clearDebugRedact: return 83 + case .clearDefaultValue: return 84 + case .clearDeprecated: return 85 + case .clearDeprecatedLegacyJsonFieldConflicts: return 86 + case .clearDeprecationWarning: return 87 + case .clearDoubleValue: return 88 + case .clearEdition: return 89 + case .clearEditionDeprecated: return 90 + case .clearEditionIntroduced: return 91 + case .clearEditionRemoved: return 92 + case .clearEnd: return 93 + case .clearEnumType: return 94 + case .clearExtendee: return 95 + case .clearExtensionValue: return 96 + case .clearFeatures: return 97 + case .clearFeatureSupport: return 98 + case .clearFieldPresence: return 99 + case .clearFixedFeatures: return 100 + case .clearFullName: return 101 + case .clearGoPackage: return 102 + case .clearIdempotencyLevel: return 103 + case .clearIdentifierValue: return 104 + case .clearInputType: return 105 + case .clearIsExtension: return 106 + case .clearJavaGenerateEqualsAndHash: return 107 + case .clearJavaGenericServices: return 108 + case .clearJavaMultipleFiles: return 109 + case .clearJavaOuterClassname: return 110 + case .clearJavaPackage: return 111 + case .clearJavaStringCheckUtf8: return 112 + case .clearJsonFormat: return 113 + case .clearJsonName: return 114 + case .clearJstype: return 115 + case .clearLabel: return 116 + case .clearLazy: return 117 + case .clearLeadingComments: return 118 + case .clearMapEntry: return 119 + case .clearMaximumEdition: return 120 + case .clearMessageEncoding: return 121 + case .clearMessageSetWireFormat: return 122 + case .clearMinimumEdition: return 123 + case .clearName: return 124 + case .clearNamePart: return 125 + case .clearNegativeIntValue: return 126 + case .clearNoStandardDescriptorAccessor: return 127 + case .clearNumber: return 128 + case .clearObjcClassPrefix: return 129 + case .clearOneofIndex: return 130 + case .clearOptimizeFor: return 131 + case .clearOptions: return 132 + case .clearOutputType: return 133 + case .clearOverridableFeatures: return 134 + case .clearPackage: return 135 + case .clearPacked: return 136 + case .clearPhpClassPrefix: return 137 + case .clearPhpMetadataNamespace: return 138 + case .clearPhpNamespace: return 139 + case .clearPositiveIntValue: return 140 + case .clearProto3Optional: return 141 + case .clearPyGenericServices: return 142 + case .clearRepeated: return 143 + case .clearRepeatedFieldEncoding: return 144 + case .clearReserved: return 145 + case .clearRetention: return 146 + case .clearRubyPackage: return 147 + case .clearSemantic: return 148 + case .clearServerStreaming: return 149 + case .clearSourceCodeInfo: return 150 + case .clearSourceContext: return 151 + case .clearSourceFile: return 152 + case .clearStart: return 153 + case .clearStringValue: return 154 + case .clearSwiftPrefix: return 155 + case .clearSyntax: return 156 + case .clearTrailingComments: return 157 + case .clearType: return 158 + case .clearTypeName: return 159 + case .clearUnverifiedLazy: return 160 + case .clearUtf8Validation: return 161 + case .clearValue: return 162 + case .clearVerification: return 163 + case .clearWeak: return 164 + case .clientStreaming: return 165 + case .code: return 166 + case .codePoint: return 167 + case .codeUnits: return 168 + case .collection: return 169 + case .com: return 170 + case .comma: return 171 + case .consumedBytes: return 172 + case .contentsOf: return 173 + case .copy: return 174 + case .count: return 175 + case .countVarintsInBuffer: return 176 + case .csharpNamespace: return 177 + case .ctype: return 178 + case .customCodable: return 179 + case .customDebugStringConvertible: return 180 + case .customStringConvertible: return 181 + case .d: return 182 + case .data: return 183 + case .dataResult: return 184 + case .date: return 185 + case .daySec: return 186 + case .daysSinceEpoch: return 187 + case .debugDescription_: return 188 + case .debugRedact: return 189 + case .declaration: return 190 + case .decoded: return 191 + case .decodedFromJsonnull: return 192 + case .decodeExtensionField: return 193 + case .decodeExtensionFieldsAsMessageSet: return 194 + case .decodeJson: return 195 + case .decodeMapField: return 196 + case .decodeMessage: return 197 + case .decoder: return 198 + case .decodeRepeated: return 199 + case .decodeRepeatedBoolField: return 200 + case .decodeRepeatedBytesField: return 201 + case .decodeRepeatedDoubleField: return 202 + case .decodeRepeatedEnumField: return 203 + case .decodeRepeatedFixed32Field: return 204 + case .decodeRepeatedFixed64Field: return 205 + case .decodeRepeatedFloatField: return 206 + case .decodeRepeatedGroupField: return 207 + case .decodeRepeatedInt32Field: return 208 + case .decodeRepeatedInt64Field: return 209 + case .decodeRepeatedMessageField: return 210 + case .decodeRepeatedSfixed32Field: return 211 + case .decodeRepeatedSfixed64Field: return 212 + case .decodeRepeatedSint32Field: return 213 + case .decodeRepeatedSint64Field: return 214 + case .decodeRepeatedStringField: return 215 + case .decodeRepeatedUint32Field: return 216 + case .decodeRepeatedUint64Field: return 217 + case .decodeSingular: return 218 + case .decodeSingularBoolField: return 219 + case .decodeSingularBytesField: return 220 + case .decodeSingularDoubleField: return 221 + case .decodeSingularEnumField: return 222 + case .decodeSingularFixed32Field: return 223 + case .decodeSingularFixed64Field: return 224 + case .decodeSingularFloatField: return 225 + case .decodeSingularGroupField: return 226 + case .decodeSingularInt32Field: return 227 + case .decodeSingularInt64Field: return 228 + case .decodeSingularMessageField: return 229 + case .decodeSingularSfixed32Field: return 230 + case .decodeSingularSfixed64Field: return 231 + case .decodeSingularSint32Field: return 232 + case .decodeSingularSint64Field: return 233 + case .decodeSingularStringField: return 234 + case .decodeSingularUint32Field: return 235 + case .decodeSingularUint64Field: return 236 + case .decodeTextFormat: return 237 + case .defaultAnyTypeUrlprefix: return 238 + case .defaults: return 239 + case .defaultValue: return 240 + case .dependency: return 241 + case .deprecated: return 242 + case .deprecatedLegacyJsonFieldConflicts: return 243 + case .deprecationWarning: return 244 + case .description_: return 245 + case .descriptorProto: return 246 + case .dictionary: return 247 + case .dictionaryLiteral: return 248 + case .digit: return 249 + case .digit0: return 250 + case .digit1: return 251 + case .digitCount: return 252 + case .digits: return 253 + case .digitValue: return 254 + case .discardableResult: return 255 + case .discardUnknownFields: return 256 + case .double: return 257 + case .doubleValue: return 258 + case .duration: return 259 + case .e: return 260 + case .edition: return 261 + case .editionDefault: return 262 + case .editionDefaults: return 263 + case .editionDeprecated: return 264 + case .editionIntroduced: return 265 + case .editionRemoved: return 266 + case .element: return 267 + case .elements: return 268 + case .emitExtensionFieldName: return 269 + case .emitFieldName: return 270 + case .emitFieldNumber: return 271 + case .empty: return 272 + case .encodeAsBytes: return 273 + case .encoded: return 274 + case .encodedJsonstring: return 275 + case .encodedSize: return 276 + case .encodeField: return 277 + case .encoder: return 278 + case .end: return 279 + case .endArray: return 280 + case .endMessageField: return 281 + case .endObject: return 282 + case .endRegularField: return 283 + case .enum: return 284 + case .enumDescriptorProto: return 285 + case .enumOptions: return 286 + case .enumReservedRange: return 287 + case .enumType: return 288 + case .enumvalue: return 289 + case .enumValueDescriptorProto: return 290 + case .enumValueOptions: return 291 + case .equatable: return 292 + case .error: return 293 + case .expressibleByArrayLiteral: return 294 + case .expressibleByDictionaryLiteral: return 295 + case .ext: return 296 + case .extDecoder: return 297 + case .extendedGraphemeClusterLiteral: return 298 + case .extendedGraphemeClusterLiteralType: return 299 + case .extendee: return 300 + case .extensibleMessage: return 301 + case .extension: return 302 + case .extensionField: return 303 + case .extensionFieldNumber: return 304 + case .extensionFieldValueSet: return 305 + case .extensionMap: return 306 + case .extensionRange: return 307 + case .extensionRangeOptions: return 308 + case .extensions: return 309 + case .extras: return 310 + case .f: return 311 + case .false: return 312 + case .features: return 313 + case .featureSet: return 314 + case .featureSetDefaults: return 315 + case .featureSetEditionDefault: return 316 + case .featureSupport: return 317 + case .field: return 318 + case .fieldData: return 319 + case .fieldDescriptorProto: return 320 + case .fieldMask: return 321 + case .fieldName: return 322 + case .fieldNameCount: return 323 + case .fieldNum: return 324 + case .fieldNumber: return 325 + case .fieldNumberForProto: return 326 + case .fieldOptions: return 327 + case .fieldPresence: return 328 + case .fields: return 329 + case .fieldSize: return 330 + case .fieldTag: return 331 + case .fieldType: return 332 + case .file: return 333 + case .fileDescriptorProto: return 334 + case .fileDescriptorSet: return 335 + case .fileName: return 336 + case .fileOptions: return 337 + case .filter: return 338 + case .final: return 339 + case .finiteOnly: return 340 + case .first: return 341 + case .firstItem: return 342 + case .fixedFeatures: return 343 + case .float: return 344 + case .floatLiteral: return 345 + case .floatLiteralType: return 346 + case .floatValue: return 347 + case .forMessageName: return 348 + case .formUnion: return 349 + case .forReadingFrom: return 350 + case .forTypeURL: return 351 + case .forwardParser: return 352 + case .forWritingInto: return 353 + case .from: return 354 + case .fromAscii2: return 355 + case .fromAscii4: return 356 + case .fromByteOffset: return 357 + case .fromHexDigit: return 358 + case .fullName: return 359 + case .func: return 360 + case .function: return 361 + case .g: return 362 + case .generatedCodeInfo: return 363 + case .get: return 364 + case .getExtensionValue: return 365 + case .googleapis: return 366 + case .googleProtobufAny: return 367 + case .googleProtobufApi: return 368 + case .googleProtobufBoolValue: return 369 + case .googleProtobufBytesValue: return 370 + case .googleProtobufDescriptorProto: return 371 + case .googleProtobufDoubleValue: return 372 + case .googleProtobufDuration: return 373 + case .googleProtobufEdition: return 374 + case .googleProtobufEmpty: return 375 + case .googleProtobufEnum: return 376 + case .googleProtobufEnumDescriptorProto: return 377 + case .googleProtobufEnumOptions: return 378 + case .googleProtobufEnumValue: return 379 + case .googleProtobufEnumValueDescriptorProto: return 380 + case .googleProtobufEnumValueOptions: return 381 + case .googleProtobufExtensionRangeOptions: return 382 + case .googleProtobufFeatureSet: return 383 + case .googleProtobufFeatureSetDefaults: return 384 + case .googleProtobufField: return 385 + case .googleProtobufFieldDescriptorProto: return 386 + case .googleProtobufFieldMask: return 387 + case .googleProtobufFieldOptions: return 388 + case .googleProtobufFileDescriptorProto: return 389 + case .googleProtobufFileDescriptorSet: return 390 + case .googleProtobufFileOptions: return 391 + case .googleProtobufFloatValue: return 392 + case .googleProtobufGeneratedCodeInfo: return 393 + case .googleProtobufInt32Value: return 394 + case .googleProtobufInt64Value: return 395 + case .googleProtobufListValue: return 396 + case .googleProtobufMessageOptions: return 397 + case .googleProtobufMethod: return 398 + case .googleProtobufMethodDescriptorProto: return 399 + case .googleProtobufMethodOptions: return 400 + case .googleProtobufMixin: return 401 + case .googleProtobufNullValue: return 402 + case .googleProtobufOneofDescriptorProto: return 403 + case .googleProtobufOneofOptions: return 404 + case .googleProtobufOption: return 405 + case .googleProtobufServiceDescriptorProto: return 406 + case .googleProtobufServiceOptions: return 407 + case .googleProtobufSourceCodeInfo: return 408 + case .googleProtobufSourceContext: return 409 + case .googleProtobufStringValue: return 410 + case .googleProtobufStruct: return 411 + case .googleProtobufSyntax: return 412 + case .googleProtobufTimestamp: return 413 + case .googleProtobufType: return 414 + case .googleProtobufUint32Value: return 415 + case .googleProtobufUint64Value: return 416 + case .googleProtobufUninterpretedOption: return 417 + case .googleProtobufValue: return 418 + case .goPackage: return 419 + case .group: return 420 + case .groupFieldNumberStack: return 421 + case .groupSize: return 422 + case .hadOneofValue: return 423 + case .handleConflictingOneOf: return 424 + case .hasAggregateValue: return 425 + case .hasAllowAlias: return 426 + case .hasBegin: return 427 + case .hasCcEnableArenas: return 428 + case .hasCcGenericServices: return 429 + case .hasClientStreaming: return 430 + case .hasCsharpNamespace: return 431 + case .hasCtype: return 432 + case .hasDebugRedact: return 433 + case .hasDefaultValue: return 434 + case .hasDeprecated: return 435 + case .hasDeprecatedLegacyJsonFieldConflicts: return 436 + case .hasDeprecationWarning: return 437 + case .hasDoubleValue: return 438 + case .hasEdition: return 439 + case .hasEditionDeprecated: return 440 + case .hasEditionIntroduced: return 441 + case .hasEditionRemoved: return 442 + case .hasEnd: return 443 + case .hasEnumType: return 444 + case .hasExtendee: return 445 + case .hasExtensionValue: return 446 + case .hasFeatures: return 447 + case .hasFeatureSupport: return 448 + case .hasFieldPresence: return 449 + case .hasFixedFeatures: return 450 + case .hasFullName: return 451 + case .hasGoPackage: return 452 + case .hash: return 453 + case .hashable: return 454 + case .hasher: return 455 + case .hashVisitor: return 456 + case .hasIdempotencyLevel: return 457 + case .hasIdentifierValue: return 458 + case .hasInputType: return 459 + case .hasIsExtension: return 460 + case .hasJavaGenerateEqualsAndHash: return 461 + case .hasJavaGenericServices: return 462 + case .hasJavaMultipleFiles: return 463 + case .hasJavaOuterClassname: return 464 + case .hasJavaPackage: return 465 + case .hasJavaStringCheckUtf8: return 466 + case .hasJsonFormat: return 467 + case .hasJsonName: return 468 + case .hasJstype: return 469 + case .hasLabel: return 470 + case .hasLazy: return 471 + case .hasLeadingComments: return 472 + case .hasMapEntry: return 473 + case .hasMaximumEdition: return 474 + case .hasMessageEncoding: return 475 + case .hasMessageSetWireFormat: return 476 + case .hasMinimumEdition: return 477 + case .hasName: return 478 + case .hasNamePart: return 479 + case .hasNegativeIntValue: return 480 + case .hasNoStandardDescriptorAccessor: return 481 + case .hasNumber: return 482 + case .hasObjcClassPrefix: return 483 + case .hasOneofIndex: return 484 + case .hasOptimizeFor: return 485 + case .hasOptions: return 486 + case .hasOutputType: return 487 + case .hasOverridableFeatures: return 488 + case .hasPackage: return 489 + case .hasPacked: return 490 + case .hasPhpClassPrefix: return 491 + case .hasPhpMetadataNamespace: return 492 + case .hasPhpNamespace: return 493 + case .hasPositiveIntValue: return 494 + case .hasProto3Optional: return 495 + case .hasPyGenericServices: return 496 + case .hasRepeated: return 497 + case .hasRepeatedFieldEncoding: return 498 + case .hasReserved: return 499 default: break } switch self { - case .hasRepeatedFieldEncoding: return 500 - case .hasReserved: return 501 - case .hasRetention: return 502 - case .hasRubyPackage: return 503 - case .hasSemantic: return 504 - case .hasServerStreaming: return 505 - case .hasSourceCodeInfo: return 506 - case .hasSourceContext: return 507 - case .hasSourceFile: return 508 - case .hasStart: return 509 - case .hasStringValue: return 510 - case .hasSwiftPrefix: return 511 - case .hasSyntax: return 512 - case .hasTrailingComments: return 513 - case .hasType: return 514 - case .hasTypeName: return 515 - case .hasUnverifiedLazy: return 516 - case .hasUtf8Validation: return 517 - case .hasValue: return 518 - case .hasVerification: return 519 - case .hasWeak: return 520 - case .hour: return 521 - case .i: return 522 - case .idempotencyLevel: return 523 - case .identifierValue: return 524 - case .if: return 525 - case .ignoreUnknownExtensionFields: return 526 - case .ignoreUnknownFields: return 527 - case .index: return 528 - case .init_: return 529 - case .inout: return 530 - case .inputType: return 531 - case .insert: return 532 - case .int: return 533 - case .int32: return 534 - case .int32Value: return 535 - case .int64: return 536 - case .int64Value: return 537 - case .int8: return 538 - case .integerLiteral: return 539 - case .integerLiteralType: return 540 - case .intern: return 541 - case .internal: return 542 - case .internalState: return 543 - case .into: return 544 - case .ints: return 545 - case .isA: return 546 - case .isEqual: return 547 - case .isEqualTo: return 548 - case .isExtension: return 549 - case .isInitialized: return 550 - case .isNegative: return 551 - case .itemTagsEncodedSize: return 552 - case .iterator: return 553 - case .javaGenerateEqualsAndHash: return 554 - case .javaGenericServices: return 555 - case .javaMultipleFiles: return 556 - case .javaOuterClassname: return 557 - case .javaPackage: return 558 - case .javaStringCheckUtf8: return 559 - case .jsondecoder: return 560 - case .jsondecodingError: return 561 - case .jsondecodingOptions: return 562 - case .jsonEncoder: return 563 - case .jsonencoding: return 564 - case .jsonencodingError: return 565 - case .jsonencodingOptions: return 566 - case .jsonencodingVisitor: return 567 - case .jsonFormat: return 568 - case .jsonmapEncodingVisitor: return 569 - case .jsonName: return 570 - case .jsonPath: return 571 - case .jsonPaths: return 572 - case .jsonscanner: return 573 - case .jsonString: return 574 - case .jsonText: return 575 - case .jsonUtf8Bytes: return 576 - case .jsonUtf8Data: return 577 - case .jstype: return 578 - case .k: return 579 - case .kChunkSize: return 580 - case .key: return 581 - case .keyField: return 582 - case .keyFieldOpt: return 583 - case .keyType: return 584 - case .kind: return 585 - case .l: return 586 - case .label: return 587 - case .lazy: return 588 - case .leadingComments: return 589 - case .leadingDetachedComments: return 590 - case .length: return 591 - case .lessThan: return 592 - case .let: return 593 - case .lhs: return 594 - case .line: return 595 - case .list: return 596 - case .listOfMessages: return 597 - case .listValue: return 598 - case .littleEndian: return 599 - case .load: return 600 - case .localHasher: return 601 - case .location: return 602 - case .m: return 603 - case .major: return 604 - case .makeAsyncIterator: return 605 - case .makeIterator: return 606 - case .malformedLength: return 607 - case .mapEntry: return 608 - case .mapKeyType: return 609 - case .mapToMessages: return 610 - case .mapValueType: return 611 - case .mapVisitor: return 612 - case .maximumEdition: return 613 - case .mdayStart: return 614 - case .merge: return 615 - case .message: return 616 - case .messageDepthLimit: return 617 - case .messageEncoding: return 618 - case .messageExtension: return 619 - case .messageImplementationBase: return 620 - case .messageOptions: return 621 - case .messageSet: return 622 - case .messageSetWireFormat: return 623 - case .messageSize: return 624 - case .messageType: return 625 - case .method: return 626 - case .methodDescriptorProto: return 627 - case .methodOptions: return 628 - case .methods: return 629 - case .min: return 630 - case .minimumEdition: return 631 - case .minor: return 632 - case .mixin: return 633 - case .mixins: return 634 - case .modifier: return 635 - case .modify: return 636 - case .month: return 637 - case .msgExtension: return 638 - case .mutating: return 639 - case .n: return 640 - case .name: return 641 - case .nameDescription: return 642 - case .nameMap: return 643 - case .namePart: return 644 - case .names: return 645 - case .nanos: return 646 - case .negativeIntValue: return 647 - case .nestedType: return 648 - case .newL: return 649 - case .newList: return 650 - case .newValue: return 651 - case .next: return 652 - case .nextByte: return 653 - case .nextFieldNumber: return 654 - case .nextVarInt: return 655 - case .nil: return 656 - case .nilLiteral: return 657 - case .noBytesAvailable: return 658 - case .noStandardDescriptorAccessor: return 659 - case .nullValue: return 660 - case .number: return 661 - case .numberValue: return 662 - case .objcClassPrefix: return 663 - case .of: return 664 - case .oneofDecl: return 665 - case .oneofDescriptorProto: return 666 - case .oneofIndex: return 667 - case .oneofOptions: return 668 - case .oneofs: return 669 - case .oneOfKind: return 670 - case .optimizeFor: return 671 - case .optimizeMode: return 672 - case .option: return 673 - case .optionalEnumExtensionField: return 674 - case .optionalExtensionField: return 675 - case .optionalGroupExtensionField: return 676 - case .optionalMessageExtensionField: return 677 - case .optionRetention: return 678 - case .options: return 679 - case .optionTargetType: return 680 - case .other: return 681 - case .others: return 682 - case .out: return 683 - case .outputType: return 684 - case .overridableFeatures: return 685 - case .p: return 686 - case .package: return 687 - case .packed: return 688 - case .packedEnumExtensionField: return 689 - case .packedExtensionField: return 690 - case .padding: return 691 - case .parent: return 692 - case .parse: return 693 - case .path: return 694 - case .paths: return 695 - case .payload: return 696 - case .payloadSize: return 697 - case .phpClassPrefix: return 698 - case .phpMetadataNamespace: return 699 - case .phpNamespace: return 700 - case .pos: return 701 - case .positiveIntValue: return 702 - case .prefix: return 703 - case .preserveProtoFieldNames: return 704 - case .preTraverse: return 705 - case .printUnknownFields: return 706 - case .proto2: return 707 - case .proto3DefaultValue: return 708 - case .proto3Optional: return 709 - case .protobufApiversionCheck: return 710 - case .protobufApiversion3: return 711 - case .protobufBool: return 712 - case .protobufBytes: return 713 - case .protobufDouble: return 714 - case .protobufEnumMap: return 715 - case .protobufExtension: return 716 - case .protobufFixed32: return 717 - case .protobufFixed64: return 718 - case .protobufFloat: return 719 - case .protobufInt32: return 720 - case .protobufInt64: return 721 - case .protobufMap: return 722 - case .protobufMessageMap: return 723 - case .protobufSfixed32: return 724 - case .protobufSfixed64: return 725 - case .protobufSint32: return 726 - case .protobufSint64: return 727 - case .protobufString: return 728 - case .protobufUint32: return 729 - case .protobufUint64: return 730 - case .protobufExtensionFieldValues: return 731 - case .protobufFieldNumber: return 732 - case .protobufGeneratedIsEqualTo: return 733 - case .protobufNameMap: return 734 - case .protobufNewField: return 735 - case .protobufPackage: return 736 - case .protocol: return 737 - case .protoFieldName: return 738 - case .protoMessageName: return 739 - case .protoNameProviding: return 740 - case .protoPaths: return 741 - case .public: return 742 - case .publicDependency: return 743 - case .putBoolValue: return 744 - case .putBytesValue: return 745 - case .putDoubleValue: return 746 - case .putEnumValue: return 747 - case .putFixedUint32: return 748 - case .putFixedUint64: return 749 - case .putFloatValue: return 750 - case .putInt64: return 751 - case .putStringValue: return 752 - case .putUint64: return 753 - case .putUint64Hex: return 754 - case .putVarInt: return 755 - case .putZigZagVarInt: return 756 - case .pyGenericServices: return 757 - case .r: return 758 - case .rawChars: return 759 - case .rawRepresentable: return 760 - case .rawValue_: return 761 - case .read4HexDigits: return 762 - case .readBytes: return 763 - case .register: return 764 - case .repeated: return 765 - case .repeatedEnumExtensionField: return 766 - case .repeatedExtensionField: return 767 - case .repeatedFieldEncoding: return 768 - case .repeatedGroupExtensionField: return 769 - case .repeatedMessageExtensionField: return 770 - case .repeating: return 771 - case .requestStreaming: return 772 - case .requestTypeURL: return 773 - case .requiredSize: return 774 - case .responseStreaming: return 775 - case .responseTypeURL: return 776 - case .result: return 777 - case .retention: return 778 - case .rethrows: return 779 - case .return: return 780 - case .returnType: return 781 - case .revision: return 782 - case .rhs: return 783 - case .root: return 784 - case .rubyPackage: return 785 - case .s: return 786 - case .sawBackslash: return 787 - case .sawSection4Characters: return 788 - case .sawSection5Characters: return 789 - case .scan: return 790 - case .scanner: return 791 - case .seconds: return 792 - case .self_: return 793 - case .semantic: return 794 - case .sendable: return 795 - case .separator: return 796 - case .serialize: return 797 - case .serializedBytes: return 798 - case .serializedData: return 799 - case .serializedSize: return 800 - case .serverStreaming: return 801 - case .service: return 802 - case .serviceDescriptorProto: return 803 - case .serviceOptions: return 804 - case .set: return 805 - case .setExtensionValue: return 806 - case .shift: return 807 - case .simpleExtensionMap: return 808 - case .size: return 809 - case .sizer: return 810 - case .source: return 811 - case .sourceCodeInfo: return 812 - case .sourceContext: return 813 - case .sourceEncoding: return 814 - case .sourceFile: return 815 - case .sourceLocation: return 816 - case .span: return 817 - case .split: return 818 - case .start: return 819 - case .startArray: return 820 - case .startArrayObject: return 821 - case .startField: return 822 - case .startIndex: return 823 - case .startMessageField: return 824 - case .startObject: return 825 - case .startRegularField: return 826 - case .state: return 827 - case .static: return 828 - case .staticString: return 829 - case .storage: return 830 - case .string: return 831 - case .stringLiteral: return 832 - case .stringLiteralType: return 833 - case .stringResult: return 834 - case .stringValue: return 835 - case .struct: return 836 - case .structValue: return 837 - case .subDecoder: return 838 - case .subscript: return 839 - case .subVisitor: return 840 - case .swift: return 841 - case .swiftPrefix: return 842 - case .swiftProtobufContiguousBytes: return 843 - case .swiftProtobufError: return 844 - case .syntax: return 845 - case .t: return 846 - case .tag: return 847 - case .targets: return 848 - case .terminator: return 849 - case .testDecoder: return 850 - case .text: return 851 - case .textDecoder: return 852 - case .textFormatDecoder: return 853 - case .textFormatDecodingError: return 854 - case .textFormatDecodingOptions: return 855 - case .textFormatEncodingOptions: return 856 - case .textFormatEncodingVisitor: return 857 - case .textFormatString: return 858 - case .throwOrIgnore: return 859 - case .throws: return 860 - case .timeInterval: return 861 - case .timeIntervalSince1970: return 862 - case .timeIntervalSinceReferenceDate: return 863 - case .timestamp: return 864 - case .tooLarge: return 865 - case .total: return 866 - case .totalArrayDepth: return 867 - case .totalSize: return 868 - case .trailingComments: return 869 - case .traverse: return 870 - case .true: return 871 - case .try: return 872 - case .type: return 873 - case .typealias: return 874 - case .typeEnum: return 875 - case .typeName: return 876 - case .typePrefix: return 877 - case .typeStart: return 878 - case .typeUnknown: return 879 - case .typeURL: return 880 - case .uint32: return 881 - case .uint32Value: return 882 - case .uint64: return 883 - case .uint64Value: return 884 - case .uint8: return 885 - case .unchecked: return 886 - case .unicodeScalarLiteral: return 887 - case .unicodeScalarLiteralType: return 888 - case .unicodeScalars: return 889 - case .unicodeScalarView: return 890 - case .uninterpretedOption: return 891 - case .union: return 892 - case .uniqueStorage: return 893 - case .unknown: return 894 - case .unknownFields: return 895 - case .unknownStorage: return 896 - case .unpackTo: return 897 - case .unregisteredTypeURL: return 898 - case .unsafeBufferPointer: return 899 - case .unsafeMutablePointer: return 900 - case .unsafeMutableRawBufferPointer: return 901 - case .unsafeRawBufferPointer: return 902 - case .unsafeRawPointer: return 903 - case .unverifiedLazy: return 904 - case .updatedOptions: return 905 - case .url: return 906 - case .useDeterministicOrdering: return 907 - case .utf8: return 908 - case .utf8Ptr: return 909 - case .utf8ToDouble: return 910 - case .utf8Validation: return 911 - case .utf8View: return 912 - case .v: return 913 - case .value: return 914 - case .valueField: return 915 - case .values: return 916 - case .valueType: return 917 - case .var: return 918 - case .verification: return 919 - case .verificationState: return 920 - case .version: return 921 - case .versionString: return 922 - case .visitExtensionFields: return 923 - case .visitExtensionFieldsAsMessageSet: return 924 - case .visitMapField: return 925 - case .visitor: return 926 - case .visitPacked: return 927 - case .visitPackedBoolField: return 928 - case .visitPackedDoubleField: return 929 - case .visitPackedEnumField: return 930 - case .visitPackedFixed32Field: return 931 - case .visitPackedFixed64Field: return 932 - case .visitPackedFloatField: return 933 - case .visitPackedInt32Field: return 934 - case .visitPackedInt64Field: return 935 - case .visitPackedSfixed32Field: return 936 - case .visitPackedSfixed64Field: return 937 - case .visitPackedSint32Field: return 938 - case .visitPackedSint64Field: return 939 - case .visitPackedUint32Field: return 940 - case .visitPackedUint64Field: return 941 - case .visitRepeated: return 942 - case .visitRepeatedBoolField: return 943 - case .visitRepeatedBytesField: return 944 - case .visitRepeatedDoubleField: return 945 - case .visitRepeatedEnumField: return 946 - case .visitRepeatedFixed32Field: return 947 - case .visitRepeatedFixed64Field: return 948 - case .visitRepeatedFloatField: return 949 - case .visitRepeatedGroupField: return 950 - case .visitRepeatedInt32Field: return 951 - case .visitRepeatedInt64Field: return 952 - case .visitRepeatedMessageField: return 953 - case .visitRepeatedSfixed32Field: return 954 - case .visitRepeatedSfixed64Field: return 955 - case .visitRepeatedSint32Field: return 956 - case .visitRepeatedSint64Field: return 957 - case .visitRepeatedStringField: return 958 - case .visitRepeatedUint32Field: return 959 - case .visitRepeatedUint64Field: return 960 - case .visitSingular: return 961 - case .visitSingularBoolField: return 962 - case .visitSingularBytesField: return 963 - case .visitSingularDoubleField: return 964 - case .visitSingularEnumField: return 965 - case .visitSingularFixed32Field: return 966 - case .visitSingularFixed64Field: return 967 - case .visitSingularFloatField: return 968 - case .visitSingularGroupField: return 969 - case .visitSingularInt32Field: return 970 - case .visitSingularInt64Field: return 971 - case .visitSingularMessageField: return 972 - case .visitSingularSfixed32Field: return 973 - case .visitSingularSfixed64Field: return 974 - case .visitSingularSint32Field: return 975 - case .visitSingularSint64Field: return 976 - case .visitSingularStringField: return 977 - case .visitSingularUint32Field: return 978 - case .visitSingularUint64Field: return 979 - case .visitUnknown: return 980 - case .wasDecoded: return 981 - case .weak: return 982 - case .weakDependency: return 983 - case .where: return 984 - case .wireFormat: return 985 - case .with: return 986 - case .withUnsafeBytes: return 987 - case .withUnsafeMutableBytes: return 988 - case .work: return 989 - case .wrapped: return 990 - case .wrappedType: return 991 - case .wrappedValue: return 992 - case .written: return 993 - case .yday: return 994 + case .hasRetention: return 500 + case .hasRubyPackage: return 501 + case .hasSemantic: return 502 + case .hasServerStreaming: return 503 + case .hasSourceCodeInfo: return 504 + case .hasSourceContext: return 505 + case .hasSourceFile: return 506 + case .hasStart: return 507 + case .hasStringValue: return 508 + case .hasSwiftPrefix: return 509 + case .hasSyntax: return 510 + case .hasTrailingComments: return 511 + case .hasType: return 512 + case .hasTypeName: return 513 + case .hasUnverifiedLazy: return 514 + case .hasUtf8Validation: return 515 + case .hasValue: return 516 + case .hasVerification: return 517 + case .hasWeak: return 518 + case .hour: return 519 + case .i: return 520 + case .idempotencyLevel: return 521 + case .identifierValue: return 522 + case .if: return 523 + case .ignoreUnknownExtensionFields: return 524 + case .ignoreUnknownFields: return 525 + case .index: return 526 + case .init_: return 527 + case .inout: return 528 + case .inputType: return 529 + case .insert: return 530 + case .int: return 531 + case .int32: return 532 + case .int32Value: return 533 + case .int64: return 534 + case .int64Value: return 535 + case .int8: return 536 + case .integerLiteral: return 537 + case .integerLiteralType: return 538 + case .intern: return 539 + case .internal: return 540 + case .internalState: return 541 + case .into: return 542 + case .ints: return 543 + case .isA: return 544 + case .isEqual: return 545 + case .isEqualTo: return 546 + case .isExtension: return 547 + case .isInitialized: return 548 + case .isNegative: return 549 + case .itemTagsEncodedSize: return 550 + case .iterator: return 551 + case .javaGenerateEqualsAndHash: return 552 + case .javaGenericServices: return 553 + case .javaMultipleFiles: return 554 + case .javaOuterClassname: return 555 + case .javaPackage: return 556 + case .javaStringCheckUtf8: return 557 + case .jsondecoder: return 558 + case .jsondecodingError: return 559 + case .jsondecodingOptions: return 560 + case .jsonEncoder: return 561 + case .jsonencodingError: return 562 + case .jsonencodingOptions: return 563 + case .jsonencodingVisitor: return 564 + case .jsonFormat: return 565 + case .jsonmapEncodingVisitor: return 566 + case .jsonName: return 567 + case .jsonPath: return 568 + case .jsonPaths: return 569 + case .jsonscanner: return 570 + case .jsonString: return 571 + case .jsonText: return 572 + case .jsonUtf8Bytes: return 573 + case .jsonUtf8Data: return 574 + case .jstype: return 575 + case .k: return 576 + case .kChunkSize: return 577 + case .key: return 578 + case .keyField: return 579 + case .keyFieldOpt: return 580 + case .keyType: return 581 + case .kind: return 582 + case .l: return 583 + case .label: return 584 + case .lazy: return 585 + case .leadingComments: return 586 + case .leadingDetachedComments: return 587 + case .length: return 588 + case .lessThan: return 589 + case .let: return 590 + case .lhs: return 591 + case .line: return 592 + case .list: return 593 + case .listOfMessages: return 594 + case .listValue: return 595 + case .littleEndian: return 596 + case .load: return 597 + case .localHasher: return 598 + case .location: return 599 + case .m: return 600 + case .major: return 601 + case .makeAsyncIterator: return 602 + case .makeIterator: return 603 + case .malformedLength: return 604 + case .mapEntry: return 605 + case .mapKeyType: return 606 + case .mapToMessages: return 607 + case .mapValueType: return 608 + case .mapVisitor: return 609 + case .maximumEdition: return 610 + case .mdayStart: return 611 + case .merge: return 612 + case .message: return 613 + case .messageDepthLimit: return 614 + case .messageEncoding: return 615 + case .messageExtension: return 616 + case .messageImplementationBase: return 617 + case .messageOptions: return 618 + case .messageSet: return 619 + case .messageSetWireFormat: return 620 + case .messageSize: return 621 + case .messageType: return 622 + case .method: return 623 + case .methodDescriptorProto: return 624 + case .methodOptions: return 625 + case .methods: return 626 + case .min: return 627 + case .minimumEdition: return 628 + case .minor: return 629 + case .mixin: return 630 + case .mixins: return 631 + case .modifier: return 632 + case .modify: return 633 + case .month: return 634 + case .msgExtension: return 635 + case .mutating: return 636 + case .n: return 637 + case .name: return 638 + case .nameDescription: return 639 + case .nameMap: return 640 + case .namePart: return 641 + case .names: return 642 + case .nanos: return 643 + case .negativeIntValue: return 644 + case .nestedType: return 645 + case .newL: return 646 + case .newList: return 647 + case .newValue: return 648 + case .next: return 649 + case .nextByte: return 650 + case .nextFieldNumber: return 651 + case .nextVarInt: return 652 + case .nil: return 653 + case .nilLiteral: return 654 + case .noBytesAvailable: return 655 + case .noStandardDescriptorAccessor: return 656 + case .nullValue: return 657 + case .number: return 658 + case .numberValue: return 659 + case .objcClassPrefix: return 660 + case .of: return 661 + case .oneofDecl: return 662 + case .oneofDescriptorProto: return 663 + case .oneofIndex: return 664 + case .oneofOptions: return 665 + case .oneofs: return 666 + case .oneOfKind: return 667 + case .optimizeFor: return 668 + case .optimizeMode: return 669 + case .option: return 670 + case .optionalEnumExtensionField: return 671 + case .optionalExtensionField: return 672 + case .optionalGroupExtensionField: return 673 + case .optionalMessageExtensionField: return 674 + case .optionRetention: return 675 + case .options: return 676 + case .optionTargetType: return 677 + case .other: return 678 + case .others: return 679 + case .out: return 680 + case .outputType: return 681 + case .overridableFeatures: return 682 + case .p: return 683 + case .package: return 684 + case .packed: return 685 + case .packedEnumExtensionField: return 686 + case .packedExtensionField: return 687 + case .padding: return 688 + case .parent: return 689 + case .parse: return 690 + case .path: return 691 + case .paths: return 692 + case .payload: return 693 + case .payloadSize: return 694 + case .phpClassPrefix: return 695 + case .phpMetadataNamespace: return 696 + case .phpNamespace: return 697 + case .pos: return 698 + case .positiveIntValue: return 699 + case .prefix: return 700 + case .preserveProtoFieldNames: return 701 + case .preTraverse: return 702 + case .printUnknownFields: return 703 + case .proto2: return 704 + case .proto3DefaultValue: return 705 + case .proto3Optional: return 706 + case .protobufApiversionCheck: return 707 + case .protobufApiversion3: return 708 + case .protobufBool: return 709 + case .protobufBytes: return 710 + case .protobufDouble: return 711 + case .protobufEnumMap: return 712 + case .protobufExtension: return 713 + case .protobufFixed32: return 714 + case .protobufFixed64: return 715 + case .protobufFloat: return 716 + case .protobufInt32: return 717 + case .protobufInt64: return 718 + case .protobufMap: return 719 + case .protobufMessageMap: return 720 + case .protobufSfixed32: return 721 + case .protobufSfixed64: return 722 + case .protobufSint32: return 723 + case .protobufSint64: return 724 + case .protobufString: return 725 + case .protobufUint32: return 726 + case .protobufUint64: return 727 + case .protobufExtensionFieldValues: return 728 + case .protobufFieldNumber: return 729 + case .protobufGeneratedIsEqualTo: return 730 + case .protobufNameMap: return 731 + case .protobufNewField: return 732 + case .protobufPackage: return 733 + case .protocol: return 734 + case .protoFieldName: return 735 + case .protoMessageName: return 736 + case .protoNameProviding: return 737 + case .protoPaths: return 738 + case .public: return 739 + case .publicDependency: return 740 + case .putBoolValue: return 741 + case .putBytesValue: return 742 + case .putDoubleValue: return 743 + case .putEnumValue: return 744 + case .putFixedUint32: return 745 + case .putFixedUint64: return 746 + case .putFloatValue: return 747 + case .putInt64: return 748 + case .putStringValue: return 749 + case .putUint64: return 750 + case .putUint64Hex: return 751 + case .putVarInt: return 752 + case .putZigZagVarInt: return 753 + case .pyGenericServices: return 754 + case .r: return 755 + case .rawChars: return 756 + case .rawRepresentable: return 757 + case .rawValue_: return 758 + case .read4HexDigits: return 759 + case .readBytes: return 760 + case .register: return 761 + case .repeated: return 762 + case .repeatedEnumExtensionField: return 763 + case .repeatedExtensionField: return 764 + case .repeatedFieldEncoding: return 765 + case .repeatedGroupExtensionField: return 766 + case .repeatedMessageExtensionField: return 767 + case .repeating: return 768 + case .requestStreaming: return 769 + case .requestTypeURL: return 770 + case .requiredSize: return 771 + case .responseStreaming: return 772 + case .responseTypeURL: return 773 + case .result: return 774 + case .retention: return 775 + case .rethrows: return 776 + case .return: return 777 + case .returnType: return 778 + case .revision: return 779 + case .rhs: return 780 + case .root: return 781 + case .rubyPackage: return 782 + case .s: return 783 + case .sawBackslash: return 784 + case .sawSection4Characters: return 785 + case .sawSection5Characters: return 786 + case .scan: return 787 + case .scanner: return 788 + case .seconds: return 789 + case .self_: return 790 + case .semantic: return 791 + case .sendable: return 792 + case .separator: return 793 + case .serialize: return 794 + case .serializedBytes: return 795 + case .serializedData: return 796 + case .serializedSize: return 797 + case .serverStreaming: return 798 + case .service: return 799 + case .serviceDescriptorProto: return 800 + case .serviceOptions: return 801 + case .set: return 802 + case .setExtensionValue: return 803 + case .shift: return 804 + case .simpleExtensionMap: return 805 + case .size: return 806 + case .sizer: return 807 + case .source: return 808 + case .sourceCodeInfo: return 809 + case .sourceContext: return 810 + case .sourceEncoding: return 811 + case .sourceFile: return 812 + case .sourceLocation: return 813 + case .span: return 814 + case .split: return 815 + case .start: return 816 + case .startArray: return 817 + case .startArrayObject: return 818 + case .startField: return 819 + case .startIndex: return 820 + case .startMessageField: return 821 + case .startObject: return 822 + case .startRegularField: return 823 + case .state: return 824 + case .static: return 825 + case .staticString: return 826 + case .storage: return 827 + case .string: return 828 + case .stringLiteral: return 829 + case .stringLiteralType: return 830 + case .stringResult: return 831 + case .stringValue: return 832 + case .struct: return 833 + case .structValue: return 834 + case .subDecoder: return 835 + case .subscript: return 836 + case .subVisitor: return 837 + case .swift: return 838 + case .swiftPrefix: return 839 + case .swiftProtobufContiguousBytes: return 840 + case .swiftProtobufError: return 841 + case .syntax: return 842 + case .t: return 843 + case .tag: return 844 + case .targets: return 845 + case .terminator: return 846 + case .testDecoder: return 847 + case .text: return 848 + case .textDecoder: return 849 + case .textFormatDecoder: return 850 + case .textFormatDecodingError: return 851 + case .textFormatDecodingOptions: return 852 + case .textFormatEncodingOptions: return 853 + case .textFormatEncodingVisitor: return 854 + case .textFormatString: return 855 + case .throwOrIgnore: return 856 + case .throws: return 857 + case .timeInterval: return 858 + case .timeIntervalSince1970: return 859 + case .timeIntervalSinceReferenceDate: return 860 + case .timestamp: return 861 + case .tooLarge: return 862 + case .total: return 863 + case .totalArrayDepth: return 864 + case .totalSize: return 865 + case .trailingComments: return 866 + case .traverse: return 867 + case .true: return 868 + case .try: return 869 + case .type: return 870 + case .typealias: return 871 + case .typeEnum: return 872 + case .typeName: return 873 + case .typePrefix: return 874 + case .typeStart: return 875 + case .typeUnknown: return 876 + case .typeURL: return 877 + case .uint32: return 878 + case .uint32Value: return 879 + case .uint64: return 880 + case .uint64Value: return 881 + case .uint8: return 882 + case .unchecked: return 883 + case .unicodeScalarLiteral: return 884 + case .unicodeScalarLiteralType: return 885 + case .unicodeScalars: return 886 + case .unicodeScalarView: return 887 + case .uninterpretedOption: return 888 + case .union: return 889 + case .uniqueStorage: return 890 + case .unknown: return 891 + case .unknownFields: return 892 + case .unknownStorage: return 893 + case .unpackTo: return 894 + case .unsafeBufferPointer: return 895 + case .unsafeMutablePointer: return 896 + case .unsafeMutableRawBufferPointer: return 897 + case .unsafeRawBufferPointer: return 898 + case .unsafeRawPointer: return 899 + case .unverifiedLazy: return 900 + case .updatedOptions: return 901 + case .url: return 902 + case .useDeterministicOrdering: return 903 + case .utf8: return 904 + case .utf8Ptr: return 905 + case .utf8ToDouble: return 906 + case .utf8Validation: return 907 + case .utf8View: return 908 + case .v: return 909 + case .value: return 910 + case .valueField: return 911 + case .values: return 912 + case .valueType: return 913 + case .var: return 914 + case .verification: return 915 + case .verificationState: return 916 + case .version: return 917 + case .versionString: return 918 + case .visitExtensionFields: return 919 + case .visitExtensionFieldsAsMessageSet: return 920 + case .visitMapField: return 921 + case .visitor: return 922 + case .visitPacked: return 923 + case .visitPackedBoolField: return 924 + case .visitPackedDoubleField: return 925 + case .visitPackedEnumField: return 926 + case .visitPackedFixed32Field: return 927 + case .visitPackedFixed64Field: return 928 + case .visitPackedFloatField: return 929 + case .visitPackedInt32Field: return 930 + case .visitPackedInt64Field: return 931 + case .visitPackedSfixed32Field: return 932 + case .visitPackedSfixed64Field: return 933 + case .visitPackedSint32Field: return 934 + case .visitPackedSint64Field: return 935 + case .visitPackedUint32Field: return 936 + case .visitPackedUint64Field: return 937 + case .visitRepeated: return 938 + case .visitRepeatedBoolField: return 939 + case .visitRepeatedBytesField: return 940 + case .visitRepeatedDoubleField: return 941 + case .visitRepeatedEnumField: return 942 + case .visitRepeatedFixed32Field: return 943 + case .visitRepeatedFixed64Field: return 944 + case .visitRepeatedFloatField: return 945 + case .visitRepeatedGroupField: return 946 + case .visitRepeatedInt32Field: return 947 + case .visitRepeatedInt64Field: return 948 + case .visitRepeatedMessageField: return 949 + case .visitRepeatedSfixed32Field: return 950 + case .visitRepeatedSfixed64Field: return 951 + case .visitRepeatedSint32Field: return 952 + case .visitRepeatedSint64Field: return 953 + case .visitRepeatedStringField: return 954 + case .visitRepeatedUint32Field: return 955 + case .visitRepeatedUint64Field: return 956 + case .visitSingular: return 957 + case .visitSingularBoolField: return 958 + case .visitSingularBytesField: return 959 + case .visitSingularDoubleField: return 960 + case .visitSingularEnumField: return 961 + case .visitSingularFixed32Field: return 962 + case .visitSingularFixed64Field: return 963 + case .visitSingularFloatField: return 964 + case .visitSingularGroupField: return 965 + case .visitSingularInt32Field: return 966 + case .visitSingularInt64Field: return 967 + case .visitSingularMessageField: return 968 + case .visitSingularSfixed32Field: return 969 + case .visitSingularSfixed64Field: return 970 + case .visitSingularSint32Field: return 971 + case .visitSingularSint64Field: return 972 + case .visitSingularStringField: return 973 + case .visitSingularUint32Field: return 974 + case .visitSingularUint64Field: return 975 + case .visitUnknown: return 976 + case .wasDecoded: return 977 + case .weak: return 978 + case .weakDependency: return 979 + case .where: return 980 + case .wireFormat: return 981 + case .with: return 982 + case .withUnsafeBytes: return 983 + case .withUnsafeMutableBytes: return 984 + case .work: return 985 + case .wrapped: return 986 + case .wrappedType: return 987 + case .wrappedValue: return 988 + case .written: return 989 + case .yday: return 990 case .UNRECOGNIZED(let i): return i default: break } @@ -3051,7 +3039,6 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .anyExtensionField, .anyMessageExtension, .anyMessageStorage, - .anyTypeUrlnotRegistered, .anyUnpackError, .api, .appended, @@ -3083,7 +3070,6 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .binaryDecodingOptions, .binaryDelimited, .binaryEncoder, - .binaryEncoding, .binaryEncodingError, .binaryEncodingMessageSetSizeVisitor, .binaryEncodingMessageSetVisitor, @@ -3603,7 +3589,6 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .jsondecodingError, .jsondecodingOptions, .jsonEncoder, - .jsonencoding, .jsonencodingError, .jsonencodingOptions, .jsonencodingVisitor, @@ -3937,7 +3922,6 @@ enum SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf.Enum, .unknownFields, .unknownStorage, .unpackTo, - .unregisteredTypeURL, .unsafeBufferPointer, .unsafeMutablePointer, .unsafeMutableRawBufferPointer, @@ -4054,988 +4038,984 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnum: SwiftProtobuf. 9: .same(proto: "AnyExtensionField"), 10: .same(proto: "AnyMessageExtension"), 11: .same(proto: "AnyMessageStorage"), - 12: .same(proto: "anyTypeURLNotRegistered"), - 13: .same(proto: "AnyUnpackError"), - 14: .same(proto: "Api"), - 15: .same(proto: "appended"), - 16: .same(proto: "appendUIntHex"), - 17: .same(proto: "appendUnknown"), - 18: .same(proto: "areAllInitialized"), - 19: .same(proto: "Array"), - 20: .same(proto: "arrayDepth"), - 21: .same(proto: "arrayLiteral"), - 22: .same(proto: "arraySeparator"), - 23: .same(proto: "as"), - 24: .same(proto: "asciiOpenCurlyBracket"), - 25: .same(proto: "asciiZero"), - 26: .same(proto: "async"), - 27: .same(proto: "AsyncIterator"), - 28: .same(proto: "AsyncIteratorProtocol"), - 29: .same(proto: "AsyncMessageSequence"), - 30: .same(proto: "available"), - 31: .same(proto: "b"), - 32: .same(proto: "Base"), - 33: .same(proto: "base64Values"), - 34: .same(proto: "baseAddress"), - 35: .same(proto: "BaseType"), - 36: .same(proto: "begin"), - 37: .same(proto: "binary"), - 38: .same(proto: "BinaryDecoder"), - 39: .same(proto: "BinaryDecoding"), - 40: .same(proto: "BinaryDecodingError"), - 41: .same(proto: "BinaryDecodingOptions"), - 42: .same(proto: "BinaryDelimited"), - 43: .same(proto: "BinaryEncoder"), - 44: .same(proto: "BinaryEncoding"), - 45: .same(proto: "BinaryEncodingError"), - 46: .same(proto: "BinaryEncodingMessageSetSizeVisitor"), - 47: .same(proto: "BinaryEncodingMessageSetVisitor"), - 48: .same(proto: "BinaryEncodingOptions"), - 49: .same(proto: "BinaryEncodingSizeVisitor"), - 50: .same(proto: "BinaryEncodingVisitor"), - 51: .same(proto: "binaryOptions"), - 52: .same(proto: "binaryProtobufDelimitedMessages"), - 53: .same(proto: "BinaryStreamDecoding"), - 54: .same(proto: "binaryStreamDecodingError"), - 55: .same(proto: "bitPattern"), - 56: .same(proto: "body"), - 57: .same(proto: "Bool"), - 58: .same(proto: "booleanLiteral"), - 59: .same(proto: "BooleanLiteralType"), - 60: .same(proto: "boolValue"), - 61: .same(proto: "buffer"), - 62: .same(proto: "bytes"), - 63: .same(proto: "bytesInGroup"), - 64: .same(proto: "bytesNeeded"), - 65: .same(proto: "bytesRead"), - 66: .same(proto: "BytesValue"), - 67: .same(proto: "c"), - 68: .same(proto: "capitalizeNext"), - 69: .same(proto: "cardinality"), - 70: .same(proto: "CaseIterable"), - 71: .same(proto: "ccEnableArenas"), - 72: .same(proto: "ccGenericServices"), - 73: .same(proto: "Character"), - 74: .same(proto: "chars"), - 75: .same(proto: "chunk"), - 76: .same(proto: "class"), - 77: .same(proto: "clearAggregateValue"), - 78: .same(proto: "clearAllowAlias"), - 79: .same(proto: "clearBegin"), - 80: .same(proto: "clearCcEnableArenas"), - 81: .same(proto: "clearCcGenericServices"), - 82: .same(proto: "clearClientStreaming"), - 83: .same(proto: "clearCsharpNamespace"), - 84: .same(proto: "clearCtype"), - 85: .same(proto: "clearDebugRedact"), - 86: .same(proto: "clearDefaultValue"), - 87: .same(proto: "clearDeprecated"), - 88: .same(proto: "clearDeprecatedLegacyJsonFieldConflicts"), - 89: .same(proto: "clearDeprecationWarning"), - 90: .same(proto: "clearDoubleValue"), - 91: .same(proto: "clearEdition"), - 92: .same(proto: "clearEditionDeprecated"), - 93: .same(proto: "clearEditionIntroduced"), - 94: .same(proto: "clearEditionRemoved"), - 95: .same(proto: "clearEnd"), - 96: .same(proto: "clearEnumType"), - 97: .same(proto: "clearExtendee"), - 98: .same(proto: "clearExtensionValue"), - 99: .same(proto: "clearFeatures"), - 100: .same(proto: "clearFeatureSupport"), - 101: .same(proto: "clearFieldPresence"), - 102: .same(proto: "clearFixedFeatures"), - 103: .same(proto: "clearFullName"), - 104: .same(proto: "clearGoPackage"), - 105: .same(proto: "clearIdempotencyLevel"), - 106: .same(proto: "clearIdentifierValue"), - 107: .same(proto: "clearInputType"), - 108: .same(proto: "clearIsExtension"), - 109: .same(proto: "clearJavaGenerateEqualsAndHash"), - 110: .same(proto: "clearJavaGenericServices"), - 111: .same(proto: "clearJavaMultipleFiles"), - 112: .same(proto: "clearJavaOuterClassname"), - 113: .same(proto: "clearJavaPackage"), - 114: .same(proto: "clearJavaStringCheckUtf8"), - 115: .same(proto: "clearJsonFormat"), - 116: .same(proto: "clearJsonName"), - 117: .same(proto: "clearJstype"), - 118: .same(proto: "clearLabel"), - 119: .same(proto: "clearLazy"), - 120: .same(proto: "clearLeadingComments"), - 121: .same(proto: "clearMapEntry"), - 122: .same(proto: "clearMaximumEdition"), - 123: .same(proto: "clearMessageEncoding"), - 124: .same(proto: "clearMessageSetWireFormat"), - 125: .same(proto: "clearMinimumEdition"), - 126: .same(proto: "clearName"), - 127: .same(proto: "clearNamePart"), - 128: .same(proto: "clearNegativeIntValue"), - 129: .same(proto: "clearNoStandardDescriptorAccessor"), - 130: .same(proto: "clearNumber"), - 131: .same(proto: "clearObjcClassPrefix"), - 132: .same(proto: "clearOneofIndex"), - 133: .same(proto: "clearOptimizeFor"), - 134: .same(proto: "clearOptions"), - 135: .same(proto: "clearOutputType"), - 136: .same(proto: "clearOverridableFeatures"), - 137: .same(proto: "clearPackage"), - 138: .same(proto: "clearPacked"), - 139: .same(proto: "clearPhpClassPrefix"), - 140: .same(proto: "clearPhpMetadataNamespace"), - 141: .same(proto: "clearPhpNamespace"), - 142: .same(proto: "clearPositiveIntValue"), - 143: .same(proto: "clearProto3Optional"), - 144: .same(proto: "clearPyGenericServices"), - 145: .same(proto: "clearRepeated"), - 146: .same(proto: "clearRepeatedFieldEncoding"), - 147: .same(proto: "clearReserved"), - 148: .same(proto: "clearRetention"), - 149: .same(proto: "clearRubyPackage"), - 150: .same(proto: "clearSemantic"), - 151: .same(proto: "clearServerStreaming"), - 152: .same(proto: "clearSourceCodeInfo"), - 153: .same(proto: "clearSourceContext"), - 154: .same(proto: "clearSourceFile"), - 155: .same(proto: "clearStart"), - 156: .same(proto: "clearStringValue"), - 157: .same(proto: "clearSwiftPrefix"), - 158: .same(proto: "clearSyntax"), - 159: .same(proto: "clearTrailingComments"), - 160: .same(proto: "clearType"), - 161: .same(proto: "clearTypeName"), - 162: .same(proto: "clearUnverifiedLazy"), - 163: .same(proto: "clearUtf8Validation"), - 164: .same(proto: "clearValue"), - 165: .same(proto: "clearVerification"), - 166: .same(proto: "clearWeak"), - 167: .same(proto: "clientStreaming"), - 168: .same(proto: "code"), - 169: .same(proto: "codePoint"), - 170: .same(proto: "codeUnits"), - 171: .same(proto: "Collection"), - 172: .same(proto: "com"), - 173: .same(proto: "comma"), - 174: .same(proto: "consumedBytes"), - 175: .same(proto: "contentsOf"), - 176: .same(proto: "copy"), - 177: .same(proto: "count"), - 178: .same(proto: "countVarintsInBuffer"), - 179: .same(proto: "csharpNamespace"), - 180: .same(proto: "ctype"), - 181: .same(proto: "customCodable"), - 182: .same(proto: "CustomDebugStringConvertible"), - 183: .same(proto: "CustomStringConvertible"), - 184: .same(proto: "d"), - 185: .same(proto: "Data"), - 186: .same(proto: "dataResult"), - 187: .same(proto: "date"), - 188: .same(proto: "daySec"), - 189: .same(proto: "daysSinceEpoch"), - 190: .same(proto: "debugDescription"), - 191: .same(proto: "debugRedact"), - 192: .same(proto: "declaration"), - 193: .same(proto: "decoded"), - 194: .same(proto: "decodedFromJSONNull"), - 195: .same(proto: "decodeExtensionField"), - 196: .same(proto: "decodeExtensionFieldsAsMessageSet"), - 197: .same(proto: "decodeJSON"), - 198: .same(proto: "decodeMapField"), - 199: .same(proto: "decodeMessage"), - 200: .same(proto: "decoder"), - 201: .same(proto: "decodeRepeated"), - 202: .same(proto: "decodeRepeatedBoolField"), - 203: .same(proto: "decodeRepeatedBytesField"), - 204: .same(proto: "decodeRepeatedDoubleField"), - 205: .same(proto: "decodeRepeatedEnumField"), - 206: .same(proto: "decodeRepeatedFixed32Field"), - 207: .same(proto: "decodeRepeatedFixed64Field"), - 208: .same(proto: "decodeRepeatedFloatField"), - 209: .same(proto: "decodeRepeatedGroupField"), - 210: .same(proto: "decodeRepeatedInt32Field"), - 211: .same(proto: "decodeRepeatedInt64Field"), - 212: .same(proto: "decodeRepeatedMessageField"), - 213: .same(proto: "decodeRepeatedSFixed32Field"), - 214: .same(proto: "decodeRepeatedSFixed64Field"), - 215: .same(proto: "decodeRepeatedSInt32Field"), - 216: .same(proto: "decodeRepeatedSInt64Field"), - 217: .same(proto: "decodeRepeatedStringField"), - 218: .same(proto: "decodeRepeatedUInt32Field"), - 219: .same(proto: "decodeRepeatedUInt64Field"), - 220: .same(proto: "decodeSingular"), - 221: .same(proto: "decodeSingularBoolField"), - 222: .same(proto: "decodeSingularBytesField"), - 223: .same(proto: "decodeSingularDoubleField"), - 224: .same(proto: "decodeSingularEnumField"), - 225: .same(proto: "decodeSingularFixed32Field"), - 226: .same(proto: "decodeSingularFixed64Field"), - 227: .same(proto: "decodeSingularFloatField"), - 228: .same(proto: "decodeSingularGroupField"), - 229: .same(proto: "decodeSingularInt32Field"), - 230: .same(proto: "decodeSingularInt64Field"), - 231: .same(proto: "decodeSingularMessageField"), - 232: .same(proto: "decodeSingularSFixed32Field"), - 233: .same(proto: "decodeSingularSFixed64Field"), - 234: .same(proto: "decodeSingularSInt32Field"), - 235: .same(proto: "decodeSingularSInt64Field"), - 236: .same(proto: "decodeSingularStringField"), - 237: .same(proto: "decodeSingularUInt32Field"), - 238: .same(proto: "decodeSingularUInt64Field"), - 239: .same(proto: "decodeTextFormat"), - 240: .same(proto: "defaultAnyTypeURLPrefix"), - 241: .same(proto: "defaults"), - 242: .same(proto: "defaultValue"), - 243: .same(proto: "dependency"), - 244: .same(proto: "deprecated"), - 245: .same(proto: "deprecatedLegacyJsonFieldConflicts"), - 246: .same(proto: "deprecationWarning"), - 247: .same(proto: "description"), - 248: .same(proto: "DescriptorProto"), - 249: .same(proto: "Dictionary"), - 250: .same(proto: "dictionaryLiteral"), - 251: .same(proto: "digit"), - 252: .same(proto: "digit0"), - 253: .same(proto: "digit1"), - 254: .same(proto: "digitCount"), - 255: .same(proto: "digits"), - 256: .same(proto: "digitValue"), - 257: .same(proto: "discardableResult"), - 258: .same(proto: "discardUnknownFields"), - 259: .same(proto: "Double"), - 260: .same(proto: "doubleValue"), - 261: .same(proto: "Duration"), - 262: .same(proto: "E"), - 263: .same(proto: "edition"), - 264: .same(proto: "EditionDefault"), - 265: .same(proto: "editionDefaults"), - 266: .same(proto: "editionDeprecated"), - 267: .same(proto: "editionIntroduced"), - 268: .same(proto: "editionRemoved"), - 269: .same(proto: "Element"), - 270: .same(proto: "elements"), - 271: .same(proto: "emitExtensionFieldName"), - 272: .same(proto: "emitFieldName"), - 273: .same(proto: "emitFieldNumber"), - 274: .same(proto: "Empty"), - 275: .same(proto: "encodeAsBytes"), - 276: .same(proto: "encoded"), - 277: .same(proto: "encodedJSONString"), - 278: .same(proto: "encodedSize"), - 279: .same(proto: "encodeField"), - 280: .same(proto: "encoder"), - 281: .same(proto: "end"), - 282: .same(proto: "endArray"), - 283: .same(proto: "endMessageField"), - 284: .same(proto: "endObject"), - 285: .same(proto: "endRegularField"), - 286: .same(proto: "enum"), - 287: .same(proto: "EnumDescriptorProto"), - 288: .same(proto: "EnumOptions"), - 289: .same(proto: "EnumReservedRange"), - 290: .same(proto: "enumType"), - 291: .same(proto: "enumvalue"), - 292: .same(proto: "EnumValueDescriptorProto"), - 293: .same(proto: "EnumValueOptions"), - 294: .same(proto: "Equatable"), - 295: .same(proto: "Error"), - 296: .same(proto: "ExpressibleByArrayLiteral"), - 297: .same(proto: "ExpressibleByDictionaryLiteral"), - 298: .same(proto: "ext"), - 299: .same(proto: "extDecoder"), - 300: .same(proto: "extendedGraphemeClusterLiteral"), - 301: .same(proto: "ExtendedGraphemeClusterLiteralType"), - 302: .same(proto: "extendee"), - 303: .same(proto: "ExtensibleMessage"), - 304: .same(proto: "extension"), - 305: .same(proto: "ExtensionField"), - 306: .same(proto: "extensionFieldNumber"), - 307: .same(proto: "ExtensionFieldValueSet"), - 308: .same(proto: "ExtensionMap"), - 309: .same(proto: "extensionRange"), - 310: .same(proto: "ExtensionRangeOptions"), - 311: .same(proto: "extensions"), - 312: .same(proto: "extras"), - 313: .same(proto: "F"), - 314: .same(proto: "false"), - 315: .same(proto: "features"), - 316: .same(proto: "FeatureSet"), - 317: .same(proto: "FeatureSetDefaults"), - 318: .same(proto: "FeatureSetEditionDefault"), - 319: .same(proto: "featureSupport"), - 320: .same(proto: "field"), - 321: .same(proto: "fieldData"), - 322: .same(proto: "FieldDescriptorProto"), - 323: .same(proto: "FieldMask"), - 324: .same(proto: "fieldName"), - 325: .same(proto: "fieldNameCount"), - 326: .same(proto: "fieldNum"), - 327: .same(proto: "fieldNumber"), - 328: .same(proto: "fieldNumberForProto"), - 329: .same(proto: "FieldOptions"), - 330: .same(proto: "fieldPresence"), - 331: .same(proto: "fields"), - 332: .same(proto: "fieldSize"), - 333: .same(proto: "FieldTag"), - 334: .same(proto: "fieldType"), - 335: .same(proto: "file"), - 336: .same(proto: "FileDescriptorProto"), - 337: .same(proto: "FileDescriptorSet"), - 338: .same(proto: "fileName"), - 339: .same(proto: "FileOptions"), - 340: .same(proto: "filter"), - 341: .same(proto: "final"), - 342: .same(proto: "finiteOnly"), - 343: .same(proto: "first"), - 344: .same(proto: "firstItem"), - 345: .same(proto: "fixedFeatures"), - 346: .same(proto: "Float"), - 347: .same(proto: "floatLiteral"), - 348: .same(proto: "FloatLiteralType"), - 349: .same(proto: "FloatValue"), - 350: .same(proto: "forMessageName"), - 351: .same(proto: "formUnion"), - 352: .same(proto: "forReadingFrom"), - 353: .same(proto: "forTypeURL"), - 354: .same(proto: "ForwardParser"), - 355: .same(proto: "forWritingInto"), - 356: .same(proto: "from"), - 357: .same(proto: "fromAscii2"), - 358: .same(proto: "fromAscii4"), - 359: .same(proto: "fromByteOffset"), - 360: .same(proto: "fromHexDigit"), - 361: .same(proto: "fullName"), - 362: .same(proto: "func"), - 363: .same(proto: "function"), - 364: .same(proto: "G"), - 365: .same(proto: "GeneratedCodeInfo"), - 366: .same(proto: "get"), - 367: .same(proto: "getExtensionValue"), - 368: .same(proto: "googleapis"), - 369: .same(proto: "Google_Protobuf_Any"), - 370: .same(proto: "Google_Protobuf_Api"), - 371: .same(proto: "Google_Protobuf_BoolValue"), - 372: .same(proto: "Google_Protobuf_BytesValue"), - 373: .same(proto: "Google_Protobuf_DescriptorProto"), - 374: .same(proto: "Google_Protobuf_DoubleValue"), - 375: .same(proto: "Google_Protobuf_Duration"), - 376: .same(proto: "Google_Protobuf_Edition"), - 377: .same(proto: "Google_Protobuf_Empty"), - 378: .same(proto: "Google_Protobuf_Enum"), - 379: .same(proto: "Google_Protobuf_EnumDescriptorProto"), - 380: .same(proto: "Google_Protobuf_EnumOptions"), - 381: .same(proto: "Google_Protobuf_EnumValue"), - 382: .same(proto: "Google_Protobuf_EnumValueDescriptorProto"), - 383: .same(proto: "Google_Protobuf_EnumValueOptions"), - 384: .same(proto: "Google_Protobuf_ExtensionRangeOptions"), - 385: .same(proto: "Google_Protobuf_FeatureSet"), - 386: .same(proto: "Google_Protobuf_FeatureSetDefaults"), - 387: .same(proto: "Google_Protobuf_Field"), - 388: .same(proto: "Google_Protobuf_FieldDescriptorProto"), - 389: .same(proto: "Google_Protobuf_FieldMask"), - 390: .same(proto: "Google_Protobuf_FieldOptions"), - 391: .same(proto: "Google_Protobuf_FileDescriptorProto"), - 392: .same(proto: "Google_Protobuf_FileDescriptorSet"), - 393: .same(proto: "Google_Protobuf_FileOptions"), - 394: .same(proto: "Google_Protobuf_FloatValue"), - 395: .same(proto: "Google_Protobuf_GeneratedCodeInfo"), - 396: .same(proto: "Google_Protobuf_Int32Value"), - 397: .same(proto: "Google_Protobuf_Int64Value"), - 398: .same(proto: "Google_Protobuf_ListValue"), - 399: .same(proto: "Google_Protobuf_MessageOptions"), - 400: .same(proto: "Google_Protobuf_Method"), - 401: .same(proto: "Google_Protobuf_MethodDescriptorProto"), - 402: .same(proto: "Google_Protobuf_MethodOptions"), - 403: .same(proto: "Google_Protobuf_Mixin"), - 404: .same(proto: "Google_Protobuf_NullValue"), - 405: .same(proto: "Google_Protobuf_OneofDescriptorProto"), - 406: .same(proto: "Google_Protobuf_OneofOptions"), - 407: .same(proto: "Google_Protobuf_Option"), - 408: .same(proto: "Google_Protobuf_ServiceDescriptorProto"), - 409: .same(proto: "Google_Protobuf_ServiceOptions"), - 410: .same(proto: "Google_Protobuf_SourceCodeInfo"), - 411: .same(proto: "Google_Protobuf_SourceContext"), - 412: .same(proto: "Google_Protobuf_StringValue"), - 413: .same(proto: "Google_Protobuf_Struct"), - 414: .same(proto: "Google_Protobuf_Syntax"), - 415: .same(proto: "Google_Protobuf_Timestamp"), - 416: .same(proto: "Google_Protobuf_Type"), - 417: .same(proto: "Google_Protobuf_UInt32Value"), - 418: .same(proto: "Google_Protobuf_UInt64Value"), - 419: .same(proto: "Google_Protobuf_UninterpretedOption"), - 420: .same(proto: "Google_Protobuf_Value"), - 421: .same(proto: "goPackage"), - 422: .same(proto: "group"), - 423: .same(proto: "groupFieldNumberStack"), - 424: .same(proto: "groupSize"), - 425: .same(proto: "hadOneofValue"), - 426: .same(proto: "handleConflictingOneOf"), - 427: .same(proto: "hasAggregateValue"), - 428: .same(proto: "hasAllowAlias"), - 429: .same(proto: "hasBegin"), - 430: .same(proto: "hasCcEnableArenas"), - 431: .same(proto: "hasCcGenericServices"), - 432: .same(proto: "hasClientStreaming"), - 433: .same(proto: "hasCsharpNamespace"), - 434: .same(proto: "hasCtype"), - 435: .same(proto: "hasDebugRedact"), - 436: .same(proto: "hasDefaultValue"), - 437: .same(proto: "hasDeprecated"), - 438: .same(proto: "hasDeprecatedLegacyJsonFieldConflicts"), - 439: .same(proto: "hasDeprecationWarning"), - 440: .same(proto: "hasDoubleValue"), - 441: .same(proto: "hasEdition"), - 442: .same(proto: "hasEditionDeprecated"), - 443: .same(proto: "hasEditionIntroduced"), - 444: .same(proto: "hasEditionRemoved"), - 445: .same(proto: "hasEnd"), - 446: .same(proto: "hasEnumType"), - 447: .same(proto: "hasExtendee"), - 448: .same(proto: "hasExtensionValue"), - 449: .same(proto: "hasFeatures"), - 450: .same(proto: "hasFeatureSupport"), - 451: .same(proto: "hasFieldPresence"), - 452: .same(proto: "hasFixedFeatures"), - 453: .same(proto: "hasFullName"), - 454: .same(proto: "hasGoPackage"), - 455: .same(proto: "hash"), - 456: .same(proto: "Hashable"), - 457: .same(proto: "hasher"), - 458: .same(proto: "HashVisitor"), - 459: .same(proto: "hasIdempotencyLevel"), - 460: .same(proto: "hasIdentifierValue"), - 461: .same(proto: "hasInputType"), - 462: .same(proto: "hasIsExtension"), - 463: .same(proto: "hasJavaGenerateEqualsAndHash"), - 464: .same(proto: "hasJavaGenericServices"), - 465: .same(proto: "hasJavaMultipleFiles"), - 466: .same(proto: "hasJavaOuterClassname"), - 467: .same(proto: "hasJavaPackage"), - 468: .same(proto: "hasJavaStringCheckUtf8"), - 469: .same(proto: "hasJsonFormat"), - 470: .same(proto: "hasJsonName"), - 471: .same(proto: "hasJstype"), - 472: .same(proto: "hasLabel"), - 473: .same(proto: "hasLazy"), - 474: .same(proto: "hasLeadingComments"), - 475: .same(proto: "hasMapEntry"), - 476: .same(proto: "hasMaximumEdition"), - 477: .same(proto: "hasMessageEncoding"), - 478: .same(proto: "hasMessageSetWireFormat"), - 479: .same(proto: "hasMinimumEdition"), - 480: .same(proto: "hasName"), - 481: .same(proto: "hasNamePart"), - 482: .same(proto: "hasNegativeIntValue"), - 483: .same(proto: "hasNoStandardDescriptorAccessor"), - 484: .same(proto: "hasNumber"), - 485: .same(proto: "hasObjcClassPrefix"), - 486: .same(proto: "hasOneofIndex"), - 487: .same(proto: "hasOptimizeFor"), - 488: .same(proto: "hasOptions"), - 489: .same(proto: "hasOutputType"), - 490: .same(proto: "hasOverridableFeatures"), - 491: .same(proto: "hasPackage"), - 492: .same(proto: "hasPacked"), - 493: .same(proto: "hasPhpClassPrefix"), - 494: .same(proto: "hasPhpMetadataNamespace"), - 495: .same(proto: "hasPhpNamespace"), - 496: .same(proto: "hasPositiveIntValue"), - 497: .same(proto: "hasProto3Optional"), - 498: .same(proto: "hasPyGenericServices"), - 499: .same(proto: "hasRepeated"), - 500: .same(proto: "hasRepeatedFieldEncoding"), - 501: .same(proto: "hasReserved"), - 502: .same(proto: "hasRetention"), - 503: .same(proto: "hasRubyPackage"), - 504: .same(proto: "hasSemantic"), - 505: .same(proto: "hasServerStreaming"), - 506: .same(proto: "hasSourceCodeInfo"), - 507: .same(proto: "hasSourceContext"), - 508: .same(proto: "hasSourceFile"), - 509: .same(proto: "hasStart"), - 510: .same(proto: "hasStringValue"), - 511: .same(proto: "hasSwiftPrefix"), - 512: .same(proto: "hasSyntax"), - 513: .same(proto: "hasTrailingComments"), - 514: .same(proto: "hasType"), - 515: .same(proto: "hasTypeName"), - 516: .same(proto: "hasUnverifiedLazy"), - 517: .same(proto: "hasUtf8Validation"), - 518: .same(proto: "hasValue"), - 519: .same(proto: "hasVerification"), - 520: .same(proto: "hasWeak"), - 521: .same(proto: "hour"), - 522: .same(proto: "i"), - 523: .same(proto: "idempotencyLevel"), - 524: .same(proto: "identifierValue"), - 525: .same(proto: "if"), - 526: .same(proto: "ignoreUnknownExtensionFields"), - 527: .same(proto: "ignoreUnknownFields"), - 528: .same(proto: "index"), - 529: .same(proto: "init"), - 530: .same(proto: "inout"), - 531: .same(proto: "inputType"), - 532: .same(proto: "insert"), - 533: .same(proto: "Int"), - 534: .same(proto: "Int32"), - 535: .same(proto: "Int32Value"), - 536: .same(proto: "Int64"), - 537: .same(proto: "Int64Value"), - 538: .same(proto: "Int8"), - 539: .same(proto: "integerLiteral"), - 540: .same(proto: "IntegerLiteralType"), - 541: .same(proto: "intern"), - 542: .same(proto: "Internal"), - 543: .same(proto: "InternalState"), - 544: .same(proto: "into"), - 545: .same(proto: "ints"), - 546: .same(proto: "isA"), - 547: .same(proto: "isEqual"), - 548: .same(proto: "isEqualTo"), - 549: .same(proto: "isExtension"), - 550: .same(proto: "isInitialized"), - 551: .same(proto: "isNegative"), - 552: .same(proto: "itemTagsEncodedSize"), - 553: .same(proto: "iterator"), - 554: .same(proto: "javaGenerateEqualsAndHash"), - 555: .same(proto: "javaGenericServices"), - 556: .same(proto: "javaMultipleFiles"), - 557: .same(proto: "javaOuterClassname"), - 558: .same(proto: "javaPackage"), - 559: .same(proto: "javaStringCheckUtf8"), - 560: .same(proto: "JSONDecoder"), - 561: .same(proto: "JSONDecodingError"), - 562: .same(proto: "JSONDecodingOptions"), - 563: .same(proto: "jsonEncoder"), - 564: .same(proto: "JSONEncoding"), - 565: .same(proto: "JSONEncodingError"), - 566: .same(proto: "JSONEncodingOptions"), - 567: .same(proto: "JSONEncodingVisitor"), - 568: .same(proto: "jsonFormat"), - 569: .same(proto: "JSONMapEncodingVisitor"), - 570: .same(proto: "jsonName"), - 571: .same(proto: "jsonPath"), - 572: .same(proto: "jsonPaths"), - 573: .same(proto: "JSONScanner"), - 574: .same(proto: "jsonString"), - 575: .same(proto: "jsonText"), - 576: .same(proto: "jsonUTF8Bytes"), - 577: .same(proto: "jsonUTF8Data"), - 578: .same(proto: "jstype"), - 579: .same(proto: "k"), - 580: .same(proto: "kChunkSize"), - 581: .same(proto: "Key"), - 582: .same(proto: "keyField"), - 583: .same(proto: "keyFieldOpt"), - 584: .same(proto: "KeyType"), - 585: .same(proto: "kind"), - 586: .same(proto: "l"), - 587: .same(proto: "label"), - 588: .same(proto: "lazy"), - 589: .same(proto: "leadingComments"), - 590: .same(proto: "leadingDetachedComments"), - 591: .same(proto: "length"), - 592: .same(proto: "lessThan"), - 593: .same(proto: "let"), - 594: .same(proto: "lhs"), - 595: .same(proto: "line"), - 596: .same(proto: "list"), - 597: .same(proto: "listOfMessages"), - 598: .same(proto: "listValue"), - 599: .same(proto: "littleEndian"), - 600: .same(proto: "load"), - 601: .same(proto: "localHasher"), - 602: .same(proto: "location"), - 603: .same(proto: "M"), - 604: .same(proto: "major"), - 605: .same(proto: "makeAsyncIterator"), - 606: .same(proto: "makeIterator"), - 607: .same(proto: "malformedLength"), - 608: .same(proto: "mapEntry"), - 609: .same(proto: "MapKeyType"), - 610: .same(proto: "mapToMessages"), - 611: .same(proto: "MapValueType"), - 612: .same(proto: "mapVisitor"), - 613: .same(proto: "maximumEdition"), - 614: .same(proto: "mdayStart"), - 615: .same(proto: "merge"), - 616: .same(proto: "message"), - 617: .same(proto: "messageDepthLimit"), - 618: .same(proto: "messageEncoding"), - 619: .same(proto: "MessageExtension"), - 620: .same(proto: "MessageImplementationBase"), - 621: .same(proto: "MessageOptions"), - 622: .same(proto: "MessageSet"), - 623: .same(proto: "messageSetWireFormat"), - 624: .same(proto: "messageSize"), - 625: .same(proto: "messageType"), - 626: .same(proto: "Method"), - 627: .same(proto: "MethodDescriptorProto"), - 628: .same(proto: "MethodOptions"), - 629: .same(proto: "methods"), - 630: .same(proto: "min"), - 631: .same(proto: "minimumEdition"), - 632: .same(proto: "minor"), - 633: .same(proto: "Mixin"), - 634: .same(proto: "mixins"), - 635: .same(proto: "modifier"), - 636: .same(proto: "modify"), - 637: .same(proto: "month"), - 638: .same(proto: "msgExtension"), - 639: .same(proto: "mutating"), - 640: .same(proto: "n"), - 641: .same(proto: "name"), - 642: .same(proto: "NameDescription"), - 643: .same(proto: "NameMap"), - 644: .same(proto: "NamePart"), - 645: .same(proto: "names"), - 646: .same(proto: "nanos"), - 647: .same(proto: "negativeIntValue"), - 648: .same(proto: "nestedType"), - 649: .same(proto: "newL"), - 650: .same(proto: "newList"), - 651: .same(proto: "newValue"), - 652: .same(proto: "next"), - 653: .same(proto: "nextByte"), - 654: .same(proto: "nextFieldNumber"), - 655: .same(proto: "nextVarInt"), - 656: .same(proto: "nil"), - 657: .same(proto: "nilLiteral"), - 658: .same(proto: "noBytesAvailable"), - 659: .same(proto: "noStandardDescriptorAccessor"), - 660: .same(proto: "nullValue"), - 661: .same(proto: "number"), - 662: .same(proto: "numberValue"), - 663: .same(proto: "objcClassPrefix"), - 664: .same(proto: "of"), - 665: .same(proto: "oneofDecl"), - 666: .same(proto: "OneofDescriptorProto"), - 667: .same(proto: "oneofIndex"), - 668: .same(proto: "OneofOptions"), - 669: .same(proto: "oneofs"), - 670: .same(proto: "OneOf_Kind"), - 671: .same(proto: "optimizeFor"), - 672: .same(proto: "OptimizeMode"), - 673: .same(proto: "Option"), - 674: .same(proto: "OptionalEnumExtensionField"), - 675: .same(proto: "OptionalExtensionField"), - 676: .same(proto: "OptionalGroupExtensionField"), - 677: .same(proto: "OptionalMessageExtensionField"), - 678: .same(proto: "OptionRetention"), - 679: .same(proto: "options"), - 680: .same(proto: "OptionTargetType"), - 681: .same(proto: "other"), - 682: .same(proto: "others"), - 683: .same(proto: "out"), - 684: .same(proto: "outputType"), - 685: .same(proto: "overridableFeatures"), - 686: .same(proto: "p"), - 687: .same(proto: "package"), - 688: .same(proto: "packed"), - 689: .same(proto: "PackedEnumExtensionField"), - 690: .same(proto: "PackedExtensionField"), - 691: .same(proto: "padding"), - 692: .same(proto: "parent"), - 693: .same(proto: "parse"), - 694: .same(proto: "path"), - 695: .same(proto: "paths"), - 696: .same(proto: "payload"), - 697: .same(proto: "payloadSize"), - 698: .same(proto: "phpClassPrefix"), - 699: .same(proto: "phpMetadataNamespace"), - 700: .same(proto: "phpNamespace"), - 701: .same(proto: "pos"), - 702: .same(proto: "positiveIntValue"), - 703: .same(proto: "prefix"), - 704: .same(proto: "preserveProtoFieldNames"), - 705: .same(proto: "preTraverse"), - 706: .same(proto: "printUnknownFields"), - 707: .same(proto: "proto2"), - 708: .same(proto: "proto3DefaultValue"), - 709: .same(proto: "proto3Optional"), - 710: .same(proto: "ProtobufAPIVersionCheck"), - 711: .same(proto: "ProtobufAPIVersion_3"), - 712: .same(proto: "ProtobufBool"), - 713: .same(proto: "ProtobufBytes"), - 714: .same(proto: "ProtobufDouble"), - 715: .same(proto: "ProtobufEnumMap"), - 716: .same(proto: "protobufExtension"), - 717: .same(proto: "ProtobufFixed32"), - 718: .same(proto: "ProtobufFixed64"), - 719: .same(proto: "ProtobufFloat"), - 720: .same(proto: "ProtobufInt32"), - 721: .same(proto: "ProtobufInt64"), - 722: .same(proto: "ProtobufMap"), - 723: .same(proto: "ProtobufMessageMap"), - 724: .same(proto: "ProtobufSFixed32"), - 725: .same(proto: "ProtobufSFixed64"), - 726: .same(proto: "ProtobufSInt32"), - 727: .same(proto: "ProtobufSInt64"), - 728: .same(proto: "ProtobufString"), - 729: .same(proto: "ProtobufUInt32"), - 730: .same(proto: "ProtobufUInt64"), - 731: .same(proto: "protobuf_extensionFieldValues"), - 732: .same(proto: "protobuf_fieldNumber"), - 733: .same(proto: "protobuf_generated_isEqualTo"), - 734: .same(proto: "protobuf_nameMap"), - 735: .same(proto: "protobuf_newField"), - 736: .same(proto: "protobuf_package"), - 737: .same(proto: "protocol"), - 738: .same(proto: "protoFieldName"), - 739: .same(proto: "protoMessageName"), - 740: .same(proto: "ProtoNameProviding"), - 741: .same(proto: "protoPaths"), - 742: .same(proto: "public"), - 743: .same(proto: "publicDependency"), - 744: .same(proto: "putBoolValue"), - 745: .same(proto: "putBytesValue"), - 746: .same(proto: "putDoubleValue"), - 747: .same(proto: "putEnumValue"), - 748: .same(proto: "putFixedUInt32"), - 749: .same(proto: "putFixedUInt64"), - 750: .same(proto: "putFloatValue"), - 751: .same(proto: "putInt64"), - 752: .same(proto: "putStringValue"), - 753: .same(proto: "putUInt64"), - 754: .same(proto: "putUInt64Hex"), - 755: .same(proto: "putVarInt"), - 756: .same(proto: "putZigZagVarInt"), - 757: .same(proto: "pyGenericServices"), - 758: .same(proto: "R"), - 759: .same(proto: "rawChars"), - 760: .same(proto: "RawRepresentable"), - 761: .same(proto: "RawValue"), - 762: .same(proto: "read4HexDigits"), - 763: .same(proto: "readBytes"), - 764: .same(proto: "register"), - 765: .same(proto: "repeated"), - 766: .same(proto: "RepeatedEnumExtensionField"), - 767: .same(proto: "RepeatedExtensionField"), - 768: .same(proto: "repeatedFieldEncoding"), - 769: .same(proto: "RepeatedGroupExtensionField"), - 770: .same(proto: "RepeatedMessageExtensionField"), - 771: .same(proto: "repeating"), - 772: .same(proto: "requestStreaming"), - 773: .same(proto: "requestTypeURL"), - 774: .same(proto: "requiredSize"), - 775: .same(proto: "responseStreaming"), - 776: .same(proto: "responseTypeURL"), - 777: .same(proto: "result"), - 778: .same(proto: "retention"), - 779: .same(proto: "rethrows"), - 780: .same(proto: "return"), - 781: .same(proto: "ReturnType"), - 782: .same(proto: "revision"), - 783: .same(proto: "rhs"), - 784: .same(proto: "root"), - 785: .same(proto: "rubyPackage"), - 786: .same(proto: "s"), - 787: .same(proto: "sawBackslash"), - 788: .same(proto: "sawSection4Characters"), - 789: .same(proto: "sawSection5Characters"), - 790: .same(proto: "scan"), - 791: .same(proto: "scanner"), - 792: .same(proto: "seconds"), - 793: .same(proto: "self"), - 794: .same(proto: "semantic"), - 795: .same(proto: "Sendable"), - 796: .same(proto: "separator"), - 797: .same(proto: "serialize"), - 798: .same(proto: "serializedBytes"), - 799: .same(proto: "serializedData"), - 800: .same(proto: "serializedSize"), - 801: .same(proto: "serverStreaming"), - 802: .same(proto: "service"), - 803: .same(proto: "ServiceDescriptorProto"), - 804: .same(proto: "ServiceOptions"), - 805: .same(proto: "set"), - 806: .same(proto: "setExtensionValue"), - 807: .same(proto: "shift"), - 808: .same(proto: "SimpleExtensionMap"), - 809: .same(proto: "size"), - 810: .same(proto: "sizer"), - 811: .same(proto: "source"), - 812: .same(proto: "sourceCodeInfo"), - 813: .same(proto: "sourceContext"), - 814: .same(proto: "sourceEncoding"), - 815: .same(proto: "sourceFile"), - 816: .same(proto: "SourceLocation"), - 817: .same(proto: "span"), - 818: .same(proto: "split"), - 819: .same(proto: "start"), - 820: .same(proto: "startArray"), - 821: .same(proto: "startArrayObject"), - 822: .same(proto: "startField"), - 823: .same(proto: "startIndex"), - 824: .same(proto: "startMessageField"), - 825: .same(proto: "startObject"), - 826: .same(proto: "startRegularField"), - 827: .same(proto: "state"), - 828: .same(proto: "static"), - 829: .same(proto: "StaticString"), - 830: .same(proto: "storage"), - 831: .same(proto: "String"), - 832: .same(proto: "stringLiteral"), - 833: .same(proto: "StringLiteralType"), - 834: .same(proto: "stringResult"), - 835: .same(proto: "stringValue"), - 836: .same(proto: "struct"), - 837: .same(proto: "structValue"), - 838: .same(proto: "subDecoder"), - 839: .same(proto: "subscript"), - 840: .same(proto: "subVisitor"), - 841: .same(proto: "Swift"), - 842: .same(proto: "swiftPrefix"), - 843: .same(proto: "SwiftProtobufContiguousBytes"), - 844: .same(proto: "SwiftProtobufError"), - 845: .same(proto: "syntax"), - 846: .same(proto: "T"), - 847: .same(proto: "tag"), - 848: .same(proto: "targets"), - 849: .same(proto: "terminator"), - 850: .same(proto: "testDecoder"), - 851: .same(proto: "text"), - 852: .same(proto: "textDecoder"), - 853: .same(proto: "TextFormatDecoder"), - 854: .same(proto: "TextFormatDecodingError"), - 855: .same(proto: "TextFormatDecodingOptions"), - 856: .same(proto: "TextFormatEncodingOptions"), - 857: .same(proto: "TextFormatEncodingVisitor"), - 858: .same(proto: "textFormatString"), - 859: .same(proto: "throwOrIgnore"), - 860: .same(proto: "throws"), - 861: .same(proto: "timeInterval"), - 862: .same(proto: "timeIntervalSince1970"), - 863: .same(proto: "timeIntervalSinceReferenceDate"), - 864: .same(proto: "Timestamp"), - 865: .same(proto: "tooLarge"), - 866: .same(proto: "total"), - 867: .same(proto: "totalArrayDepth"), - 868: .same(proto: "totalSize"), - 869: .same(proto: "trailingComments"), - 870: .same(proto: "traverse"), - 871: .same(proto: "true"), - 872: .same(proto: "try"), - 873: .same(proto: "type"), - 874: .same(proto: "typealias"), - 875: .same(proto: "TypeEnum"), - 876: .same(proto: "typeName"), - 877: .same(proto: "typePrefix"), - 878: .same(proto: "typeStart"), - 879: .same(proto: "typeUnknown"), - 880: .same(proto: "typeURL"), - 881: .same(proto: "UInt32"), - 882: .same(proto: "UInt32Value"), - 883: .same(proto: "UInt64"), - 884: .same(proto: "UInt64Value"), - 885: .same(proto: "UInt8"), - 886: .same(proto: "unchecked"), - 887: .same(proto: "unicodeScalarLiteral"), - 888: .same(proto: "UnicodeScalarLiteralType"), - 889: .same(proto: "unicodeScalars"), - 890: .same(proto: "UnicodeScalarView"), - 891: .same(proto: "uninterpretedOption"), - 892: .same(proto: "union"), - 893: .same(proto: "uniqueStorage"), - 894: .same(proto: "unknown"), - 895: .same(proto: "unknownFields"), - 896: .same(proto: "UnknownStorage"), - 897: .same(proto: "unpackTo"), - 898: .same(proto: "unregisteredTypeURL"), - 899: .same(proto: "UnsafeBufferPointer"), - 900: .same(proto: "UnsafeMutablePointer"), - 901: .same(proto: "UnsafeMutableRawBufferPointer"), - 902: .same(proto: "UnsafeRawBufferPointer"), - 903: .same(proto: "UnsafeRawPointer"), - 904: .same(proto: "unverifiedLazy"), - 905: .same(proto: "updatedOptions"), - 906: .same(proto: "url"), - 907: .same(proto: "useDeterministicOrdering"), - 908: .same(proto: "utf8"), - 909: .same(proto: "utf8Ptr"), - 910: .same(proto: "utf8ToDouble"), - 911: .same(proto: "utf8Validation"), - 912: .same(proto: "UTF8View"), - 913: .same(proto: "v"), - 914: .same(proto: "value"), - 915: .same(proto: "valueField"), - 916: .same(proto: "values"), - 917: .same(proto: "ValueType"), - 918: .same(proto: "var"), - 919: .same(proto: "verification"), - 920: .same(proto: "VerificationState"), - 921: .same(proto: "Version"), - 922: .same(proto: "versionString"), - 923: .same(proto: "visitExtensionFields"), - 924: .same(proto: "visitExtensionFieldsAsMessageSet"), - 925: .same(proto: "visitMapField"), - 926: .same(proto: "visitor"), - 927: .same(proto: "visitPacked"), - 928: .same(proto: "visitPackedBoolField"), - 929: .same(proto: "visitPackedDoubleField"), - 930: .same(proto: "visitPackedEnumField"), - 931: .same(proto: "visitPackedFixed32Field"), - 932: .same(proto: "visitPackedFixed64Field"), - 933: .same(proto: "visitPackedFloatField"), - 934: .same(proto: "visitPackedInt32Field"), - 935: .same(proto: "visitPackedInt64Field"), - 936: .same(proto: "visitPackedSFixed32Field"), - 937: .same(proto: "visitPackedSFixed64Field"), - 938: .same(proto: "visitPackedSInt32Field"), - 939: .same(proto: "visitPackedSInt64Field"), - 940: .same(proto: "visitPackedUInt32Field"), - 941: .same(proto: "visitPackedUInt64Field"), - 942: .same(proto: "visitRepeated"), - 943: .same(proto: "visitRepeatedBoolField"), - 944: .same(proto: "visitRepeatedBytesField"), - 945: .same(proto: "visitRepeatedDoubleField"), - 946: .same(proto: "visitRepeatedEnumField"), - 947: .same(proto: "visitRepeatedFixed32Field"), - 948: .same(proto: "visitRepeatedFixed64Field"), - 949: .same(proto: "visitRepeatedFloatField"), - 950: .same(proto: "visitRepeatedGroupField"), - 951: .same(proto: "visitRepeatedInt32Field"), - 952: .same(proto: "visitRepeatedInt64Field"), - 953: .same(proto: "visitRepeatedMessageField"), - 954: .same(proto: "visitRepeatedSFixed32Field"), - 955: .same(proto: "visitRepeatedSFixed64Field"), - 956: .same(proto: "visitRepeatedSInt32Field"), - 957: .same(proto: "visitRepeatedSInt64Field"), - 958: .same(proto: "visitRepeatedStringField"), - 959: .same(proto: "visitRepeatedUInt32Field"), - 960: .same(proto: "visitRepeatedUInt64Field"), - 961: .same(proto: "visitSingular"), - 962: .same(proto: "visitSingularBoolField"), - 963: .same(proto: "visitSingularBytesField"), - 964: .same(proto: "visitSingularDoubleField"), - 965: .same(proto: "visitSingularEnumField"), - 966: .same(proto: "visitSingularFixed32Field"), - 967: .same(proto: "visitSingularFixed64Field"), - 968: .same(proto: "visitSingularFloatField"), - 969: .same(proto: "visitSingularGroupField"), - 970: .same(proto: "visitSingularInt32Field"), - 971: .same(proto: "visitSingularInt64Field"), - 972: .same(proto: "visitSingularMessageField"), - 973: .same(proto: "visitSingularSFixed32Field"), - 974: .same(proto: "visitSingularSFixed64Field"), - 975: .same(proto: "visitSingularSInt32Field"), - 976: .same(proto: "visitSingularSInt64Field"), - 977: .same(proto: "visitSingularStringField"), - 978: .same(proto: "visitSingularUInt32Field"), - 979: .same(proto: "visitSingularUInt64Field"), - 980: .same(proto: "visitUnknown"), - 981: .same(proto: "wasDecoded"), - 982: .same(proto: "weak"), - 983: .same(proto: "weakDependency"), - 984: .same(proto: "where"), - 985: .same(proto: "wireFormat"), - 986: .same(proto: "with"), - 987: .same(proto: "withUnsafeBytes"), - 988: .same(proto: "withUnsafeMutableBytes"), - 989: .same(proto: "work"), - 990: .same(proto: "Wrapped"), - 991: .same(proto: "WrappedType"), - 992: .same(proto: "wrappedValue"), - 993: .same(proto: "written"), - 994: .same(proto: "yday"), + 12: .same(proto: "AnyUnpackError"), + 13: .same(proto: "Api"), + 14: .same(proto: "appended"), + 15: .same(proto: "appendUIntHex"), + 16: .same(proto: "appendUnknown"), + 17: .same(proto: "areAllInitialized"), + 18: .same(proto: "Array"), + 19: .same(proto: "arrayDepth"), + 20: .same(proto: "arrayLiteral"), + 21: .same(proto: "arraySeparator"), + 22: .same(proto: "as"), + 23: .same(proto: "asciiOpenCurlyBracket"), + 24: .same(proto: "asciiZero"), + 25: .same(proto: "async"), + 26: .same(proto: "AsyncIterator"), + 27: .same(proto: "AsyncIteratorProtocol"), + 28: .same(proto: "AsyncMessageSequence"), + 29: .same(proto: "available"), + 30: .same(proto: "b"), + 31: .same(proto: "Base"), + 32: .same(proto: "base64Values"), + 33: .same(proto: "baseAddress"), + 34: .same(proto: "BaseType"), + 35: .same(proto: "begin"), + 36: .same(proto: "binary"), + 37: .same(proto: "BinaryDecoder"), + 38: .same(proto: "BinaryDecoding"), + 39: .same(proto: "BinaryDecodingError"), + 40: .same(proto: "BinaryDecodingOptions"), + 41: .same(proto: "BinaryDelimited"), + 42: .same(proto: "BinaryEncoder"), + 43: .same(proto: "BinaryEncodingError"), + 44: .same(proto: "BinaryEncodingMessageSetSizeVisitor"), + 45: .same(proto: "BinaryEncodingMessageSetVisitor"), + 46: .same(proto: "BinaryEncodingOptions"), + 47: .same(proto: "BinaryEncodingSizeVisitor"), + 48: .same(proto: "BinaryEncodingVisitor"), + 49: .same(proto: "binaryOptions"), + 50: .same(proto: "binaryProtobufDelimitedMessages"), + 51: .same(proto: "BinaryStreamDecoding"), + 52: .same(proto: "binaryStreamDecodingError"), + 53: .same(proto: "bitPattern"), + 54: .same(proto: "body"), + 55: .same(proto: "Bool"), + 56: .same(proto: "booleanLiteral"), + 57: .same(proto: "BooleanLiteralType"), + 58: .same(proto: "boolValue"), + 59: .same(proto: "buffer"), + 60: .same(proto: "bytes"), + 61: .same(proto: "bytesInGroup"), + 62: .same(proto: "bytesNeeded"), + 63: .same(proto: "bytesRead"), + 64: .same(proto: "BytesValue"), + 65: .same(proto: "c"), + 66: .same(proto: "capitalizeNext"), + 67: .same(proto: "cardinality"), + 68: .same(proto: "CaseIterable"), + 69: .same(proto: "ccEnableArenas"), + 70: .same(proto: "ccGenericServices"), + 71: .same(proto: "Character"), + 72: .same(proto: "chars"), + 73: .same(proto: "chunk"), + 74: .same(proto: "class"), + 75: .same(proto: "clearAggregateValue"), + 76: .same(proto: "clearAllowAlias"), + 77: .same(proto: "clearBegin"), + 78: .same(proto: "clearCcEnableArenas"), + 79: .same(proto: "clearCcGenericServices"), + 80: .same(proto: "clearClientStreaming"), + 81: .same(proto: "clearCsharpNamespace"), + 82: .same(proto: "clearCtype"), + 83: .same(proto: "clearDebugRedact"), + 84: .same(proto: "clearDefaultValue"), + 85: .same(proto: "clearDeprecated"), + 86: .same(proto: "clearDeprecatedLegacyJsonFieldConflicts"), + 87: .same(proto: "clearDeprecationWarning"), + 88: .same(proto: "clearDoubleValue"), + 89: .same(proto: "clearEdition"), + 90: .same(proto: "clearEditionDeprecated"), + 91: .same(proto: "clearEditionIntroduced"), + 92: .same(proto: "clearEditionRemoved"), + 93: .same(proto: "clearEnd"), + 94: .same(proto: "clearEnumType"), + 95: .same(proto: "clearExtendee"), + 96: .same(proto: "clearExtensionValue"), + 97: .same(proto: "clearFeatures"), + 98: .same(proto: "clearFeatureSupport"), + 99: .same(proto: "clearFieldPresence"), + 100: .same(proto: "clearFixedFeatures"), + 101: .same(proto: "clearFullName"), + 102: .same(proto: "clearGoPackage"), + 103: .same(proto: "clearIdempotencyLevel"), + 104: .same(proto: "clearIdentifierValue"), + 105: .same(proto: "clearInputType"), + 106: .same(proto: "clearIsExtension"), + 107: .same(proto: "clearJavaGenerateEqualsAndHash"), + 108: .same(proto: "clearJavaGenericServices"), + 109: .same(proto: "clearJavaMultipleFiles"), + 110: .same(proto: "clearJavaOuterClassname"), + 111: .same(proto: "clearJavaPackage"), + 112: .same(proto: "clearJavaStringCheckUtf8"), + 113: .same(proto: "clearJsonFormat"), + 114: .same(proto: "clearJsonName"), + 115: .same(proto: "clearJstype"), + 116: .same(proto: "clearLabel"), + 117: .same(proto: "clearLazy"), + 118: .same(proto: "clearLeadingComments"), + 119: .same(proto: "clearMapEntry"), + 120: .same(proto: "clearMaximumEdition"), + 121: .same(proto: "clearMessageEncoding"), + 122: .same(proto: "clearMessageSetWireFormat"), + 123: .same(proto: "clearMinimumEdition"), + 124: .same(proto: "clearName"), + 125: .same(proto: "clearNamePart"), + 126: .same(proto: "clearNegativeIntValue"), + 127: .same(proto: "clearNoStandardDescriptorAccessor"), + 128: .same(proto: "clearNumber"), + 129: .same(proto: "clearObjcClassPrefix"), + 130: .same(proto: "clearOneofIndex"), + 131: .same(proto: "clearOptimizeFor"), + 132: .same(proto: "clearOptions"), + 133: .same(proto: "clearOutputType"), + 134: .same(proto: "clearOverridableFeatures"), + 135: .same(proto: "clearPackage"), + 136: .same(proto: "clearPacked"), + 137: .same(proto: "clearPhpClassPrefix"), + 138: .same(proto: "clearPhpMetadataNamespace"), + 139: .same(proto: "clearPhpNamespace"), + 140: .same(proto: "clearPositiveIntValue"), + 141: .same(proto: "clearProto3Optional"), + 142: .same(proto: "clearPyGenericServices"), + 143: .same(proto: "clearRepeated"), + 144: .same(proto: "clearRepeatedFieldEncoding"), + 145: .same(proto: "clearReserved"), + 146: .same(proto: "clearRetention"), + 147: .same(proto: "clearRubyPackage"), + 148: .same(proto: "clearSemantic"), + 149: .same(proto: "clearServerStreaming"), + 150: .same(proto: "clearSourceCodeInfo"), + 151: .same(proto: "clearSourceContext"), + 152: .same(proto: "clearSourceFile"), + 153: .same(proto: "clearStart"), + 154: .same(proto: "clearStringValue"), + 155: .same(proto: "clearSwiftPrefix"), + 156: .same(proto: "clearSyntax"), + 157: .same(proto: "clearTrailingComments"), + 158: .same(proto: "clearType"), + 159: .same(proto: "clearTypeName"), + 160: .same(proto: "clearUnverifiedLazy"), + 161: .same(proto: "clearUtf8Validation"), + 162: .same(proto: "clearValue"), + 163: .same(proto: "clearVerification"), + 164: .same(proto: "clearWeak"), + 165: .same(proto: "clientStreaming"), + 166: .same(proto: "code"), + 167: .same(proto: "codePoint"), + 168: .same(proto: "codeUnits"), + 169: .same(proto: "Collection"), + 170: .same(proto: "com"), + 171: .same(proto: "comma"), + 172: .same(proto: "consumedBytes"), + 173: .same(proto: "contentsOf"), + 174: .same(proto: "copy"), + 175: .same(proto: "count"), + 176: .same(proto: "countVarintsInBuffer"), + 177: .same(proto: "csharpNamespace"), + 178: .same(proto: "ctype"), + 179: .same(proto: "customCodable"), + 180: .same(proto: "CustomDebugStringConvertible"), + 181: .same(proto: "CustomStringConvertible"), + 182: .same(proto: "d"), + 183: .same(proto: "Data"), + 184: .same(proto: "dataResult"), + 185: .same(proto: "date"), + 186: .same(proto: "daySec"), + 187: .same(proto: "daysSinceEpoch"), + 188: .same(proto: "debugDescription"), + 189: .same(proto: "debugRedact"), + 190: .same(proto: "declaration"), + 191: .same(proto: "decoded"), + 192: .same(proto: "decodedFromJSONNull"), + 193: .same(proto: "decodeExtensionField"), + 194: .same(proto: "decodeExtensionFieldsAsMessageSet"), + 195: .same(proto: "decodeJSON"), + 196: .same(proto: "decodeMapField"), + 197: .same(proto: "decodeMessage"), + 198: .same(proto: "decoder"), + 199: .same(proto: "decodeRepeated"), + 200: .same(proto: "decodeRepeatedBoolField"), + 201: .same(proto: "decodeRepeatedBytesField"), + 202: .same(proto: "decodeRepeatedDoubleField"), + 203: .same(proto: "decodeRepeatedEnumField"), + 204: .same(proto: "decodeRepeatedFixed32Field"), + 205: .same(proto: "decodeRepeatedFixed64Field"), + 206: .same(proto: "decodeRepeatedFloatField"), + 207: .same(proto: "decodeRepeatedGroupField"), + 208: .same(proto: "decodeRepeatedInt32Field"), + 209: .same(proto: "decodeRepeatedInt64Field"), + 210: .same(proto: "decodeRepeatedMessageField"), + 211: .same(proto: "decodeRepeatedSFixed32Field"), + 212: .same(proto: "decodeRepeatedSFixed64Field"), + 213: .same(proto: "decodeRepeatedSInt32Field"), + 214: .same(proto: "decodeRepeatedSInt64Field"), + 215: .same(proto: "decodeRepeatedStringField"), + 216: .same(proto: "decodeRepeatedUInt32Field"), + 217: .same(proto: "decodeRepeatedUInt64Field"), + 218: .same(proto: "decodeSingular"), + 219: .same(proto: "decodeSingularBoolField"), + 220: .same(proto: "decodeSingularBytesField"), + 221: .same(proto: "decodeSingularDoubleField"), + 222: .same(proto: "decodeSingularEnumField"), + 223: .same(proto: "decodeSingularFixed32Field"), + 224: .same(proto: "decodeSingularFixed64Field"), + 225: .same(proto: "decodeSingularFloatField"), + 226: .same(proto: "decodeSingularGroupField"), + 227: .same(proto: "decodeSingularInt32Field"), + 228: .same(proto: "decodeSingularInt64Field"), + 229: .same(proto: "decodeSingularMessageField"), + 230: .same(proto: "decodeSingularSFixed32Field"), + 231: .same(proto: "decodeSingularSFixed64Field"), + 232: .same(proto: "decodeSingularSInt32Field"), + 233: .same(proto: "decodeSingularSInt64Field"), + 234: .same(proto: "decodeSingularStringField"), + 235: .same(proto: "decodeSingularUInt32Field"), + 236: .same(proto: "decodeSingularUInt64Field"), + 237: .same(proto: "decodeTextFormat"), + 238: .same(proto: "defaultAnyTypeURLPrefix"), + 239: .same(proto: "defaults"), + 240: .same(proto: "defaultValue"), + 241: .same(proto: "dependency"), + 242: .same(proto: "deprecated"), + 243: .same(proto: "deprecatedLegacyJsonFieldConflicts"), + 244: .same(proto: "deprecationWarning"), + 245: .same(proto: "description"), + 246: .same(proto: "DescriptorProto"), + 247: .same(proto: "Dictionary"), + 248: .same(proto: "dictionaryLiteral"), + 249: .same(proto: "digit"), + 250: .same(proto: "digit0"), + 251: .same(proto: "digit1"), + 252: .same(proto: "digitCount"), + 253: .same(proto: "digits"), + 254: .same(proto: "digitValue"), + 255: .same(proto: "discardableResult"), + 256: .same(proto: "discardUnknownFields"), + 257: .same(proto: "Double"), + 258: .same(proto: "doubleValue"), + 259: .same(proto: "Duration"), + 260: .same(proto: "E"), + 261: .same(proto: "edition"), + 262: .same(proto: "EditionDefault"), + 263: .same(proto: "editionDefaults"), + 264: .same(proto: "editionDeprecated"), + 265: .same(proto: "editionIntroduced"), + 266: .same(proto: "editionRemoved"), + 267: .same(proto: "Element"), + 268: .same(proto: "elements"), + 269: .same(proto: "emitExtensionFieldName"), + 270: .same(proto: "emitFieldName"), + 271: .same(proto: "emitFieldNumber"), + 272: .same(proto: "Empty"), + 273: .same(proto: "encodeAsBytes"), + 274: .same(proto: "encoded"), + 275: .same(proto: "encodedJSONString"), + 276: .same(proto: "encodedSize"), + 277: .same(proto: "encodeField"), + 278: .same(proto: "encoder"), + 279: .same(proto: "end"), + 280: .same(proto: "endArray"), + 281: .same(proto: "endMessageField"), + 282: .same(proto: "endObject"), + 283: .same(proto: "endRegularField"), + 284: .same(proto: "enum"), + 285: .same(proto: "EnumDescriptorProto"), + 286: .same(proto: "EnumOptions"), + 287: .same(proto: "EnumReservedRange"), + 288: .same(proto: "enumType"), + 289: .same(proto: "enumvalue"), + 290: .same(proto: "EnumValueDescriptorProto"), + 291: .same(proto: "EnumValueOptions"), + 292: .same(proto: "Equatable"), + 293: .same(proto: "Error"), + 294: .same(proto: "ExpressibleByArrayLiteral"), + 295: .same(proto: "ExpressibleByDictionaryLiteral"), + 296: .same(proto: "ext"), + 297: .same(proto: "extDecoder"), + 298: .same(proto: "extendedGraphemeClusterLiteral"), + 299: .same(proto: "ExtendedGraphemeClusterLiteralType"), + 300: .same(proto: "extendee"), + 301: .same(proto: "ExtensibleMessage"), + 302: .same(proto: "extension"), + 303: .same(proto: "ExtensionField"), + 304: .same(proto: "extensionFieldNumber"), + 305: .same(proto: "ExtensionFieldValueSet"), + 306: .same(proto: "ExtensionMap"), + 307: .same(proto: "extensionRange"), + 308: .same(proto: "ExtensionRangeOptions"), + 309: .same(proto: "extensions"), + 310: .same(proto: "extras"), + 311: .same(proto: "F"), + 312: .same(proto: "false"), + 313: .same(proto: "features"), + 314: .same(proto: "FeatureSet"), + 315: .same(proto: "FeatureSetDefaults"), + 316: .same(proto: "FeatureSetEditionDefault"), + 317: .same(proto: "featureSupport"), + 318: .same(proto: "field"), + 319: .same(proto: "fieldData"), + 320: .same(proto: "FieldDescriptorProto"), + 321: .same(proto: "FieldMask"), + 322: .same(proto: "fieldName"), + 323: .same(proto: "fieldNameCount"), + 324: .same(proto: "fieldNum"), + 325: .same(proto: "fieldNumber"), + 326: .same(proto: "fieldNumberForProto"), + 327: .same(proto: "FieldOptions"), + 328: .same(proto: "fieldPresence"), + 329: .same(proto: "fields"), + 330: .same(proto: "fieldSize"), + 331: .same(proto: "FieldTag"), + 332: .same(proto: "fieldType"), + 333: .same(proto: "file"), + 334: .same(proto: "FileDescriptorProto"), + 335: .same(proto: "FileDescriptorSet"), + 336: .same(proto: "fileName"), + 337: .same(proto: "FileOptions"), + 338: .same(proto: "filter"), + 339: .same(proto: "final"), + 340: .same(proto: "finiteOnly"), + 341: .same(proto: "first"), + 342: .same(proto: "firstItem"), + 343: .same(proto: "fixedFeatures"), + 344: .same(proto: "Float"), + 345: .same(proto: "floatLiteral"), + 346: .same(proto: "FloatLiteralType"), + 347: .same(proto: "FloatValue"), + 348: .same(proto: "forMessageName"), + 349: .same(proto: "formUnion"), + 350: .same(proto: "forReadingFrom"), + 351: .same(proto: "forTypeURL"), + 352: .same(proto: "ForwardParser"), + 353: .same(proto: "forWritingInto"), + 354: .same(proto: "from"), + 355: .same(proto: "fromAscii2"), + 356: .same(proto: "fromAscii4"), + 357: .same(proto: "fromByteOffset"), + 358: .same(proto: "fromHexDigit"), + 359: .same(proto: "fullName"), + 360: .same(proto: "func"), + 361: .same(proto: "function"), + 362: .same(proto: "G"), + 363: .same(proto: "GeneratedCodeInfo"), + 364: .same(proto: "get"), + 365: .same(proto: "getExtensionValue"), + 366: .same(proto: "googleapis"), + 367: .same(proto: "Google_Protobuf_Any"), + 368: .same(proto: "Google_Protobuf_Api"), + 369: .same(proto: "Google_Protobuf_BoolValue"), + 370: .same(proto: "Google_Protobuf_BytesValue"), + 371: .same(proto: "Google_Protobuf_DescriptorProto"), + 372: .same(proto: "Google_Protobuf_DoubleValue"), + 373: .same(proto: "Google_Protobuf_Duration"), + 374: .same(proto: "Google_Protobuf_Edition"), + 375: .same(proto: "Google_Protobuf_Empty"), + 376: .same(proto: "Google_Protobuf_Enum"), + 377: .same(proto: "Google_Protobuf_EnumDescriptorProto"), + 378: .same(proto: "Google_Protobuf_EnumOptions"), + 379: .same(proto: "Google_Protobuf_EnumValue"), + 380: .same(proto: "Google_Protobuf_EnumValueDescriptorProto"), + 381: .same(proto: "Google_Protobuf_EnumValueOptions"), + 382: .same(proto: "Google_Protobuf_ExtensionRangeOptions"), + 383: .same(proto: "Google_Protobuf_FeatureSet"), + 384: .same(proto: "Google_Protobuf_FeatureSetDefaults"), + 385: .same(proto: "Google_Protobuf_Field"), + 386: .same(proto: "Google_Protobuf_FieldDescriptorProto"), + 387: .same(proto: "Google_Protobuf_FieldMask"), + 388: .same(proto: "Google_Protobuf_FieldOptions"), + 389: .same(proto: "Google_Protobuf_FileDescriptorProto"), + 390: .same(proto: "Google_Protobuf_FileDescriptorSet"), + 391: .same(proto: "Google_Protobuf_FileOptions"), + 392: .same(proto: "Google_Protobuf_FloatValue"), + 393: .same(proto: "Google_Protobuf_GeneratedCodeInfo"), + 394: .same(proto: "Google_Protobuf_Int32Value"), + 395: .same(proto: "Google_Protobuf_Int64Value"), + 396: .same(proto: "Google_Protobuf_ListValue"), + 397: .same(proto: "Google_Protobuf_MessageOptions"), + 398: .same(proto: "Google_Protobuf_Method"), + 399: .same(proto: "Google_Protobuf_MethodDescriptorProto"), + 400: .same(proto: "Google_Protobuf_MethodOptions"), + 401: .same(proto: "Google_Protobuf_Mixin"), + 402: .same(proto: "Google_Protobuf_NullValue"), + 403: .same(proto: "Google_Protobuf_OneofDescriptorProto"), + 404: .same(proto: "Google_Protobuf_OneofOptions"), + 405: .same(proto: "Google_Protobuf_Option"), + 406: .same(proto: "Google_Protobuf_ServiceDescriptorProto"), + 407: .same(proto: "Google_Protobuf_ServiceOptions"), + 408: .same(proto: "Google_Protobuf_SourceCodeInfo"), + 409: .same(proto: "Google_Protobuf_SourceContext"), + 410: .same(proto: "Google_Protobuf_StringValue"), + 411: .same(proto: "Google_Protobuf_Struct"), + 412: .same(proto: "Google_Protobuf_Syntax"), + 413: .same(proto: "Google_Protobuf_Timestamp"), + 414: .same(proto: "Google_Protobuf_Type"), + 415: .same(proto: "Google_Protobuf_UInt32Value"), + 416: .same(proto: "Google_Protobuf_UInt64Value"), + 417: .same(proto: "Google_Protobuf_UninterpretedOption"), + 418: .same(proto: "Google_Protobuf_Value"), + 419: .same(proto: "goPackage"), + 420: .same(proto: "group"), + 421: .same(proto: "groupFieldNumberStack"), + 422: .same(proto: "groupSize"), + 423: .same(proto: "hadOneofValue"), + 424: .same(proto: "handleConflictingOneOf"), + 425: .same(proto: "hasAggregateValue"), + 426: .same(proto: "hasAllowAlias"), + 427: .same(proto: "hasBegin"), + 428: .same(proto: "hasCcEnableArenas"), + 429: .same(proto: "hasCcGenericServices"), + 430: .same(proto: "hasClientStreaming"), + 431: .same(proto: "hasCsharpNamespace"), + 432: .same(proto: "hasCtype"), + 433: .same(proto: "hasDebugRedact"), + 434: .same(proto: "hasDefaultValue"), + 435: .same(proto: "hasDeprecated"), + 436: .same(proto: "hasDeprecatedLegacyJsonFieldConflicts"), + 437: .same(proto: "hasDeprecationWarning"), + 438: .same(proto: "hasDoubleValue"), + 439: .same(proto: "hasEdition"), + 440: .same(proto: "hasEditionDeprecated"), + 441: .same(proto: "hasEditionIntroduced"), + 442: .same(proto: "hasEditionRemoved"), + 443: .same(proto: "hasEnd"), + 444: .same(proto: "hasEnumType"), + 445: .same(proto: "hasExtendee"), + 446: .same(proto: "hasExtensionValue"), + 447: .same(proto: "hasFeatures"), + 448: .same(proto: "hasFeatureSupport"), + 449: .same(proto: "hasFieldPresence"), + 450: .same(proto: "hasFixedFeatures"), + 451: .same(proto: "hasFullName"), + 452: .same(proto: "hasGoPackage"), + 453: .same(proto: "hash"), + 454: .same(proto: "Hashable"), + 455: .same(proto: "hasher"), + 456: .same(proto: "HashVisitor"), + 457: .same(proto: "hasIdempotencyLevel"), + 458: .same(proto: "hasIdentifierValue"), + 459: .same(proto: "hasInputType"), + 460: .same(proto: "hasIsExtension"), + 461: .same(proto: "hasJavaGenerateEqualsAndHash"), + 462: .same(proto: "hasJavaGenericServices"), + 463: .same(proto: "hasJavaMultipleFiles"), + 464: .same(proto: "hasJavaOuterClassname"), + 465: .same(proto: "hasJavaPackage"), + 466: .same(proto: "hasJavaStringCheckUtf8"), + 467: .same(proto: "hasJsonFormat"), + 468: .same(proto: "hasJsonName"), + 469: .same(proto: "hasJstype"), + 470: .same(proto: "hasLabel"), + 471: .same(proto: "hasLazy"), + 472: .same(proto: "hasLeadingComments"), + 473: .same(proto: "hasMapEntry"), + 474: .same(proto: "hasMaximumEdition"), + 475: .same(proto: "hasMessageEncoding"), + 476: .same(proto: "hasMessageSetWireFormat"), + 477: .same(proto: "hasMinimumEdition"), + 478: .same(proto: "hasName"), + 479: .same(proto: "hasNamePart"), + 480: .same(proto: "hasNegativeIntValue"), + 481: .same(proto: "hasNoStandardDescriptorAccessor"), + 482: .same(proto: "hasNumber"), + 483: .same(proto: "hasObjcClassPrefix"), + 484: .same(proto: "hasOneofIndex"), + 485: .same(proto: "hasOptimizeFor"), + 486: .same(proto: "hasOptions"), + 487: .same(proto: "hasOutputType"), + 488: .same(proto: "hasOverridableFeatures"), + 489: .same(proto: "hasPackage"), + 490: .same(proto: "hasPacked"), + 491: .same(proto: "hasPhpClassPrefix"), + 492: .same(proto: "hasPhpMetadataNamespace"), + 493: .same(proto: "hasPhpNamespace"), + 494: .same(proto: "hasPositiveIntValue"), + 495: .same(proto: "hasProto3Optional"), + 496: .same(proto: "hasPyGenericServices"), + 497: .same(proto: "hasRepeated"), + 498: .same(proto: "hasRepeatedFieldEncoding"), + 499: .same(proto: "hasReserved"), + 500: .same(proto: "hasRetention"), + 501: .same(proto: "hasRubyPackage"), + 502: .same(proto: "hasSemantic"), + 503: .same(proto: "hasServerStreaming"), + 504: .same(proto: "hasSourceCodeInfo"), + 505: .same(proto: "hasSourceContext"), + 506: .same(proto: "hasSourceFile"), + 507: .same(proto: "hasStart"), + 508: .same(proto: "hasStringValue"), + 509: .same(proto: "hasSwiftPrefix"), + 510: .same(proto: "hasSyntax"), + 511: .same(proto: "hasTrailingComments"), + 512: .same(proto: "hasType"), + 513: .same(proto: "hasTypeName"), + 514: .same(proto: "hasUnverifiedLazy"), + 515: .same(proto: "hasUtf8Validation"), + 516: .same(proto: "hasValue"), + 517: .same(proto: "hasVerification"), + 518: .same(proto: "hasWeak"), + 519: .same(proto: "hour"), + 520: .same(proto: "i"), + 521: .same(proto: "idempotencyLevel"), + 522: .same(proto: "identifierValue"), + 523: .same(proto: "if"), + 524: .same(proto: "ignoreUnknownExtensionFields"), + 525: .same(proto: "ignoreUnknownFields"), + 526: .same(proto: "index"), + 527: .same(proto: "init"), + 528: .same(proto: "inout"), + 529: .same(proto: "inputType"), + 530: .same(proto: "insert"), + 531: .same(proto: "Int"), + 532: .same(proto: "Int32"), + 533: .same(proto: "Int32Value"), + 534: .same(proto: "Int64"), + 535: .same(proto: "Int64Value"), + 536: .same(proto: "Int8"), + 537: .same(proto: "integerLiteral"), + 538: .same(proto: "IntegerLiteralType"), + 539: .same(proto: "intern"), + 540: .same(proto: "Internal"), + 541: .same(proto: "InternalState"), + 542: .same(proto: "into"), + 543: .same(proto: "ints"), + 544: .same(proto: "isA"), + 545: .same(proto: "isEqual"), + 546: .same(proto: "isEqualTo"), + 547: .same(proto: "isExtension"), + 548: .same(proto: "isInitialized"), + 549: .same(proto: "isNegative"), + 550: .same(proto: "itemTagsEncodedSize"), + 551: .same(proto: "iterator"), + 552: .same(proto: "javaGenerateEqualsAndHash"), + 553: .same(proto: "javaGenericServices"), + 554: .same(proto: "javaMultipleFiles"), + 555: .same(proto: "javaOuterClassname"), + 556: .same(proto: "javaPackage"), + 557: .same(proto: "javaStringCheckUtf8"), + 558: .same(proto: "JSONDecoder"), + 559: .same(proto: "JSONDecodingError"), + 560: .same(proto: "JSONDecodingOptions"), + 561: .same(proto: "jsonEncoder"), + 562: .same(proto: "JSONEncodingError"), + 563: .same(proto: "JSONEncodingOptions"), + 564: .same(proto: "JSONEncodingVisitor"), + 565: .same(proto: "jsonFormat"), + 566: .same(proto: "JSONMapEncodingVisitor"), + 567: .same(proto: "jsonName"), + 568: .same(proto: "jsonPath"), + 569: .same(proto: "jsonPaths"), + 570: .same(proto: "JSONScanner"), + 571: .same(proto: "jsonString"), + 572: .same(proto: "jsonText"), + 573: .same(proto: "jsonUTF8Bytes"), + 574: .same(proto: "jsonUTF8Data"), + 575: .same(proto: "jstype"), + 576: .same(proto: "k"), + 577: .same(proto: "kChunkSize"), + 578: .same(proto: "Key"), + 579: .same(proto: "keyField"), + 580: .same(proto: "keyFieldOpt"), + 581: .same(proto: "KeyType"), + 582: .same(proto: "kind"), + 583: .same(proto: "l"), + 584: .same(proto: "label"), + 585: .same(proto: "lazy"), + 586: .same(proto: "leadingComments"), + 587: .same(proto: "leadingDetachedComments"), + 588: .same(proto: "length"), + 589: .same(proto: "lessThan"), + 590: .same(proto: "let"), + 591: .same(proto: "lhs"), + 592: .same(proto: "line"), + 593: .same(proto: "list"), + 594: .same(proto: "listOfMessages"), + 595: .same(proto: "listValue"), + 596: .same(proto: "littleEndian"), + 597: .same(proto: "load"), + 598: .same(proto: "localHasher"), + 599: .same(proto: "location"), + 600: .same(proto: "M"), + 601: .same(proto: "major"), + 602: .same(proto: "makeAsyncIterator"), + 603: .same(proto: "makeIterator"), + 604: .same(proto: "malformedLength"), + 605: .same(proto: "mapEntry"), + 606: .same(proto: "MapKeyType"), + 607: .same(proto: "mapToMessages"), + 608: .same(proto: "MapValueType"), + 609: .same(proto: "mapVisitor"), + 610: .same(proto: "maximumEdition"), + 611: .same(proto: "mdayStart"), + 612: .same(proto: "merge"), + 613: .same(proto: "message"), + 614: .same(proto: "messageDepthLimit"), + 615: .same(proto: "messageEncoding"), + 616: .same(proto: "MessageExtension"), + 617: .same(proto: "MessageImplementationBase"), + 618: .same(proto: "MessageOptions"), + 619: .same(proto: "MessageSet"), + 620: .same(proto: "messageSetWireFormat"), + 621: .same(proto: "messageSize"), + 622: .same(proto: "messageType"), + 623: .same(proto: "Method"), + 624: .same(proto: "MethodDescriptorProto"), + 625: .same(proto: "MethodOptions"), + 626: .same(proto: "methods"), + 627: .same(proto: "min"), + 628: .same(proto: "minimumEdition"), + 629: .same(proto: "minor"), + 630: .same(proto: "Mixin"), + 631: .same(proto: "mixins"), + 632: .same(proto: "modifier"), + 633: .same(proto: "modify"), + 634: .same(proto: "month"), + 635: .same(proto: "msgExtension"), + 636: .same(proto: "mutating"), + 637: .same(proto: "n"), + 638: .same(proto: "name"), + 639: .same(proto: "NameDescription"), + 640: .same(proto: "NameMap"), + 641: .same(proto: "NamePart"), + 642: .same(proto: "names"), + 643: .same(proto: "nanos"), + 644: .same(proto: "negativeIntValue"), + 645: .same(proto: "nestedType"), + 646: .same(proto: "newL"), + 647: .same(proto: "newList"), + 648: .same(proto: "newValue"), + 649: .same(proto: "next"), + 650: .same(proto: "nextByte"), + 651: .same(proto: "nextFieldNumber"), + 652: .same(proto: "nextVarInt"), + 653: .same(proto: "nil"), + 654: .same(proto: "nilLiteral"), + 655: .same(proto: "noBytesAvailable"), + 656: .same(proto: "noStandardDescriptorAccessor"), + 657: .same(proto: "nullValue"), + 658: .same(proto: "number"), + 659: .same(proto: "numberValue"), + 660: .same(proto: "objcClassPrefix"), + 661: .same(proto: "of"), + 662: .same(proto: "oneofDecl"), + 663: .same(proto: "OneofDescriptorProto"), + 664: .same(proto: "oneofIndex"), + 665: .same(proto: "OneofOptions"), + 666: .same(proto: "oneofs"), + 667: .same(proto: "OneOf_Kind"), + 668: .same(proto: "optimizeFor"), + 669: .same(proto: "OptimizeMode"), + 670: .same(proto: "Option"), + 671: .same(proto: "OptionalEnumExtensionField"), + 672: .same(proto: "OptionalExtensionField"), + 673: .same(proto: "OptionalGroupExtensionField"), + 674: .same(proto: "OptionalMessageExtensionField"), + 675: .same(proto: "OptionRetention"), + 676: .same(proto: "options"), + 677: .same(proto: "OptionTargetType"), + 678: .same(proto: "other"), + 679: .same(proto: "others"), + 680: .same(proto: "out"), + 681: .same(proto: "outputType"), + 682: .same(proto: "overridableFeatures"), + 683: .same(proto: "p"), + 684: .same(proto: "package"), + 685: .same(proto: "packed"), + 686: .same(proto: "PackedEnumExtensionField"), + 687: .same(proto: "PackedExtensionField"), + 688: .same(proto: "padding"), + 689: .same(proto: "parent"), + 690: .same(proto: "parse"), + 691: .same(proto: "path"), + 692: .same(proto: "paths"), + 693: .same(proto: "payload"), + 694: .same(proto: "payloadSize"), + 695: .same(proto: "phpClassPrefix"), + 696: .same(proto: "phpMetadataNamespace"), + 697: .same(proto: "phpNamespace"), + 698: .same(proto: "pos"), + 699: .same(proto: "positiveIntValue"), + 700: .same(proto: "prefix"), + 701: .same(proto: "preserveProtoFieldNames"), + 702: .same(proto: "preTraverse"), + 703: .same(proto: "printUnknownFields"), + 704: .same(proto: "proto2"), + 705: .same(proto: "proto3DefaultValue"), + 706: .same(proto: "proto3Optional"), + 707: .same(proto: "ProtobufAPIVersionCheck"), + 708: .same(proto: "ProtobufAPIVersion_3"), + 709: .same(proto: "ProtobufBool"), + 710: .same(proto: "ProtobufBytes"), + 711: .same(proto: "ProtobufDouble"), + 712: .same(proto: "ProtobufEnumMap"), + 713: .same(proto: "protobufExtension"), + 714: .same(proto: "ProtobufFixed32"), + 715: .same(proto: "ProtobufFixed64"), + 716: .same(proto: "ProtobufFloat"), + 717: .same(proto: "ProtobufInt32"), + 718: .same(proto: "ProtobufInt64"), + 719: .same(proto: "ProtobufMap"), + 720: .same(proto: "ProtobufMessageMap"), + 721: .same(proto: "ProtobufSFixed32"), + 722: .same(proto: "ProtobufSFixed64"), + 723: .same(proto: "ProtobufSInt32"), + 724: .same(proto: "ProtobufSInt64"), + 725: .same(proto: "ProtobufString"), + 726: .same(proto: "ProtobufUInt32"), + 727: .same(proto: "ProtobufUInt64"), + 728: .same(proto: "protobuf_extensionFieldValues"), + 729: .same(proto: "protobuf_fieldNumber"), + 730: .same(proto: "protobuf_generated_isEqualTo"), + 731: .same(proto: "protobuf_nameMap"), + 732: .same(proto: "protobuf_newField"), + 733: .same(proto: "protobuf_package"), + 734: .same(proto: "protocol"), + 735: .same(proto: "protoFieldName"), + 736: .same(proto: "protoMessageName"), + 737: .same(proto: "ProtoNameProviding"), + 738: .same(proto: "protoPaths"), + 739: .same(proto: "public"), + 740: .same(proto: "publicDependency"), + 741: .same(proto: "putBoolValue"), + 742: .same(proto: "putBytesValue"), + 743: .same(proto: "putDoubleValue"), + 744: .same(proto: "putEnumValue"), + 745: .same(proto: "putFixedUInt32"), + 746: .same(proto: "putFixedUInt64"), + 747: .same(proto: "putFloatValue"), + 748: .same(proto: "putInt64"), + 749: .same(proto: "putStringValue"), + 750: .same(proto: "putUInt64"), + 751: .same(proto: "putUInt64Hex"), + 752: .same(proto: "putVarInt"), + 753: .same(proto: "putZigZagVarInt"), + 754: .same(proto: "pyGenericServices"), + 755: .same(proto: "R"), + 756: .same(proto: "rawChars"), + 757: .same(proto: "RawRepresentable"), + 758: .same(proto: "RawValue"), + 759: .same(proto: "read4HexDigits"), + 760: .same(proto: "readBytes"), + 761: .same(proto: "register"), + 762: .same(proto: "repeated"), + 763: .same(proto: "RepeatedEnumExtensionField"), + 764: .same(proto: "RepeatedExtensionField"), + 765: .same(proto: "repeatedFieldEncoding"), + 766: .same(proto: "RepeatedGroupExtensionField"), + 767: .same(proto: "RepeatedMessageExtensionField"), + 768: .same(proto: "repeating"), + 769: .same(proto: "requestStreaming"), + 770: .same(proto: "requestTypeURL"), + 771: .same(proto: "requiredSize"), + 772: .same(proto: "responseStreaming"), + 773: .same(proto: "responseTypeURL"), + 774: .same(proto: "result"), + 775: .same(proto: "retention"), + 776: .same(proto: "rethrows"), + 777: .same(proto: "return"), + 778: .same(proto: "ReturnType"), + 779: .same(proto: "revision"), + 780: .same(proto: "rhs"), + 781: .same(proto: "root"), + 782: .same(proto: "rubyPackage"), + 783: .same(proto: "s"), + 784: .same(proto: "sawBackslash"), + 785: .same(proto: "sawSection4Characters"), + 786: .same(proto: "sawSection5Characters"), + 787: .same(proto: "scan"), + 788: .same(proto: "scanner"), + 789: .same(proto: "seconds"), + 790: .same(proto: "self"), + 791: .same(proto: "semantic"), + 792: .same(proto: "Sendable"), + 793: .same(proto: "separator"), + 794: .same(proto: "serialize"), + 795: .same(proto: "serializedBytes"), + 796: .same(proto: "serializedData"), + 797: .same(proto: "serializedSize"), + 798: .same(proto: "serverStreaming"), + 799: .same(proto: "service"), + 800: .same(proto: "ServiceDescriptorProto"), + 801: .same(proto: "ServiceOptions"), + 802: .same(proto: "set"), + 803: .same(proto: "setExtensionValue"), + 804: .same(proto: "shift"), + 805: .same(proto: "SimpleExtensionMap"), + 806: .same(proto: "size"), + 807: .same(proto: "sizer"), + 808: .same(proto: "source"), + 809: .same(proto: "sourceCodeInfo"), + 810: .same(proto: "sourceContext"), + 811: .same(proto: "sourceEncoding"), + 812: .same(proto: "sourceFile"), + 813: .same(proto: "SourceLocation"), + 814: .same(proto: "span"), + 815: .same(proto: "split"), + 816: .same(proto: "start"), + 817: .same(proto: "startArray"), + 818: .same(proto: "startArrayObject"), + 819: .same(proto: "startField"), + 820: .same(proto: "startIndex"), + 821: .same(proto: "startMessageField"), + 822: .same(proto: "startObject"), + 823: .same(proto: "startRegularField"), + 824: .same(proto: "state"), + 825: .same(proto: "static"), + 826: .same(proto: "StaticString"), + 827: .same(proto: "storage"), + 828: .same(proto: "String"), + 829: .same(proto: "stringLiteral"), + 830: .same(proto: "StringLiteralType"), + 831: .same(proto: "stringResult"), + 832: .same(proto: "stringValue"), + 833: .same(proto: "struct"), + 834: .same(proto: "structValue"), + 835: .same(proto: "subDecoder"), + 836: .same(proto: "subscript"), + 837: .same(proto: "subVisitor"), + 838: .same(proto: "Swift"), + 839: .same(proto: "swiftPrefix"), + 840: .same(proto: "SwiftProtobufContiguousBytes"), + 841: .same(proto: "SwiftProtobufError"), + 842: .same(proto: "syntax"), + 843: .same(proto: "T"), + 844: .same(proto: "tag"), + 845: .same(proto: "targets"), + 846: .same(proto: "terminator"), + 847: .same(proto: "testDecoder"), + 848: .same(proto: "text"), + 849: .same(proto: "textDecoder"), + 850: .same(proto: "TextFormatDecoder"), + 851: .same(proto: "TextFormatDecodingError"), + 852: .same(proto: "TextFormatDecodingOptions"), + 853: .same(proto: "TextFormatEncodingOptions"), + 854: .same(proto: "TextFormatEncodingVisitor"), + 855: .same(proto: "textFormatString"), + 856: .same(proto: "throwOrIgnore"), + 857: .same(proto: "throws"), + 858: .same(proto: "timeInterval"), + 859: .same(proto: "timeIntervalSince1970"), + 860: .same(proto: "timeIntervalSinceReferenceDate"), + 861: .same(proto: "Timestamp"), + 862: .same(proto: "tooLarge"), + 863: .same(proto: "total"), + 864: .same(proto: "totalArrayDepth"), + 865: .same(proto: "totalSize"), + 866: .same(proto: "trailingComments"), + 867: .same(proto: "traverse"), + 868: .same(proto: "true"), + 869: .same(proto: "try"), + 870: .same(proto: "type"), + 871: .same(proto: "typealias"), + 872: .same(proto: "TypeEnum"), + 873: .same(proto: "typeName"), + 874: .same(proto: "typePrefix"), + 875: .same(proto: "typeStart"), + 876: .same(proto: "typeUnknown"), + 877: .same(proto: "typeURL"), + 878: .same(proto: "UInt32"), + 879: .same(proto: "UInt32Value"), + 880: .same(proto: "UInt64"), + 881: .same(proto: "UInt64Value"), + 882: .same(proto: "UInt8"), + 883: .same(proto: "unchecked"), + 884: .same(proto: "unicodeScalarLiteral"), + 885: .same(proto: "UnicodeScalarLiteralType"), + 886: .same(proto: "unicodeScalars"), + 887: .same(proto: "UnicodeScalarView"), + 888: .same(proto: "uninterpretedOption"), + 889: .same(proto: "union"), + 890: .same(proto: "uniqueStorage"), + 891: .same(proto: "unknown"), + 892: .same(proto: "unknownFields"), + 893: .same(proto: "UnknownStorage"), + 894: .same(proto: "unpackTo"), + 895: .same(proto: "UnsafeBufferPointer"), + 896: .same(proto: "UnsafeMutablePointer"), + 897: .same(proto: "UnsafeMutableRawBufferPointer"), + 898: .same(proto: "UnsafeRawBufferPointer"), + 899: .same(proto: "UnsafeRawPointer"), + 900: .same(proto: "unverifiedLazy"), + 901: .same(proto: "updatedOptions"), + 902: .same(proto: "url"), + 903: .same(proto: "useDeterministicOrdering"), + 904: .same(proto: "utf8"), + 905: .same(proto: "utf8Ptr"), + 906: .same(proto: "utf8ToDouble"), + 907: .same(proto: "utf8Validation"), + 908: .same(proto: "UTF8View"), + 909: .same(proto: "v"), + 910: .same(proto: "value"), + 911: .same(proto: "valueField"), + 912: .same(proto: "values"), + 913: .same(proto: "ValueType"), + 914: .same(proto: "var"), + 915: .same(proto: "verification"), + 916: .same(proto: "VerificationState"), + 917: .same(proto: "Version"), + 918: .same(proto: "versionString"), + 919: .same(proto: "visitExtensionFields"), + 920: .same(proto: "visitExtensionFieldsAsMessageSet"), + 921: .same(proto: "visitMapField"), + 922: .same(proto: "visitor"), + 923: .same(proto: "visitPacked"), + 924: .same(proto: "visitPackedBoolField"), + 925: .same(proto: "visitPackedDoubleField"), + 926: .same(proto: "visitPackedEnumField"), + 927: .same(proto: "visitPackedFixed32Field"), + 928: .same(proto: "visitPackedFixed64Field"), + 929: .same(proto: "visitPackedFloatField"), + 930: .same(proto: "visitPackedInt32Field"), + 931: .same(proto: "visitPackedInt64Field"), + 932: .same(proto: "visitPackedSFixed32Field"), + 933: .same(proto: "visitPackedSFixed64Field"), + 934: .same(proto: "visitPackedSInt32Field"), + 935: .same(proto: "visitPackedSInt64Field"), + 936: .same(proto: "visitPackedUInt32Field"), + 937: .same(proto: "visitPackedUInt64Field"), + 938: .same(proto: "visitRepeated"), + 939: .same(proto: "visitRepeatedBoolField"), + 940: .same(proto: "visitRepeatedBytesField"), + 941: .same(proto: "visitRepeatedDoubleField"), + 942: .same(proto: "visitRepeatedEnumField"), + 943: .same(proto: "visitRepeatedFixed32Field"), + 944: .same(proto: "visitRepeatedFixed64Field"), + 945: .same(proto: "visitRepeatedFloatField"), + 946: .same(proto: "visitRepeatedGroupField"), + 947: .same(proto: "visitRepeatedInt32Field"), + 948: .same(proto: "visitRepeatedInt64Field"), + 949: .same(proto: "visitRepeatedMessageField"), + 950: .same(proto: "visitRepeatedSFixed32Field"), + 951: .same(proto: "visitRepeatedSFixed64Field"), + 952: .same(proto: "visitRepeatedSInt32Field"), + 953: .same(proto: "visitRepeatedSInt64Field"), + 954: .same(proto: "visitRepeatedStringField"), + 955: .same(proto: "visitRepeatedUInt32Field"), + 956: .same(proto: "visitRepeatedUInt64Field"), + 957: .same(proto: "visitSingular"), + 958: .same(proto: "visitSingularBoolField"), + 959: .same(proto: "visitSingularBytesField"), + 960: .same(proto: "visitSingularDoubleField"), + 961: .same(proto: "visitSingularEnumField"), + 962: .same(proto: "visitSingularFixed32Field"), + 963: .same(proto: "visitSingularFixed64Field"), + 964: .same(proto: "visitSingularFloatField"), + 965: .same(proto: "visitSingularGroupField"), + 966: .same(proto: "visitSingularInt32Field"), + 967: .same(proto: "visitSingularInt64Field"), + 968: .same(proto: "visitSingularMessageField"), + 969: .same(proto: "visitSingularSFixed32Field"), + 970: .same(proto: "visitSingularSFixed64Field"), + 971: .same(proto: "visitSingularSInt32Field"), + 972: .same(proto: "visitSingularSInt64Field"), + 973: .same(proto: "visitSingularStringField"), + 974: .same(proto: "visitSingularUInt32Field"), + 975: .same(proto: "visitSingularUInt64Field"), + 976: .same(proto: "visitUnknown"), + 977: .same(proto: "wasDecoded"), + 978: .same(proto: "weak"), + 979: .same(proto: "weakDependency"), + 980: .same(proto: "where"), + 981: .same(proto: "wireFormat"), + 982: .same(proto: "with"), + 983: .same(proto: "withUnsafeBytes"), + 984: .same(proto: "withUnsafeMutableBytes"), + 985: .same(proto: "work"), + 986: .same(proto: "Wrapped"), + 987: .same(proto: "WrappedType"), + 988: .same(proto: "wrappedValue"), + 989: .same(proto: "written"), + 990: .same(proto: "yday"), ] } diff --git a/Tests/SwiftProtobufTests/generated_swift_names_enums.pb.swift b/Tests/SwiftProtobufTests/generated_swift_names_enums.pb.swift index 1f663d208..c3270d5d7 100644 --- a/Tests/SwiftProtobufTests/generated_swift_names_enums.pb.swift +++ b/Tests/SwiftProtobufTests/generated_swift_names_enums.pb.swift @@ -361,36 +361,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum anyTypeURLNotRegistered: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneAnyTypeUrlnotRegistered // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneAnyTypeUrlnotRegistered - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneAnyTypeUrlnotRegistered - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneAnyTypeUrlnotRegistered: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.anyTypeURLNotRegistered] = [ - .noneAnyTypeUrlnotRegistered, - ] - - } - enum AnyUnpackError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneAnyUnpackError // = 0 @@ -1321,36 +1291,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum BinaryEncoding: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneBinaryEncoding // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneBinaryEncoding - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneBinaryEncoding - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneBinaryEncoding: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryEncoding] = [ - .noneBinaryEncoding, - ] - - } - enum BinaryEncodingError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneBinaryEncodingError // = 0 @@ -16921,36 +16861,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum JSONEncoding: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneJsonencoding // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneJsonencoding - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneJsonencoding - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneJsonencoding: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONEncoding] = [ - .noneJsonencoding, - ] - - } - enum JSONEncodingError: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneJsonencodingError // = 0 @@ -26941,36 +26851,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums: Sendable { } - enum unregisteredTypeURL: SwiftProtobuf.Enum, Swift.CaseIterable { - typealias RawValue = Int - case noneUnregisteredTypeURL // = 0 - case UNRECOGNIZED(Int) - - init() { - self = .noneUnregisteredTypeURL - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .noneUnregisteredTypeURL - default: self = .UNRECOGNIZED(rawValue) - } - } - - var rawValue: Int { - switch self { - case .noneUnregisteredTypeURL: return 0 - case .UNRECOGNIZED(let i): return i - } - } - - // The compiler won't synthesize support with the UNRECOGNIZED case. - static let allCases: [SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unregisteredTypeURL] = [ - .noneUnregisteredTypeURL, - ] - - } - enum UnsafeBufferPointer: SwiftProtobuf.Enum, Swift.CaseIterable { typealias RawValue = Int case noneUnsafeBufferPointer // = 0 @@ -29943,12 +29823,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.AnyMessageStor ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.anyTypeURLNotRegistered: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_anyTypeURLNotRegistered"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.AnyUnpackError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_AnyUnpackError"), @@ -30135,12 +30009,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryEncoder: ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryEncoding: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_BinaryEncoding"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.BinaryEncodingError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_BinaryEncodingError"), @@ -33255,12 +33123,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.jsonEncoder: S ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONEncoding: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_JSONEncoding"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.JSONEncodingError: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_JSONEncodingError"), @@ -35259,12 +35121,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unpackTo: Swif ] } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.unregisteredTypeURL: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "NONE_unregisteredTypeURL"), - ] -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedEnums.UnsafeBufferPointer: SwiftProtobuf._ProtoNameProviding { static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ 0: .same(proto: "NONE_UnsafeBufferPointer"), diff --git a/Tests/SwiftProtobufTests/generated_swift_names_fields.pb.swift b/Tests/SwiftProtobufTests/generated_swift_names_fields.pb.swift index d6d267e14..44bfed327 100644 --- a/Tests/SwiftProtobufTests/generated_swift_names_fields.pb.swift +++ b/Tests/SwiftProtobufTests/generated_swift_names_fields.pb.swift @@ -84,11 +84,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._anyMessageStorage = newValue} } - var anyTypeUrlnotRegistered: Int32 { - get {return _storage._anyTypeUrlnotRegistered} - set {_uniqueStorage()._anyTypeUrlnotRegistered = newValue} - } - var anyUnpackError: Int32 { get {return _storage._anyUnpackError} set {_uniqueStorage()._anyUnpackError = newValue} @@ -244,11 +239,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._binaryEncoder = newValue} } - var binaryEncoding: Int32 { - get {return _storage._binaryEncoding} - set {_uniqueStorage()._binaryEncoding = newValue} - } - var binaryEncodingError: Int32 { get {return _storage._binaryEncodingError} set {_uniqueStorage()._binaryEncodingError = newValue} @@ -2844,11 +2834,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._jsonEncoder = newValue} } - var jsonencoding: Int32 { - get {return _storage._jsonencoding} - set {_uniqueStorage()._jsonencoding = newValue} - } - var jsonencodingError: Int32 { get {return _storage._jsonencodingError} set {_uniqueStorage()._jsonencodingError = newValue} @@ -4514,11 +4499,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: @unchecked Send set {_uniqueStorage()._unpackTo = newValue} } - var unregisteredTypeURL: Int32 { - get {return _storage._unregisteredTypeURL} - set {_uniqueStorage()._unregisteredTypeURL = newValue} - } - var unsafeBufferPointer: Int32 { get {return _storage._unsafeBufferPointer} set {_uniqueStorage()._unsafeBufferPointer = newValue} @@ -5024,989 +5004,985 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu 9: .same(proto: "AnyExtensionField"), 10: .same(proto: "AnyMessageExtension"), 11: .same(proto: "AnyMessageStorage"), - 12: .same(proto: "anyTypeURLNotRegistered"), - 13: .same(proto: "AnyUnpackError"), - 14: .same(proto: "Api"), - 15: .same(proto: "appended"), - 16: .same(proto: "appendUIntHex"), - 17: .same(proto: "appendUnknown"), - 18: .same(proto: "areAllInitialized"), - 19: .same(proto: "Array"), - 20: .same(proto: "arrayDepth"), - 21: .same(proto: "arrayLiteral"), - 22: .same(proto: "arraySeparator"), - 23: .same(proto: "as"), - 24: .same(proto: "asciiOpenCurlyBracket"), - 25: .same(proto: "asciiZero"), - 26: .same(proto: "async"), - 27: .same(proto: "AsyncIterator"), - 28: .same(proto: "AsyncIteratorProtocol"), - 29: .same(proto: "AsyncMessageSequence"), - 30: .same(proto: "available"), - 31: .same(proto: "b"), - 32: .same(proto: "Base"), - 33: .same(proto: "base64Values"), - 34: .same(proto: "baseAddress"), - 35: .same(proto: "BaseType"), - 36: .same(proto: "begin"), - 37: .same(proto: "binary"), - 38: .same(proto: "BinaryDecoder"), - 39: .same(proto: "BinaryDecoding"), - 40: .same(proto: "BinaryDecodingError"), - 41: .same(proto: "BinaryDecodingOptions"), - 42: .same(proto: "BinaryDelimited"), - 43: .same(proto: "BinaryEncoder"), - 44: .same(proto: "BinaryEncoding"), - 45: .same(proto: "BinaryEncodingError"), - 46: .same(proto: "BinaryEncodingMessageSetSizeVisitor"), - 47: .same(proto: "BinaryEncodingMessageSetVisitor"), - 48: .same(proto: "BinaryEncodingOptions"), - 49: .same(proto: "BinaryEncodingSizeVisitor"), - 50: .same(proto: "BinaryEncodingVisitor"), - 51: .same(proto: "binaryOptions"), - 52: .same(proto: "binaryProtobufDelimitedMessages"), - 53: .same(proto: "BinaryStreamDecoding"), - 54: .same(proto: "binaryStreamDecodingError"), - 55: .same(proto: "bitPattern"), - 56: .same(proto: "body"), - 57: .same(proto: "Bool"), - 58: .same(proto: "booleanLiteral"), - 59: .same(proto: "BooleanLiteralType"), - 60: .same(proto: "boolValue"), - 61: .same(proto: "buffer"), - 62: .same(proto: "bytes"), - 63: .same(proto: "bytesInGroup"), - 64: .same(proto: "bytesNeeded"), - 65: .same(proto: "bytesRead"), - 66: .same(proto: "BytesValue"), - 67: .same(proto: "c"), - 68: .same(proto: "capitalizeNext"), - 69: .same(proto: "cardinality"), - 70: .same(proto: "CaseIterable"), - 71: .same(proto: "ccEnableArenas"), - 72: .same(proto: "ccGenericServices"), - 73: .same(proto: "Character"), - 74: .same(proto: "chars"), - 75: .same(proto: "chunk"), - 76: .same(proto: "class"), - 77: .same(proto: "clearAggregateValue"), - 78: .same(proto: "clearAllowAlias"), - 79: .same(proto: "clearBegin"), - 80: .same(proto: "clearCcEnableArenas"), - 81: .same(proto: "clearCcGenericServices"), - 82: .same(proto: "clearClientStreaming"), - 83: .same(proto: "clearCsharpNamespace"), - 84: .same(proto: "clearCtype"), - 85: .same(proto: "clearDebugRedact"), - 86: .same(proto: "clearDefaultValue"), - 87: .same(proto: "clearDeprecated"), - 88: .same(proto: "clearDeprecatedLegacyJsonFieldConflicts"), - 89: .same(proto: "clearDeprecationWarning"), - 90: .same(proto: "clearDoubleValue"), - 91: .same(proto: "clearEdition"), - 92: .same(proto: "clearEditionDeprecated"), - 93: .same(proto: "clearEditionIntroduced"), - 94: .same(proto: "clearEditionRemoved"), - 95: .same(proto: "clearEnd"), - 96: .same(proto: "clearEnumType"), - 97: .same(proto: "clearExtendee"), - 98: .same(proto: "clearExtensionValue"), - 99: .same(proto: "clearFeatures"), - 100: .same(proto: "clearFeatureSupport"), - 101: .same(proto: "clearFieldPresence"), - 102: .same(proto: "clearFixedFeatures"), - 103: .same(proto: "clearFullName"), - 104: .same(proto: "clearGoPackage"), - 105: .same(proto: "clearIdempotencyLevel"), - 106: .same(proto: "clearIdentifierValue"), - 107: .same(proto: "clearInputType"), - 108: .same(proto: "clearIsExtension"), - 109: .same(proto: "clearJavaGenerateEqualsAndHash"), - 110: .same(proto: "clearJavaGenericServices"), - 111: .same(proto: "clearJavaMultipleFiles"), - 112: .same(proto: "clearJavaOuterClassname"), - 113: .same(proto: "clearJavaPackage"), - 114: .same(proto: "clearJavaStringCheckUtf8"), - 115: .same(proto: "clearJsonFormat"), - 116: .same(proto: "clearJsonName"), - 117: .same(proto: "clearJstype"), - 118: .same(proto: "clearLabel"), - 119: .same(proto: "clearLazy"), - 120: .same(proto: "clearLeadingComments"), - 121: .same(proto: "clearMapEntry"), - 122: .same(proto: "clearMaximumEdition"), - 123: .same(proto: "clearMessageEncoding"), - 124: .same(proto: "clearMessageSetWireFormat"), - 125: .same(proto: "clearMinimumEdition"), - 126: .same(proto: "clearName"), - 127: .same(proto: "clearNamePart"), - 128: .same(proto: "clearNegativeIntValue"), - 129: .same(proto: "clearNoStandardDescriptorAccessor"), - 130: .same(proto: "clearNumber"), - 131: .same(proto: "clearObjcClassPrefix"), - 132: .same(proto: "clearOneofIndex"), - 133: .same(proto: "clearOptimizeFor"), - 134: .same(proto: "clearOptions"), - 135: .same(proto: "clearOutputType"), - 136: .same(proto: "clearOverridableFeatures"), - 137: .same(proto: "clearPackage"), - 138: .same(proto: "clearPacked"), - 139: .same(proto: "clearPhpClassPrefix"), - 140: .same(proto: "clearPhpMetadataNamespace"), - 141: .same(proto: "clearPhpNamespace"), - 142: .same(proto: "clearPositiveIntValue"), - 143: .same(proto: "clearProto3Optional"), - 144: .same(proto: "clearPyGenericServices"), - 145: .same(proto: "clearRepeated"), - 146: .same(proto: "clearRepeatedFieldEncoding"), - 147: .same(proto: "clearReserved"), - 148: .same(proto: "clearRetention"), - 149: .same(proto: "clearRubyPackage"), - 150: .same(proto: "clearSemantic"), - 151: .same(proto: "clearServerStreaming"), - 152: .same(proto: "clearSourceCodeInfo"), - 153: .same(proto: "clearSourceContext"), - 154: .same(proto: "clearSourceFile"), - 155: .same(proto: "clearStart"), - 156: .same(proto: "clearStringValue"), - 157: .same(proto: "clearSwiftPrefix"), - 158: .same(proto: "clearSyntax"), - 159: .same(proto: "clearTrailingComments"), - 160: .same(proto: "clearType"), - 161: .same(proto: "clearTypeName"), - 162: .same(proto: "clearUnverifiedLazy"), - 163: .same(proto: "clearUtf8Validation"), - 164: .same(proto: "clearValue"), - 165: .same(proto: "clearVerification"), - 166: .same(proto: "clearWeak"), - 167: .same(proto: "clientStreaming"), - 168: .same(proto: "code"), - 169: .same(proto: "codePoint"), - 170: .same(proto: "codeUnits"), - 171: .same(proto: "Collection"), - 172: .same(proto: "com"), - 173: .same(proto: "comma"), - 174: .same(proto: "consumedBytes"), - 175: .same(proto: "contentsOf"), - 176: .same(proto: "copy"), - 177: .same(proto: "count"), - 178: .same(proto: "countVarintsInBuffer"), - 179: .same(proto: "csharpNamespace"), - 180: .same(proto: "ctype"), - 181: .same(proto: "customCodable"), - 182: .same(proto: "CustomDebugStringConvertible"), - 183: .same(proto: "CustomStringConvertible"), - 184: .same(proto: "d"), - 185: .same(proto: "Data"), - 186: .same(proto: "dataResult"), - 187: .same(proto: "date"), - 188: .same(proto: "daySec"), - 189: .same(proto: "daysSinceEpoch"), - 190: .same(proto: "debugDescription"), - 191: .same(proto: "debugRedact"), - 192: .same(proto: "declaration"), - 193: .same(proto: "decoded"), - 194: .same(proto: "decodedFromJSONNull"), - 195: .same(proto: "decodeExtensionField"), - 196: .same(proto: "decodeExtensionFieldsAsMessageSet"), - 197: .same(proto: "decodeJSON"), - 198: .same(proto: "decodeMapField"), - 199: .same(proto: "decodeMessage"), - 200: .same(proto: "decoder"), - 201: .same(proto: "decodeRepeated"), - 202: .same(proto: "decodeRepeatedBoolField"), - 203: .same(proto: "decodeRepeatedBytesField"), - 204: .same(proto: "decodeRepeatedDoubleField"), - 205: .same(proto: "decodeRepeatedEnumField"), - 206: .same(proto: "decodeRepeatedFixed32Field"), - 207: .same(proto: "decodeRepeatedFixed64Field"), - 208: .same(proto: "decodeRepeatedFloatField"), - 209: .same(proto: "decodeRepeatedGroupField"), - 210: .same(proto: "decodeRepeatedInt32Field"), - 211: .same(proto: "decodeRepeatedInt64Field"), - 212: .same(proto: "decodeRepeatedMessageField"), - 213: .same(proto: "decodeRepeatedSFixed32Field"), - 214: .same(proto: "decodeRepeatedSFixed64Field"), - 215: .same(proto: "decodeRepeatedSInt32Field"), - 216: .same(proto: "decodeRepeatedSInt64Field"), - 217: .same(proto: "decodeRepeatedStringField"), - 218: .same(proto: "decodeRepeatedUInt32Field"), - 219: .same(proto: "decodeRepeatedUInt64Field"), - 220: .same(proto: "decodeSingular"), - 221: .same(proto: "decodeSingularBoolField"), - 222: .same(proto: "decodeSingularBytesField"), - 223: .same(proto: "decodeSingularDoubleField"), - 224: .same(proto: "decodeSingularEnumField"), - 225: .same(proto: "decodeSingularFixed32Field"), - 226: .same(proto: "decodeSingularFixed64Field"), - 227: .same(proto: "decodeSingularFloatField"), - 228: .same(proto: "decodeSingularGroupField"), - 229: .same(proto: "decodeSingularInt32Field"), - 230: .same(proto: "decodeSingularInt64Field"), - 231: .same(proto: "decodeSingularMessageField"), - 232: .same(proto: "decodeSingularSFixed32Field"), - 233: .same(proto: "decodeSingularSFixed64Field"), - 234: .same(proto: "decodeSingularSInt32Field"), - 235: .same(proto: "decodeSingularSInt64Field"), - 236: .same(proto: "decodeSingularStringField"), - 237: .same(proto: "decodeSingularUInt32Field"), - 238: .same(proto: "decodeSingularUInt64Field"), - 239: .same(proto: "decodeTextFormat"), - 240: .same(proto: "defaultAnyTypeURLPrefix"), - 241: .same(proto: "defaults"), - 242: .same(proto: "defaultValue"), - 243: .same(proto: "dependency"), - 244: .same(proto: "deprecated"), - 245: .same(proto: "deprecatedLegacyJsonFieldConflicts"), - 246: .same(proto: "deprecationWarning"), - 247: .same(proto: "description"), - 248: .same(proto: "DescriptorProto"), - 249: .same(proto: "Dictionary"), - 250: .same(proto: "dictionaryLiteral"), - 251: .same(proto: "digit"), - 252: .same(proto: "digit0"), - 253: .same(proto: "digit1"), - 254: .same(proto: "digitCount"), - 255: .same(proto: "digits"), - 256: .same(proto: "digitValue"), - 257: .same(proto: "discardableResult"), - 258: .same(proto: "discardUnknownFields"), - 259: .same(proto: "Double"), - 260: .same(proto: "doubleValue"), - 261: .same(proto: "Duration"), - 262: .same(proto: "E"), - 263: .same(proto: "edition"), - 264: .same(proto: "EditionDefault"), - 265: .same(proto: "editionDefaults"), - 266: .same(proto: "editionDeprecated"), - 267: .same(proto: "editionIntroduced"), - 268: .same(proto: "editionRemoved"), - 269: .same(proto: "Element"), - 270: .same(proto: "elements"), - 271: .same(proto: "emitExtensionFieldName"), - 272: .same(proto: "emitFieldName"), - 273: .same(proto: "emitFieldNumber"), - 274: .same(proto: "Empty"), - 275: .same(proto: "encodeAsBytes"), - 276: .same(proto: "encoded"), - 277: .same(proto: "encodedJSONString"), - 278: .same(proto: "encodedSize"), - 279: .same(proto: "encodeField"), - 280: .same(proto: "encoder"), - 281: .same(proto: "end"), - 282: .same(proto: "endArray"), - 283: .same(proto: "endMessageField"), - 284: .same(proto: "endObject"), - 285: .same(proto: "endRegularField"), - 286: .same(proto: "enum"), - 287: .same(proto: "EnumDescriptorProto"), - 288: .same(proto: "EnumOptions"), - 289: .same(proto: "EnumReservedRange"), - 290: .same(proto: "enumType"), - 291: .same(proto: "enumvalue"), - 292: .same(proto: "EnumValueDescriptorProto"), - 293: .same(proto: "EnumValueOptions"), - 294: .same(proto: "Equatable"), - 295: .same(proto: "Error"), - 296: .same(proto: "ExpressibleByArrayLiteral"), - 297: .same(proto: "ExpressibleByDictionaryLiteral"), - 298: .same(proto: "ext"), - 299: .same(proto: "extDecoder"), - 300: .same(proto: "extendedGraphemeClusterLiteral"), - 301: .same(proto: "ExtendedGraphemeClusterLiteralType"), - 302: .same(proto: "extendee"), - 303: .same(proto: "ExtensibleMessage"), - 304: .same(proto: "extension"), - 305: .same(proto: "ExtensionField"), - 306: .same(proto: "extensionFieldNumber"), - 307: .same(proto: "ExtensionFieldValueSet"), - 308: .same(proto: "ExtensionMap"), - 309: .same(proto: "extensionRange"), - 310: .same(proto: "ExtensionRangeOptions"), - 311: .same(proto: "extensions"), - 312: .same(proto: "extras"), - 313: .same(proto: "F"), - 314: .same(proto: "false"), - 315: .same(proto: "features"), - 316: .same(proto: "FeatureSet"), - 317: .same(proto: "FeatureSetDefaults"), - 318: .same(proto: "FeatureSetEditionDefault"), - 319: .same(proto: "featureSupport"), - 320: .same(proto: "field"), - 321: .same(proto: "fieldData"), - 322: .same(proto: "FieldDescriptorProto"), - 323: .same(proto: "FieldMask"), - 324: .same(proto: "fieldName"), - 325: .same(proto: "fieldNameCount"), - 326: .same(proto: "fieldNum"), - 327: .same(proto: "fieldNumber"), - 328: .same(proto: "fieldNumberForProto"), - 329: .same(proto: "FieldOptions"), - 330: .same(proto: "fieldPresence"), - 331: .same(proto: "fields"), - 332: .same(proto: "fieldSize"), - 333: .same(proto: "FieldTag"), - 334: .same(proto: "fieldType"), - 335: .same(proto: "file"), - 336: .same(proto: "FileDescriptorProto"), - 337: .same(proto: "FileDescriptorSet"), - 338: .same(proto: "fileName"), - 339: .same(proto: "FileOptions"), - 340: .same(proto: "filter"), - 341: .same(proto: "final"), - 342: .same(proto: "finiteOnly"), - 343: .same(proto: "first"), - 344: .same(proto: "firstItem"), - 345: .same(proto: "fixedFeatures"), - 346: .same(proto: "Float"), - 347: .same(proto: "floatLiteral"), - 348: .same(proto: "FloatLiteralType"), - 349: .same(proto: "FloatValue"), - 350: .same(proto: "forMessageName"), - 351: .same(proto: "formUnion"), - 352: .same(proto: "forReadingFrom"), - 353: .same(proto: "forTypeURL"), - 354: .same(proto: "ForwardParser"), - 355: .same(proto: "forWritingInto"), - 356: .same(proto: "from"), - 357: .same(proto: "fromAscii2"), - 358: .same(proto: "fromAscii4"), - 359: .same(proto: "fromByteOffset"), - 360: .same(proto: "fromHexDigit"), - 361: .same(proto: "fullName"), - 362: .same(proto: "func"), - 363: .same(proto: "function"), - 364: .same(proto: "G"), - 365: .same(proto: "GeneratedCodeInfo"), - 366: .same(proto: "get"), - 367: .same(proto: "getExtensionValue"), - 368: .same(proto: "googleapis"), - 369: .standard(proto: "Google_Protobuf_Any"), - 370: .standard(proto: "Google_Protobuf_Api"), - 371: .standard(proto: "Google_Protobuf_BoolValue"), - 372: .standard(proto: "Google_Protobuf_BytesValue"), - 373: .standard(proto: "Google_Protobuf_DescriptorProto"), - 374: .standard(proto: "Google_Protobuf_DoubleValue"), - 375: .standard(proto: "Google_Protobuf_Duration"), - 376: .standard(proto: "Google_Protobuf_Edition"), - 377: .standard(proto: "Google_Protobuf_Empty"), - 378: .standard(proto: "Google_Protobuf_Enum"), - 379: .standard(proto: "Google_Protobuf_EnumDescriptorProto"), - 380: .standard(proto: "Google_Protobuf_EnumOptions"), - 381: .standard(proto: "Google_Protobuf_EnumValue"), - 382: .standard(proto: "Google_Protobuf_EnumValueDescriptorProto"), - 383: .standard(proto: "Google_Protobuf_EnumValueOptions"), - 384: .standard(proto: "Google_Protobuf_ExtensionRangeOptions"), - 385: .standard(proto: "Google_Protobuf_FeatureSet"), - 386: .standard(proto: "Google_Protobuf_FeatureSetDefaults"), - 387: .standard(proto: "Google_Protobuf_Field"), - 388: .standard(proto: "Google_Protobuf_FieldDescriptorProto"), - 389: .standard(proto: "Google_Protobuf_FieldMask"), - 390: .standard(proto: "Google_Protobuf_FieldOptions"), - 391: .standard(proto: "Google_Protobuf_FileDescriptorProto"), - 392: .standard(proto: "Google_Protobuf_FileDescriptorSet"), - 393: .standard(proto: "Google_Protobuf_FileOptions"), - 394: .standard(proto: "Google_Protobuf_FloatValue"), - 395: .standard(proto: "Google_Protobuf_GeneratedCodeInfo"), - 396: .standard(proto: "Google_Protobuf_Int32Value"), - 397: .standard(proto: "Google_Protobuf_Int64Value"), - 398: .standard(proto: "Google_Protobuf_ListValue"), - 399: .standard(proto: "Google_Protobuf_MessageOptions"), - 400: .standard(proto: "Google_Protobuf_Method"), - 401: .standard(proto: "Google_Protobuf_MethodDescriptorProto"), - 402: .standard(proto: "Google_Protobuf_MethodOptions"), - 403: .standard(proto: "Google_Protobuf_Mixin"), - 404: .standard(proto: "Google_Protobuf_NullValue"), - 405: .standard(proto: "Google_Protobuf_OneofDescriptorProto"), - 406: .standard(proto: "Google_Protobuf_OneofOptions"), - 407: .standard(proto: "Google_Protobuf_Option"), - 408: .standard(proto: "Google_Protobuf_ServiceDescriptorProto"), - 409: .standard(proto: "Google_Protobuf_ServiceOptions"), - 410: .standard(proto: "Google_Protobuf_SourceCodeInfo"), - 411: .standard(proto: "Google_Protobuf_SourceContext"), - 412: .standard(proto: "Google_Protobuf_StringValue"), - 413: .standard(proto: "Google_Protobuf_Struct"), - 414: .standard(proto: "Google_Protobuf_Syntax"), - 415: .standard(proto: "Google_Protobuf_Timestamp"), - 416: .standard(proto: "Google_Protobuf_Type"), - 417: .standard(proto: "Google_Protobuf_UInt32Value"), - 418: .standard(proto: "Google_Protobuf_UInt64Value"), - 419: .standard(proto: "Google_Protobuf_UninterpretedOption"), - 420: .standard(proto: "Google_Protobuf_Value"), - 421: .same(proto: "goPackage"), - 422: .same(proto: "group"), - 423: .same(proto: "groupFieldNumberStack"), - 424: .same(proto: "groupSize"), - 425: .same(proto: "hadOneofValue"), - 426: .same(proto: "handleConflictingOneOf"), - 427: .same(proto: "hasAggregateValue"), - 428: .same(proto: "hasAllowAlias"), - 429: .same(proto: "hasBegin"), - 430: .same(proto: "hasCcEnableArenas"), - 431: .same(proto: "hasCcGenericServices"), - 432: .same(proto: "hasClientStreaming"), - 433: .same(proto: "hasCsharpNamespace"), - 434: .same(proto: "hasCtype"), - 435: .same(proto: "hasDebugRedact"), - 436: .same(proto: "hasDefaultValue"), - 437: .same(proto: "hasDeprecated"), - 438: .same(proto: "hasDeprecatedLegacyJsonFieldConflicts"), - 439: .same(proto: "hasDeprecationWarning"), - 440: .same(proto: "hasDoubleValue"), - 441: .same(proto: "hasEdition"), - 442: .same(proto: "hasEditionDeprecated"), - 443: .same(proto: "hasEditionIntroduced"), - 444: .same(proto: "hasEditionRemoved"), - 445: .same(proto: "hasEnd"), - 446: .same(proto: "hasEnumType"), - 447: .same(proto: "hasExtendee"), - 448: .same(proto: "hasExtensionValue"), - 449: .same(proto: "hasFeatures"), - 450: .same(proto: "hasFeatureSupport"), - 451: .same(proto: "hasFieldPresence"), - 452: .same(proto: "hasFixedFeatures"), - 453: .same(proto: "hasFullName"), - 454: .same(proto: "hasGoPackage"), - 455: .same(proto: "hash"), - 456: .same(proto: "Hashable"), - 457: .same(proto: "hasher"), - 458: .same(proto: "HashVisitor"), - 459: .same(proto: "hasIdempotencyLevel"), - 460: .same(proto: "hasIdentifierValue"), - 461: .same(proto: "hasInputType"), - 462: .same(proto: "hasIsExtension"), - 463: .same(proto: "hasJavaGenerateEqualsAndHash"), - 464: .same(proto: "hasJavaGenericServices"), - 465: .same(proto: "hasJavaMultipleFiles"), - 466: .same(proto: "hasJavaOuterClassname"), - 467: .same(proto: "hasJavaPackage"), - 468: .same(proto: "hasJavaStringCheckUtf8"), - 469: .same(proto: "hasJsonFormat"), - 470: .same(proto: "hasJsonName"), - 471: .same(proto: "hasJstype"), - 472: .same(proto: "hasLabel"), - 473: .same(proto: "hasLazy"), - 474: .same(proto: "hasLeadingComments"), - 475: .same(proto: "hasMapEntry"), - 476: .same(proto: "hasMaximumEdition"), - 477: .same(proto: "hasMessageEncoding"), - 478: .same(proto: "hasMessageSetWireFormat"), - 479: .same(proto: "hasMinimumEdition"), - 480: .same(proto: "hasName"), - 481: .same(proto: "hasNamePart"), - 482: .same(proto: "hasNegativeIntValue"), - 483: .same(proto: "hasNoStandardDescriptorAccessor"), - 484: .same(proto: "hasNumber"), - 485: .same(proto: "hasObjcClassPrefix"), - 486: .same(proto: "hasOneofIndex"), - 487: .same(proto: "hasOptimizeFor"), - 488: .same(proto: "hasOptions"), - 489: .same(proto: "hasOutputType"), - 490: .same(proto: "hasOverridableFeatures"), - 491: .same(proto: "hasPackage"), - 492: .same(proto: "hasPacked"), - 493: .same(proto: "hasPhpClassPrefix"), - 494: .same(proto: "hasPhpMetadataNamespace"), - 495: .same(proto: "hasPhpNamespace"), - 496: .same(proto: "hasPositiveIntValue"), - 497: .same(proto: "hasProto3Optional"), - 498: .same(proto: "hasPyGenericServices"), - 499: .same(proto: "hasRepeated"), - 500: .same(proto: "hasRepeatedFieldEncoding"), - 501: .same(proto: "hasReserved"), - 502: .same(proto: "hasRetention"), - 503: .same(proto: "hasRubyPackage"), - 504: .same(proto: "hasSemantic"), - 505: .same(proto: "hasServerStreaming"), - 506: .same(proto: "hasSourceCodeInfo"), - 507: .same(proto: "hasSourceContext"), - 508: .same(proto: "hasSourceFile"), - 509: .same(proto: "hasStart"), - 510: .same(proto: "hasStringValue"), - 511: .same(proto: "hasSwiftPrefix"), - 512: .same(proto: "hasSyntax"), - 513: .same(proto: "hasTrailingComments"), - 514: .same(proto: "hasType"), - 515: .same(proto: "hasTypeName"), - 516: .same(proto: "hasUnverifiedLazy"), - 517: .same(proto: "hasUtf8Validation"), - 518: .same(proto: "hasValue"), - 519: .same(proto: "hasVerification"), - 520: .same(proto: "hasWeak"), - 521: .same(proto: "hour"), - 522: .same(proto: "i"), - 523: .same(proto: "idempotencyLevel"), - 524: .same(proto: "identifierValue"), - 525: .same(proto: "if"), - 526: .same(proto: "ignoreUnknownExtensionFields"), - 527: .same(proto: "ignoreUnknownFields"), - 528: .same(proto: "index"), - 529: .same(proto: "init"), - 530: .same(proto: "inout"), - 531: .same(proto: "inputType"), - 532: .same(proto: "insert"), - 533: .same(proto: "Int"), - 534: .same(proto: "Int32"), - 535: .same(proto: "Int32Value"), - 536: .same(proto: "Int64"), - 537: .same(proto: "Int64Value"), - 538: .same(proto: "Int8"), - 539: .same(proto: "integerLiteral"), - 540: .same(proto: "IntegerLiteralType"), - 541: .same(proto: "intern"), - 542: .same(proto: "Internal"), - 543: .same(proto: "InternalState"), - 544: .same(proto: "into"), - 545: .same(proto: "ints"), - 546: .same(proto: "isA"), - 547: .same(proto: "isEqual"), - 548: .same(proto: "isEqualTo"), - 549: .same(proto: "isExtension"), - 550: .same(proto: "isInitialized"), - 551: .same(proto: "isNegative"), - 552: .same(proto: "itemTagsEncodedSize"), - 553: .same(proto: "iterator"), - 554: .same(proto: "javaGenerateEqualsAndHash"), - 555: .same(proto: "javaGenericServices"), - 556: .same(proto: "javaMultipleFiles"), - 557: .same(proto: "javaOuterClassname"), - 558: .same(proto: "javaPackage"), - 559: .same(proto: "javaStringCheckUtf8"), - 560: .same(proto: "JSONDecoder"), - 561: .same(proto: "JSONDecodingError"), - 562: .same(proto: "JSONDecodingOptions"), - 563: .same(proto: "jsonEncoder"), - 564: .same(proto: "JSONEncoding"), - 565: .same(proto: "JSONEncodingError"), - 566: .same(proto: "JSONEncodingOptions"), - 567: .same(proto: "JSONEncodingVisitor"), - 568: .same(proto: "jsonFormat"), - 569: .same(proto: "JSONMapEncodingVisitor"), - 570: .same(proto: "jsonName"), - 571: .same(proto: "jsonPath"), - 572: .same(proto: "jsonPaths"), - 573: .same(proto: "JSONScanner"), - 574: .same(proto: "jsonString"), - 575: .same(proto: "jsonText"), - 576: .same(proto: "jsonUTF8Bytes"), - 577: .same(proto: "jsonUTF8Data"), - 578: .same(proto: "jstype"), - 579: .same(proto: "k"), - 580: .same(proto: "kChunkSize"), - 581: .same(proto: "Key"), - 582: .same(proto: "keyField"), - 583: .same(proto: "keyFieldOpt"), - 584: .same(proto: "KeyType"), - 585: .same(proto: "kind"), - 586: .same(proto: "l"), - 587: .same(proto: "label"), - 588: .same(proto: "lazy"), - 589: .same(proto: "leadingComments"), - 590: .same(proto: "leadingDetachedComments"), - 591: .same(proto: "length"), - 592: .same(proto: "lessThan"), - 593: .same(proto: "let"), - 594: .same(proto: "lhs"), - 595: .same(proto: "line"), - 596: .same(proto: "list"), - 597: .same(proto: "listOfMessages"), - 598: .same(proto: "listValue"), - 599: .same(proto: "littleEndian"), - 600: .same(proto: "load"), - 601: .same(proto: "localHasher"), - 602: .same(proto: "location"), - 603: .same(proto: "M"), - 604: .same(proto: "major"), - 605: .same(proto: "makeAsyncIterator"), - 606: .same(proto: "makeIterator"), - 607: .same(proto: "malformedLength"), - 608: .same(proto: "mapEntry"), - 609: .same(proto: "MapKeyType"), - 610: .same(proto: "mapToMessages"), - 611: .same(proto: "MapValueType"), - 612: .same(proto: "mapVisitor"), - 613: .same(proto: "maximumEdition"), - 614: .same(proto: "mdayStart"), - 615: .same(proto: "merge"), - 616: .same(proto: "message"), - 617: .same(proto: "messageDepthLimit"), - 618: .same(proto: "messageEncoding"), - 619: .same(proto: "MessageExtension"), - 620: .same(proto: "MessageImplementationBase"), - 621: .same(proto: "MessageOptions"), - 622: .same(proto: "MessageSet"), - 623: .same(proto: "messageSetWireFormat"), - 624: .same(proto: "messageSize"), - 625: .same(proto: "messageType"), - 626: .same(proto: "Method"), - 627: .same(proto: "MethodDescriptorProto"), - 628: .same(proto: "MethodOptions"), - 629: .same(proto: "methods"), - 630: .same(proto: "min"), - 631: .same(proto: "minimumEdition"), - 632: .same(proto: "minor"), - 633: .same(proto: "Mixin"), - 634: .same(proto: "mixins"), - 635: .same(proto: "modifier"), - 636: .same(proto: "modify"), - 637: .same(proto: "month"), - 638: .same(proto: "msgExtension"), - 639: .same(proto: "mutating"), - 640: .same(proto: "n"), - 641: .same(proto: "name"), - 642: .same(proto: "NameDescription"), - 643: .same(proto: "NameMap"), - 644: .same(proto: "NamePart"), - 645: .same(proto: "names"), - 646: .same(proto: "nanos"), - 647: .same(proto: "negativeIntValue"), - 648: .same(proto: "nestedType"), - 649: .same(proto: "newL"), - 650: .same(proto: "newList"), - 651: .same(proto: "newValue"), - 652: .same(proto: "next"), - 653: .same(proto: "nextByte"), - 654: .same(proto: "nextFieldNumber"), - 655: .same(proto: "nextVarInt"), - 656: .same(proto: "nil"), - 657: .same(proto: "nilLiteral"), - 658: .same(proto: "noBytesAvailable"), - 659: .same(proto: "noStandardDescriptorAccessor"), - 660: .same(proto: "nullValue"), - 661: .same(proto: "number"), - 662: .same(proto: "numberValue"), - 663: .same(proto: "objcClassPrefix"), - 664: .same(proto: "of"), - 665: .same(proto: "oneofDecl"), - 666: .same(proto: "OneofDescriptorProto"), - 667: .same(proto: "oneofIndex"), - 668: .same(proto: "OneofOptions"), - 669: .same(proto: "oneofs"), - 670: .standard(proto: "OneOf_Kind"), - 671: .same(proto: "optimizeFor"), - 672: .same(proto: "OptimizeMode"), - 673: .same(proto: "Option"), - 674: .same(proto: "OptionalEnumExtensionField"), - 675: .same(proto: "OptionalExtensionField"), - 676: .same(proto: "OptionalGroupExtensionField"), - 677: .same(proto: "OptionalMessageExtensionField"), - 678: .same(proto: "OptionRetention"), - 679: .same(proto: "options"), - 680: .same(proto: "OptionTargetType"), - 681: .same(proto: "other"), - 682: .same(proto: "others"), - 683: .same(proto: "out"), - 684: .same(proto: "outputType"), - 685: .same(proto: "overridableFeatures"), - 686: .same(proto: "p"), - 687: .same(proto: "package"), - 688: .same(proto: "packed"), - 689: .same(proto: "PackedEnumExtensionField"), - 690: .same(proto: "PackedExtensionField"), - 691: .same(proto: "padding"), - 692: .same(proto: "parent"), - 693: .same(proto: "parse"), - 694: .same(proto: "path"), - 695: .same(proto: "paths"), - 696: .same(proto: "payload"), - 697: .same(proto: "payloadSize"), - 698: .same(proto: "phpClassPrefix"), - 699: .same(proto: "phpMetadataNamespace"), - 700: .same(proto: "phpNamespace"), - 701: .same(proto: "pos"), - 702: .same(proto: "positiveIntValue"), - 703: .same(proto: "prefix"), - 704: .same(proto: "preserveProtoFieldNames"), - 705: .same(proto: "preTraverse"), - 706: .same(proto: "printUnknownFields"), - 707: .same(proto: "proto2"), - 708: .same(proto: "proto3DefaultValue"), - 709: .same(proto: "proto3Optional"), - 710: .same(proto: "ProtobufAPIVersionCheck"), - 711: .standard(proto: "ProtobufAPIVersion_3"), - 712: .same(proto: "ProtobufBool"), - 713: .same(proto: "ProtobufBytes"), - 714: .same(proto: "ProtobufDouble"), - 715: .same(proto: "ProtobufEnumMap"), - 716: .same(proto: "protobufExtension"), - 717: .same(proto: "ProtobufFixed32"), - 718: .same(proto: "ProtobufFixed64"), - 719: .same(proto: "ProtobufFloat"), - 720: .same(proto: "ProtobufInt32"), - 721: .same(proto: "ProtobufInt64"), - 722: .same(proto: "ProtobufMap"), - 723: .same(proto: "ProtobufMessageMap"), - 724: .same(proto: "ProtobufSFixed32"), - 725: .same(proto: "ProtobufSFixed64"), - 726: .same(proto: "ProtobufSInt32"), - 727: .same(proto: "ProtobufSInt64"), - 728: .same(proto: "ProtobufString"), - 729: .same(proto: "ProtobufUInt32"), - 730: .same(proto: "ProtobufUInt64"), - 731: .standard(proto: "protobuf_extensionFieldValues"), - 732: .standard(proto: "protobuf_fieldNumber"), - 733: .standard(proto: "protobuf_generated_isEqualTo"), - 734: .standard(proto: "protobuf_nameMap"), - 735: .standard(proto: "protobuf_newField"), - 736: .standard(proto: "protobuf_package"), - 737: .same(proto: "protocol"), - 738: .same(proto: "protoFieldName"), - 739: .same(proto: "protoMessageName"), - 740: .same(proto: "ProtoNameProviding"), - 741: .same(proto: "protoPaths"), - 742: .same(proto: "public"), - 743: .same(proto: "publicDependency"), - 744: .same(proto: "putBoolValue"), - 745: .same(proto: "putBytesValue"), - 746: .same(proto: "putDoubleValue"), - 747: .same(proto: "putEnumValue"), - 748: .same(proto: "putFixedUInt32"), - 749: .same(proto: "putFixedUInt64"), - 750: .same(proto: "putFloatValue"), - 751: .same(proto: "putInt64"), - 752: .same(proto: "putStringValue"), - 753: .same(proto: "putUInt64"), - 754: .same(proto: "putUInt64Hex"), - 755: .same(proto: "putVarInt"), - 756: .same(proto: "putZigZagVarInt"), - 757: .same(proto: "pyGenericServices"), - 758: .same(proto: "R"), - 759: .same(proto: "rawChars"), - 760: .same(proto: "RawRepresentable"), - 761: .same(proto: "RawValue"), - 762: .same(proto: "read4HexDigits"), - 763: .same(proto: "readBytes"), - 764: .same(proto: "register"), - 765: .same(proto: "repeated"), - 766: .same(proto: "RepeatedEnumExtensionField"), - 767: .same(proto: "RepeatedExtensionField"), - 768: .same(proto: "repeatedFieldEncoding"), - 769: .same(proto: "RepeatedGroupExtensionField"), - 770: .same(proto: "RepeatedMessageExtensionField"), - 771: .same(proto: "repeating"), - 772: .same(proto: "requestStreaming"), - 773: .same(proto: "requestTypeURL"), - 774: .same(proto: "requiredSize"), - 775: .same(proto: "responseStreaming"), - 776: .same(proto: "responseTypeURL"), - 777: .same(proto: "result"), - 778: .same(proto: "retention"), - 779: .same(proto: "rethrows"), - 780: .same(proto: "return"), - 781: .same(proto: "ReturnType"), - 782: .same(proto: "revision"), - 783: .same(proto: "rhs"), - 784: .same(proto: "root"), - 785: .same(proto: "rubyPackage"), - 786: .same(proto: "s"), - 787: .same(proto: "sawBackslash"), - 788: .same(proto: "sawSection4Characters"), - 789: .same(proto: "sawSection5Characters"), - 790: .same(proto: "scan"), - 791: .same(proto: "scanner"), - 792: .same(proto: "seconds"), - 793: .same(proto: "self"), - 794: .same(proto: "semantic"), - 795: .same(proto: "Sendable"), - 796: .same(proto: "separator"), - 797: .same(proto: "serialize"), - 798: .same(proto: "serializedBytes"), - 799: .same(proto: "serializedData"), - 800: .same(proto: "serializedSize"), - 801: .same(proto: "serverStreaming"), - 802: .same(proto: "service"), - 803: .same(proto: "ServiceDescriptorProto"), - 804: .same(proto: "ServiceOptions"), - 805: .same(proto: "set"), - 806: .same(proto: "setExtensionValue"), - 807: .same(proto: "shift"), - 808: .same(proto: "SimpleExtensionMap"), - 809: .same(proto: "size"), - 810: .same(proto: "sizer"), - 811: .same(proto: "source"), - 812: .same(proto: "sourceCodeInfo"), - 813: .same(proto: "sourceContext"), - 814: .same(proto: "sourceEncoding"), - 815: .same(proto: "sourceFile"), - 816: .same(proto: "SourceLocation"), - 817: .same(proto: "span"), - 818: .same(proto: "split"), - 819: .same(proto: "start"), - 820: .same(proto: "startArray"), - 821: .same(proto: "startArrayObject"), - 822: .same(proto: "startField"), - 823: .same(proto: "startIndex"), - 824: .same(proto: "startMessageField"), - 825: .same(proto: "startObject"), - 826: .same(proto: "startRegularField"), - 827: .same(proto: "state"), - 828: .same(proto: "static"), - 829: .same(proto: "StaticString"), - 830: .same(proto: "storage"), - 831: .same(proto: "String"), - 832: .same(proto: "stringLiteral"), - 833: .same(proto: "StringLiteralType"), - 834: .same(proto: "stringResult"), - 835: .same(proto: "stringValue"), - 836: .same(proto: "struct"), - 837: .same(proto: "structValue"), - 838: .same(proto: "subDecoder"), - 839: .same(proto: "subscript"), - 840: .same(proto: "subVisitor"), - 841: .same(proto: "Swift"), - 842: .same(proto: "swiftPrefix"), - 843: .same(proto: "SwiftProtobufContiguousBytes"), - 844: .same(proto: "SwiftProtobufError"), - 845: .same(proto: "syntax"), - 846: .same(proto: "T"), - 847: .same(proto: "tag"), - 848: .same(proto: "targets"), - 849: .same(proto: "terminator"), - 850: .same(proto: "testDecoder"), - 851: .same(proto: "text"), - 852: .same(proto: "textDecoder"), - 853: .same(proto: "TextFormatDecoder"), - 854: .same(proto: "TextFormatDecodingError"), - 855: .same(proto: "TextFormatDecodingOptions"), - 856: .same(proto: "TextFormatEncodingOptions"), - 857: .same(proto: "TextFormatEncodingVisitor"), - 858: .same(proto: "textFormatString"), - 859: .same(proto: "throwOrIgnore"), - 860: .same(proto: "throws"), - 861: .same(proto: "timeInterval"), - 862: .same(proto: "timeIntervalSince1970"), - 863: .same(proto: "timeIntervalSinceReferenceDate"), - 864: .same(proto: "Timestamp"), - 865: .same(proto: "tooLarge"), - 866: .same(proto: "total"), - 867: .same(proto: "totalArrayDepth"), - 868: .same(proto: "totalSize"), - 869: .same(proto: "trailingComments"), - 870: .same(proto: "traverse"), - 871: .same(proto: "true"), - 872: .same(proto: "try"), - 873: .same(proto: "type"), - 874: .same(proto: "typealias"), - 875: .same(proto: "TypeEnum"), - 876: .same(proto: "typeName"), - 877: .same(proto: "typePrefix"), - 878: .same(proto: "typeStart"), - 879: .same(proto: "typeUnknown"), - 880: .same(proto: "typeURL"), - 881: .same(proto: "UInt32"), - 882: .same(proto: "UInt32Value"), - 883: .same(proto: "UInt64"), - 884: .same(proto: "UInt64Value"), - 885: .same(proto: "UInt8"), - 886: .same(proto: "unchecked"), - 887: .same(proto: "unicodeScalarLiteral"), - 888: .same(proto: "UnicodeScalarLiteralType"), - 889: .same(proto: "unicodeScalars"), - 890: .same(proto: "UnicodeScalarView"), - 891: .same(proto: "uninterpretedOption"), - 892: .same(proto: "union"), - 893: .same(proto: "uniqueStorage"), - 894: .same(proto: "unknown"), - 895: .same(proto: "unknownFields"), - 896: .same(proto: "UnknownStorage"), - 897: .same(proto: "unpackTo"), - 898: .same(proto: "unregisteredTypeURL"), - 899: .same(proto: "UnsafeBufferPointer"), - 900: .same(proto: "UnsafeMutablePointer"), - 901: .same(proto: "UnsafeMutableRawBufferPointer"), - 902: .same(proto: "UnsafeRawBufferPointer"), - 903: .same(proto: "UnsafeRawPointer"), - 904: .same(proto: "unverifiedLazy"), - 905: .same(proto: "updatedOptions"), - 906: .same(proto: "url"), - 907: .same(proto: "useDeterministicOrdering"), - 908: .same(proto: "utf8"), - 909: .same(proto: "utf8Ptr"), - 910: .same(proto: "utf8ToDouble"), - 911: .same(proto: "utf8Validation"), - 912: .same(proto: "UTF8View"), - 913: .same(proto: "v"), - 914: .same(proto: "value"), - 915: .same(proto: "valueField"), - 916: .same(proto: "values"), - 917: .same(proto: "ValueType"), - 918: .same(proto: "var"), - 919: .same(proto: "verification"), - 920: .same(proto: "VerificationState"), - 921: .same(proto: "Version"), - 922: .same(proto: "versionString"), - 923: .same(proto: "visitExtensionFields"), - 924: .same(proto: "visitExtensionFieldsAsMessageSet"), - 925: .same(proto: "visitMapField"), - 926: .same(proto: "visitor"), - 927: .same(proto: "visitPacked"), - 928: .same(proto: "visitPackedBoolField"), - 929: .same(proto: "visitPackedDoubleField"), - 930: .same(proto: "visitPackedEnumField"), - 931: .same(proto: "visitPackedFixed32Field"), - 932: .same(proto: "visitPackedFixed64Field"), - 933: .same(proto: "visitPackedFloatField"), - 934: .same(proto: "visitPackedInt32Field"), - 935: .same(proto: "visitPackedInt64Field"), - 936: .same(proto: "visitPackedSFixed32Field"), - 937: .same(proto: "visitPackedSFixed64Field"), - 938: .same(proto: "visitPackedSInt32Field"), - 939: .same(proto: "visitPackedSInt64Field"), - 940: .same(proto: "visitPackedUInt32Field"), - 941: .same(proto: "visitPackedUInt64Field"), - 942: .same(proto: "visitRepeated"), - 943: .same(proto: "visitRepeatedBoolField"), - 944: .same(proto: "visitRepeatedBytesField"), - 945: .same(proto: "visitRepeatedDoubleField"), - 946: .same(proto: "visitRepeatedEnumField"), - 947: .same(proto: "visitRepeatedFixed32Field"), - 948: .same(proto: "visitRepeatedFixed64Field"), - 949: .same(proto: "visitRepeatedFloatField"), - 950: .same(proto: "visitRepeatedGroupField"), - 951: .same(proto: "visitRepeatedInt32Field"), - 952: .same(proto: "visitRepeatedInt64Field"), - 953: .same(proto: "visitRepeatedMessageField"), - 954: .same(proto: "visitRepeatedSFixed32Field"), - 955: .same(proto: "visitRepeatedSFixed64Field"), - 956: .same(proto: "visitRepeatedSInt32Field"), - 957: .same(proto: "visitRepeatedSInt64Field"), - 958: .same(proto: "visitRepeatedStringField"), - 959: .same(proto: "visitRepeatedUInt32Field"), - 960: .same(proto: "visitRepeatedUInt64Field"), - 961: .same(proto: "visitSingular"), - 962: .same(proto: "visitSingularBoolField"), - 963: .same(proto: "visitSingularBytesField"), - 964: .same(proto: "visitSingularDoubleField"), - 965: .same(proto: "visitSingularEnumField"), - 966: .same(proto: "visitSingularFixed32Field"), - 967: .same(proto: "visitSingularFixed64Field"), - 968: .same(proto: "visitSingularFloatField"), - 969: .same(proto: "visitSingularGroupField"), - 970: .same(proto: "visitSingularInt32Field"), - 971: .same(proto: "visitSingularInt64Field"), - 972: .same(proto: "visitSingularMessageField"), - 973: .same(proto: "visitSingularSFixed32Field"), - 974: .same(proto: "visitSingularSFixed64Field"), - 975: .same(proto: "visitSingularSInt32Field"), - 976: .same(proto: "visitSingularSInt64Field"), - 977: .same(proto: "visitSingularStringField"), - 978: .same(proto: "visitSingularUInt32Field"), - 979: .same(proto: "visitSingularUInt64Field"), - 980: .same(proto: "visitUnknown"), - 981: .same(proto: "wasDecoded"), - 982: .same(proto: "weak"), - 983: .same(proto: "weakDependency"), - 984: .same(proto: "where"), - 985: .same(proto: "wireFormat"), - 986: .same(proto: "with"), - 987: .same(proto: "withUnsafeBytes"), - 988: .same(proto: "withUnsafeMutableBytes"), - 989: .same(proto: "work"), - 990: .same(proto: "Wrapped"), - 991: .same(proto: "WrappedType"), - 992: .same(proto: "wrappedValue"), - 993: .same(proto: "written"), - 994: .same(proto: "yday"), + 12: .same(proto: "AnyUnpackError"), + 13: .same(proto: "Api"), + 14: .same(proto: "appended"), + 15: .same(proto: "appendUIntHex"), + 16: .same(proto: "appendUnknown"), + 17: .same(proto: "areAllInitialized"), + 18: .same(proto: "Array"), + 19: .same(proto: "arrayDepth"), + 20: .same(proto: "arrayLiteral"), + 21: .same(proto: "arraySeparator"), + 22: .same(proto: "as"), + 23: .same(proto: "asciiOpenCurlyBracket"), + 24: .same(proto: "asciiZero"), + 25: .same(proto: "async"), + 26: .same(proto: "AsyncIterator"), + 27: .same(proto: "AsyncIteratorProtocol"), + 28: .same(proto: "AsyncMessageSequence"), + 29: .same(proto: "available"), + 30: .same(proto: "b"), + 31: .same(proto: "Base"), + 32: .same(proto: "base64Values"), + 33: .same(proto: "baseAddress"), + 34: .same(proto: "BaseType"), + 35: .same(proto: "begin"), + 36: .same(proto: "binary"), + 37: .same(proto: "BinaryDecoder"), + 38: .same(proto: "BinaryDecoding"), + 39: .same(proto: "BinaryDecodingError"), + 40: .same(proto: "BinaryDecodingOptions"), + 41: .same(proto: "BinaryDelimited"), + 42: .same(proto: "BinaryEncoder"), + 43: .same(proto: "BinaryEncodingError"), + 44: .same(proto: "BinaryEncodingMessageSetSizeVisitor"), + 45: .same(proto: "BinaryEncodingMessageSetVisitor"), + 46: .same(proto: "BinaryEncodingOptions"), + 47: .same(proto: "BinaryEncodingSizeVisitor"), + 48: .same(proto: "BinaryEncodingVisitor"), + 49: .same(proto: "binaryOptions"), + 50: .same(proto: "binaryProtobufDelimitedMessages"), + 51: .same(proto: "BinaryStreamDecoding"), + 52: .same(proto: "binaryStreamDecodingError"), + 53: .same(proto: "bitPattern"), + 54: .same(proto: "body"), + 55: .same(proto: "Bool"), + 56: .same(proto: "booleanLiteral"), + 57: .same(proto: "BooleanLiteralType"), + 58: .same(proto: "boolValue"), + 59: .same(proto: "buffer"), + 60: .same(proto: "bytes"), + 61: .same(proto: "bytesInGroup"), + 62: .same(proto: "bytesNeeded"), + 63: .same(proto: "bytesRead"), + 64: .same(proto: "BytesValue"), + 65: .same(proto: "c"), + 66: .same(proto: "capitalizeNext"), + 67: .same(proto: "cardinality"), + 68: .same(proto: "CaseIterable"), + 69: .same(proto: "ccEnableArenas"), + 70: .same(proto: "ccGenericServices"), + 71: .same(proto: "Character"), + 72: .same(proto: "chars"), + 73: .same(proto: "chunk"), + 74: .same(proto: "class"), + 75: .same(proto: "clearAggregateValue"), + 76: .same(proto: "clearAllowAlias"), + 77: .same(proto: "clearBegin"), + 78: .same(proto: "clearCcEnableArenas"), + 79: .same(proto: "clearCcGenericServices"), + 80: .same(proto: "clearClientStreaming"), + 81: .same(proto: "clearCsharpNamespace"), + 82: .same(proto: "clearCtype"), + 83: .same(proto: "clearDebugRedact"), + 84: .same(proto: "clearDefaultValue"), + 85: .same(proto: "clearDeprecated"), + 86: .same(proto: "clearDeprecatedLegacyJsonFieldConflicts"), + 87: .same(proto: "clearDeprecationWarning"), + 88: .same(proto: "clearDoubleValue"), + 89: .same(proto: "clearEdition"), + 90: .same(proto: "clearEditionDeprecated"), + 91: .same(proto: "clearEditionIntroduced"), + 92: .same(proto: "clearEditionRemoved"), + 93: .same(proto: "clearEnd"), + 94: .same(proto: "clearEnumType"), + 95: .same(proto: "clearExtendee"), + 96: .same(proto: "clearExtensionValue"), + 97: .same(proto: "clearFeatures"), + 98: .same(proto: "clearFeatureSupport"), + 99: .same(proto: "clearFieldPresence"), + 100: .same(proto: "clearFixedFeatures"), + 101: .same(proto: "clearFullName"), + 102: .same(proto: "clearGoPackage"), + 103: .same(proto: "clearIdempotencyLevel"), + 104: .same(proto: "clearIdentifierValue"), + 105: .same(proto: "clearInputType"), + 106: .same(proto: "clearIsExtension"), + 107: .same(proto: "clearJavaGenerateEqualsAndHash"), + 108: .same(proto: "clearJavaGenericServices"), + 109: .same(proto: "clearJavaMultipleFiles"), + 110: .same(proto: "clearJavaOuterClassname"), + 111: .same(proto: "clearJavaPackage"), + 112: .same(proto: "clearJavaStringCheckUtf8"), + 113: .same(proto: "clearJsonFormat"), + 114: .same(proto: "clearJsonName"), + 115: .same(proto: "clearJstype"), + 116: .same(proto: "clearLabel"), + 117: .same(proto: "clearLazy"), + 118: .same(proto: "clearLeadingComments"), + 119: .same(proto: "clearMapEntry"), + 120: .same(proto: "clearMaximumEdition"), + 121: .same(proto: "clearMessageEncoding"), + 122: .same(proto: "clearMessageSetWireFormat"), + 123: .same(proto: "clearMinimumEdition"), + 124: .same(proto: "clearName"), + 125: .same(proto: "clearNamePart"), + 126: .same(proto: "clearNegativeIntValue"), + 127: .same(proto: "clearNoStandardDescriptorAccessor"), + 128: .same(proto: "clearNumber"), + 129: .same(proto: "clearObjcClassPrefix"), + 130: .same(proto: "clearOneofIndex"), + 131: .same(proto: "clearOptimizeFor"), + 132: .same(proto: "clearOptions"), + 133: .same(proto: "clearOutputType"), + 134: .same(proto: "clearOverridableFeatures"), + 135: .same(proto: "clearPackage"), + 136: .same(proto: "clearPacked"), + 137: .same(proto: "clearPhpClassPrefix"), + 138: .same(proto: "clearPhpMetadataNamespace"), + 139: .same(proto: "clearPhpNamespace"), + 140: .same(proto: "clearPositiveIntValue"), + 141: .same(proto: "clearProto3Optional"), + 142: .same(proto: "clearPyGenericServices"), + 143: .same(proto: "clearRepeated"), + 144: .same(proto: "clearRepeatedFieldEncoding"), + 145: .same(proto: "clearReserved"), + 146: .same(proto: "clearRetention"), + 147: .same(proto: "clearRubyPackage"), + 148: .same(proto: "clearSemantic"), + 149: .same(proto: "clearServerStreaming"), + 150: .same(proto: "clearSourceCodeInfo"), + 151: .same(proto: "clearSourceContext"), + 152: .same(proto: "clearSourceFile"), + 153: .same(proto: "clearStart"), + 154: .same(proto: "clearStringValue"), + 155: .same(proto: "clearSwiftPrefix"), + 156: .same(proto: "clearSyntax"), + 157: .same(proto: "clearTrailingComments"), + 158: .same(proto: "clearType"), + 159: .same(proto: "clearTypeName"), + 160: .same(proto: "clearUnverifiedLazy"), + 161: .same(proto: "clearUtf8Validation"), + 162: .same(proto: "clearValue"), + 163: .same(proto: "clearVerification"), + 164: .same(proto: "clearWeak"), + 165: .same(proto: "clientStreaming"), + 166: .same(proto: "code"), + 167: .same(proto: "codePoint"), + 168: .same(proto: "codeUnits"), + 169: .same(proto: "Collection"), + 170: .same(proto: "com"), + 171: .same(proto: "comma"), + 172: .same(proto: "consumedBytes"), + 173: .same(proto: "contentsOf"), + 174: .same(proto: "copy"), + 175: .same(proto: "count"), + 176: .same(proto: "countVarintsInBuffer"), + 177: .same(proto: "csharpNamespace"), + 178: .same(proto: "ctype"), + 179: .same(proto: "customCodable"), + 180: .same(proto: "CustomDebugStringConvertible"), + 181: .same(proto: "CustomStringConvertible"), + 182: .same(proto: "d"), + 183: .same(proto: "Data"), + 184: .same(proto: "dataResult"), + 185: .same(proto: "date"), + 186: .same(proto: "daySec"), + 187: .same(proto: "daysSinceEpoch"), + 188: .same(proto: "debugDescription"), + 189: .same(proto: "debugRedact"), + 190: .same(proto: "declaration"), + 191: .same(proto: "decoded"), + 192: .same(proto: "decodedFromJSONNull"), + 193: .same(proto: "decodeExtensionField"), + 194: .same(proto: "decodeExtensionFieldsAsMessageSet"), + 195: .same(proto: "decodeJSON"), + 196: .same(proto: "decodeMapField"), + 197: .same(proto: "decodeMessage"), + 198: .same(proto: "decoder"), + 199: .same(proto: "decodeRepeated"), + 200: .same(proto: "decodeRepeatedBoolField"), + 201: .same(proto: "decodeRepeatedBytesField"), + 202: .same(proto: "decodeRepeatedDoubleField"), + 203: .same(proto: "decodeRepeatedEnumField"), + 204: .same(proto: "decodeRepeatedFixed32Field"), + 205: .same(proto: "decodeRepeatedFixed64Field"), + 206: .same(proto: "decodeRepeatedFloatField"), + 207: .same(proto: "decodeRepeatedGroupField"), + 208: .same(proto: "decodeRepeatedInt32Field"), + 209: .same(proto: "decodeRepeatedInt64Field"), + 210: .same(proto: "decodeRepeatedMessageField"), + 211: .same(proto: "decodeRepeatedSFixed32Field"), + 212: .same(proto: "decodeRepeatedSFixed64Field"), + 213: .same(proto: "decodeRepeatedSInt32Field"), + 214: .same(proto: "decodeRepeatedSInt64Field"), + 215: .same(proto: "decodeRepeatedStringField"), + 216: .same(proto: "decodeRepeatedUInt32Field"), + 217: .same(proto: "decodeRepeatedUInt64Field"), + 218: .same(proto: "decodeSingular"), + 219: .same(proto: "decodeSingularBoolField"), + 220: .same(proto: "decodeSingularBytesField"), + 221: .same(proto: "decodeSingularDoubleField"), + 222: .same(proto: "decodeSingularEnumField"), + 223: .same(proto: "decodeSingularFixed32Field"), + 224: .same(proto: "decodeSingularFixed64Field"), + 225: .same(proto: "decodeSingularFloatField"), + 226: .same(proto: "decodeSingularGroupField"), + 227: .same(proto: "decodeSingularInt32Field"), + 228: .same(proto: "decodeSingularInt64Field"), + 229: .same(proto: "decodeSingularMessageField"), + 230: .same(proto: "decodeSingularSFixed32Field"), + 231: .same(proto: "decodeSingularSFixed64Field"), + 232: .same(proto: "decodeSingularSInt32Field"), + 233: .same(proto: "decodeSingularSInt64Field"), + 234: .same(proto: "decodeSingularStringField"), + 235: .same(proto: "decodeSingularUInt32Field"), + 236: .same(proto: "decodeSingularUInt64Field"), + 237: .same(proto: "decodeTextFormat"), + 238: .same(proto: "defaultAnyTypeURLPrefix"), + 239: .same(proto: "defaults"), + 240: .same(proto: "defaultValue"), + 241: .same(proto: "dependency"), + 242: .same(proto: "deprecated"), + 243: .same(proto: "deprecatedLegacyJsonFieldConflicts"), + 244: .same(proto: "deprecationWarning"), + 245: .same(proto: "description"), + 246: .same(proto: "DescriptorProto"), + 247: .same(proto: "Dictionary"), + 248: .same(proto: "dictionaryLiteral"), + 249: .same(proto: "digit"), + 250: .same(proto: "digit0"), + 251: .same(proto: "digit1"), + 252: .same(proto: "digitCount"), + 253: .same(proto: "digits"), + 254: .same(proto: "digitValue"), + 255: .same(proto: "discardableResult"), + 256: .same(proto: "discardUnknownFields"), + 257: .same(proto: "Double"), + 258: .same(proto: "doubleValue"), + 259: .same(proto: "Duration"), + 260: .same(proto: "E"), + 261: .same(proto: "edition"), + 262: .same(proto: "EditionDefault"), + 263: .same(proto: "editionDefaults"), + 264: .same(proto: "editionDeprecated"), + 265: .same(proto: "editionIntroduced"), + 266: .same(proto: "editionRemoved"), + 267: .same(proto: "Element"), + 268: .same(proto: "elements"), + 269: .same(proto: "emitExtensionFieldName"), + 270: .same(proto: "emitFieldName"), + 271: .same(proto: "emitFieldNumber"), + 272: .same(proto: "Empty"), + 273: .same(proto: "encodeAsBytes"), + 274: .same(proto: "encoded"), + 275: .same(proto: "encodedJSONString"), + 276: .same(proto: "encodedSize"), + 277: .same(proto: "encodeField"), + 278: .same(proto: "encoder"), + 279: .same(proto: "end"), + 280: .same(proto: "endArray"), + 281: .same(proto: "endMessageField"), + 282: .same(proto: "endObject"), + 283: .same(proto: "endRegularField"), + 284: .same(proto: "enum"), + 285: .same(proto: "EnumDescriptorProto"), + 286: .same(proto: "EnumOptions"), + 287: .same(proto: "EnumReservedRange"), + 288: .same(proto: "enumType"), + 289: .same(proto: "enumvalue"), + 290: .same(proto: "EnumValueDescriptorProto"), + 291: .same(proto: "EnumValueOptions"), + 292: .same(proto: "Equatable"), + 293: .same(proto: "Error"), + 294: .same(proto: "ExpressibleByArrayLiteral"), + 295: .same(proto: "ExpressibleByDictionaryLiteral"), + 296: .same(proto: "ext"), + 297: .same(proto: "extDecoder"), + 298: .same(proto: "extendedGraphemeClusterLiteral"), + 299: .same(proto: "ExtendedGraphemeClusterLiteralType"), + 300: .same(proto: "extendee"), + 301: .same(proto: "ExtensibleMessage"), + 302: .same(proto: "extension"), + 303: .same(proto: "ExtensionField"), + 304: .same(proto: "extensionFieldNumber"), + 305: .same(proto: "ExtensionFieldValueSet"), + 306: .same(proto: "ExtensionMap"), + 307: .same(proto: "extensionRange"), + 308: .same(proto: "ExtensionRangeOptions"), + 309: .same(proto: "extensions"), + 310: .same(proto: "extras"), + 311: .same(proto: "F"), + 312: .same(proto: "false"), + 313: .same(proto: "features"), + 314: .same(proto: "FeatureSet"), + 315: .same(proto: "FeatureSetDefaults"), + 316: .same(proto: "FeatureSetEditionDefault"), + 317: .same(proto: "featureSupport"), + 318: .same(proto: "field"), + 319: .same(proto: "fieldData"), + 320: .same(proto: "FieldDescriptorProto"), + 321: .same(proto: "FieldMask"), + 322: .same(proto: "fieldName"), + 323: .same(proto: "fieldNameCount"), + 324: .same(proto: "fieldNum"), + 325: .same(proto: "fieldNumber"), + 326: .same(proto: "fieldNumberForProto"), + 327: .same(proto: "FieldOptions"), + 328: .same(proto: "fieldPresence"), + 329: .same(proto: "fields"), + 330: .same(proto: "fieldSize"), + 331: .same(proto: "FieldTag"), + 332: .same(proto: "fieldType"), + 333: .same(proto: "file"), + 334: .same(proto: "FileDescriptorProto"), + 335: .same(proto: "FileDescriptorSet"), + 336: .same(proto: "fileName"), + 337: .same(proto: "FileOptions"), + 338: .same(proto: "filter"), + 339: .same(proto: "final"), + 340: .same(proto: "finiteOnly"), + 341: .same(proto: "first"), + 342: .same(proto: "firstItem"), + 343: .same(proto: "fixedFeatures"), + 344: .same(proto: "Float"), + 345: .same(proto: "floatLiteral"), + 346: .same(proto: "FloatLiteralType"), + 347: .same(proto: "FloatValue"), + 348: .same(proto: "forMessageName"), + 349: .same(proto: "formUnion"), + 350: .same(proto: "forReadingFrom"), + 351: .same(proto: "forTypeURL"), + 352: .same(proto: "ForwardParser"), + 353: .same(proto: "forWritingInto"), + 354: .same(proto: "from"), + 355: .same(proto: "fromAscii2"), + 356: .same(proto: "fromAscii4"), + 357: .same(proto: "fromByteOffset"), + 358: .same(proto: "fromHexDigit"), + 359: .same(proto: "fullName"), + 360: .same(proto: "func"), + 361: .same(proto: "function"), + 362: .same(proto: "G"), + 363: .same(proto: "GeneratedCodeInfo"), + 364: .same(proto: "get"), + 365: .same(proto: "getExtensionValue"), + 366: .same(proto: "googleapis"), + 367: .standard(proto: "Google_Protobuf_Any"), + 368: .standard(proto: "Google_Protobuf_Api"), + 369: .standard(proto: "Google_Protobuf_BoolValue"), + 370: .standard(proto: "Google_Protobuf_BytesValue"), + 371: .standard(proto: "Google_Protobuf_DescriptorProto"), + 372: .standard(proto: "Google_Protobuf_DoubleValue"), + 373: .standard(proto: "Google_Protobuf_Duration"), + 374: .standard(proto: "Google_Protobuf_Edition"), + 375: .standard(proto: "Google_Protobuf_Empty"), + 376: .standard(proto: "Google_Protobuf_Enum"), + 377: .standard(proto: "Google_Protobuf_EnumDescriptorProto"), + 378: .standard(proto: "Google_Protobuf_EnumOptions"), + 379: .standard(proto: "Google_Protobuf_EnumValue"), + 380: .standard(proto: "Google_Protobuf_EnumValueDescriptorProto"), + 381: .standard(proto: "Google_Protobuf_EnumValueOptions"), + 382: .standard(proto: "Google_Protobuf_ExtensionRangeOptions"), + 383: .standard(proto: "Google_Protobuf_FeatureSet"), + 384: .standard(proto: "Google_Protobuf_FeatureSetDefaults"), + 385: .standard(proto: "Google_Protobuf_Field"), + 386: .standard(proto: "Google_Protobuf_FieldDescriptorProto"), + 387: .standard(proto: "Google_Protobuf_FieldMask"), + 388: .standard(proto: "Google_Protobuf_FieldOptions"), + 389: .standard(proto: "Google_Protobuf_FileDescriptorProto"), + 390: .standard(proto: "Google_Protobuf_FileDescriptorSet"), + 391: .standard(proto: "Google_Protobuf_FileOptions"), + 392: .standard(proto: "Google_Protobuf_FloatValue"), + 393: .standard(proto: "Google_Protobuf_GeneratedCodeInfo"), + 394: .standard(proto: "Google_Protobuf_Int32Value"), + 395: .standard(proto: "Google_Protobuf_Int64Value"), + 396: .standard(proto: "Google_Protobuf_ListValue"), + 397: .standard(proto: "Google_Protobuf_MessageOptions"), + 398: .standard(proto: "Google_Protobuf_Method"), + 399: .standard(proto: "Google_Protobuf_MethodDescriptorProto"), + 400: .standard(proto: "Google_Protobuf_MethodOptions"), + 401: .standard(proto: "Google_Protobuf_Mixin"), + 402: .standard(proto: "Google_Protobuf_NullValue"), + 403: .standard(proto: "Google_Protobuf_OneofDescriptorProto"), + 404: .standard(proto: "Google_Protobuf_OneofOptions"), + 405: .standard(proto: "Google_Protobuf_Option"), + 406: .standard(proto: "Google_Protobuf_ServiceDescriptorProto"), + 407: .standard(proto: "Google_Protobuf_ServiceOptions"), + 408: .standard(proto: "Google_Protobuf_SourceCodeInfo"), + 409: .standard(proto: "Google_Protobuf_SourceContext"), + 410: .standard(proto: "Google_Protobuf_StringValue"), + 411: .standard(proto: "Google_Protobuf_Struct"), + 412: .standard(proto: "Google_Protobuf_Syntax"), + 413: .standard(proto: "Google_Protobuf_Timestamp"), + 414: .standard(proto: "Google_Protobuf_Type"), + 415: .standard(proto: "Google_Protobuf_UInt32Value"), + 416: .standard(proto: "Google_Protobuf_UInt64Value"), + 417: .standard(proto: "Google_Protobuf_UninterpretedOption"), + 418: .standard(proto: "Google_Protobuf_Value"), + 419: .same(proto: "goPackage"), + 420: .same(proto: "group"), + 421: .same(proto: "groupFieldNumberStack"), + 422: .same(proto: "groupSize"), + 423: .same(proto: "hadOneofValue"), + 424: .same(proto: "handleConflictingOneOf"), + 425: .same(proto: "hasAggregateValue"), + 426: .same(proto: "hasAllowAlias"), + 427: .same(proto: "hasBegin"), + 428: .same(proto: "hasCcEnableArenas"), + 429: .same(proto: "hasCcGenericServices"), + 430: .same(proto: "hasClientStreaming"), + 431: .same(proto: "hasCsharpNamespace"), + 432: .same(proto: "hasCtype"), + 433: .same(proto: "hasDebugRedact"), + 434: .same(proto: "hasDefaultValue"), + 435: .same(proto: "hasDeprecated"), + 436: .same(proto: "hasDeprecatedLegacyJsonFieldConflicts"), + 437: .same(proto: "hasDeprecationWarning"), + 438: .same(proto: "hasDoubleValue"), + 439: .same(proto: "hasEdition"), + 440: .same(proto: "hasEditionDeprecated"), + 441: .same(proto: "hasEditionIntroduced"), + 442: .same(proto: "hasEditionRemoved"), + 443: .same(proto: "hasEnd"), + 444: .same(proto: "hasEnumType"), + 445: .same(proto: "hasExtendee"), + 446: .same(proto: "hasExtensionValue"), + 447: .same(proto: "hasFeatures"), + 448: .same(proto: "hasFeatureSupport"), + 449: .same(proto: "hasFieldPresence"), + 450: .same(proto: "hasFixedFeatures"), + 451: .same(proto: "hasFullName"), + 452: .same(proto: "hasGoPackage"), + 453: .same(proto: "hash"), + 454: .same(proto: "Hashable"), + 455: .same(proto: "hasher"), + 456: .same(proto: "HashVisitor"), + 457: .same(proto: "hasIdempotencyLevel"), + 458: .same(proto: "hasIdentifierValue"), + 459: .same(proto: "hasInputType"), + 460: .same(proto: "hasIsExtension"), + 461: .same(proto: "hasJavaGenerateEqualsAndHash"), + 462: .same(proto: "hasJavaGenericServices"), + 463: .same(proto: "hasJavaMultipleFiles"), + 464: .same(proto: "hasJavaOuterClassname"), + 465: .same(proto: "hasJavaPackage"), + 466: .same(proto: "hasJavaStringCheckUtf8"), + 467: .same(proto: "hasJsonFormat"), + 468: .same(proto: "hasJsonName"), + 469: .same(proto: "hasJstype"), + 470: .same(proto: "hasLabel"), + 471: .same(proto: "hasLazy"), + 472: .same(proto: "hasLeadingComments"), + 473: .same(proto: "hasMapEntry"), + 474: .same(proto: "hasMaximumEdition"), + 475: .same(proto: "hasMessageEncoding"), + 476: .same(proto: "hasMessageSetWireFormat"), + 477: .same(proto: "hasMinimumEdition"), + 478: .same(proto: "hasName"), + 479: .same(proto: "hasNamePart"), + 480: .same(proto: "hasNegativeIntValue"), + 481: .same(proto: "hasNoStandardDescriptorAccessor"), + 482: .same(proto: "hasNumber"), + 483: .same(proto: "hasObjcClassPrefix"), + 484: .same(proto: "hasOneofIndex"), + 485: .same(proto: "hasOptimizeFor"), + 486: .same(proto: "hasOptions"), + 487: .same(proto: "hasOutputType"), + 488: .same(proto: "hasOverridableFeatures"), + 489: .same(proto: "hasPackage"), + 490: .same(proto: "hasPacked"), + 491: .same(proto: "hasPhpClassPrefix"), + 492: .same(proto: "hasPhpMetadataNamespace"), + 493: .same(proto: "hasPhpNamespace"), + 494: .same(proto: "hasPositiveIntValue"), + 495: .same(proto: "hasProto3Optional"), + 496: .same(proto: "hasPyGenericServices"), + 497: .same(proto: "hasRepeated"), + 498: .same(proto: "hasRepeatedFieldEncoding"), + 499: .same(proto: "hasReserved"), + 500: .same(proto: "hasRetention"), + 501: .same(proto: "hasRubyPackage"), + 502: .same(proto: "hasSemantic"), + 503: .same(proto: "hasServerStreaming"), + 504: .same(proto: "hasSourceCodeInfo"), + 505: .same(proto: "hasSourceContext"), + 506: .same(proto: "hasSourceFile"), + 507: .same(proto: "hasStart"), + 508: .same(proto: "hasStringValue"), + 509: .same(proto: "hasSwiftPrefix"), + 510: .same(proto: "hasSyntax"), + 511: .same(proto: "hasTrailingComments"), + 512: .same(proto: "hasType"), + 513: .same(proto: "hasTypeName"), + 514: .same(proto: "hasUnverifiedLazy"), + 515: .same(proto: "hasUtf8Validation"), + 516: .same(proto: "hasValue"), + 517: .same(proto: "hasVerification"), + 518: .same(proto: "hasWeak"), + 519: .same(proto: "hour"), + 520: .same(proto: "i"), + 521: .same(proto: "idempotencyLevel"), + 522: .same(proto: "identifierValue"), + 523: .same(proto: "if"), + 524: .same(proto: "ignoreUnknownExtensionFields"), + 525: .same(proto: "ignoreUnknownFields"), + 526: .same(proto: "index"), + 527: .same(proto: "init"), + 528: .same(proto: "inout"), + 529: .same(proto: "inputType"), + 530: .same(proto: "insert"), + 531: .same(proto: "Int"), + 532: .same(proto: "Int32"), + 533: .same(proto: "Int32Value"), + 534: .same(proto: "Int64"), + 535: .same(proto: "Int64Value"), + 536: .same(proto: "Int8"), + 537: .same(proto: "integerLiteral"), + 538: .same(proto: "IntegerLiteralType"), + 539: .same(proto: "intern"), + 540: .same(proto: "Internal"), + 541: .same(proto: "InternalState"), + 542: .same(proto: "into"), + 543: .same(proto: "ints"), + 544: .same(proto: "isA"), + 545: .same(proto: "isEqual"), + 546: .same(proto: "isEqualTo"), + 547: .same(proto: "isExtension"), + 548: .same(proto: "isInitialized"), + 549: .same(proto: "isNegative"), + 550: .same(proto: "itemTagsEncodedSize"), + 551: .same(proto: "iterator"), + 552: .same(proto: "javaGenerateEqualsAndHash"), + 553: .same(proto: "javaGenericServices"), + 554: .same(proto: "javaMultipleFiles"), + 555: .same(proto: "javaOuterClassname"), + 556: .same(proto: "javaPackage"), + 557: .same(proto: "javaStringCheckUtf8"), + 558: .same(proto: "JSONDecoder"), + 559: .same(proto: "JSONDecodingError"), + 560: .same(proto: "JSONDecodingOptions"), + 561: .same(proto: "jsonEncoder"), + 562: .same(proto: "JSONEncodingError"), + 563: .same(proto: "JSONEncodingOptions"), + 564: .same(proto: "JSONEncodingVisitor"), + 565: .same(proto: "jsonFormat"), + 566: .same(proto: "JSONMapEncodingVisitor"), + 567: .same(proto: "jsonName"), + 568: .same(proto: "jsonPath"), + 569: .same(proto: "jsonPaths"), + 570: .same(proto: "JSONScanner"), + 571: .same(proto: "jsonString"), + 572: .same(proto: "jsonText"), + 573: .same(proto: "jsonUTF8Bytes"), + 574: .same(proto: "jsonUTF8Data"), + 575: .same(proto: "jstype"), + 576: .same(proto: "k"), + 577: .same(proto: "kChunkSize"), + 578: .same(proto: "Key"), + 579: .same(proto: "keyField"), + 580: .same(proto: "keyFieldOpt"), + 581: .same(proto: "KeyType"), + 582: .same(proto: "kind"), + 583: .same(proto: "l"), + 584: .same(proto: "label"), + 585: .same(proto: "lazy"), + 586: .same(proto: "leadingComments"), + 587: .same(proto: "leadingDetachedComments"), + 588: .same(proto: "length"), + 589: .same(proto: "lessThan"), + 590: .same(proto: "let"), + 591: .same(proto: "lhs"), + 592: .same(proto: "line"), + 593: .same(proto: "list"), + 594: .same(proto: "listOfMessages"), + 595: .same(proto: "listValue"), + 596: .same(proto: "littleEndian"), + 597: .same(proto: "load"), + 598: .same(proto: "localHasher"), + 599: .same(proto: "location"), + 600: .same(proto: "M"), + 601: .same(proto: "major"), + 602: .same(proto: "makeAsyncIterator"), + 603: .same(proto: "makeIterator"), + 604: .same(proto: "malformedLength"), + 605: .same(proto: "mapEntry"), + 606: .same(proto: "MapKeyType"), + 607: .same(proto: "mapToMessages"), + 608: .same(proto: "MapValueType"), + 609: .same(proto: "mapVisitor"), + 610: .same(proto: "maximumEdition"), + 611: .same(proto: "mdayStart"), + 612: .same(proto: "merge"), + 613: .same(proto: "message"), + 614: .same(proto: "messageDepthLimit"), + 615: .same(proto: "messageEncoding"), + 616: .same(proto: "MessageExtension"), + 617: .same(proto: "MessageImplementationBase"), + 618: .same(proto: "MessageOptions"), + 619: .same(proto: "MessageSet"), + 620: .same(proto: "messageSetWireFormat"), + 621: .same(proto: "messageSize"), + 622: .same(proto: "messageType"), + 623: .same(proto: "Method"), + 624: .same(proto: "MethodDescriptorProto"), + 625: .same(proto: "MethodOptions"), + 626: .same(proto: "methods"), + 627: .same(proto: "min"), + 628: .same(proto: "minimumEdition"), + 629: .same(proto: "minor"), + 630: .same(proto: "Mixin"), + 631: .same(proto: "mixins"), + 632: .same(proto: "modifier"), + 633: .same(proto: "modify"), + 634: .same(proto: "month"), + 635: .same(proto: "msgExtension"), + 636: .same(proto: "mutating"), + 637: .same(proto: "n"), + 638: .same(proto: "name"), + 639: .same(proto: "NameDescription"), + 640: .same(proto: "NameMap"), + 641: .same(proto: "NamePart"), + 642: .same(proto: "names"), + 643: .same(proto: "nanos"), + 644: .same(proto: "negativeIntValue"), + 645: .same(proto: "nestedType"), + 646: .same(proto: "newL"), + 647: .same(proto: "newList"), + 648: .same(proto: "newValue"), + 649: .same(proto: "next"), + 650: .same(proto: "nextByte"), + 651: .same(proto: "nextFieldNumber"), + 652: .same(proto: "nextVarInt"), + 653: .same(proto: "nil"), + 654: .same(proto: "nilLiteral"), + 655: .same(proto: "noBytesAvailable"), + 656: .same(proto: "noStandardDescriptorAccessor"), + 657: .same(proto: "nullValue"), + 658: .same(proto: "number"), + 659: .same(proto: "numberValue"), + 660: .same(proto: "objcClassPrefix"), + 661: .same(proto: "of"), + 662: .same(proto: "oneofDecl"), + 663: .same(proto: "OneofDescriptorProto"), + 664: .same(proto: "oneofIndex"), + 665: .same(proto: "OneofOptions"), + 666: .same(proto: "oneofs"), + 667: .standard(proto: "OneOf_Kind"), + 668: .same(proto: "optimizeFor"), + 669: .same(proto: "OptimizeMode"), + 670: .same(proto: "Option"), + 671: .same(proto: "OptionalEnumExtensionField"), + 672: .same(proto: "OptionalExtensionField"), + 673: .same(proto: "OptionalGroupExtensionField"), + 674: .same(proto: "OptionalMessageExtensionField"), + 675: .same(proto: "OptionRetention"), + 676: .same(proto: "options"), + 677: .same(proto: "OptionTargetType"), + 678: .same(proto: "other"), + 679: .same(proto: "others"), + 680: .same(proto: "out"), + 681: .same(proto: "outputType"), + 682: .same(proto: "overridableFeatures"), + 683: .same(proto: "p"), + 684: .same(proto: "package"), + 685: .same(proto: "packed"), + 686: .same(proto: "PackedEnumExtensionField"), + 687: .same(proto: "PackedExtensionField"), + 688: .same(proto: "padding"), + 689: .same(proto: "parent"), + 690: .same(proto: "parse"), + 691: .same(proto: "path"), + 692: .same(proto: "paths"), + 693: .same(proto: "payload"), + 694: .same(proto: "payloadSize"), + 695: .same(proto: "phpClassPrefix"), + 696: .same(proto: "phpMetadataNamespace"), + 697: .same(proto: "phpNamespace"), + 698: .same(proto: "pos"), + 699: .same(proto: "positiveIntValue"), + 700: .same(proto: "prefix"), + 701: .same(proto: "preserveProtoFieldNames"), + 702: .same(proto: "preTraverse"), + 703: .same(proto: "printUnknownFields"), + 704: .same(proto: "proto2"), + 705: .same(proto: "proto3DefaultValue"), + 706: .same(proto: "proto3Optional"), + 707: .same(proto: "ProtobufAPIVersionCheck"), + 708: .standard(proto: "ProtobufAPIVersion_3"), + 709: .same(proto: "ProtobufBool"), + 710: .same(proto: "ProtobufBytes"), + 711: .same(proto: "ProtobufDouble"), + 712: .same(proto: "ProtobufEnumMap"), + 713: .same(proto: "protobufExtension"), + 714: .same(proto: "ProtobufFixed32"), + 715: .same(proto: "ProtobufFixed64"), + 716: .same(proto: "ProtobufFloat"), + 717: .same(proto: "ProtobufInt32"), + 718: .same(proto: "ProtobufInt64"), + 719: .same(proto: "ProtobufMap"), + 720: .same(proto: "ProtobufMessageMap"), + 721: .same(proto: "ProtobufSFixed32"), + 722: .same(proto: "ProtobufSFixed64"), + 723: .same(proto: "ProtobufSInt32"), + 724: .same(proto: "ProtobufSInt64"), + 725: .same(proto: "ProtobufString"), + 726: .same(proto: "ProtobufUInt32"), + 727: .same(proto: "ProtobufUInt64"), + 728: .standard(proto: "protobuf_extensionFieldValues"), + 729: .standard(proto: "protobuf_fieldNumber"), + 730: .standard(proto: "protobuf_generated_isEqualTo"), + 731: .standard(proto: "protobuf_nameMap"), + 732: .standard(proto: "protobuf_newField"), + 733: .standard(proto: "protobuf_package"), + 734: .same(proto: "protocol"), + 735: .same(proto: "protoFieldName"), + 736: .same(proto: "protoMessageName"), + 737: .same(proto: "ProtoNameProviding"), + 738: .same(proto: "protoPaths"), + 739: .same(proto: "public"), + 740: .same(proto: "publicDependency"), + 741: .same(proto: "putBoolValue"), + 742: .same(proto: "putBytesValue"), + 743: .same(proto: "putDoubleValue"), + 744: .same(proto: "putEnumValue"), + 745: .same(proto: "putFixedUInt32"), + 746: .same(proto: "putFixedUInt64"), + 747: .same(proto: "putFloatValue"), + 748: .same(proto: "putInt64"), + 749: .same(proto: "putStringValue"), + 750: .same(proto: "putUInt64"), + 751: .same(proto: "putUInt64Hex"), + 752: .same(proto: "putVarInt"), + 753: .same(proto: "putZigZagVarInt"), + 754: .same(proto: "pyGenericServices"), + 755: .same(proto: "R"), + 756: .same(proto: "rawChars"), + 757: .same(proto: "RawRepresentable"), + 758: .same(proto: "RawValue"), + 759: .same(proto: "read4HexDigits"), + 760: .same(proto: "readBytes"), + 761: .same(proto: "register"), + 762: .same(proto: "repeated"), + 763: .same(proto: "RepeatedEnumExtensionField"), + 764: .same(proto: "RepeatedExtensionField"), + 765: .same(proto: "repeatedFieldEncoding"), + 766: .same(proto: "RepeatedGroupExtensionField"), + 767: .same(proto: "RepeatedMessageExtensionField"), + 768: .same(proto: "repeating"), + 769: .same(proto: "requestStreaming"), + 770: .same(proto: "requestTypeURL"), + 771: .same(proto: "requiredSize"), + 772: .same(proto: "responseStreaming"), + 773: .same(proto: "responseTypeURL"), + 774: .same(proto: "result"), + 775: .same(proto: "retention"), + 776: .same(proto: "rethrows"), + 777: .same(proto: "return"), + 778: .same(proto: "ReturnType"), + 779: .same(proto: "revision"), + 780: .same(proto: "rhs"), + 781: .same(proto: "root"), + 782: .same(proto: "rubyPackage"), + 783: .same(proto: "s"), + 784: .same(proto: "sawBackslash"), + 785: .same(proto: "sawSection4Characters"), + 786: .same(proto: "sawSection5Characters"), + 787: .same(proto: "scan"), + 788: .same(proto: "scanner"), + 789: .same(proto: "seconds"), + 790: .same(proto: "self"), + 791: .same(proto: "semantic"), + 792: .same(proto: "Sendable"), + 793: .same(proto: "separator"), + 794: .same(proto: "serialize"), + 795: .same(proto: "serializedBytes"), + 796: .same(proto: "serializedData"), + 797: .same(proto: "serializedSize"), + 798: .same(proto: "serverStreaming"), + 799: .same(proto: "service"), + 800: .same(proto: "ServiceDescriptorProto"), + 801: .same(proto: "ServiceOptions"), + 802: .same(proto: "set"), + 803: .same(proto: "setExtensionValue"), + 804: .same(proto: "shift"), + 805: .same(proto: "SimpleExtensionMap"), + 806: .same(proto: "size"), + 807: .same(proto: "sizer"), + 808: .same(proto: "source"), + 809: .same(proto: "sourceCodeInfo"), + 810: .same(proto: "sourceContext"), + 811: .same(proto: "sourceEncoding"), + 812: .same(proto: "sourceFile"), + 813: .same(proto: "SourceLocation"), + 814: .same(proto: "span"), + 815: .same(proto: "split"), + 816: .same(proto: "start"), + 817: .same(proto: "startArray"), + 818: .same(proto: "startArrayObject"), + 819: .same(proto: "startField"), + 820: .same(proto: "startIndex"), + 821: .same(proto: "startMessageField"), + 822: .same(proto: "startObject"), + 823: .same(proto: "startRegularField"), + 824: .same(proto: "state"), + 825: .same(proto: "static"), + 826: .same(proto: "StaticString"), + 827: .same(proto: "storage"), + 828: .same(proto: "String"), + 829: .same(proto: "stringLiteral"), + 830: .same(proto: "StringLiteralType"), + 831: .same(proto: "stringResult"), + 832: .same(proto: "stringValue"), + 833: .same(proto: "struct"), + 834: .same(proto: "structValue"), + 835: .same(proto: "subDecoder"), + 836: .same(proto: "subscript"), + 837: .same(proto: "subVisitor"), + 838: .same(proto: "Swift"), + 839: .same(proto: "swiftPrefix"), + 840: .same(proto: "SwiftProtobufContiguousBytes"), + 841: .same(proto: "SwiftProtobufError"), + 842: .same(proto: "syntax"), + 843: .same(proto: "T"), + 844: .same(proto: "tag"), + 845: .same(proto: "targets"), + 846: .same(proto: "terminator"), + 847: .same(proto: "testDecoder"), + 848: .same(proto: "text"), + 849: .same(proto: "textDecoder"), + 850: .same(proto: "TextFormatDecoder"), + 851: .same(proto: "TextFormatDecodingError"), + 852: .same(proto: "TextFormatDecodingOptions"), + 853: .same(proto: "TextFormatEncodingOptions"), + 854: .same(proto: "TextFormatEncodingVisitor"), + 855: .same(proto: "textFormatString"), + 856: .same(proto: "throwOrIgnore"), + 857: .same(proto: "throws"), + 858: .same(proto: "timeInterval"), + 859: .same(proto: "timeIntervalSince1970"), + 860: .same(proto: "timeIntervalSinceReferenceDate"), + 861: .same(proto: "Timestamp"), + 862: .same(proto: "tooLarge"), + 863: .same(proto: "total"), + 864: .same(proto: "totalArrayDepth"), + 865: .same(proto: "totalSize"), + 866: .same(proto: "trailingComments"), + 867: .same(proto: "traverse"), + 868: .same(proto: "true"), + 869: .same(proto: "try"), + 870: .same(proto: "type"), + 871: .same(proto: "typealias"), + 872: .same(proto: "TypeEnum"), + 873: .same(proto: "typeName"), + 874: .same(proto: "typePrefix"), + 875: .same(proto: "typeStart"), + 876: .same(proto: "typeUnknown"), + 877: .same(proto: "typeURL"), + 878: .same(proto: "UInt32"), + 879: .same(proto: "UInt32Value"), + 880: .same(proto: "UInt64"), + 881: .same(proto: "UInt64Value"), + 882: .same(proto: "UInt8"), + 883: .same(proto: "unchecked"), + 884: .same(proto: "unicodeScalarLiteral"), + 885: .same(proto: "UnicodeScalarLiteralType"), + 886: .same(proto: "unicodeScalars"), + 887: .same(proto: "UnicodeScalarView"), + 888: .same(proto: "uninterpretedOption"), + 889: .same(proto: "union"), + 890: .same(proto: "uniqueStorage"), + 891: .same(proto: "unknown"), + 892: .same(proto: "unknownFields"), + 893: .same(proto: "UnknownStorage"), + 894: .same(proto: "unpackTo"), + 895: .same(proto: "UnsafeBufferPointer"), + 896: .same(proto: "UnsafeMutablePointer"), + 897: .same(proto: "UnsafeMutableRawBufferPointer"), + 898: .same(proto: "UnsafeRawBufferPointer"), + 899: .same(proto: "UnsafeRawPointer"), + 900: .same(proto: "unverifiedLazy"), + 901: .same(proto: "updatedOptions"), + 902: .same(proto: "url"), + 903: .same(proto: "useDeterministicOrdering"), + 904: .same(proto: "utf8"), + 905: .same(proto: "utf8Ptr"), + 906: .same(proto: "utf8ToDouble"), + 907: .same(proto: "utf8Validation"), + 908: .same(proto: "UTF8View"), + 909: .same(proto: "v"), + 910: .same(proto: "value"), + 911: .same(proto: "valueField"), + 912: .same(proto: "values"), + 913: .same(proto: "ValueType"), + 914: .same(proto: "var"), + 915: .same(proto: "verification"), + 916: .same(proto: "VerificationState"), + 917: .same(proto: "Version"), + 918: .same(proto: "versionString"), + 919: .same(proto: "visitExtensionFields"), + 920: .same(proto: "visitExtensionFieldsAsMessageSet"), + 921: .same(proto: "visitMapField"), + 922: .same(proto: "visitor"), + 923: .same(proto: "visitPacked"), + 924: .same(proto: "visitPackedBoolField"), + 925: .same(proto: "visitPackedDoubleField"), + 926: .same(proto: "visitPackedEnumField"), + 927: .same(proto: "visitPackedFixed32Field"), + 928: .same(proto: "visitPackedFixed64Field"), + 929: .same(proto: "visitPackedFloatField"), + 930: .same(proto: "visitPackedInt32Field"), + 931: .same(proto: "visitPackedInt64Field"), + 932: .same(proto: "visitPackedSFixed32Field"), + 933: .same(proto: "visitPackedSFixed64Field"), + 934: .same(proto: "visitPackedSInt32Field"), + 935: .same(proto: "visitPackedSInt64Field"), + 936: .same(proto: "visitPackedUInt32Field"), + 937: .same(proto: "visitPackedUInt64Field"), + 938: .same(proto: "visitRepeated"), + 939: .same(proto: "visitRepeatedBoolField"), + 940: .same(proto: "visitRepeatedBytesField"), + 941: .same(proto: "visitRepeatedDoubleField"), + 942: .same(proto: "visitRepeatedEnumField"), + 943: .same(proto: "visitRepeatedFixed32Field"), + 944: .same(proto: "visitRepeatedFixed64Field"), + 945: .same(proto: "visitRepeatedFloatField"), + 946: .same(proto: "visitRepeatedGroupField"), + 947: .same(proto: "visitRepeatedInt32Field"), + 948: .same(proto: "visitRepeatedInt64Field"), + 949: .same(proto: "visitRepeatedMessageField"), + 950: .same(proto: "visitRepeatedSFixed32Field"), + 951: .same(proto: "visitRepeatedSFixed64Field"), + 952: .same(proto: "visitRepeatedSInt32Field"), + 953: .same(proto: "visitRepeatedSInt64Field"), + 954: .same(proto: "visitRepeatedStringField"), + 955: .same(proto: "visitRepeatedUInt32Field"), + 956: .same(proto: "visitRepeatedUInt64Field"), + 957: .same(proto: "visitSingular"), + 958: .same(proto: "visitSingularBoolField"), + 959: .same(proto: "visitSingularBytesField"), + 960: .same(proto: "visitSingularDoubleField"), + 961: .same(proto: "visitSingularEnumField"), + 962: .same(proto: "visitSingularFixed32Field"), + 963: .same(proto: "visitSingularFixed64Field"), + 964: .same(proto: "visitSingularFloatField"), + 965: .same(proto: "visitSingularGroupField"), + 966: .same(proto: "visitSingularInt32Field"), + 967: .same(proto: "visitSingularInt64Field"), + 968: .same(proto: "visitSingularMessageField"), + 969: .same(proto: "visitSingularSFixed32Field"), + 970: .same(proto: "visitSingularSFixed64Field"), + 971: .same(proto: "visitSingularSInt32Field"), + 972: .same(proto: "visitSingularSInt64Field"), + 973: .same(proto: "visitSingularStringField"), + 974: .same(proto: "visitSingularUInt32Field"), + 975: .same(proto: "visitSingularUInt64Field"), + 976: .same(proto: "visitUnknown"), + 977: .same(proto: "wasDecoded"), + 978: .same(proto: "weak"), + 979: .same(proto: "weakDependency"), + 980: .same(proto: "where"), + 981: .same(proto: "wireFormat"), + 982: .same(proto: "with"), + 983: .same(proto: "withUnsafeBytes"), + 984: .same(proto: "withUnsafeMutableBytes"), + 985: .same(proto: "work"), + 986: .same(proto: "Wrapped"), + 987: .same(proto: "WrappedType"), + 988: .same(proto: "wrappedValue"), + 989: .same(proto: "written"), + 990: .same(proto: "yday"), ] fileprivate class _StorageClass { @@ -6021,7 +5997,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _anyExtensionField: Int32 = 0 var _anyMessageExtension: Int32 = 0 var _anyMessageStorage: Int32 = 0 - var _anyTypeUrlnotRegistered: Int32 = 0 var _anyUnpackError: Int32 = 0 var _api: Int32 = 0 var _appended: Int32 = 0 @@ -6053,7 +6028,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _binaryDecodingOptions: Int32 = 0 var _binaryDelimited: Int32 = 0 var _binaryEncoder: Int32 = 0 - var _binaryEncoding: Int32 = 0 var _binaryEncodingError: Int32 = 0 var _binaryEncodingMessageSetSizeVisitor: Int32 = 0 var _binaryEncodingMessageSetVisitor: Int32 = 0 @@ -6573,7 +6547,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _jsondecodingError: Int32 = 0 var _jsondecodingOptions: Int32 = 0 var _jsonEncoder: Int32 = 0 - var _jsonencoding: Int32 = 0 var _jsonencodingError: Int32 = 0 var _jsonencodingOptions: Int32 = 0 var _jsonencodingVisitor: Int32 = 0 @@ -6907,7 +6880,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu var _unknownFields_p: Int32 = 0 var _unknownStorage: Int32 = 0 var _unpackTo: Int32 = 0 - var _unregisteredTypeURL: Int32 = 0 var _unsafeBufferPointer: Int32 = 0 var _unsafeMutablePointer: Int32 = 0 var _unsafeMutableRawBufferPointer: Int32 = 0 @@ -7029,7 +7001,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _anyExtensionField = source._anyExtensionField _anyMessageExtension = source._anyMessageExtension _anyMessageStorage = source._anyMessageStorage - _anyTypeUrlnotRegistered = source._anyTypeUrlnotRegistered _anyUnpackError = source._anyUnpackError _api = source._api _appended = source._appended @@ -7061,7 +7032,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _binaryDecodingOptions = source._binaryDecodingOptions _binaryDelimited = source._binaryDelimited _binaryEncoder = source._binaryEncoder - _binaryEncoding = source._binaryEncoding _binaryEncodingError = source._binaryEncodingError _binaryEncodingMessageSetSizeVisitor = source._binaryEncodingMessageSetSizeVisitor _binaryEncodingMessageSetVisitor = source._binaryEncodingMessageSetVisitor @@ -7581,7 +7551,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _jsondecodingError = source._jsondecodingError _jsondecodingOptions = source._jsondecodingOptions _jsonEncoder = source._jsonEncoder - _jsonencoding = source._jsonencoding _jsonencodingError = source._jsonencodingError _jsonencodingOptions = source._jsonencodingOptions _jsonencodingVisitor = source._jsonencodingVisitor @@ -7915,7 +7884,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu _unknownFields_p = source._unknownFields_p _unknownStorage = source._unknownStorage _unpackTo = source._unpackTo - _unregisteredTypeURL = source._unregisteredTypeURL _unsafeBufferPointer = source._unsafeBufferPointer _unsafeMutablePointer = source._unsafeMutablePointer _unsafeMutableRawBufferPointer = source._unsafeMutableRawBufferPointer @@ -8041,989 +8009,985 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu case 9: try { try decoder.decodeSingularInt32Field(value: &_storage._anyExtensionField) }() case 10: try { try decoder.decodeSingularInt32Field(value: &_storage._anyMessageExtension) }() case 11: try { try decoder.decodeSingularInt32Field(value: &_storage._anyMessageStorage) }() - case 12: try { try decoder.decodeSingularInt32Field(value: &_storage._anyTypeUrlnotRegistered) }() - case 13: try { try decoder.decodeSingularInt32Field(value: &_storage._anyUnpackError) }() - case 14: try { try decoder.decodeSingularInt32Field(value: &_storage._api) }() - case 15: try { try decoder.decodeSingularInt32Field(value: &_storage._appended) }() - case 16: try { try decoder.decodeSingularInt32Field(value: &_storage._appendUintHex) }() - case 17: try { try decoder.decodeSingularInt32Field(value: &_storage._appendUnknown) }() - case 18: try { try decoder.decodeSingularInt32Field(value: &_storage._areAllInitialized) }() - case 19: try { try decoder.decodeSingularInt32Field(value: &_storage._array) }() - case 20: try { try decoder.decodeSingularInt32Field(value: &_storage._arrayDepth) }() - case 21: try { try decoder.decodeSingularInt32Field(value: &_storage._arrayLiteral) }() - case 22: try { try decoder.decodeSingularInt32Field(value: &_storage._arraySeparator) }() - case 23: try { try decoder.decodeSingularInt32Field(value: &_storage._as) }() - case 24: try { try decoder.decodeSingularInt32Field(value: &_storage._asciiOpenCurlyBracket) }() - case 25: try { try decoder.decodeSingularInt32Field(value: &_storage._asciiZero) }() - case 26: try { try decoder.decodeSingularInt32Field(value: &_storage._async) }() - case 27: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncIterator) }() - case 28: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncIteratorProtocol) }() - case 29: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncMessageSequence) }() - case 30: try { try decoder.decodeSingularInt32Field(value: &_storage._available) }() - case 31: try { try decoder.decodeSingularInt32Field(value: &_storage._b) }() - case 32: try { try decoder.decodeSingularInt32Field(value: &_storage._base) }() - case 33: try { try decoder.decodeSingularInt32Field(value: &_storage._base64Values) }() - case 34: try { try decoder.decodeSingularInt32Field(value: &_storage._baseAddress) }() - case 35: try { try decoder.decodeSingularInt32Field(value: &_storage._baseType) }() - case 36: try { try decoder.decodeSingularInt32Field(value: &_storage._begin) }() - case 37: try { try decoder.decodeSingularInt32Field(value: &_storage._binary) }() - case 38: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecoder) }() - case 39: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecoding) }() - case 40: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecodingError) }() - case 41: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecodingOptions) }() - case 42: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDelimited) }() - case 43: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncoder) }() - case 44: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncoding) }() - case 45: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingError) }() - case 46: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingMessageSetSizeVisitor) }() - case 47: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingMessageSetVisitor) }() - case 48: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingOptions) }() - case 49: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingSizeVisitor) }() - case 50: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingVisitor) }() - case 51: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryOptions) }() - case 52: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryProtobufDelimitedMessages) }() - case 53: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryStreamDecoding) }() - case 54: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryStreamDecodingError) }() - case 55: try { try decoder.decodeSingularInt32Field(value: &_storage._bitPattern) }() - case 56: try { try decoder.decodeSingularInt32Field(value: &_storage._body) }() - case 57: try { try decoder.decodeSingularInt32Field(value: &_storage._bool) }() - case 58: try { try decoder.decodeSingularInt32Field(value: &_storage._booleanLiteral) }() - case 59: try { try decoder.decodeSingularInt32Field(value: &_storage._booleanLiteralType) }() - case 60: try { try decoder.decodeSingularInt32Field(value: &_storage._boolValue) }() - case 61: try { try decoder.decodeSingularInt32Field(value: &_storage._buffer) }() - case 62: try { try decoder.decodeSingularInt32Field(value: &_storage._bytes) }() - case 63: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesInGroup) }() - case 64: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesNeeded) }() - case 65: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesRead) }() - case 66: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesValue) }() - case 67: try { try decoder.decodeSingularInt32Field(value: &_storage._c) }() - case 68: try { try decoder.decodeSingularInt32Field(value: &_storage._capitalizeNext) }() - case 69: try { try decoder.decodeSingularInt32Field(value: &_storage._cardinality) }() - case 70: try { try decoder.decodeSingularInt32Field(value: &_storage._caseIterable) }() - case 71: try { try decoder.decodeSingularInt32Field(value: &_storage._ccEnableArenas) }() - case 72: try { try decoder.decodeSingularInt32Field(value: &_storage._ccGenericServices) }() - case 73: try { try decoder.decodeSingularInt32Field(value: &_storage._character) }() - case 74: try { try decoder.decodeSingularInt32Field(value: &_storage._chars) }() - case 75: try { try decoder.decodeSingularInt32Field(value: &_storage._chunk) }() - case 76: try { try decoder.decodeSingularInt32Field(value: &_storage._class) }() - case 77: try { try decoder.decodeSingularInt32Field(value: &_storage._clearAggregateValue_p) }() - case 78: try { try decoder.decodeSingularInt32Field(value: &_storage._clearAllowAlias_p) }() - case 79: try { try decoder.decodeSingularInt32Field(value: &_storage._clearBegin_p) }() - case 80: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCcEnableArenas_p) }() - case 81: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCcGenericServices_p) }() - case 82: try { try decoder.decodeSingularInt32Field(value: &_storage._clearClientStreaming_p) }() - case 83: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCsharpNamespace_p) }() - case 84: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCtype_p) }() - case 85: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDebugRedact_p) }() - case 86: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDefaultValue_p) }() - case 87: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecated_p) }() - case 88: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecatedLegacyJsonFieldConflicts_p) }() - case 89: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecationWarning_p) }() - case 90: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDoubleValue_p) }() - case 91: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEdition_p) }() - case 92: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionDeprecated_p) }() - case 93: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionIntroduced_p) }() - case 94: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionRemoved_p) }() - case 95: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEnd_p) }() - case 96: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEnumType_p) }() - case 97: try { try decoder.decodeSingularInt32Field(value: &_storage._clearExtendee_p) }() - case 98: try { try decoder.decodeSingularInt32Field(value: &_storage._clearExtensionValue_p) }() - case 99: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFeatures_p) }() - case 100: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFeatureSupport_p) }() - case 101: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFieldPresence_p) }() - case 102: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFixedFeatures_p) }() - case 103: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFullName_p) }() - case 104: try { try decoder.decodeSingularInt32Field(value: &_storage._clearGoPackage_p) }() - case 105: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIdempotencyLevel_p) }() - case 106: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIdentifierValue_p) }() - case 107: try { try decoder.decodeSingularInt32Field(value: &_storage._clearInputType_p) }() - case 108: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIsExtension_p) }() - case 109: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaGenerateEqualsAndHash_p) }() - case 110: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaGenericServices_p) }() - case 111: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaMultipleFiles_p) }() - case 112: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaOuterClassname_p) }() - case 113: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaPackage_p) }() - case 114: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaStringCheckUtf8_p) }() - case 115: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJsonFormat_p) }() - case 116: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJsonName_p) }() - case 117: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJstype_p) }() - case 118: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLabel_p) }() - case 119: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLazy_p) }() - case 120: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLeadingComments_p) }() - case 121: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMapEntry_p) }() - case 122: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMaximumEdition_p) }() - case 123: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMessageEncoding_p) }() - case 124: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMessageSetWireFormat_p) }() - case 125: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMinimumEdition_p) }() - case 126: try { try decoder.decodeSingularInt32Field(value: &_storage._clearName_p) }() - case 127: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNamePart_p) }() - case 128: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNegativeIntValue_p) }() - case 129: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNoStandardDescriptorAccessor_p) }() - case 130: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNumber_p) }() - case 131: try { try decoder.decodeSingularInt32Field(value: &_storage._clearObjcClassPrefix_p) }() - case 132: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOneofIndex_p) }() - case 133: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOptimizeFor_p) }() - case 134: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOptions_p) }() - case 135: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOutputType_p) }() - case 136: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOverridableFeatures_p) }() - case 137: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPackage_p) }() - case 138: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPacked_p) }() - case 139: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpClassPrefix_p) }() - case 140: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpMetadataNamespace_p) }() - case 141: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpNamespace_p) }() - case 142: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPositiveIntValue_p) }() - case 143: try { try decoder.decodeSingularInt32Field(value: &_storage._clearProto3Optional_p) }() - case 144: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPyGenericServices_p) }() - case 145: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRepeated_p) }() - case 146: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRepeatedFieldEncoding_p) }() - case 147: try { try decoder.decodeSingularInt32Field(value: &_storage._clearReserved_p) }() - case 148: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRetention_p) }() - case 149: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRubyPackage_p) }() - case 150: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSemantic_p) }() - case 151: try { try decoder.decodeSingularInt32Field(value: &_storage._clearServerStreaming_p) }() - case 152: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceCodeInfo_p) }() - case 153: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceContext_p) }() - case 154: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceFile_p) }() - case 155: try { try decoder.decodeSingularInt32Field(value: &_storage._clearStart_p) }() - case 156: try { try decoder.decodeSingularInt32Field(value: &_storage._clearStringValue_p) }() - case 157: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSwiftPrefix_p) }() - case 158: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSyntax_p) }() - case 159: try { try decoder.decodeSingularInt32Field(value: &_storage._clearTrailingComments_p) }() - case 160: try { try decoder.decodeSingularInt32Field(value: &_storage._clearType_p) }() - case 161: try { try decoder.decodeSingularInt32Field(value: &_storage._clearTypeName_p) }() - case 162: try { try decoder.decodeSingularInt32Field(value: &_storage._clearUnverifiedLazy_p) }() - case 163: try { try decoder.decodeSingularInt32Field(value: &_storage._clearUtf8Validation_p) }() - case 164: try { try decoder.decodeSingularInt32Field(value: &_storage._clearValue_p) }() - case 165: try { try decoder.decodeSingularInt32Field(value: &_storage._clearVerification_p) }() - case 166: try { try decoder.decodeSingularInt32Field(value: &_storage._clearWeak_p) }() - case 167: try { try decoder.decodeSingularInt32Field(value: &_storage._clientStreaming) }() - case 168: try { try decoder.decodeSingularInt32Field(value: &_storage._code) }() - case 169: try { try decoder.decodeSingularInt32Field(value: &_storage._codePoint) }() - case 170: try { try decoder.decodeSingularInt32Field(value: &_storage._codeUnits) }() - case 171: try { try decoder.decodeSingularInt32Field(value: &_storage._collection) }() - case 172: try { try decoder.decodeSingularInt32Field(value: &_storage._com) }() - case 173: try { try decoder.decodeSingularInt32Field(value: &_storage._comma) }() - case 174: try { try decoder.decodeSingularInt32Field(value: &_storage._consumedBytes) }() - case 175: try { try decoder.decodeSingularInt32Field(value: &_storage._contentsOf) }() - case 176: try { try decoder.decodeSingularInt32Field(value: &_storage._copy) }() - case 177: try { try decoder.decodeSingularInt32Field(value: &_storage._count) }() - case 178: try { try decoder.decodeSingularInt32Field(value: &_storage._countVarintsInBuffer) }() - case 179: try { try decoder.decodeSingularInt32Field(value: &_storage._csharpNamespace) }() - case 180: try { try decoder.decodeSingularInt32Field(value: &_storage._ctype) }() - case 181: try { try decoder.decodeSingularInt32Field(value: &_storage._customCodable) }() - case 182: try { try decoder.decodeSingularInt32Field(value: &_storage._customDebugStringConvertible) }() - case 183: try { try decoder.decodeSingularInt32Field(value: &_storage._customStringConvertible) }() - case 184: try { try decoder.decodeSingularInt32Field(value: &_storage._d) }() - case 185: try { try decoder.decodeSingularInt32Field(value: &_storage._data) }() - case 186: try { try decoder.decodeSingularInt32Field(value: &_storage._dataResult) }() - case 187: try { try decoder.decodeSingularInt32Field(value: &_storage._date) }() - case 188: try { try decoder.decodeSingularInt32Field(value: &_storage._daySec) }() - case 189: try { try decoder.decodeSingularInt32Field(value: &_storage._daysSinceEpoch) }() - case 190: try { try decoder.decodeSingularInt32Field(value: &_storage._debugDescription_p) }() - case 191: try { try decoder.decodeSingularInt32Field(value: &_storage._debugRedact) }() - case 192: try { try decoder.decodeSingularInt32Field(value: &_storage._declaration) }() - case 193: try { try decoder.decodeSingularInt32Field(value: &_storage._decoded) }() - case 194: try { try decoder.decodeSingularInt32Field(value: &_storage._decodedFromJsonnull) }() - case 195: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeExtensionField) }() - case 196: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeExtensionFieldsAsMessageSet) }() - case 197: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeJson) }() - case 198: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeMapField) }() - case 199: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeMessage) }() - case 200: try { try decoder.decodeSingularInt32Field(value: &_storage._decoder) }() - case 201: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeated) }() - case 202: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedBoolField) }() - case 203: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedBytesField) }() - case 204: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedDoubleField) }() - case 205: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedEnumField) }() - case 206: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFixed32Field) }() - case 207: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFixed64Field) }() - case 208: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFloatField) }() - case 209: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedGroupField) }() - case 210: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedInt32Field) }() - case 211: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedInt64Field) }() - case 212: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedMessageField) }() - case 213: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSfixed32Field) }() - case 214: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSfixed64Field) }() - case 215: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSint32Field) }() - case 216: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSint64Field) }() - case 217: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedStringField) }() - case 218: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedUint32Field) }() - case 219: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedUint64Field) }() - case 220: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingular) }() - case 221: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularBoolField) }() - case 222: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularBytesField) }() - case 223: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularDoubleField) }() - case 224: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularEnumField) }() - case 225: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFixed32Field) }() - case 226: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFixed64Field) }() - case 227: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFloatField) }() - case 228: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularGroupField) }() - case 229: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularInt32Field) }() - case 230: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularInt64Field) }() - case 231: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularMessageField) }() - case 232: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSfixed32Field) }() - case 233: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSfixed64Field) }() - case 234: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSint32Field) }() - case 235: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSint64Field) }() - case 236: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularStringField) }() - case 237: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularUint32Field) }() - case 238: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularUint64Field) }() - case 239: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeTextFormat) }() - case 240: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultAnyTypeUrlprefix) }() - case 241: try { try decoder.decodeSingularInt32Field(value: &_storage._defaults) }() - case 242: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultValue) }() - case 243: try { try decoder.decodeSingularInt32Field(value: &_storage._dependency) }() - case 244: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecated) }() - case 245: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecatedLegacyJsonFieldConflicts) }() - case 246: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecationWarning) }() - case 247: try { try decoder.decodeSingularInt32Field(value: &_storage._description_p) }() - case 248: try { try decoder.decodeSingularInt32Field(value: &_storage._descriptorProto) }() - case 249: try { try decoder.decodeSingularInt32Field(value: &_storage._dictionary) }() - case 250: try { try decoder.decodeSingularInt32Field(value: &_storage._dictionaryLiteral) }() - case 251: try { try decoder.decodeSingularInt32Field(value: &_storage._digit) }() - case 252: try { try decoder.decodeSingularInt32Field(value: &_storage._digit0) }() - case 253: try { try decoder.decodeSingularInt32Field(value: &_storage._digit1) }() - case 254: try { try decoder.decodeSingularInt32Field(value: &_storage._digitCount) }() - case 255: try { try decoder.decodeSingularInt32Field(value: &_storage._digits) }() - case 256: try { try decoder.decodeSingularInt32Field(value: &_storage._digitValue) }() - case 257: try { try decoder.decodeSingularInt32Field(value: &_storage._discardableResult) }() - case 258: try { try decoder.decodeSingularInt32Field(value: &_storage._discardUnknownFields) }() - case 259: try { try decoder.decodeSingularInt32Field(value: &_storage._double) }() - case 260: try { try decoder.decodeSingularInt32Field(value: &_storage._doubleValue) }() - case 261: try { try decoder.decodeSingularInt32Field(value: &_storage._duration) }() - case 262: try { try decoder.decodeSingularInt32Field(value: &_storage._e) }() - case 263: try { try decoder.decodeSingularInt32Field(value: &_storage._edition) }() - case 264: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDefault) }() - case 265: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDefaults) }() - case 266: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDeprecated) }() - case 267: try { try decoder.decodeSingularInt32Field(value: &_storage._editionIntroduced) }() - case 268: try { try decoder.decodeSingularInt32Field(value: &_storage._editionRemoved) }() - case 269: try { try decoder.decodeSingularInt32Field(value: &_storage._element) }() - case 270: try { try decoder.decodeSingularInt32Field(value: &_storage._elements) }() - case 271: try { try decoder.decodeSingularInt32Field(value: &_storage._emitExtensionFieldName) }() - case 272: try { try decoder.decodeSingularInt32Field(value: &_storage._emitFieldName) }() - case 273: try { try decoder.decodeSingularInt32Field(value: &_storage._emitFieldNumber) }() - case 274: try { try decoder.decodeSingularInt32Field(value: &_storage._empty) }() - case 275: try { try decoder.decodeSingularInt32Field(value: &_storage._encodeAsBytes) }() - case 276: try { try decoder.decodeSingularInt32Field(value: &_storage._encoded) }() - case 277: try { try decoder.decodeSingularInt32Field(value: &_storage._encodedJsonstring) }() - case 278: try { try decoder.decodeSingularInt32Field(value: &_storage._encodedSize) }() - case 279: try { try decoder.decodeSingularInt32Field(value: &_storage._encodeField) }() - case 280: try { try decoder.decodeSingularInt32Field(value: &_storage._encoder) }() - case 281: try { try decoder.decodeSingularInt32Field(value: &_storage._end) }() - case 282: try { try decoder.decodeSingularInt32Field(value: &_storage._endArray) }() - case 283: try { try decoder.decodeSingularInt32Field(value: &_storage._endMessageField) }() - case 284: try { try decoder.decodeSingularInt32Field(value: &_storage._endObject) }() - case 285: try { try decoder.decodeSingularInt32Field(value: &_storage._endRegularField) }() - case 286: try { try decoder.decodeSingularInt32Field(value: &_storage._enum) }() - case 287: try { try decoder.decodeSingularInt32Field(value: &_storage._enumDescriptorProto) }() - case 288: try { try decoder.decodeSingularInt32Field(value: &_storage._enumOptions) }() - case 289: try { try decoder.decodeSingularInt32Field(value: &_storage._enumReservedRange) }() - case 290: try { try decoder.decodeSingularInt32Field(value: &_storage._enumType) }() - case 291: try { try decoder.decodeSingularInt32Field(value: &_storage._enumvalue) }() - case 292: try { try decoder.decodeSingularInt32Field(value: &_storage._enumValueDescriptorProto) }() - case 293: try { try decoder.decodeSingularInt32Field(value: &_storage._enumValueOptions) }() - case 294: try { try decoder.decodeSingularInt32Field(value: &_storage._equatable) }() - case 295: try { try decoder.decodeSingularInt32Field(value: &_storage._error) }() - case 296: try { try decoder.decodeSingularInt32Field(value: &_storage._expressibleByArrayLiteral) }() - case 297: try { try decoder.decodeSingularInt32Field(value: &_storage._expressibleByDictionaryLiteral) }() - case 298: try { try decoder.decodeSingularInt32Field(value: &_storage._ext) }() - case 299: try { try decoder.decodeSingularInt32Field(value: &_storage._extDecoder) }() - case 300: try { try decoder.decodeSingularInt32Field(value: &_storage._extendedGraphemeClusterLiteral) }() - case 301: try { try decoder.decodeSingularInt32Field(value: &_storage._extendedGraphemeClusterLiteralType) }() - case 302: try { try decoder.decodeSingularInt32Field(value: &_storage._extendee) }() - case 303: try { try decoder.decodeSingularInt32Field(value: &_storage._extensibleMessage) }() - case 304: try { try decoder.decodeSingularInt32Field(value: &_storage._extension) }() - case 305: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionField) }() - case 306: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionFieldNumber) }() - case 307: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionFieldValueSet) }() - case 308: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionMap) }() - case 309: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionRange) }() - case 310: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionRangeOptions) }() - case 311: try { try decoder.decodeSingularInt32Field(value: &_storage._extensions) }() - case 312: try { try decoder.decodeSingularInt32Field(value: &_storage._extras) }() - case 313: try { try decoder.decodeSingularInt32Field(value: &_storage._f) }() - case 314: try { try decoder.decodeSingularInt32Field(value: &_storage._false) }() - case 315: try { try decoder.decodeSingularInt32Field(value: &_storage._features) }() - case 316: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSet) }() - case 317: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSetDefaults) }() - case 318: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSetEditionDefault) }() - case 319: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSupport) }() - case 320: try { try decoder.decodeSingularInt32Field(value: &_storage._field) }() - case 321: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldData) }() - case 322: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldDescriptorProto) }() - case 323: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldMask) }() - case 324: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldName) }() - case 325: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNameCount) }() - case 326: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNum) }() - case 327: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNumber) }() - case 328: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNumberForProto) }() - case 329: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldOptions) }() - case 330: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldPresence) }() - case 331: try { try decoder.decodeSingularInt32Field(value: &_storage._fields) }() - case 332: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldSize) }() - case 333: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldTag) }() - case 334: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldType) }() - case 335: try { try decoder.decodeSingularInt32Field(value: &_storage._file) }() - case 336: try { try decoder.decodeSingularInt32Field(value: &_storage._fileDescriptorProto) }() - case 337: try { try decoder.decodeSingularInt32Field(value: &_storage._fileDescriptorSet) }() - case 338: try { try decoder.decodeSingularInt32Field(value: &_storage._fileName) }() - case 339: try { try decoder.decodeSingularInt32Field(value: &_storage._fileOptions) }() - case 340: try { try decoder.decodeSingularInt32Field(value: &_storage._filter) }() - case 341: try { try decoder.decodeSingularInt32Field(value: &_storage._final) }() - case 342: try { try decoder.decodeSingularInt32Field(value: &_storage._finiteOnly) }() - case 343: try { try decoder.decodeSingularInt32Field(value: &_storage._first) }() - case 344: try { try decoder.decodeSingularInt32Field(value: &_storage._firstItem) }() - case 345: try { try decoder.decodeSingularInt32Field(value: &_storage._fixedFeatures) }() - case 346: try { try decoder.decodeSingularInt32Field(value: &_storage._float) }() - case 347: try { try decoder.decodeSingularInt32Field(value: &_storage._floatLiteral) }() - case 348: try { try decoder.decodeSingularInt32Field(value: &_storage._floatLiteralType) }() - case 349: try { try decoder.decodeSingularInt32Field(value: &_storage._floatValue) }() - case 350: try { try decoder.decodeSingularInt32Field(value: &_storage._forMessageName) }() - case 351: try { try decoder.decodeSingularInt32Field(value: &_storage._formUnion) }() - case 352: try { try decoder.decodeSingularInt32Field(value: &_storage._forReadingFrom) }() - case 353: try { try decoder.decodeSingularInt32Field(value: &_storage._forTypeURL) }() - case 354: try { try decoder.decodeSingularInt32Field(value: &_storage._forwardParser) }() - case 355: try { try decoder.decodeSingularInt32Field(value: &_storage._forWritingInto) }() - case 356: try { try decoder.decodeSingularInt32Field(value: &_storage._from) }() - case 357: try { try decoder.decodeSingularInt32Field(value: &_storage._fromAscii2) }() - case 358: try { try decoder.decodeSingularInt32Field(value: &_storage._fromAscii4) }() - case 359: try { try decoder.decodeSingularInt32Field(value: &_storage._fromByteOffset) }() - case 360: try { try decoder.decodeSingularInt32Field(value: &_storage._fromHexDigit) }() - case 361: try { try decoder.decodeSingularInt32Field(value: &_storage._fullName) }() - case 362: try { try decoder.decodeSingularInt32Field(value: &_storage._func) }() - case 363: try { try decoder.decodeSingularInt32Field(value: &_storage._function) }() - case 364: try { try decoder.decodeSingularInt32Field(value: &_storage._g) }() - case 365: try { try decoder.decodeSingularInt32Field(value: &_storage._generatedCodeInfo) }() - case 366: try { try decoder.decodeSingularInt32Field(value: &_storage._get) }() - case 367: try { try decoder.decodeSingularInt32Field(value: &_storage._getExtensionValue) }() - case 368: try { try decoder.decodeSingularInt32Field(value: &_storage._googleapis) }() - case 369: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufAny) }() - case 370: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufApi) }() - case 371: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufBoolValue) }() - case 372: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufBytesValue) }() - case 373: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDescriptorProto) }() - case 374: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDoubleValue) }() - case 375: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDuration) }() - case 376: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEdition) }() - case 377: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEmpty) }() - case 378: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnum) }() - case 379: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumDescriptorProto) }() - case 380: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumOptions) }() - case 381: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValue) }() - case 382: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValueDescriptorProto) }() - case 383: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValueOptions) }() - case 384: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufExtensionRangeOptions) }() - case 385: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFeatureSet) }() - case 386: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFeatureSetDefaults) }() - case 387: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufField) }() - case 388: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldDescriptorProto) }() - case 389: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldMask) }() - case 390: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldOptions) }() - case 391: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileDescriptorProto) }() - case 392: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileDescriptorSet) }() - case 393: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileOptions) }() - case 394: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFloatValue) }() - case 395: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufGeneratedCodeInfo) }() - case 396: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufInt32Value) }() - case 397: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufInt64Value) }() - case 398: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufListValue) }() - case 399: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMessageOptions) }() - case 400: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethod) }() - case 401: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethodDescriptorProto) }() - case 402: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethodOptions) }() - case 403: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMixin) }() - case 404: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufNullValue) }() - case 405: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOneofDescriptorProto) }() - case 406: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOneofOptions) }() - case 407: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOption) }() - case 408: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufServiceDescriptorProto) }() - case 409: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufServiceOptions) }() - case 410: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSourceCodeInfo) }() - case 411: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSourceContext) }() - case 412: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufStringValue) }() - case 413: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufStruct) }() - case 414: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSyntax) }() - case 415: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufTimestamp) }() - case 416: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufType) }() - case 417: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUint32Value) }() - case 418: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUint64Value) }() - case 419: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUninterpretedOption) }() - case 420: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufValue) }() - case 421: try { try decoder.decodeSingularInt32Field(value: &_storage._goPackage) }() - case 422: try { try decoder.decodeSingularInt32Field(value: &_storage._group) }() - case 423: try { try decoder.decodeSingularInt32Field(value: &_storage._groupFieldNumberStack) }() - case 424: try { try decoder.decodeSingularInt32Field(value: &_storage._groupSize) }() - case 425: try { try decoder.decodeSingularInt32Field(value: &_storage._hadOneofValue) }() - case 426: try { try decoder.decodeSingularInt32Field(value: &_storage._handleConflictingOneOf) }() - case 427: try { try decoder.decodeSingularInt32Field(value: &_storage._hasAggregateValue_p) }() - case 428: try { try decoder.decodeSingularInt32Field(value: &_storage._hasAllowAlias_p) }() - case 429: try { try decoder.decodeSingularInt32Field(value: &_storage._hasBegin_p) }() - case 430: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCcEnableArenas_p) }() - case 431: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCcGenericServices_p) }() - case 432: try { try decoder.decodeSingularInt32Field(value: &_storage._hasClientStreaming_p) }() - case 433: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCsharpNamespace_p) }() - case 434: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCtype_p) }() - case 435: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDebugRedact_p) }() - case 436: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDefaultValue_p) }() - case 437: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecated_p) }() - case 438: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecatedLegacyJsonFieldConflicts_p) }() - case 439: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecationWarning_p) }() - case 440: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDoubleValue_p) }() - case 441: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEdition_p) }() - case 442: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionDeprecated_p) }() - case 443: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionIntroduced_p) }() - case 444: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionRemoved_p) }() - case 445: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEnd_p) }() - case 446: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEnumType_p) }() - case 447: try { try decoder.decodeSingularInt32Field(value: &_storage._hasExtendee_p) }() - case 448: try { try decoder.decodeSingularInt32Field(value: &_storage._hasExtensionValue_p) }() - case 449: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFeatures_p) }() - case 450: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFeatureSupport_p) }() - case 451: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFieldPresence_p) }() - case 452: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFixedFeatures_p) }() - case 453: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFullName_p) }() - case 454: try { try decoder.decodeSingularInt32Field(value: &_storage._hasGoPackage_p) }() - case 455: try { try decoder.decodeSingularInt32Field(value: &_storage._hash) }() - case 456: try { try decoder.decodeSingularInt32Field(value: &_storage._hashable) }() - case 457: try { try decoder.decodeSingularInt32Field(value: &_storage._hasher) }() - case 458: try { try decoder.decodeSingularInt32Field(value: &_storage._hashVisitor) }() - case 459: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIdempotencyLevel_p) }() - case 460: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIdentifierValue_p) }() - case 461: try { try decoder.decodeSingularInt32Field(value: &_storage._hasInputType_p) }() - case 462: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIsExtension_p) }() - case 463: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaGenerateEqualsAndHash_p) }() - case 464: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaGenericServices_p) }() - case 465: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaMultipleFiles_p) }() - case 466: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaOuterClassname_p) }() - case 467: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaPackage_p) }() - case 468: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaStringCheckUtf8_p) }() - case 469: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJsonFormat_p) }() - case 470: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJsonName_p) }() - case 471: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJstype_p) }() - case 472: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLabel_p) }() - case 473: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLazy_p) }() - case 474: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLeadingComments_p) }() - case 475: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMapEntry_p) }() - case 476: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMaximumEdition_p) }() - case 477: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMessageEncoding_p) }() - case 478: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMessageSetWireFormat_p) }() - case 479: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMinimumEdition_p) }() - case 480: try { try decoder.decodeSingularInt32Field(value: &_storage._hasName_p) }() - case 481: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNamePart_p) }() - case 482: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNegativeIntValue_p) }() - case 483: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNoStandardDescriptorAccessor_p) }() - case 484: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNumber_p) }() - case 485: try { try decoder.decodeSingularInt32Field(value: &_storage._hasObjcClassPrefix_p) }() - case 486: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOneofIndex_p) }() - case 487: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOptimizeFor_p) }() - case 488: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOptions_p) }() - case 489: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOutputType_p) }() - case 490: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOverridableFeatures_p) }() - case 491: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPackage_p) }() - case 492: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPacked_p) }() - case 493: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpClassPrefix_p) }() - case 494: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpMetadataNamespace_p) }() - case 495: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpNamespace_p) }() - case 496: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPositiveIntValue_p) }() - case 497: try { try decoder.decodeSingularInt32Field(value: &_storage._hasProto3Optional_p) }() - case 498: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPyGenericServices_p) }() - case 499: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRepeated_p) }() - case 500: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRepeatedFieldEncoding_p) }() - case 501: try { try decoder.decodeSingularInt32Field(value: &_storage._hasReserved_p) }() - case 502: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRetention_p) }() - case 503: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRubyPackage_p) }() - case 504: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSemantic_p) }() - case 505: try { try decoder.decodeSingularInt32Field(value: &_storage._hasServerStreaming_p) }() - case 506: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceCodeInfo_p) }() - case 507: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceContext_p) }() - case 508: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceFile_p) }() - case 509: try { try decoder.decodeSingularInt32Field(value: &_storage._hasStart_p) }() - case 510: try { try decoder.decodeSingularInt32Field(value: &_storage._hasStringValue_p) }() - case 511: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSwiftPrefix_p) }() - case 512: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSyntax_p) }() - case 513: try { try decoder.decodeSingularInt32Field(value: &_storage._hasTrailingComments_p) }() - case 514: try { try decoder.decodeSingularInt32Field(value: &_storage._hasType_p) }() - case 515: try { try decoder.decodeSingularInt32Field(value: &_storage._hasTypeName_p) }() - case 516: try { try decoder.decodeSingularInt32Field(value: &_storage._hasUnverifiedLazy_p) }() - case 517: try { try decoder.decodeSingularInt32Field(value: &_storage._hasUtf8Validation_p) }() - case 518: try { try decoder.decodeSingularInt32Field(value: &_storage._hasValue_p) }() - case 519: try { try decoder.decodeSingularInt32Field(value: &_storage._hasVerification_p) }() - case 520: try { try decoder.decodeSingularInt32Field(value: &_storage._hasWeak_p) }() - case 521: try { try decoder.decodeSingularInt32Field(value: &_storage._hour) }() - case 522: try { try decoder.decodeSingularInt32Field(value: &_storage._i) }() - case 523: try { try decoder.decodeSingularInt32Field(value: &_storage._idempotencyLevel) }() - case 524: try { try decoder.decodeSingularInt32Field(value: &_storage._identifierValue) }() - case 525: try { try decoder.decodeSingularInt32Field(value: &_storage._if) }() - case 526: try { try decoder.decodeSingularInt32Field(value: &_storage._ignoreUnknownExtensionFields) }() - case 527: try { try decoder.decodeSingularInt32Field(value: &_storage._ignoreUnknownFields) }() - case 528: try { try decoder.decodeSingularInt32Field(value: &_storage._index) }() - case 529: try { try decoder.decodeSingularInt32Field(value: &_storage._init_p) }() - case 530: try { try decoder.decodeSingularInt32Field(value: &_storage._inout) }() - case 531: try { try decoder.decodeSingularInt32Field(value: &_storage._inputType) }() - case 532: try { try decoder.decodeSingularInt32Field(value: &_storage._insert) }() - case 533: try { try decoder.decodeSingularInt32Field(value: &_storage._int) }() - case 534: try { try decoder.decodeSingularInt32Field(value: &_storage._int32) }() - case 535: try { try decoder.decodeSingularInt32Field(value: &_storage._int32Value) }() - case 536: try { try decoder.decodeSingularInt32Field(value: &_storage._int64) }() - case 537: try { try decoder.decodeSingularInt32Field(value: &_storage._int64Value) }() - case 538: try { try decoder.decodeSingularInt32Field(value: &_storage._int8) }() - case 539: try { try decoder.decodeSingularInt32Field(value: &_storage._integerLiteral) }() - case 540: try { try decoder.decodeSingularInt32Field(value: &_storage._integerLiteralType) }() - case 541: try { try decoder.decodeSingularInt32Field(value: &_storage._intern) }() - case 542: try { try decoder.decodeSingularInt32Field(value: &_storage._internal) }() - case 543: try { try decoder.decodeSingularInt32Field(value: &_storage._internalState) }() - case 544: try { try decoder.decodeSingularInt32Field(value: &_storage._into) }() - case 545: try { try decoder.decodeSingularInt32Field(value: &_storage._ints) }() - case 546: try { try decoder.decodeSingularInt32Field(value: &_storage._isA) }() - case 547: try { try decoder.decodeSingularInt32Field(value: &_storage._isEqual) }() - case 548: try { try decoder.decodeSingularInt32Field(value: &_storage._isEqualTo) }() - case 549: try { try decoder.decodeSingularInt32Field(value: &_storage._isExtension) }() - case 550: try { try decoder.decodeSingularInt32Field(value: &_storage._isInitialized_p) }() - case 551: try { try decoder.decodeSingularInt32Field(value: &_storage._isNegative) }() - case 552: try { try decoder.decodeSingularInt32Field(value: &_storage._itemTagsEncodedSize) }() - case 553: try { try decoder.decodeSingularInt32Field(value: &_storage._iterator) }() - case 554: try { try decoder.decodeSingularInt32Field(value: &_storage._javaGenerateEqualsAndHash) }() - case 555: try { try decoder.decodeSingularInt32Field(value: &_storage._javaGenericServices) }() - case 556: try { try decoder.decodeSingularInt32Field(value: &_storage._javaMultipleFiles) }() - case 557: try { try decoder.decodeSingularInt32Field(value: &_storage._javaOuterClassname) }() - case 558: try { try decoder.decodeSingularInt32Field(value: &_storage._javaPackage) }() - case 559: try { try decoder.decodeSingularInt32Field(value: &_storage._javaStringCheckUtf8) }() - case 560: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecoder) }() - case 561: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecodingError) }() - case 562: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecodingOptions) }() - case 563: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonEncoder) }() - case 564: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencoding) }() - case 565: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingError) }() - case 566: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingOptions) }() - case 567: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingVisitor) }() - case 568: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonFormat) }() - case 569: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonmapEncodingVisitor) }() - case 570: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonName) }() - case 571: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonPath) }() - case 572: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonPaths) }() - case 573: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonscanner) }() - case 574: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonString) }() - case 575: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonText) }() - case 576: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonUtf8Bytes) }() - case 577: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonUtf8Data) }() - case 578: try { try decoder.decodeSingularInt32Field(value: &_storage._jstype) }() - case 579: try { try decoder.decodeSingularInt32Field(value: &_storage._k) }() - case 580: try { try decoder.decodeSingularInt32Field(value: &_storage._kChunkSize) }() - case 581: try { try decoder.decodeSingularInt32Field(value: &_storage._key) }() - case 582: try { try decoder.decodeSingularInt32Field(value: &_storage._keyField) }() - case 583: try { try decoder.decodeSingularInt32Field(value: &_storage._keyFieldOpt) }() - case 584: try { try decoder.decodeSingularInt32Field(value: &_storage._keyType) }() - case 585: try { try decoder.decodeSingularInt32Field(value: &_storage._kind) }() - case 586: try { try decoder.decodeSingularInt32Field(value: &_storage._l) }() - case 587: try { try decoder.decodeSingularInt32Field(value: &_storage._label) }() - case 588: try { try decoder.decodeSingularInt32Field(value: &_storage._lazy) }() - case 589: try { try decoder.decodeSingularInt32Field(value: &_storage._leadingComments) }() - case 590: try { try decoder.decodeSingularInt32Field(value: &_storage._leadingDetachedComments) }() - case 591: try { try decoder.decodeSingularInt32Field(value: &_storage._length) }() - case 592: try { try decoder.decodeSingularInt32Field(value: &_storage._lessThan) }() - case 593: try { try decoder.decodeSingularInt32Field(value: &_storage._let) }() - case 594: try { try decoder.decodeSingularInt32Field(value: &_storage._lhs) }() - case 595: try { try decoder.decodeSingularInt32Field(value: &_storage._line) }() - case 596: try { try decoder.decodeSingularInt32Field(value: &_storage._list) }() - case 597: try { try decoder.decodeSingularInt32Field(value: &_storage._listOfMessages) }() - case 598: try { try decoder.decodeSingularInt32Field(value: &_storage._listValue) }() - case 599: try { try decoder.decodeSingularInt32Field(value: &_storage._littleEndian) }() - case 600: try { try decoder.decodeSingularInt32Field(value: &_storage._load) }() - case 601: try { try decoder.decodeSingularInt32Field(value: &_storage._localHasher) }() - case 602: try { try decoder.decodeSingularInt32Field(value: &_storage._location) }() - case 603: try { try decoder.decodeSingularInt32Field(value: &_storage._m) }() - case 604: try { try decoder.decodeSingularInt32Field(value: &_storage._major) }() - case 605: try { try decoder.decodeSingularInt32Field(value: &_storage._makeAsyncIterator) }() - case 606: try { try decoder.decodeSingularInt32Field(value: &_storage._makeIterator) }() - case 607: try { try decoder.decodeSingularInt32Field(value: &_storage._malformedLength) }() - case 608: try { try decoder.decodeSingularInt32Field(value: &_storage._mapEntry) }() - case 609: try { try decoder.decodeSingularInt32Field(value: &_storage._mapKeyType) }() - case 610: try { try decoder.decodeSingularInt32Field(value: &_storage._mapToMessages) }() - case 611: try { try decoder.decodeSingularInt32Field(value: &_storage._mapValueType) }() - case 612: try { try decoder.decodeSingularInt32Field(value: &_storage._mapVisitor) }() - case 613: try { try decoder.decodeSingularInt32Field(value: &_storage._maximumEdition) }() - case 614: try { try decoder.decodeSingularInt32Field(value: &_storage._mdayStart) }() - case 615: try { try decoder.decodeSingularInt32Field(value: &_storage._merge) }() - case 616: try { try decoder.decodeSingularInt32Field(value: &_storage._message) }() - case 617: try { try decoder.decodeSingularInt32Field(value: &_storage._messageDepthLimit) }() - case 618: try { try decoder.decodeSingularInt32Field(value: &_storage._messageEncoding) }() - case 619: try { try decoder.decodeSingularInt32Field(value: &_storage._messageExtension) }() - case 620: try { try decoder.decodeSingularInt32Field(value: &_storage._messageImplementationBase) }() - case 621: try { try decoder.decodeSingularInt32Field(value: &_storage._messageOptions) }() - case 622: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSet) }() - case 623: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSetWireFormat) }() - case 624: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSize) }() - case 625: try { try decoder.decodeSingularInt32Field(value: &_storage._messageType) }() - case 626: try { try decoder.decodeSingularInt32Field(value: &_storage._method) }() - case 627: try { try decoder.decodeSingularInt32Field(value: &_storage._methodDescriptorProto) }() - case 628: try { try decoder.decodeSingularInt32Field(value: &_storage._methodOptions) }() - case 629: try { try decoder.decodeSingularInt32Field(value: &_storage._methods) }() - case 630: try { try decoder.decodeSingularInt32Field(value: &_storage._min) }() - case 631: try { try decoder.decodeSingularInt32Field(value: &_storage._minimumEdition) }() - case 632: try { try decoder.decodeSingularInt32Field(value: &_storage._minor) }() - case 633: try { try decoder.decodeSingularInt32Field(value: &_storage._mixin) }() - case 634: try { try decoder.decodeSingularInt32Field(value: &_storage._mixins) }() - case 635: try { try decoder.decodeSingularInt32Field(value: &_storage._modifier) }() - case 636: try { try decoder.decodeSingularInt32Field(value: &_storage._modify) }() - case 637: try { try decoder.decodeSingularInt32Field(value: &_storage._month) }() - case 638: try { try decoder.decodeSingularInt32Field(value: &_storage._msgExtension) }() - case 639: try { try decoder.decodeSingularInt32Field(value: &_storage._mutating) }() - case 640: try { try decoder.decodeSingularInt32Field(value: &_storage._n) }() - case 641: try { try decoder.decodeSingularInt32Field(value: &_storage._name) }() - case 642: try { try decoder.decodeSingularInt32Field(value: &_storage._nameDescription) }() - case 643: try { try decoder.decodeSingularInt32Field(value: &_storage._nameMap) }() - case 644: try { try decoder.decodeSingularInt32Field(value: &_storage._namePart) }() - case 645: try { try decoder.decodeSingularInt32Field(value: &_storage._names) }() - case 646: try { try decoder.decodeSingularInt32Field(value: &_storage._nanos) }() - case 647: try { try decoder.decodeSingularInt32Field(value: &_storage._negativeIntValue) }() - case 648: try { try decoder.decodeSingularInt32Field(value: &_storage._nestedType) }() - case 649: try { try decoder.decodeSingularInt32Field(value: &_storage._newL) }() - case 650: try { try decoder.decodeSingularInt32Field(value: &_storage._newList) }() - case 651: try { try decoder.decodeSingularInt32Field(value: &_storage._newValue) }() - case 652: try { try decoder.decodeSingularInt32Field(value: &_storage._next) }() - case 653: try { try decoder.decodeSingularInt32Field(value: &_storage._nextByte) }() - case 654: try { try decoder.decodeSingularInt32Field(value: &_storage._nextFieldNumber) }() - case 655: try { try decoder.decodeSingularInt32Field(value: &_storage._nextVarInt) }() - case 656: try { try decoder.decodeSingularInt32Field(value: &_storage._nil) }() - case 657: try { try decoder.decodeSingularInt32Field(value: &_storage._nilLiteral) }() - case 658: try { try decoder.decodeSingularInt32Field(value: &_storage._noBytesAvailable) }() - case 659: try { try decoder.decodeSingularInt32Field(value: &_storage._noStandardDescriptorAccessor) }() - case 660: try { try decoder.decodeSingularInt32Field(value: &_storage._nullValue) }() - case 661: try { try decoder.decodeSingularInt32Field(value: &_storage._number) }() - case 662: try { try decoder.decodeSingularInt32Field(value: &_storage._numberValue) }() - case 663: try { try decoder.decodeSingularInt32Field(value: &_storage._objcClassPrefix) }() - case 664: try { try decoder.decodeSingularInt32Field(value: &_storage._of) }() - case 665: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofDecl) }() - case 666: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofDescriptorProto) }() - case 667: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofIndex) }() - case 668: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofOptions) }() - case 669: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofs) }() - case 670: try { try decoder.decodeSingularInt32Field(value: &_storage._oneOfKind) }() - case 671: try { try decoder.decodeSingularInt32Field(value: &_storage._optimizeFor) }() - case 672: try { try decoder.decodeSingularInt32Field(value: &_storage._optimizeMode) }() - case 673: try { try decoder.decodeSingularInt32Field(value: &_storage._option) }() - case 674: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalEnumExtensionField) }() - case 675: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalExtensionField) }() - case 676: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalGroupExtensionField) }() - case 677: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalMessageExtensionField) }() - case 678: try { try decoder.decodeSingularInt32Field(value: &_storage._optionRetention) }() - case 679: try { try decoder.decodeSingularInt32Field(value: &_storage._options) }() - case 680: try { try decoder.decodeSingularInt32Field(value: &_storage._optionTargetType) }() - case 681: try { try decoder.decodeSingularInt32Field(value: &_storage._other) }() - case 682: try { try decoder.decodeSingularInt32Field(value: &_storage._others) }() - case 683: try { try decoder.decodeSingularInt32Field(value: &_storage._out) }() - case 684: try { try decoder.decodeSingularInt32Field(value: &_storage._outputType) }() - case 685: try { try decoder.decodeSingularInt32Field(value: &_storage._overridableFeatures) }() - case 686: try { try decoder.decodeSingularInt32Field(value: &_storage._p) }() - case 687: try { try decoder.decodeSingularInt32Field(value: &_storage._package) }() - case 688: try { try decoder.decodeSingularInt32Field(value: &_storage._packed) }() - case 689: try { try decoder.decodeSingularInt32Field(value: &_storage._packedEnumExtensionField) }() - case 690: try { try decoder.decodeSingularInt32Field(value: &_storage._packedExtensionField) }() - case 691: try { try decoder.decodeSingularInt32Field(value: &_storage._padding) }() - case 692: try { try decoder.decodeSingularInt32Field(value: &_storage._parent) }() - case 693: try { try decoder.decodeSingularInt32Field(value: &_storage._parse) }() - case 694: try { try decoder.decodeSingularInt32Field(value: &_storage._path) }() - case 695: try { try decoder.decodeSingularInt32Field(value: &_storage._paths) }() - case 696: try { try decoder.decodeSingularInt32Field(value: &_storage._payload) }() - case 697: try { try decoder.decodeSingularInt32Field(value: &_storage._payloadSize) }() - case 698: try { try decoder.decodeSingularInt32Field(value: &_storage._phpClassPrefix) }() - case 699: try { try decoder.decodeSingularInt32Field(value: &_storage._phpMetadataNamespace) }() - case 700: try { try decoder.decodeSingularInt32Field(value: &_storage._phpNamespace) }() - case 701: try { try decoder.decodeSingularInt32Field(value: &_storage._pos) }() - case 702: try { try decoder.decodeSingularInt32Field(value: &_storage._positiveIntValue) }() - case 703: try { try decoder.decodeSingularInt32Field(value: &_storage._prefix) }() - case 704: try { try decoder.decodeSingularInt32Field(value: &_storage._preserveProtoFieldNames) }() - case 705: try { try decoder.decodeSingularInt32Field(value: &_storage._preTraverse) }() - case 706: try { try decoder.decodeSingularInt32Field(value: &_storage._printUnknownFields) }() - case 707: try { try decoder.decodeSingularInt32Field(value: &_storage._proto2) }() - case 708: try { try decoder.decodeSingularInt32Field(value: &_storage._proto3DefaultValue) }() - case 709: try { try decoder.decodeSingularInt32Field(value: &_storage._proto3Optional) }() - case 710: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufApiversionCheck) }() - case 711: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufApiversion3) }() - case 712: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufBool) }() - case 713: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufBytes) }() - case 714: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufDouble) }() - case 715: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufEnumMap) }() - case 716: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufExtension) }() - case 717: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFixed32) }() - case 718: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFixed64) }() - case 719: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFloat) }() - case 720: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufInt32) }() - case 721: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufInt64) }() - case 722: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufMap) }() - case 723: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufMessageMap) }() - case 724: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSfixed32) }() - case 725: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSfixed64) }() - case 726: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSint32) }() - case 727: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSint64) }() - case 728: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufString) }() - case 729: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufUint32) }() - case 730: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufUint64) }() - case 731: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufExtensionFieldValues) }() - case 732: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFieldNumber) }() - case 733: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufGeneratedIsEqualTo) }() - case 734: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufNameMap) }() - case 735: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufNewField) }() - case 736: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufPackage) }() - case 737: try { try decoder.decodeSingularInt32Field(value: &_storage._protocol) }() - case 738: try { try decoder.decodeSingularInt32Field(value: &_storage._protoFieldName) }() - case 739: try { try decoder.decodeSingularInt32Field(value: &_storage._protoMessageName) }() - case 740: try { try decoder.decodeSingularInt32Field(value: &_storage._protoNameProviding) }() - case 741: try { try decoder.decodeSingularInt32Field(value: &_storage._protoPaths) }() - case 742: try { try decoder.decodeSingularInt32Field(value: &_storage._public) }() - case 743: try { try decoder.decodeSingularInt32Field(value: &_storage._publicDependency) }() - case 744: try { try decoder.decodeSingularInt32Field(value: &_storage._putBoolValue) }() - case 745: try { try decoder.decodeSingularInt32Field(value: &_storage._putBytesValue) }() - case 746: try { try decoder.decodeSingularInt32Field(value: &_storage._putDoubleValue) }() - case 747: try { try decoder.decodeSingularInt32Field(value: &_storage._putEnumValue) }() - case 748: try { try decoder.decodeSingularInt32Field(value: &_storage._putFixedUint32) }() - case 749: try { try decoder.decodeSingularInt32Field(value: &_storage._putFixedUint64) }() - case 750: try { try decoder.decodeSingularInt32Field(value: &_storage._putFloatValue) }() - case 751: try { try decoder.decodeSingularInt32Field(value: &_storage._putInt64) }() - case 752: try { try decoder.decodeSingularInt32Field(value: &_storage._putStringValue) }() - case 753: try { try decoder.decodeSingularInt32Field(value: &_storage._putUint64) }() - case 754: try { try decoder.decodeSingularInt32Field(value: &_storage._putUint64Hex) }() - case 755: try { try decoder.decodeSingularInt32Field(value: &_storage._putVarInt) }() - case 756: try { try decoder.decodeSingularInt32Field(value: &_storage._putZigZagVarInt) }() - case 757: try { try decoder.decodeSingularInt32Field(value: &_storage._pyGenericServices) }() - case 758: try { try decoder.decodeSingularInt32Field(value: &_storage._r) }() - case 759: try { try decoder.decodeSingularInt32Field(value: &_storage._rawChars) }() - case 760: try { try decoder.decodeSingularInt32Field(value: &_storage._rawRepresentable) }() - case 761: try { try decoder.decodeSingularInt32Field(value: &_storage._rawValue) }() - case 762: try { try decoder.decodeSingularInt32Field(value: &_storage._read4HexDigits) }() - case 763: try { try decoder.decodeSingularInt32Field(value: &_storage._readBytes) }() - case 764: try { try decoder.decodeSingularInt32Field(value: &_storage._register) }() - case 765: try { try decoder.decodeSingularInt32Field(value: &_storage._repeated) }() - case 766: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedEnumExtensionField) }() - case 767: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedExtensionField) }() - case 768: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedFieldEncoding) }() - case 769: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedGroupExtensionField) }() - case 770: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedMessageExtensionField) }() - case 771: try { try decoder.decodeSingularInt32Field(value: &_storage._repeating) }() - case 772: try { try decoder.decodeSingularInt32Field(value: &_storage._requestStreaming) }() - case 773: try { try decoder.decodeSingularInt32Field(value: &_storage._requestTypeURL) }() - case 774: try { try decoder.decodeSingularInt32Field(value: &_storage._requiredSize) }() - case 775: try { try decoder.decodeSingularInt32Field(value: &_storage._responseStreaming) }() - case 776: try { try decoder.decodeSingularInt32Field(value: &_storage._responseTypeURL) }() - case 777: try { try decoder.decodeSingularInt32Field(value: &_storage._result) }() - case 778: try { try decoder.decodeSingularInt32Field(value: &_storage._retention) }() - case 779: try { try decoder.decodeSingularInt32Field(value: &_storage._rethrows) }() - case 780: try { try decoder.decodeSingularInt32Field(value: &_storage._return) }() - case 781: try { try decoder.decodeSingularInt32Field(value: &_storage._returnType) }() - case 782: try { try decoder.decodeSingularInt32Field(value: &_storage._revision) }() - case 783: try { try decoder.decodeSingularInt32Field(value: &_storage._rhs) }() - case 784: try { try decoder.decodeSingularInt32Field(value: &_storage._root) }() - case 785: try { try decoder.decodeSingularInt32Field(value: &_storage._rubyPackage) }() - case 786: try { try decoder.decodeSingularInt32Field(value: &_storage._s) }() - case 787: try { try decoder.decodeSingularInt32Field(value: &_storage._sawBackslash) }() - case 788: try { try decoder.decodeSingularInt32Field(value: &_storage._sawSection4Characters) }() - case 789: try { try decoder.decodeSingularInt32Field(value: &_storage._sawSection5Characters) }() - case 790: try { try decoder.decodeSingularInt32Field(value: &_storage._scan) }() - case 791: try { try decoder.decodeSingularInt32Field(value: &_storage._scanner) }() - case 792: try { try decoder.decodeSingularInt32Field(value: &_storage._seconds) }() - case 793: try { try decoder.decodeSingularInt32Field(value: &_storage._self_p) }() - case 794: try { try decoder.decodeSingularInt32Field(value: &_storage._semantic) }() - case 795: try { try decoder.decodeSingularInt32Field(value: &_storage._sendable) }() - case 796: try { try decoder.decodeSingularInt32Field(value: &_storage._separator) }() - case 797: try { try decoder.decodeSingularInt32Field(value: &_storage._serialize) }() - case 798: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedBytes) }() - case 799: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedData) }() - case 800: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedSize) }() - case 801: try { try decoder.decodeSingularInt32Field(value: &_storage._serverStreaming) }() - case 802: try { try decoder.decodeSingularInt32Field(value: &_storage._service) }() - case 803: try { try decoder.decodeSingularInt32Field(value: &_storage._serviceDescriptorProto) }() - case 804: try { try decoder.decodeSingularInt32Field(value: &_storage._serviceOptions) }() - case 805: try { try decoder.decodeSingularInt32Field(value: &_storage._set) }() - case 806: try { try decoder.decodeSingularInt32Field(value: &_storage._setExtensionValue) }() - case 807: try { try decoder.decodeSingularInt32Field(value: &_storage._shift) }() - case 808: try { try decoder.decodeSingularInt32Field(value: &_storage._simpleExtensionMap) }() - case 809: try { try decoder.decodeSingularInt32Field(value: &_storage._size) }() - case 810: try { try decoder.decodeSingularInt32Field(value: &_storage._sizer) }() - case 811: try { try decoder.decodeSingularInt32Field(value: &_storage._source) }() - case 812: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceCodeInfo) }() - case 813: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceContext) }() - case 814: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceEncoding) }() - case 815: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceFile) }() - case 816: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceLocation) }() - case 817: try { try decoder.decodeSingularInt32Field(value: &_storage._span) }() - case 818: try { try decoder.decodeSingularInt32Field(value: &_storage._split) }() - case 819: try { try decoder.decodeSingularInt32Field(value: &_storage._start) }() - case 820: try { try decoder.decodeSingularInt32Field(value: &_storage._startArray) }() - case 821: try { try decoder.decodeSingularInt32Field(value: &_storage._startArrayObject) }() - case 822: try { try decoder.decodeSingularInt32Field(value: &_storage._startField) }() - case 823: try { try decoder.decodeSingularInt32Field(value: &_storage._startIndex) }() - case 824: try { try decoder.decodeSingularInt32Field(value: &_storage._startMessageField) }() - case 825: try { try decoder.decodeSingularInt32Field(value: &_storage._startObject) }() - case 826: try { try decoder.decodeSingularInt32Field(value: &_storage._startRegularField) }() - case 827: try { try decoder.decodeSingularInt32Field(value: &_storage._state) }() - case 828: try { try decoder.decodeSingularInt32Field(value: &_storage._static) }() - case 829: try { try decoder.decodeSingularInt32Field(value: &_storage._staticString) }() - case 830: try { try decoder.decodeSingularInt32Field(value: &_storage._storage) }() - case 831: try { try decoder.decodeSingularInt32Field(value: &_storage._string) }() - case 832: try { try decoder.decodeSingularInt32Field(value: &_storage._stringLiteral) }() - case 833: try { try decoder.decodeSingularInt32Field(value: &_storage._stringLiteralType) }() - case 834: try { try decoder.decodeSingularInt32Field(value: &_storage._stringResult) }() - case 835: try { try decoder.decodeSingularInt32Field(value: &_storage._stringValue) }() - case 836: try { try decoder.decodeSingularInt32Field(value: &_storage._struct) }() - case 837: try { try decoder.decodeSingularInt32Field(value: &_storage._structValue) }() - case 838: try { try decoder.decodeSingularInt32Field(value: &_storage._subDecoder) }() - case 839: try { try decoder.decodeSingularInt32Field(value: &_storage._subscript) }() - case 840: try { try decoder.decodeSingularInt32Field(value: &_storage._subVisitor) }() - case 841: try { try decoder.decodeSingularInt32Field(value: &_storage._swift) }() - case 842: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftPrefix) }() - case 843: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftProtobufContiguousBytes) }() - case 844: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftProtobufError) }() - case 845: try { try decoder.decodeSingularInt32Field(value: &_storage._syntax) }() - case 846: try { try decoder.decodeSingularInt32Field(value: &_storage._t) }() - case 847: try { try decoder.decodeSingularInt32Field(value: &_storage._tag) }() - case 848: try { try decoder.decodeSingularInt32Field(value: &_storage._targets) }() - case 849: try { try decoder.decodeSingularInt32Field(value: &_storage._terminator) }() - case 850: try { try decoder.decodeSingularInt32Field(value: &_storage._testDecoder) }() - case 851: try { try decoder.decodeSingularInt32Field(value: &_storage._text) }() - case 852: try { try decoder.decodeSingularInt32Field(value: &_storage._textDecoder) }() - case 853: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecoder) }() - case 854: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecodingError) }() - case 855: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecodingOptions) }() - case 856: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatEncodingOptions) }() - case 857: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatEncodingVisitor) }() - case 858: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatString) }() - case 859: try { try decoder.decodeSingularInt32Field(value: &_storage._throwOrIgnore) }() - case 860: try { try decoder.decodeSingularInt32Field(value: &_storage._throws) }() - case 861: try { try decoder.decodeSingularInt32Field(value: &_storage._timeInterval) }() - case 862: try { try decoder.decodeSingularInt32Field(value: &_storage._timeIntervalSince1970) }() - case 863: try { try decoder.decodeSingularInt32Field(value: &_storage._timeIntervalSinceReferenceDate) }() - case 864: try { try decoder.decodeSingularInt32Field(value: &_storage._timestamp) }() - case 865: try { try decoder.decodeSingularInt32Field(value: &_storage._tooLarge) }() - case 866: try { try decoder.decodeSingularInt32Field(value: &_storage._total) }() - case 867: try { try decoder.decodeSingularInt32Field(value: &_storage._totalArrayDepth) }() - case 868: try { try decoder.decodeSingularInt32Field(value: &_storage._totalSize) }() - case 869: try { try decoder.decodeSingularInt32Field(value: &_storage._trailingComments) }() - case 870: try { try decoder.decodeSingularInt32Field(value: &_storage._traverse) }() - case 871: try { try decoder.decodeSingularInt32Field(value: &_storage._true) }() - case 872: try { try decoder.decodeSingularInt32Field(value: &_storage._try) }() - case 873: try { try decoder.decodeSingularInt32Field(value: &_storage._type) }() - case 874: try { try decoder.decodeSingularInt32Field(value: &_storage._typealias) }() - case 875: try { try decoder.decodeSingularInt32Field(value: &_storage._typeEnum) }() - case 876: try { try decoder.decodeSingularInt32Field(value: &_storage._typeName) }() - case 877: try { try decoder.decodeSingularInt32Field(value: &_storage._typePrefix) }() - case 878: try { try decoder.decodeSingularInt32Field(value: &_storage._typeStart) }() - case 879: try { try decoder.decodeSingularInt32Field(value: &_storage._typeUnknown) }() - case 880: try { try decoder.decodeSingularInt32Field(value: &_storage._typeURL) }() - case 881: try { try decoder.decodeSingularInt32Field(value: &_storage._uint32) }() - case 882: try { try decoder.decodeSingularInt32Field(value: &_storage._uint32Value) }() - case 883: try { try decoder.decodeSingularInt32Field(value: &_storage._uint64) }() - case 884: try { try decoder.decodeSingularInt32Field(value: &_storage._uint64Value) }() - case 885: try { try decoder.decodeSingularInt32Field(value: &_storage._uint8) }() - case 886: try { try decoder.decodeSingularInt32Field(value: &_storage._unchecked) }() - case 887: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarLiteral) }() - case 888: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarLiteralType) }() - case 889: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalars) }() - case 890: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarView) }() - case 891: try { try decoder.decodeSingularInt32Field(value: &_storage._uninterpretedOption) }() - case 892: try { try decoder.decodeSingularInt32Field(value: &_storage._union) }() - case 893: try { try decoder.decodeSingularInt32Field(value: &_storage._uniqueStorage) }() - case 894: try { try decoder.decodeSingularInt32Field(value: &_storage._unknown) }() - case 895: try { try decoder.decodeSingularInt32Field(value: &_storage._unknownFields_p) }() - case 896: try { try decoder.decodeSingularInt32Field(value: &_storage._unknownStorage) }() - case 897: try { try decoder.decodeSingularInt32Field(value: &_storage._unpackTo) }() - case 898: try { try decoder.decodeSingularInt32Field(value: &_storage._unregisteredTypeURL) }() - case 899: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeBufferPointer) }() - case 900: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeMutablePointer) }() - case 901: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeMutableRawBufferPointer) }() - case 902: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeRawBufferPointer) }() - case 903: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeRawPointer) }() - case 904: try { try decoder.decodeSingularInt32Field(value: &_storage._unverifiedLazy) }() - case 905: try { try decoder.decodeSingularInt32Field(value: &_storage._updatedOptions) }() - case 906: try { try decoder.decodeSingularInt32Field(value: &_storage._url) }() - case 907: try { try decoder.decodeSingularInt32Field(value: &_storage._useDeterministicOrdering) }() - case 908: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8) }() - case 909: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8Ptr) }() - case 910: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8ToDouble) }() - case 911: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8Validation) }() - case 912: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8View) }() - case 913: try { try decoder.decodeSingularInt32Field(value: &_storage._v) }() - case 914: try { try decoder.decodeSingularInt32Field(value: &_storage._value) }() - case 915: try { try decoder.decodeSingularInt32Field(value: &_storage._valueField) }() - case 916: try { try decoder.decodeSingularInt32Field(value: &_storage._values) }() - case 917: try { try decoder.decodeSingularInt32Field(value: &_storage._valueType) }() - case 918: try { try decoder.decodeSingularInt32Field(value: &_storage._var) }() - case 919: try { try decoder.decodeSingularInt32Field(value: &_storage._verification) }() - case 920: try { try decoder.decodeSingularInt32Field(value: &_storage._verificationState) }() - case 921: try { try decoder.decodeSingularInt32Field(value: &_storage._version) }() - case 922: try { try decoder.decodeSingularInt32Field(value: &_storage._versionString) }() - case 923: try { try decoder.decodeSingularInt32Field(value: &_storage._visitExtensionFields) }() - case 924: try { try decoder.decodeSingularInt32Field(value: &_storage._visitExtensionFieldsAsMessageSet) }() - case 925: try { try decoder.decodeSingularInt32Field(value: &_storage._visitMapField) }() - case 926: try { try decoder.decodeSingularInt32Field(value: &_storage._visitor) }() - case 927: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPacked) }() - case 928: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedBoolField) }() - case 929: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedDoubleField) }() - case 930: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedEnumField) }() - case 931: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFixed32Field) }() - case 932: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFixed64Field) }() - case 933: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFloatField) }() - case 934: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedInt32Field) }() - case 935: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedInt64Field) }() - case 936: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSfixed32Field) }() - case 937: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSfixed64Field) }() - case 938: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSint32Field) }() - case 939: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSint64Field) }() - case 940: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedUint32Field) }() - case 941: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedUint64Field) }() - case 942: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeated) }() - case 943: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedBoolField) }() - case 944: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedBytesField) }() - case 945: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedDoubleField) }() - case 946: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedEnumField) }() - case 947: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFixed32Field) }() - case 948: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFixed64Field) }() - case 949: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFloatField) }() - case 950: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedGroupField) }() - case 951: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedInt32Field) }() - case 952: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedInt64Field) }() - case 953: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedMessageField) }() - case 954: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSfixed32Field) }() - case 955: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSfixed64Field) }() - case 956: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSint32Field) }() - case 957: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSint64Field) }() - case 958: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedStringField) }() - case 959: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedUint32Field) }() - case 960: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedUint64Field) }() - case 961: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingular) }() - case 962: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularBoolField) }() - case 963: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularBytesField) }() - case 964: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularDoubleField) }() - case 965: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularEnumField) }() - case 966: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFixed32Field) }() - case 967: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFixed64Field) }() - case 968: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFloatField) }() - case 969: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularGroupField) }() - case 970: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularInt32Field) }() - case 971: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularInt64Field) }() - case 972: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularMessageField) }() - case 973: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSfixed32Field) }() - case 974: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSfixed64Field) }() - case 975: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSint32Field) }() - case 976: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSint64Field) }() - case 977: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularStringField) }() - case 978: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularUint32Field) }() - case 979: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularUint64Field) }() - case 980: try { try decoder.decodeSingularInt32Field(value: &_storage._visitUnknown) }() - case 981: try { try decoder.decodeSingularInt32Field(value: &_storage._wasDecoded) }() - case 982: try { try decoder.decodeSingularInt32Field(value: &_storage._weak) }() - case 983: try { try decoder.decodeSingularInt32Field(value: &_storage._weakDependency) }() - case 984: try { try decoder.decodeSingularInt32Field(value: &_storage._where) }() - case 985: try { try decoder.decodeSingularInt32Field(value: &_storage._wireFormat) }() - case 986: try { try decoder.decodeSingularInt32Field(value: &_storage._with) }() - case 987: try { try decoder.decodeSingularInt32Field(value: &_storage._withUnsafeBytes) }() - case 988: try { try decoder.decodeSingularInt32Field(value: &_storage._withUnsafeMutableBytes) }() - case 989: try { try decoder.decodeSingularInt32Field(value: &_storage._work) }() - case 990: try { try decoder.decodeSingularInt32Field(value: &_storage._wrapped) }() - case 991: try { try decoder.decodeSingularInt32Field(value: &_storage._wrappedType) }() - case 992: try { try decoder.decodeSingularInt32Field(value: &_storage._wrappedValue) }() - case 993: try { try decoder.decodeSingularInt32Field(value: &_storage._written) }() - case 994: try { try decoder.decodeSingularInt32Field(value: &_storage._yday) }() + case 12: try { try decoder.decodeSingularInt32Field(value: &_storage._anyUnpackError) }() + case 13: try { try decoder.decodeSingularInt32Field(value: &_storage._api) }() + case 14: try { try decoder.decodeSingularInt32Field(value: &_storage._appended) }() + case 15: try { try decoder.decodeSingularInt32Field(value: &_storage._appendUintHex) }() + case 16: try { try decoder.decodeSingularInt32Field(value: &_storage._appendUnknown) }() + case 17: try { try decoder.decodeSingularInt32Field(value: &_storage._areAllInitialized) }() + case 18: try { try decoder.decodeSingularInt32Field(value: &_storage._array) }() + case 19: try { try decoder.decodeSingularInt32Field(value: &_storage._arrayDepth) }() + case 20: try { try decoder.decodeSingularInt32Field(value: &_storage._arrayLiteral) }() + case 21: try { try decoder.decodeSingularInt32Field(value: &_storage._arraySeparator) }() + case 22: try { try decoder.decodeSingularInt32Field(value: &_storage._as) }() + case 23: try { try decoder.decodeSingularInt32Field(value: &_storage._asciiOpenCurlyBracket) }() + case 24: try { try decoder.decodeSingularInt32Field(value: &_storage._asciiZero) }() + case 25: try { try decoder.decodeSingularInt32Field(value: &_storage._async) }() + case 26: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncIterator) }() + case 27: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncIteratorProtocol) }() + case 28: try { try decoder.decodeSingularInt32Field(value: &_storage._asyncMessageSequence) }() + case 29: try { try decoder.decodeSingularInt32Field(value: &_storage._available) }() + case 30: try { try decoder.decodeSingularInt32Field(value: &_storage._b) }() + case 31: try { try decoder.decodeSingularInt32Field(value: &_storage._base) }() + case 32: try { try decoder.decodeSingularInt32Field(value: &_storage._base64Values) }() + case 33: try { try decoder.decodeSingularInt32Field(value: &_storage._baseAddress) }() + case 34: try { try decoder.decodeSingularInt32Field(value: &_storage._baseType) }() + case 35: try { try decoder.decodeSingularInt32Field(value: &_storage._begin) }() + case 36: try { try decoder.decodeSingularInt32Field(value: &_storage._binary) }() + case 37: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecoder) }() + case 38: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecoding) }() + case 39: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecodingError) }() + case 40: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDecodingOptions) }() + case 41: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryDelimited) }() + case 42: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncoder) }() + case 43: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingError) }() + case 44: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingMessageSetSizeVisitor) }() + case 45: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingMessageSetVisitor) }() + case 46: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingOptions) }() + case 47: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingSizeVisitor) }() + case 48: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryEncodingVisitor) }() + case 49: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryOptions) }() + case 50: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryProtobufDelimitedMessages) }() + case 51: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryStreamDecoding) }() + case 52: try { try decoder.decodeSingularInt32Field(value: &_storage._binaryStreamDecodingError) }() + case 53: try { try decoder.decodeSingularInt32Field(value: &_storage._bitPattern) }() + case 54: try { try decoder.decodeSingularInt32Field(value: &_storage._body) }() + case 55: try { try decoder.decodeSingularInt32Field(value: &_storage._bool) }() + case 56: try { try decoder.decodeSingularInt32Field(value: &_storage._booleanLiteral) }() + case 57: try { try decoder.decodeSingularInt32Field(value: &_storage._booleanLiteralType) }() + case 58: try { try decoder.decodeSingularInt32Field(value: &_storage._boolValue) }() + case 59: try { try decoder.decodeSingularInt32Field(value: &_storage._buffer) }() + case 60: try { try decoder.decodeSingularInt32Field(value: &_storage._bytes) }() + case 61: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesInGroup) }() + case 62: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesNeeded) }() + case 63: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesRead) }() + case 64: try { try decoder.decodeSingularInt32Field(value: &_storage._bytesValue) }() + case 65: try { try decoder.decodeSingularInt32Field(value: &_storage._c) }() + case 66: try { try decoder.decodeSingularInt32Field(value: &_storage._capitalizeNext) }() + case 67: try { try decoder.decodeSingularInt32Field(value: &_storage._cardinality) }() + case 68: try { try decoder.decodeSingularInt32Field(value: &_storage._caseIterable) }() + case 69: try { try decoder.decodeSingularInt32Field(value: &_storage._ccEnableArenas) }() + case 70: try { try decoder.decodeSingularInt32Field(value: &_storage._ccGenericServices) }() + case 71: try { try decoder.decodeSingularInt32Field(value: &_storage._character) }() + case 72: try { try decoder.decodeSingularInt32Field(value: &_storage._chars) }() + case 73: try { try decoder.decodeSingularInt32Field(value: &_storage._chunk) }() + case 74: try { try decoder.decodeSingularInt32Field(value: &_storage._class) }() + case 75: try { try decoder.decodeSingularInt32Field(value: &_storage._clearAggregateValue_p) }() + case 76: try { try decoder.decodeSingularInt32Field(value: &_storage._clearAllowAlias_p) }() + case 77: try { try decoder.decodeSingularInt32Field(value: &_storage._clearBegin_p) }() + case 78: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCcEnableArenas_p) }() + case 79: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCcGenericServices_p) }() + case 80: try { try decoder.decodeSingularInt32Field(value: &_storage._clearClientStreaming_p) }() + case 81: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCsharpNamespace_p) }() + case 82: try { try decoder.decodeSingularInt32Field(value: &_storage._clearCtype_p) }() + case 83: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDebugRedact_p) }() + case 84: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDefaultValue_p) }() + case 85: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecated_p) }() + case 86: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecatedLegacyJsonFieldConflicts_p) }() + case 87: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDeprecationWarning_p) }() + case 88: try { try decoder.decodeSingularInt32Field(value: &_storage._clearDoubleValue_p) }() + case 89: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEdition_p) }() + case 90: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionDeprecated_p) }() + case 91: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionIntroduced_p) }() + case 92: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEditionRemoved_p) }() + case 93: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEnd_p) }() + case 94: try { try decoder.decodeSingularInt32Field(value: &_storage._clearEnumType_p) }() + case 95: try { try decoder.decodeSingularInt32Field(value: &_storage._clearExtendee_p) }() + case 96: try { try decoder.decodeSingularInt32Field(value: &_storage._clearExtensionValue_p) }() + case 97: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFeatures_p) }() + case 98: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFeatureSupport_p) }() + case 99: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFieldPresence_p) }() + case 100: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFixedFeatures_p) }() + case 101: try { try decoder.decodeSingularInt32Field(value: &_storage._clearFullName_p) }() + case 102: try { try decoder.decodeSingularInt32Field(value: &_storage._clearGoPackage_p) }() + case 103: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIdempotencyLevel_p) }() + case 104: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIdentifierValue_p) }() + case 105: try { try decoder.decodeSingularInt32Field(value: &_storage._clearInputType_p) }() + case 106: try { try decoder.decodeSingularInt32Field(value: &_storage._clearIsExtension_p) }() + case 107: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaGenerateEqualsAndHash_p) }() + case 108: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaGenericServices_p) }() + case 109: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaMultipleFiles_p) }() + case 110: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaOuterClassname_p) }() + case 111: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaPackage_p) }() + case 112: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJavaStringCheckUtf8_p) }() + case 113: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJsonFormat_p) }() + case 114: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJsonName_p) }() + case 115: try { try decoder.decodeSingularInt32Field(value: &_storage._clearJstype_p) }() + case 116: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLabel_p) }() + case 117: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLazy_p) }() + case 118: try { try decoder.decodeSingularInt32Field(value: &_storage._clearLeadingComments_p) }() + case 119: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMapEntry_p) }() + case 120: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMaximumEdition_p) }() + case 121: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMessageEncoding_p) }() + case 122: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMessageSetWireFormat_p) }() + case 123: try { try decoder.decodeSingularInt32Field(value: &_storage._clearMinimumEdition_p) }() + case 124: try { try decoder.decodeSingularInt32Field(value: &_storage._clearName_p) }() + case 125: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNamePart_p) }() + case 126: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNegativeIntValue_p) }() + case 127: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNoStandardDescriptorAccessor_p) }() + case 128: try { try decoder.decodeSingularInt32Field(value: &_storage._clearNumber_p) }() + case 129: try { try decoder.decodeSingularInt32Field(value: &_storage._clearObjcClassPrefix_p) }() + case 130: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOneofIndex_p) }() + case 131: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOptimizeFor_p) }() + case 132: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOptions_p) }() + case 133: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOutputType_p) }() + case 134: try { try decoder.decodeSingularInt32Field(value: &_storage._clearOverridableFeatures_p) }() + case 135: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPackage_p) }() + case 136: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPacked_p) }() + case 137: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpClassPrefix_p) }() + case 138: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpMetadataNamespace_p) }() + case 139: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPhpNamespace_p) }() + case 140: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPositiveIntValue_p) }() + case 141: try { try decoder.decodeSingularInt32Field(value: &_storage._clearProto3Optional_p) }() + case 142: try { try decoder.decodeSingularInt32Field(value: &_storage._clearPyGenericServices_p) }() + case 143: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRepeated_p) }() + case 144: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRepeatedFieldEncoding_p) }() + case 145: try { try decoder.decodeSingularInt32Field(value: &_storage._clearReserved_p) }() + case 146: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRetention_p) }() + case 147: try { try decoder.decodeSingularInt32Field(value: &_storage._clearRubyPackage_p) }() + case 148: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSemantic_p) }() + case 149: try { try decoder.decodeSingularInt32Field(value: &_storage._clearServerStreaming_p) }() + case 150: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceCodeInfo_p) }() + case 151: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceContext_p) }() + case 152: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSourceFile_p) }() + case 153: try { try decoder.decodeSingularInt32Field(value: &_storage._clearStart_p) }() + case 154: try { try decoder.decodeSingularInt32Field(value: &_storage._clearStringValue_p) }() + case 155: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSwiftPrefix_p) }() + case 156: try { try decoder.decodeSingularInt32Field(value: &_storage._clearSyntax_p) }() + case 157: try { try decoder.decodeSingularInt32Field(value: &_storage._clearTrailingComments_p) }() + case 158: try { try decoder.decodeSingularInt32Field(value: &_storage._clearType_p) }() + case 159: try { try decoder.decodeSingularInt32Field(value: &_storage._clearTypeName_p) }() + case 160: try { try decoder.decodeSingularInt32Field(value: &_storage._clearUnverifiedLazy_p) }() + case 161: try { try decoder.decodeSingularInt32Field(value: &_storage._clearUtf8Validation_p) }() + case 162: try { try decoder.decodeSingularInt32Field(value: &_storage._clearValue_p) }() + case 163: try { try decoder.decodeSingularInt32Field(value: &_storage._clearVerification_p) }() + case 164: try { try decoder.decodeSingularInt32Field(value: &_storage._clearWeak_p) }() + case 165: try { try decoder.decodeSingularInt32Field(value: &_storage._clientStreaming) }() + case 166: try { try decoder.decodeSingularInt32Field(value: &_storage._code) }() + case 167: try { try decoder.decodeSingularInt32Field(value: &_storage._codePoint) }() + case 168: try { try decoder.decodeSingularInt32Field(value: &_storage._codeUnits) }() + case 169: try { try decoder.decodeSingularInt32Field(value: &_storage._collection) }() + case 170: try { try decoder.decodeSingularInt32Field(value: &_storage._com) }() + case 171: try { try decoder.decodeSingularInt32Field(value: &_storage._comma) }() + case 172: try { try decoder.decodeSingularInt32Field(value: &_storage._consumedBytes) }() + case 173: try { try decoder.decodeSingularInt32Field(value: &_storage._contentsOf) }() + case 174: try { try decoder.decodeSingularInt32Field(value: &_storage._copy) }() + case 175: try { try decoder.decodeSingularInt32Field(value: &_storage._count) }() + case 176: try { try decoder.decodeSingularInt32Field(value: &_storage._countVarintsInBuffer) }() + case 177: try { try decoder.decodeSingularInt32Field(value: &_storage._csharpNamespace) }() + case 178: try { try decoder.decodeSingularInt32Field(value: &_storage._ctype) }() + case 179: try { try decoder.decodeSingularInt32Field(value: &_storage._customCodable) }() + case 180: try { try decoder.decodeSingularInt32Field(value: &_storage._customDebugStringConvertible) }() + case 181: try { try decoder.decodeSingularInt32Field(value: &_storage._customStringConvertible) }() + case 182: try { try decoder.decodeSingularInt32Field(value: &_storage._d) }() + case 183: try { try decoder.decodeSingularInt32Field(value: &_storage._data) }() + case 184: try { try decoder.decodeSingularInt32Field(value: &_storage._dataResult) }() + case 185: try { try decoder.decodeSingularInt32Field(value: &_storage._date) }() + case 186: try { try decoder.decodeSingularInt32Field(value: &_storage._daySec) }() + case 187: try { try decoder.decodeSingularInt32Field(value: &_storage._daysSinceEpoch) }() + case 188: try { try decoder.decodeSingularInt32Field(value: &_storage._debugDescription_p) }() + case 189: try { try decoder.decodeSingularInt32Field(value: &_storage._debugRedact) }() + case 190: try { try decoder.decodeSingularInt32Field(value: &_storage._declaration) }() + case 191: try { try decoder.decodeSingularInt32Field(value: &_storage._decoded) }() + case 192: try { try decoder.decodeSingularInt32Field(value: &_storage._decodedFromJsonnull) }() + case 193: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeExtensionField) }() + case 194: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeExtensionFieldsAsMessageSet) }() + case 195: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeJson) }() + case 196: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeMapField) }() + case 197: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeMessage) }() + case 198: try { try decoder.decodeSingularInt32Field(value: &_storage._decoder) }() + case 199: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeated) }() + case 200: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedBoolField) }() + case 201: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedBytesField) }() + case 202: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedDoubleField) }() + case 203: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedEnumField) }() + case 204: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFixed32Field) }() + case 205: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFixed64Field) }() + case 206: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedFloatField) }() + case 207: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedGroupField) }() + case 208: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedInt32Field) }() + case 209: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedInt64Field) }() + case 210: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedMessageField) }() + case 211: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSfixed32Field) }() + case 212: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSfixed64Field) }() + case 213: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSint32Field) }() + case 214: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedSint64Field) }() + case 215: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedStringField) }() + case 216: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedUint32Field) }() + case 217: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeRepeatedUint64Field) }() + case 218: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingular) }() + case 219: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularBoolField) }() + case 220: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularBytesField) }() + case 221: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularDoubleField) }() + case 222: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularEnumField) }() + case 223: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFixed32Field) }() + case 224: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFixed64Field) }() + case 225: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularFloatField) }() + case 226: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularGroupField) }() + case 227: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularInt32Field) }() + case 228: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularInt64Field) }() + case 229: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularMessageField) }() + case 230: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSfixed32Field) }() + case 231: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSfixed64Field) }() + case 232: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSint32Field) }() + case 233: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularSint64Field) }() + case 234: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularStringField) }() + case 235: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularUint32Field) }() + case 236: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeSingularUint64Field) }() + case 237: try { try decoder.decodeSingularInt32Field(value: &_storage._decodeTextFormat) }() + case 238: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultAnyTypeUrlprefix) }() + case 239: try { try decoder.decodeSingularInt32Field(value: &_storage._defaults) }() + case 240: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultValue) }() + case 241: try { try decoder.decodeSingularInt32Field(value: &_storage._dependency) }() + case 242: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecated) }() + case 243: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecatedLegacyJsonFieldConflicts) }() + case 244: try { try decoder.decodeSingularInt32Field(value: &_storage._deprecationWarning) }() + case 245: try { try decoder.decodeSingularInt32Field(value: &_storage._description_p) }() + case 246: try { try decoder.decodeSingularInt32Field(value: &_storage._descriptorProto) }() + case 247: try { try decoder.decodeSingularInt32Field(value: &_storage._dictionary) }() + case 248: try { try decoder.decodeSingularInt32Field(value: &_storage._dictionaryLiteral) }() + case 249: try { try decoder.decodeSingularInt32Field(value: &_storage._digit) }() + case 250: try { try decoder.decodeSingularInt32Field(value: &_storage._digit0) }() + case 251: try { try decoder.decodeSingularInt32Field(value: &_storage._digit1) }() + case 252: try { try decoder.decodeSingularInt32Field(value: &_storage._digitCount) }() + case 253: try { try decoder.decodeSingularInt32Field(value: &_storage._digits) }() + case 254: try { try decoder.decodeSingularInt32Field(value: &_storage._digitValue) }() + case 255: try { try decoder.decodeSingularInt32Field(value: &_storage._discardableResult) }() + case 256: try { try decoder.decodeSingularInt32Field(value: &_storage._discardUnknownFields) }() + case 257: try { try decoder.decodeSingularInt32Field(value: &_storage._double) }() + case 258: try { try decoder.decodeSingularInt32Field(value: &_storage._doubleValue) }() + case 259: try { try decoder.decodeSingularInt32Field(value: &_storage._duration) }() + case 260: try { try decoder.decodeSingularInt32Field(value: &_storage._e) }() + case 261: try { try decoder.decodeSingularInt32Field(value: &_storage._edition) }() + case 262: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDefault) }() + case 263: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDefaults) }() + case 264: try { try decoder.decodeSingularInt32Field(value: &_storage._editionDeprecated) }() + case 265: try { try decoder.decodeSingularInt32Field(value: &_storage._editionIntroduced) }() + case 266: try { try decoder.decodeSingularInt32Field(value: &_storage._editionRemoved) }() + case 267: try { try decoder.decodeSingularInt32Field(value: &_storage._element) }() + case 268: try { try decoder.decodeSingularInt32Field(value: &_storage._elements) }() + case 269: try { try decoder.decodeSingularInt32Field(value: &_storage._emitExtensionFieldName) }() + case 270: try { try decoder.decodeSingularInt32Field(value: &_storage._emitFieldName) }() + case 271: try { try decoder.decodeSingularInt32Field(value: &_storage._emitFieldNumber) }() + case 272: try { try decoder.decodeSingularInt32Field(value: &_storage._empty) }() + case 273: try { try decoder.decodeSingularInt32Field(value: &_storage._encodeAsBytes) }() + case 274: try { try decoder.decodeSingularInt32Field(value: &_storage._encoded) }() + case 275: try { try decoder.decodeSingularInt32Field(value: &_storage._encodedJsonstring) }() + case 276: try { try decoder.decodeSingularInt32Field(value: &_storage._encodedSize) }() + case 277: try { try decoder.decodeSingularInt32Field(value: &_storage._encodeField) }() + case 278: try { try decoder.decodeSingularInt32Field(value: &_storage._encoder) }() + case 279: try { try decoder.decodeSingularInt32Field(value: &_storage._end) }() + case 280: try { try decoder.decodeSingularInt32Field(value: &_storage._endArray) }() + case 281: try { try decoder.decodeSingularInt32Field(value: &_storage._endMessageField) }() + case 282: try { try decoder.decodeSingularInt32Field(value: &_storage._endObject) }() + case 283: try { try decoder.decodeSingularInt32Field(value: &_storage._endRegularField) }() + case 284: try { try decoder.decodeSingularInt32Field(value: &_storage._enum) }() + case 285: try { try decoder.decodeSingularInt32Field(value: &_storage._enumDescriptorProto) }() + case 286: try { try decoder.decodeSingularInt32Field(value: &_storage._enumOptions) }() + case 287: try { try decoder.decodeSingularInt32Field(value: &_storage._enumReservedRange) }() + case 288: try { try decoder.decodeSingularInt32Field(value: &_storage._enumType) }() + case 289: try { try decoder.decodeSingularInt32Field(value: &_storage._enumvalue) }() + case 290: try { try decoder.decodeSingularInt32Field(value: &_storage._enumValueDescriptorProto) }() + case 291: try { try decoder.decodeSingularInt32Field(value: &_storage._enumValueOptions) }() + case 292: try { try decoder.decodeSingularInt32Field(value: &_storage._equatable) }() + case 293: try { try decoder.decodeSingularInt32Field(value: &_storage._error) }() + case 294: try { try decoder.decodeSingularInt32Field(value: &_storage._expressibleByArrayLiteral) }() + case 295: try { try decoder.decodeSingularInt32Field(value: &_storage._expressibleByDictionaryLiteral) }() + case 296: try { try decoder.decodeSingularInt32Field(value: &_storage._ext) }() + case 297: try { try decoder.decodeSingularInt32Field(value: &_storage._extDecoder) }() + case 298: try { try decoder.decodeSingularInt32Field(value: &_storage._extendedGraphemeClusterLiteral) }() + case 299: try { try decoder.decodeSingularInt32Field(value: &_storage._extendedGraphemeClusterLiteralType) }() + case 300: try { try decoder.decodeSingularInt32Field(value: &_storage._extendee) }() + case 301: try { try decoder.decodeSingularInt32Field(value: &_storage._extensibleMessage) }() + case 302: try { try decoder.decodeSingularInt32Field(value: &_storage._extension) }() + case 303: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionField) }() + case 304: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionFieldNumber) }() + case 305: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionFieldValueSet) }() + case 306: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionMap) }() + case 307: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionRange) }() + case 308: try { try decoder.decodeSingularInt32Field(value: &_storage._extensionRangeOptions) }() + case 309: try { try decoder.decodeSingularInt32Field(value: &_storage._extensions) }() + case 310: try { try decoder.decodeSingularInt32Field(value: &_storage._extras) }() + case 311: try { try decoder.decodeSingularInt32Field(value: &_storage._f) }() + case 312: try { try decoder.decodeSingularInt32Field(value: &_storage._false) }() + case 313: try { try decoder.decodeSingularInt32Field(value: &_storage._features) }() + case 314: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSet) }() + case 315: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSetDefaults) }() + case 316: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSetEditionDefault) }() + case 317: try { try decoder.decodeSingularInt32Field(value: &_storage._featureSupport) }() + case 318: try { try decoder.decodeSingularInt32Field(value: &_storage._field) }() + case 319: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldData) }() + case 320: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldDescriptorProto) }() + case 321: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldMask) }() + case 322: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldName) }() + case 323: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNameCount) }() + case 324: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNum) }() + case 325: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNumber) }() + case 326: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldNumberForProto) }() + case 327: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldOptions) }() + case 328: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldPresence) }() + case 329: try { try decoder.decodeSingularInt32Field(value: &_storage._fields) }() + case 330: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldSize) }() + case 331: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldTag) }() + case 332: try { try decoder.decodeSingularInt32Field(value: &_storage._fieldType) }() + case 333: try { try decoder.decodeSingularInt32Field(value: &_storage._file) }() + case 334: try { try decoder.decodeSingularInt32Field(value: &_storage._fileDescriptorProto) }() + case 335: try { try decoder.decodeSingularInt32Field(value: &_storage._fileDescriptorSet) }() + case 336: try { try decoder.decodeSingularInt32Field(value: &_storage._fileName) }() + case 337: try { try decoder.decodeSingularInt32Field(value: &_storage._fileOptions) }() + case 338: try { try decoder.decodeSingularInt32Field(value: &_storage._filter) }() + case 339: try { try decoder.decodeSingularInt32Field(value: &_storage._final) }() + case 340: try { try decoder.decodeSingularInt32Field(value: &_storage._finiteOnly) }() + case 341: try { try decoder.decodeSingularInt32Field(value: &_storage._first) }() + case 342: try { try decoder.decodeSingularInt32Field(value: &_storage._firstItem) }() + case 343: try { try decoder.decodeSingularInt32Field(value: &_storage._fixedFeatures) }() + case 344: try { try decoder.decodeSingularInt32Field(value: &_storage._float) }() + case 345: try { try decoder.decodeSingularInt32Field(value: &_storage._floatLiteral) }() + case 346: try { try decoder.decodeSingularInt32Field(value: &_storage._floatLiteralType) }() + case 347: try { try decoder.decodeSingularInt32Field(value: &_storage._floatValue) }() + case 348: try { try decoder.decodeSingularInt32Field(value: &_storage._forMessageName) }() + case 349: try { try decoder.decodeSingularInt32Field(value: &_storage._formUnion) }() + case 350: try { try decoder.decodeSingularInt32Field(value: &_storage._forReadingFrom) }() + case 351: try { try decoder.decodeSingularInt32Field(value: &_storage._forTypeURL) }() + case 352: try { try decoder.decodeSingularInt32Field(value: &_storage._forwardParser) }() + case 353: try { try decoder.decodeSingularInt32Field(value: &_storage._forWritingInto) }() + case 354: try { try decoder.decodeSingularInt32Field(value: &_storage._from) }() + case 355: try { try decoder.decodeSingularInt32Field(value: &_storage._fromAscii2) }() + case 356: try { try decoder.decodeSingularInt32Field(value: &_storage._fromAscii4) }() + case 357: try { try decoder.decodeSingularInt32Field(value: &_storage._fromByteOffset) }() + case 358: try { try decoder.decodeSingularInt32Field(value: &_storage._fromHexDigit) }() + case 359: try { try decoder.decodeSingularInt32Field(value: &_storage._fullName) }() + case 360: try { try decoder.decodeSingularInt32Field(value: &_storage._func) }() + case 361: try { try decoder.decodeSingularInt32Field(value: &_storage._function) }() + case 362: try { try decoder.decodeSingularInt32Field(value: &_storage._g) }() + case 363: try { try decoder.decodeSingularInt32Field(value: &_storage._generatedCodeInfo) }() + case 364: try { try decoder.decodeSingularInt32Field(value: &_storage._get) }() + case 365: try { try decoder.decodeSingularInt32Field(value: &_storage._getExtensionValue) }() + case 366: try { try decoder.decodeSingularInt32Field(value: &_storage._googleapis) }() + case 367: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufAny) }() + case 368: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufApi) }() + case 369: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufBoolValue) }() + case 370: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufBytesValue) }() + case 371: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDescriptorProto) }() + case 372: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDoubleValue) }() + case 373: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufDuration) }() + case 374: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEdition) }() + case 375: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEmpty) }() + case 376: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnum) }() + case 377: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumDescriptorProto) }() + case 378: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumOptions) }() + case 379: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValue) }() + case 380: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValueDescriptorProto) }() + case 381: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufEnumValueOptions) }() + case 382: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufExtensionRangeOptions) }() + case 383: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFeatureSet) }() + case 384: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFeatureSetDefaults) }() + case 385: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufField) }() + case 386: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldDescriptorProto) }() + case 387: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldMask) }() + case 388: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFieldOptions) }() + case 389: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileDescriptorProto) }() + case 390: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileDescriptorSet) }() + case 391: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFileOptions) }() + case 392: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufFloatValue) }() + case 393: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufGeneratedCodeInfo) }() + case 394: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufInt32Value) }() + case 395: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufInt64Value) }() + case 396: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufListValue) }() + case 397: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMessageOptions) }() + case 398: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethod) }() + case 399: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethodDescriptorProto) }() + case 400: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMethodOptions) }() + case 401: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufMixin) }() + case 402: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufNullValue) }() + case 403: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOneofDescriptorProto) }() + case 404: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOneofOptions) }() + case 405: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufOption) }() + case 406: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufServiceDescriptorProto) }() + case 407: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufServiceOptions) }() + case 408: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSourceCodeInfo) }() + case 409: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSourceContext) }() + case 410: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufStringValue) }() + case 411: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufStruct) }() + case 412: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufSyntax) }() + case 413: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufTimestamp) }() + case 414: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufType) }() + case 415: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUint32Value) }() + case 416: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUint64Value) }() + case 417: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufUninterpretedOption) }() + case 418: try { try decoder.decodeSingularInt32Field(value: &_storage._googleProtobufValue) }() + case 419: try { try decoder.decodeSingularInt32Field(value: &_storage._goPackage) }() + case 420: try { try decoder.decodeSingularInt32Field(value: &_storage._group) }() + case 421: try { try decoder.decodeSingularInt32Field(value: &_storage._groupFieldNumberStack) }() + case 422: try { try decoder.decodeSingularInt32Field(value: &_storage._groupSize) }() + case 423: try { try decoder.decodeSingularInt32Field(value: &_storage._hadOneofValue) }() + case 424: try { try decoder.decodeSingularInt32Field(value: &_storage._handleConflictingOneOf) }() + case 425: try { try decoder.decodeSingularInt32Field(value: &_storage._hasAggregateValue_p) }() + case 426: try { try decoder.decodeSingularInt32Field(value: &_storage._hasAllowAlias_p) }() + case 427: try { try decoder.decodeSingularInt32Field(value: &_storage._hasBegin_p) }() + case 428: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCcEnableArenas_p) }() + case 429: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCcGenericServices_p) }() + case 430: try { try decoder.decodeSingularInt32Field(value: &_storage._hasClientStreaming_p) }() + case 431: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCsharpNamespace_p) }() + case 432: try { try decoder.decodeSingularInt32Field(value: &_storage._hasCtype_p) }() + case 433: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDebugRedact_p) }() + case 434: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDefaultValue_p) }() + case 435: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecated_p) }() + case 436: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecatedLegacyJsonFieldConflicts_p) }() + case 437: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDeprecationWarning_p) }() + case 438: try { try decoder.decodeSingularInt32Field(value: &_storage._hasDoubleValue_p) }() + case 439: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEdition_p) }() + case 440: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionDeprecated_p) }() + case 441: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionIntroduced_p) }() + case 442: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEditionRemoved_p) }() + case 443: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEnd_p) }() + case 444: try { try decoder.decodeSingularInt32Field(value: &_storage._hasEnumType_p) }() + case 445: try { try decoder.decodeSingularInt32Field(value: &_storage._hasExtendee_p) }() + case 446: try { try decoder.decodeSingularInt32Field(value: &_storage._hasExtensionValue_p) }() + case 447: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFeatures_p) }() + case 448: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFeatureSupport_p) }() + case 449: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFieldPresence_p) }() + case 450: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFixedFeatures_p) }() + case 451: try { try decoder.decodeSingularInt32Field(value: &_storage._hasFullName_p) }() + case 452: try { try decoder.decodeSingularInt32Field(value: &_storage._hasGoPackage_p) }() + case 453: try { try decoder.decodeSingularInt32Field(value: &_storage._hash) }() + case 454: try { try decoder.decodeSingularInt32Field(value: &_storage._hashable) }() + case 455: try { try decoder.decodeSingularInt32Field(value: &_storage._hasher) }() + case 456: try { try decoder.decodeSingularInt32Field(value: &_storage._hashVisitor) }() + case 457: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIdempotencyLevel_p) }() + case 458: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIdentifierValue_p) }() + case 459: try { try decoder.decodeSingularInt32Field(value: &_storage._hasInputType_p) }() + case 460: try { try decoder.decodeSingularInt32Field(value: &_storage._hasIsExtension_p) }() + case 461: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaGenerateEqualsAndHash_p) }() + case 462: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaGenericServices_p) }() + case 463: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaMultipleFiles_p) }() + case 464: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaOuterClassname_p) }() + case 465: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaPackage_p) }() + case 466: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJavaStringCheckUtf8_p) }() + case 467: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJsonFormat_p) }() + case 468: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJsonName_p) }() + case 469: try { try decoder.decodeSingularInt32Field(value: &_storage._hasJstype_p) }() + case 470: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLabel_p) }() + case 471: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLazy_p) }() + case 472: try { try decoder.decodeSingularInt32Field(value: &_storage._hasLeadingComments_p) }() + case 473: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMapEntry_p) }() + case 474: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMaximumEdition_p) }() + case 475: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMessageEncoding_p) }() + case 476: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMessageSetWireFormat_p) }() + case 477: try { try decoder.decodeSingularInt32Field(value: &_storage._hasMinimumEdition_p) }() + case 478: try { try decoder.decodeSingularInt32Field(value: &_storage._hasName_p) }() + case 479: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNamePart_p) }() + case 480: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNegativeIntValue_p) }() + case 481: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNoStandardDescriptorAccessor_p) }() + case 482: try { try decoder.decodeSingularInt32Field(value: &_storage._hasNumber_p) }() + case 483: try { try decoder.decodeSingularInt32Field(value: &_storage._hasObjcClassPrefix_p) }() + case 484: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOneofIndex_p) }() + case 485: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOptimizeFor_p) }() + case 486: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOptions_p) }() + case 487: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOutputType_p) }() + case 488: try { try decoder.decodeSingularInt32Field(value: &_storage._hasOverridableFeatures_p) }() + case 489: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPackage_p) }() + case 490: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPacked_p) }() + case 491: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpClassPrefix_p) }() + case 492: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpMetadataNamespace_p) }() + case 493: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPhpNamespace_p) }() + case 494: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPositiveIntValue_p) }() + case 495: try { try decoder.decodeSingularInt32Field(value: &_storage._hasProto3Optional_p) }() + case 496: try { try decoder.decodeSingularInt32Field(value: &_storage._hasPyGenericServices_p) }() + case 497: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRepeated_p) }() + case 498: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRepeatedFieldEncoding_p) }() + case 499: try { try decoder.decodeSingularInt32Field(value: &_storage._hasReserved_p) }() + case 500: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRetention_p) }() + case 501: try { try decoder.decodeSingularInt32Field(value: &_storage._hasRubyPackage_p) }() + case 502: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSemantic_p) }() + case 503: try { try decoder.decodeSingularInt32Field(value: &_storage._hasServerStreaming_p) }() + case 504: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceCodeInfo_p) }() + case 505: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceContext_p) }() + case 506: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSourceFile_p) }() + case 507: try { try decoder.decodeSingularInt32Field(value: &_storage._hasStart_p) }() + case 508: try { try decoder.decodeSingularInt32Field(value: &_storage._hasStringValue_p) }() + case 509: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSwiftPrefix_p) }() + case 510: try { try decoder.decodeSingularInt32Field(value: &_storage._hasSyntax_p) }() + case 511: try { try decoder.decodeSingularInt32Field(value: &_storage._hasTrailingComments_p) }() + case 512: try { try decoder.decodeSingularInt32Field(value: &_storage._hasType_p) }() + case 513: try { try decoder.decodeSingularInt32Field(value: &_storage._hasTypeName_p) }() + case 514: try { try decoder.decodeSingularInt32Field(value: &_storage._hasUnverifiedLazy_p) }() + case 515: try { try decoder.decodeSingularInt32Field(value: &_storage._hasUtf8Validation_p) }() + case 516: try { try decoder.decodeSingularInt32Field(value: &_storage._hasValue_p) }() + case 517: try { try decoder.decodeSingularInt32Field(value: &_storage._hasVerification_p) }() + case 518: try { try decoder.decodeSingularInt32Field(value: &_storage._hasWeak_p) }() + case 519: try { try decoder.decodeSingularInt32Field(value: &_storage._hour) }() + case 520: try { try decoder.decodeSingularInt32Field(value: &_storage._i) }() + case 521: try { try decoder.decodeSingularInt32Field(value: &_storage._idempotencyLevel) }() + case 522: try { try decoder.decodeSingularInt32Field(value: &_storage._identifierValue) }() + case 523: try { try decoder.decodeSingularInt32Field(value: &_storage._if) }() + case 524: try { try decoder.decodeSingularInt32Field(value: &_storage._ignoreUnknownExtensionFields) }() + case 525: try { try decoder.decodeSingularInt32Field(value: &_storage._ignoreUnknownFields) }() + case 526: try { try decoder.decodeSingularInt32Field(value: &_storage._index) }() + case 527: try { try decoder.decodeSingularInt32Field(value: &_storage._init_p) }() + case 528: try { try decoder.decodeSingularInt32Field(value: &_storage._inout) }() + case 529: try { try decoder.decodeSingularInt32Field(value: &_storage._inputType) }() + case 530: try { try decoder.decodeSingularInt32Field(value: &_storage._insert) }() + case 531: try { try decoder.decodeSingularInt32Field(value: &_storage._int) }() + case 532: try { try decoder.decodeSingularInt32Field(value: &_storage._int32) }() + case 533: try { try decoder.decodeSingularInt32Field(value: &_storage._int32Value) }() + case 534: try { try decoder.decodeSingularInt32Field(value: &_storage._int64) }() + case 535: try { try decoder.decodeSingularInt32Field(value: &_storage._int64Value) }() + case 536: try { try decoder.decodeSingularInt32Field(value: &_storage._int8) }() + case 537: try { try decoder.decodeSingularInt32Field(value: &_storage._integerLiteral) }() + case 538: try { try decoder.decodeSingularInt32Field(value: &_storage._integerLiteralType) }() + case 539: try { try decoder.decodeSingularInt32Field(value: &_storage._intern) }() + case 540: try { try decoder.decodeSingularInt32Field(value: &_storage._internal) }() + case 541: try { try decoder.decodeSingularInt32Field(value: &_storage._internalState) }() + case 542: try { try decoder.decodeSingularInt32Field(value: &_storage._into) }() + case 543: try { try decoder.decodeSingularInt32Field(value: &_storage._ints) }() + case 544: try { try decoder.decodeSingularInt32Field(value: &_storage._isA) }() + case 545: try { try decoder.decodeSingularInt32Field(value: &_storage._isEqual) }() + case 546: try { try decoder.decodeSingularInt32Field(value: &_storage._isEqualTo) }() + case 547: try { try decoder.decodeSingularInt32Field(value: &_storage._isExtension) }() + case 548: try { try decoder.decodeSingularInt32Field(value: &_storage._isInitialized_p) }() + case 549: try { try decoder.decodeSingularInt32Field(value: &_storage._isNegative) }() + case 550: try { try decoder.decodeSingularInt32Field(value: &_storage._itemTagsEncodedSize) }() + case 551: try { try decoder.decodeSingularInt32Field(value: &_storage._iterator) }() + case 552: try { try decoder.decodeSingularInt32Field(value: &_storage._javaGenerateEqualsAndHash) }() + case 553: try { try decoder.decodeSingularInt32Field(value: &_storage._javaGenericServices) }() + case 554: try { try decoder.decodeSingularInt32Field(value: &_storage._javaMultipleFiles) }() + case 555: try { try decoder.decodeSingularInt32Field(value: &_storage._javaOuterClassname) }() + case 556: try { try decoder.decodeSingularInt32Field(value: &_storage._javaPackage) }() + case 557: try { try decoder.decodeSingularInt32Field(value: &_storage._javaStringCheckUtf8) }() + case 558: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecoder) }() + case 559: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecodingError) }() + case 560: try { try decoder.decodeSingularInt32Field(value: &_storage._jsondecodingOptions) }() + case 561: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonEncoder) }() + case 562: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingError) }() + case 563: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingOptions) }() + case 564: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonencodingVisitor) }() + case 565: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonFormat) }() + case 566: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonmapEncodingVisitor) }() + case 567: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonName) }() + case 568: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonPath) }() + case 569: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonPaths) }() + case 570: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonscanner) }() + case 571: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonString) }() + case 572: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonText) }() + case 573: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonUtf8Bytes) }() + case 574: try { try decoder.decodeSingularInt32Field(value: &_storage._jsonUtf8Data) }() + case 575: try { try decoder.decodeSingularInt32Field(value: &_storage._jstype) }() + case 576: try { try decoder.decodeSingularInt32Field(value: &_storage._k) }() + case 577: try { try decoder.decodeSingularInt32Field(value: &_storage._kChunkSize) }() + case 578: try { try decoder.decodeSingularInt32Field(value: &_storage._key) }() + case 579: try { try decoder.decodeSingularInt32Field(value: &_storage._keyField) }() + case 580: try { try decoder.decodeSingularInt32Field(value: &_storage._keyFieldOpt) }() + case 581: try { try decoder.decodeSingularInt32Field(value: &_storage._keyType) }() + case 582: try { try decoder.decodeSingularInt32Field(value: &_storage._kind) }() + case 583: try { try decoder.decodeSingularInt32Field(value: &_storage._l) }() + case 584: try { try decoder.decodeSingularInt32Field(value: &_storage._label) }() + case 585: try { try decoder.decodeSingularInt32Field(value: &_storage._lazy) }() + case 586: try { try decoder.decodeSingularInt32Field(value: &_storage._leadingComments) }() + case 587: try { try decoder.decodeSingularInt32Field(value: &_storage._leadingDetachedComments) }() + case 588: try { try decoder.decodeSingularInt32Field(value: &_storage._length) }() + case 589: try { try decoder.decodeSingularInt32Field(value: &_storage._lessThan) }() + case 590: try { try decoder.decodeSingularInt32Field(value: &_storage._let) }() + case 591: try { try decoder.decodeSingularInt32Field(value: &_storage._lhs) }() + case 592: try { try decoder.decodeSingularInt32Field(value: &_storage._line) }() + case 593: try { try decoder.decodeSingularInt32Field(value: &_storage._list) }() + case 594: try { try decoder.decodeSingularInt32Field(value: &_storage._listOfMessages) }() + case 595: try { try decoder.decodeSingularInt32Field(value: &_storage._listValue) }() + case 596: try { try decoder.decodeSingularInt32Field(value: &_storage._littleEndian) }() + case 597: try { try decoder.decodeSingularInt32Field(value: &_storage._load) }() + case 598: try { try decoder.decodeSingularInt32Field(value: &_storage._localHasher) }() + case 599: try { try decoder.decodeSingularInt32Field(value: &_storage._location) }() + case 600: try { try decoder.decodeSingularInt32Field(value: &_storage._m) }() + case 601: try { try decoder.decodeSingularInt32Field(value: &_storage._major) }() + case 602: try { try decoder.decodeSingularInt32Field(value: &_storage._makeAsyncIterator) }() + case 603: try { try decoder.decodeSingularInt32Field(value: &_storage._makeIterator) }() + case 604: try { try decoder.decodeSingularInt32Field(value: &_storage._malformedLength) }() + case 605: try { try decoder.decodeSingularInt32Field(value: &_storage._mapEntry) }() + case 606: try { try decoder.decodeSingularInt32Field(value: &_storage._mapKeyType) }() + case 607: try { try decoder.decodeSingularInt32Field(value: &_storage._mapToMessages) }() + case 608: try { try decoder.decodeSingularInt32Field(value: &_storage._mapValueType) }() + case 609: try { try decoder.decodeSingularInt32Field(value: &_storage._mapVisitor) }() + case 610: try { try decoder.decodeSingularInt32Field(value: &_storage._maximumEdition) }() + case 611: try { try decoder.decodeSingularInt32Field(value: &_storage._mdayStart) }() + case 612: try { try decoder.decodeSingularInt32Field(value: &_storage._merge) }() + case 613: try { try decoder.decodeSingularInt32Field(value: &_storage._message) }() + case 614: try { try decoder.decodeSingularInt32Field(value: &_storage._messageDepthLimit) }() + case 615: try { try decoder.decodeSingularInt32Field(value: &_storage._messageEncoding) }() + case 616: try { try decoder.decodeSingularInt32Field(value: &_storage._messageExtension) }() + case 617: try { try decoder.decodeSingularInt32Field(value: &_storage._messageImplementationBase) }() + case 618: try { try decoder.decodeSingularInt32Field(value: &_storage._messageOptions) }() + case 619: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSet) }() + case 620: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSetWireFormat) }() + case 621: try { try decoder.decodeSingularInt32Field(value: &_storage._messageSize) }() + case 622: try { try decoder.decodeSingularInt32Field(value: &_storage._messageType) }() + case 623: try { try decoder.decodeSingularInt32Field(value: &_storage._method) }() + case 624: try { try decoder.decodeSingularInt32Field(value: &_storage._methodDescriptorProto) }() + case 625: try { try decoder.decodeSingularInt32Field(value: &_storage._methodOptions) }() + case 626: try { try decoder.decodeSingularInt32Field(value: &_storage._methods) }() + case 627: try { try decoder.decodeSingularInt32Field(value: &_storage._min) }() + case 628: try { try decoder.decodeSingularInt32Field(value: &_storage._minimumEdition) }() + case 629: try { try decoder.decodeSingularInt32Field(value: &_storage._minor) }() + case 630: try { try decoder.decodeSingularInt32Field(value: &_storage._mixin) }() + case 631: try { try decoder.decodeSingularInt32Field(value: &_storage._mixins) }() + case 632: try { try decoder.decodeSingularInt32Field(value: &_storage._modifier) }() + case 633: try { try decoder.decodeSingularInt32Field(value: &_storage._modify) }() + case 634: try { try decoder.decodeSingularInt32Field(value: &_storage._month) }() + case 635: try { try decoder.decodeSingularInt32Field(value: &_storage._msgExtension) }() + case 636: try { try decoder.decodeSingularInt32Field(value: &_storage._mutating) }() + case 637: try { try decoder.decodeSingularInt32Field(value: &_storage._n) }() + case 638: try { try decoder.decodeSingularInt32Field(value: &_storage._name) }() + case 639: try { try decoder.decodeSingularInt32Field(value: &_storage._nameDescription) }() + case 640: try { try decoder.decodeSingularInt32Field(value: &_storage._nameMap) }() + case 641: try { try decoder.decodeSingularInt32Field(value: &_storage._namePart) }() + case 642: try { try decoder.decodeSingularInt32Field(value: &_storage._names) }() + case 643: try { try decoder.decodeSingularInt32Field(value: &_storage._nanos) }() + case 644: try { try decoder.decodeSingularInt32Field(value: &_storage._negativeIntValue) }() + case 645: try { try decoder.decodeSingularInt32Field(value: &_storage._nestedType) }() + case 646: try { try decoder.decodeSingularInt32Field(value: &_storage._newL) }() + case 647: try { try decoder.decodeSingularInt32Field(value: &_storage._newList) }() + case 648: try { try decoder.decodeSingularInt32Field(value: &_storage._newValue) }() + case 649: try { try decoder.decodeSingularInt32Field(value: &_storage._next) }() + case 650: try { try decoder.decodeSingularInt32Field(value: &_storage._nextByte) }() + case 651: try { try decoder.decodeSingularInt32Field(value: &_storage._nextFieldNumber) }() + case 652: try { try decoder.decodeSingularInt32Field(value: &_storage._nextVarInt) }() + case 653: try { try decoder.decodeSingularInt32Field(value: &_storage._nil) }() + case 654: try { try decoder.decodeSingularInt32Field(value: &_storage._nilLiteral) }() + case 655: try { try decoder.decodeSingularInt32Field(value: &_storage._noBytesAvailable) }() + case 656: try { try decoder.decodeSingularInt32Field(value: &_storage._noStandardDescriptorAccessor) }() + case 657: try { try decoder.decodeSingularInt32Field(value: &_storage._nullValue) }() + case 658: try { try decoder.decodeSingularInt32Field(value: &_storage._number) }() + case 659: try { try decoder.decodeSingularInt32Field(value: &_storage._numberValue) }() + case 660: try { try decoder.decodeSingularInt32Field(value: &_storage._objcClassPrefix) }() + case 661: try { try decoder.decodeSingularInt32Field(value: &_storage._of) }() + case 662: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofDecl) }() + case 663: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofDescriptorProto) }() + case 664: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofIndex) }() + case 665: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofOptions) }() + case 666: try { try decoder.decodeSingularInt32Field(value: &_storage._oneofs) }() + case 667: try { try decoder.decodeSingularInt32Field(value: &_storage._oneOfKind) }() + case 668: try { try decoder.decodeSingularInt32Field(value: &_storage._optimizeFor) }() + case 669: try { try decoder.decodeSingularInt32Field(value: &_storage._optimizeMode) }() + case 670: try { try decoder.decodeSingularInt32Field(value: &_storage._option) }() + case 671: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalEnumExtensionField) }() + case 672: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalExtensionField) }() + case 673: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalGroupExtensionField) }() + case 674: try { try decoder.decodeSingularInt32Field(value: &_storage._optionalMessageExtensionField) }() + case 675: try { try decoder.decodeSingularInt32Field(value: &_storage._optionRetention) }() + case 676: try { try decoder.decodeSingularInt32Field(value: &_storage._options) }() + case 677: try { try decoder.decodeSingularInt32Field(value: &_storage._optionTargetType) }() + case 678: try { try decoder.decodeSingularInt32Field(value: &_storage._other) }() + case 679: try { try decoder.decodeSingularInt32Field(value: &_storage._others) }() + case 680: try { try decoder.decodeSingularInt32Field(value: &_storage._out) }() + case 681: try { try decoder.decodeSingularInt32Field(value: &_storage._outputType) }() + case 682: try { try decoder.decodeSingularInt32Field(value: &_storage._overridableFeatures) }() + case 683: try { try decoder.decodeSingularInt32Field(value: &_storage._p) }() + case 684: try { try decoder.decodeSingularInt32Field(value: &_storage._package) }() + case 685: try { try decoder.decodeSingularInt32Field(value: &_storage._packed) }() + case 686: try { try decoder.decodeSingularInt32Field(value: &_storage._packedEnumExtensionField) }() + case 687: try { try decoder.decodeSingularInt32Field(value: &_storage._packedExtensionField) }() + case 688: try { try decoder.decodeSingularInt32Field(value: &_storage._padding) }() + case 689: try { try decoder.decodeSingularInt32Field(value: &_storage._parent) }() + case 690: try { try decoder.decodeSingularInt32Field(value: &_storage._parse) }() + case 691: try { try decoder.decodeSingularInt32Field(value: &_storage._path) }() + case 692: try { try decoder.decodeSingularInt32Field(value: &_storage._paths) }() + case 693: try { try decoder.decodeSingularInt32Field(value: &_storage._payload) }() + case 694: try { try decoder.decodeSingularInt32Field(value: &_storage._payloadSize) }() + case 695: try { try decoder.decodeSingularInt32Field(value: &_storage._phpClassPrefix) }() + case 696: try { try decoder.decodeSingularInt32Field(value: &_storage._phpMetadataNamespace) }() + case 697: try { try decoder.decodeSingularInt32Field(value: &_storage._phpNamespace) }() + case 698: try { try decoder.decodeSingularInt32Field(value: &_storage._pos) }() + case 699: try { try decoder.decodeSingularInt32Field(value: &_storage._positiveIntValue) }() + case 700: try { try decoder.decodeSingularInt32Field(value: &_storage._prefix) }() + case 701: try { try decoder.decodeSingularInt32Field(value: &_storage._preserveProtoFieldNames) }() + case 702: try { try decoder.decodeSingularInt32Field(value: &_storage._preTraverse) }() + case 703: try { try decoder.decodeSingularInt32Field(value: &_storage._printUnknownFields) }() + case 704: try { try decoder.decodeSingularInt32Field(value: &_storage._proto2) }() + case 705: try { try decoder.decodeSingularInt32Field(value: &_storage._proto3DefaultValue) }() + case 706: try { try decoder.decodeSingularInt32Field(value: &_storage._proto3Optional) }() + case 707: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufApiversionCheck) }() + case 708: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufApiversion3) }() + case 709: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufBool) }() + case 710: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufBytes) }() + case 711: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufDouble) }() + case 712: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufEnumMap) }() + case 713: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufExtension) }() + case 714: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFixed32) }() + case 715: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFixed64) }() + case 716: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFloat) }() + case 717: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufInt32) }() + case 718: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufInt64) }() + case 719: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufMap) }() + case 720: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufMessageMap) }() + case 721: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSfixed32) }() + case 722: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSfixed64) }() + case 723: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSint32) }() + case 724: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufSint64) }() + case 725: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufString) }() + case 726: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufUint32) }() + case 727: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufUint64) }() + case 728: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufExtensionFieldValues) }() + case 729: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufFieldNumber) }() + case 730: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufGeneratedIsEqualTo) }() + case 731: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufNameMap) }() + case 732: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufNewField) }() + case 733: try { try decoder.decodeSingularInt32Field(value: &_storage._protobufPackage) }() + case 734: try { try decoder.decodeSingularInt32Field(value: &_storage._protocol) }() + case 735: try { try decoder.decodeSingularInt32Field(value: &_storage._protoFieldName) }() + case 736: try { try decoder.decodeSingularInt32Field(value: &_storage._protoMessageName) }() + case 737: try { try decoder.decodeSingularInt32Field(value: &_storage._protoNameProviding) }() + case 738: try { try decoder.decodeSingularInt32Field(value: &_storage._protoPaths) }() + case 739: try { try decoder.decodeSingularInt32Field(value: &_storage._public) }() + case 740: try { try decoder.decodeSingularInt32Field(value: &_storage._publicDependency) }() + case 741: try { try decoder.decodeSingularInt32Field(value: &_storage._putBoolValue) }() + case 742: try { try decoder.decodeSingularInt32Field(value: &_storage._putBytesValue) }() + case 743: try { try decoder.decodeSingularInt32Field(value: &_storage._putDoubleValue) }() + case 744: try { try decoder.decodeSingularInt32Field(value: &_storage._putEnumValue) }() + case 745: try { try decoder.decodeSingularInt32Field(value: &_storage._putFixedUint32) }() + case 746: try { try decoder.decodeSingularInt32Field(value: &_storage._putFixedUint64) }() + case 747: try { try decoder.decodeSingularInt32Field(value: &_storage._putFloatValue) }() + case 748: try { try decoder.decodeSingularInt32Field(value: &_storage._putInt64) }() + case 749: try { try decoder.decodeSingularInt32Field(value: &_storage._putStringValue) }() + case 750: try { try decoder.decodeSingularInt32Field(value: &_storage._putUint64) }() + case 751: try { try decoder.decodeSingularInt32Field(value: &_storage._putUint64Hex) }() + case 752: try { try decoder.decodeSingularInt32Field(value: &_storage._putVarInt) }() + case 753: try { try decoder.decodeSingularInt32Field(value: &_storage._putZigZagVarInt) }() + case 754: try { try decoder.decodeSingularInt32Field(value: &_storage._pyGenericServices) }() + case 755: try { try decoder.decodeSingularInt32Field(value: &_storage._r) }() + case 756: try { try decoder.decodeSingularInt32Field(value: &_storage._rawChars) }() + case 757: try { try decoder.decodeSingularInt32Field(value: &_storage._rawRepresentable) }() + case 758: try { try decoder.decodeSingularInt32Field(value: &_storage._rawValue) }() + case 759: try { try decoder.decodeSingularInt32Field(value: &_storage._read4HexDigits) }() + case 760: try { try decoder.decodeSingularInt32Field(value: &_storage._readBytes) }() + case 761: try { try decoder.decodeSingularInt32Field(value: &_storage._register) }() + case 762: try { try decoder.decodeSingularInt32Field(value: &_storage._repeated) }() + case 763: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedEnumExtensionField) }() + case 764: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedExtensionField) }() + case 765: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedFieldEncoding) }() + case 766: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedGroupExtensionField) }() + case 767: try { try decoder.decodeSingularInt32Field(value: &_storage._repeatedMessageExtensionField) }() + case 768: try { try decoder.decodeSingularInt32Field(value: &_storage._repeating) }() + case 769: try { try decoder.decodeSingularInt32Field(value: &_storage._requestStreaming) }() + case 770: try { try decoder.decodeSingularInt32Field(value: &_storage._requestTypeURL) }() + case 771: try { try decoder.decodeSingularInt32Field(value: &_storage._requiredSize) }() + case 772: try { try decoder.decodeSingularInt32Field(value: &_storage._responseStreaming) }() + case 773: try { try decoder.decodeSingularInt32Field(value: &_storage._responseTypeURL) }() + case 774: try { try decoder.decodeSingularInt32Field(value: &_storage._result) }() + case 775: try { try decoder.decodeSingularInt32Field(value: &_storage._retention) }() + case 776: try { try decoder.decodeSingularInt32Field(value: &_storage._rethrows) }() + case 777: try { try decoder.decodeSingularInt32Field(value: &_storage._return) }() + case 778: try { try decoder.decodeSingularInt32Field(value: &_storage._returnType) }() + case 779: try { try decoder.decodeSingularInt32Field(value: &_storage._revision) }() + case 780: try { try decoder.decodeSingularInt32Field(value: &_storage._rhs) }() + case 781: try { try decoder.decodeSingularInt32Field(value: &_storage._root) }() + case 782: try { try decoder.decodeSingularInt32Field(value: &_storage._rubyPackage) }() + case 783: try { try decoder.decodeSingularInt32Field(value: &_storage._s) }() + case 784: try { try decoder.decodeSingularInt32Field(value: &_storage._sawBackslash) }() + case 785: try { try decoder.decodeSingularInt32Field(value: &_storage._sawSection4Characters) }() + case 786: try { try decoder.decodeSingularInt32Field(value: &_storage._sawSection5Characters) }() + case 787: try { try decoder.decodeSingularInt32Field(value: &_storage._scan) }() + case 788: try { try decoder.decodeSingularInt32Field(value: &_storage._scanner) }() + case 789: try { try decoder.decodeSingularInt32Field(value: &_storage._seconds) }() + case 790: try { try decoder.decodeSingularInt32Field(value: &_storage._self_p) }() + case 791: try { try decoder.decodeSingularInt32Field(value: &_storage._semantic) }() + case 792: try { try decoder.decodeSingularInt32Field(value: &_storage._sendable) }() + case 793: try { try decoder.decodeSingularInt32Field(value: &_storage._separator) }() + case 794: try { try decoder.decodeSingularInt32Field(value: &_storage._serialize) }() + case 795: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedBytes) }() + case 796: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedData) }() + case 797: try { try decoder.decodeSingularInt32Field(value: &_storage._serializedSize) }() + case 798: try { try decoder.decodeSingularInt32Field(value: &_storage._serverStreaming) }() + case 799: try { try decoder.decodeSingularInt32Field(value: &_storage._service) }() + case 800: try { try decoder.decodeSingularInt32Field(value: &_storage._serviceDescriptorProto) }() + case 801: try { try decoder.decodeSingularInt32Field(value: &_storage._serviceOptions) }() + case 802: try { try decoder.decodeSingularInt32Field(value: &_storage._set) }() + case 803: try { try decoder.decodeSingularInt32Field(value: &_storage._setExtensionValue) }() + case 804: try { try decoder.decodeSingularInt32Field(value: &_storage._shift) }() + case 805: try { try decoder.decodeSingularInt32Field(value: &_storage._simpleExtensionMap) }() + case 806: try { try decoder.decodeSingularInt32Field(value: &_storage._size) }() + case 807: try { try decoder.decodeSingularInt32Field(value: &_storage._sizer) }() + case 808: try { try decoder.decodeSingularInt32Field(value: &_storage._source) }() + case 809: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceCodeInfo) }() + case 810: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceContext) }() + case 811: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceEncoding) }() + case 812: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceFile) }() + case 813: try { try decoder.decodeSingularInt32Field(value: &_storage._sourceLocation) }() + case 814: try { try decoder.decodeSingularInt32Field(value: &_storage._span) }() + case 815: try { try decoder.decodeSingularInt32Field(value: &_storage._split) }() + case 816: try { try decoder.decodeSingularInt32Field(value: &_storage._start) }() + case 817: try { try decoder.decodeSingularInt32Field(value: &_storage._startArray) }() + case 818: try { try decoder.decodeSingularInt32Field(value: &_storage._startArrayObject) }() + case 819: try { try decoder.decodeSingularInt32Field(value: &_storage._startField) }() + case 820: try { try decoder.decodeSingularInt32Field(value: &_storage._startIndex) }() + case 821: try { try decoder.decodeSingularInt32Field(value: &_storage._startMessageField) }() + case 822: try { try decoder.decodeSingularInt32Field(value: &_storage._startObject) }() + case 823: try { try decoder.decodeSingularInt32Field(value: &_storage._startRegularField) }() + case 824: try { try decoder.decodeSingularInt32Field(value: &_storage._state) }() + case 825: try { try decoder.decodeSingularInt32Field(value: &_storage._static) }() + case 826: try { try decoder.decodeSingularInt32Field(value: &_storage._staticString) }() + case 827: try { try decoder.decodeSingularInt32Field(value: &_storage._storage) }() + case 828: try { try decoder.decodeSingularInt32Field(value: &_storage._string) }() + case 829: try { try decoder.decodeSingularInt32Field(value: &_storage._stringLiteral) }() + case 830: try { try decoder.decodeSingularInt32Field(value: &_storage._stringLiteralType) }() + case 831: try { try decoder.decodeSingularInt32Field(value: &_storage._stringResult) }() + case 832: try { try decoder.decodeSingularInt32Field(value: &_storage._stringValue) }() + case 833: try { try decoder.decodeSingularInt32Field(value: &_storage._struct) }() + case 834: try { try decoder.decodeSingularInt32Field(value: &_storage._structValue) }() + case 835: try { try decoder.decodeSingularInt32Field(value: &_storage._subDecoder) }() + case 836: try { try decoder.decodeSingularInt32Field(value: &_storage._subscript) }() + case 837: try { try decoder.decodeSingularInt32Field(value: &_storage._subVisitor) }() + case 838: try { try decoder.decodeSingularInt32Field(value: &_storage._swift) }() + case 839: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftPrefix) }() + case 840: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftProtobufContiguousBytes) }() + case 841: try { try decoder.decodeSingularInt32Field(value: &_storage._swiftProtobufError) }() + case 842: try { try decoder.decodeSingularInt32Field(value: &_storage._syntax) }() + case 843: try { try decoder.decodeSingularInt32Field(value: &_storage._t) }() + case 844: try { try decoder.decodeSingularInt32Field(value: &_storage._tag) }() + case 845: try { try decoder.decodeSingularInt32Field(value: &_storage._targets) }() + case 846: try { try decoder.decodeSingularInt32Field(value: &_storage._terminator) }() + case 847: try { try decoder.decodeSingularInt32Field(value: &_storage._testDecoder) }() + case 848: try { try decoder.decodeSingularInt32Field(value: &_storage._text) }() + case 849: try { try decoder.decodeSingularInt32Field(value: &_storage._textDecoder) }() + case 850: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecoder) }() + case 851: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecodingError) }() + case 852: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatDecodingOptions) }() + case 853: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatEncodingOptions) }() + case 854: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatEncodingVisitor) }() + case 855: try { try decoder.decodeSingularInt32Field(value: &_storage._textFormatString) }() + case 856: try { try decoder.decodeSingularInt32Field(value: &_storage._throwOrIgnore) }() + case 857: try { try decoder.decodeSingularInt32Field(value: &_storage._throws) }() + case 858: try { try decoder.decodeSingularInt32Field(value: &_storage._timeInterval) }() + case 859: try { try decoder.decodeSingularInt32Field(value: &_storage._timeIntervalSince1970) }() + case 860: try { try decoder.decodeSingularInt32Field(value: &_storage._timeIntervalSinceReferenceDate) }() + case 861: try { try decoder.decodeSingularInt32Field(value: &_storage._timestamp) }() + case 862: try { try decoder.decodeSingularInt32Field(value: &_storage._tooLarge) }() + case 863: try { try decoder.decodeSingularInt32Field(value: &_storage._total) }() + case 864: try { try decoder.decodeSingularInt32Field(value: &_storage._totalArrayDepth) }() + case 865: try { try decoder.decodeSingularInt32Field(value: &_storage._totalSize) }() + case 866: try { try decoder.decodeSingularInt32Field(value: &_storage._trailingComments) }() + case 867: try { try decoder.decodeSingularInt32Field(value: &_storage._traverse) }() + case 868: try { try decoder.decodeSingularInt32Field(value: &_storage._true) }() + case 869: try { try decoder.decodeSingularInt32Field(value: &_storage._try) }() + case 870: try { try decoder.decodeSingularInt32Field(value: &_storage._type) }() + case 871: try { try decoder.decodeSingularInt32Field(value: &_storage._typealias) }() + case 872: try { try decoder.decodeSingularInt32Field(value: &_storage._typeEnum) }() + case 873: try { try decoder.decodeSingularInt32Field(value: &_storage._typeName) }() + case 874: try { try decoder.decodeSingularInt32Field(value: &_storage._typePrefix) }() + case 875: try { try decoder.decodeSingularInt32Field(value: &_storage._typeStart) }() + case 876: try { try decoder.decodeSingularInt32Field(value: &_storage._typeUnknown) }() + case 877: try { try decoder.decodeSingularInt32Field(value: &_storage._typeURL) }() + case 878: try { try decoder.decodeSingularInt32Field(value: &_storage._uint32) }() + case 879: try { try decoder.decodeSingularInt32Field(value: &_storage._uint32Value) }() + case 880: try { try decoder.decodeSingularInt32Field(value: &_storage._uint64) }() + case 881: try { try decoder.decodeSingularInt32Field(value: &_storage._uint64Value) }() + case 882: try { try decoder.decodeSingularInt32Field(value: &_storage._uint8) }() + case 883: try { try decoder.decodeSingularInt32Field(value: &_storage._unchecked) }() + case 884: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarLiteral) }() + case 885: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarLiteralType) }() + case 886: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalars) }() + case 887: try { try decoder.decodeSingularInt32Field(value: &_storage._unicodeScalarView) }() + case 888: try { try decoder.decodeSingularInt32Field(value: &_storage._uninterpretedOption) }() + case 889: try { try decoder.decodeSingularInt32Field(value: &_storage._union) }() + case 890: try { try decoder.decodeSingularInt32Field(value: &_storage._uniqueStorage) }() + case 891: try { try decoder.decodeSingularInt32Field(value: &_storage._unknown) }() + case 892: try { try decoder.decodeSingularInt32Field(value: &_storage._unknownFields_p) }() + case 893: try { try decoder.decodeSingularInt32Field(value: &_storage._unknownStorage) }() + case 894: try { try decoder.decodeSingularInt32Field(value: &_storage._unpackTo) }() + case 895: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeBufferPointer) }() + case 896: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeMutablePointer) }() + case 897: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeMutableRawBufferPointer) }() + case 898: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeRawBufferPointer) }() + case 899: try { try decoder.decodeSingularInt32Field(value: &_storage._unsafeRawPointer) }() + case 900: try { try decoder.decodeSingularInt32Field(value: &_storage._unverifiedLazy) }() + case 901: try { try decoder.decodeSingularInt32Field(value: &_storage._updatedOptions) }() + case 902: try { try decoder.decodeSingularInt32Field(value: &_storage._url) }() + case 903: try { try decoder.decodeSingularInt32Field(value: &_storage._useDeterministicOrdering) }() + case 904: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8) }() + case 905: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8Ptr) }() + case 906: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8ToDouble) }() + case 907: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8Validation) }() + case 908: try { try decoder.decodeSingularInt32Field(value: &_storage._utf8View) }() + case 909: try { try decoder.decodeSingularInt32Field(value: &_storage._v) }() + case 910: try { try decoder.decodeSingularInt32Field(value: &_storage._value) }() + case 911: try { try decoder.decodeSingularInt32Field(value: &_storage._valueField) }() + case 912: try { try decoder.decodeSingularInt32Field(value: &_storage._values) }() + case 913: try { try decoder.decodeSingularInt32Field(value: &_storage._valueType) }() + case 914: try { try decoder.decodeSingularInt32Field(value: &_storage._var) }() + case 915: try { try decoder.decodeSingularInt32Field(value: &_storage._verification) }() + case 916: try { try decoder.decodeSingularInt32Field(value: &_storage._verificationState) }() + case 917: try { try decoder.decodeSingularInt32Field(value: &_storage._version) }() + case 918: try { try decoder.decodeSingularInt32Field(value: &_storage._versionString) }() + case 919: try { try decoder.decodeSingularInt32Field(value: &_storage._visitExtensionFields) }() + case 920: try { try decoder.decodeSingularInt32Field(value: &_storage._visitExtensionFieldsAsMessageSet) }() + case 921: try { try decoder.decodeSingularInt32Field(value: &_storage._visitMapField) }() + case 922: try { try decoder.decodeSingularInt32Field(value: &_storage._visitor) }() + case 923: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPacked) }() + case 924: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedBoolField) }() + case 925: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedDoubleField) }() + case 926: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedEnumField) }() + case 927: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFixed32Field) }() + case 928: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFixed64Field) }() + case 929: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedFloatField) }() + case 930: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedInt32Field) }() + case 931: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedInt64Field) }() + case 932: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSfixed32Field) }() + case 933: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSfixed64Field) }() + case 934: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSint32Field) }() + case 935: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedSint64Field) }() + case 936: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedUint32Field) }() + case 937: try { try decoder.decodeSingularInt32Field(value: &_storage._visitPackedUint64Field) }() + case 938: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeated) }() + case 939: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedBoolField) }() + case 940: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedBytesField) }() + case 941: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedDoubleField) }() + case 942: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedEnumField) }() + case 943: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFixed32Field) }() + case 944: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFixed64Field) }() + case 945: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedFloatField) }() + case 946: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedGroupField) }() + case 947: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedInt32Field) }() + case 948: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedInt64Field) }() + case 949: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedMessageField) }() + case 950: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSfixed32Field) }() + case 951: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSfixed64Field) }() + case 952: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSint32Field) }() + case 953: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedSint64Field) }() + case 954: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedStringField) }() + case 955: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedUint32Field) }() + case 956: try { try decoder.decodeSingularInt32Field(value: &_storage._visitRepeatedUint64Field) }() + case 957: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingular) }() + case 958: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularBoolField) }() + case 959: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularBytesField) }() + case 960: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularDoubleField) }() + case 961: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularEnumField) }() + case 962: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFixed32Field) }() + case 963: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFixed64Field) }() + case 964: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularFloatField) }() + case 965: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularGroupField) }() + case 966: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularInt32Field) }() + case 967: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularInt64Field) }() + case 968: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularMessageField) }() + case 969: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSfixed32Field) }() + case 970: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSfixed64Field) }() + case 971: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSint32Field) }() + case 972: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularSint64Field) }() + case 973: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularStringField) }() + case 974: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularUint32Field) }() + case 975: try { try decoder.decodeSingularInt32Field(value: &_storage._visitSingularUint64Field) }() + case 976: try { try decoder.decodeSingularInt32Field(value: &_storage._visitUnknown) }() + case 977: try { try decoder.decodeSingularInt32Field(value: &_storage._wasDecoded) }() + case 978: try { try decoder.decodeSingularInt32Field(value: &_storage._weak) }() + case 979: try { try decoder.decodeSingularInt32Field(value: &_storage._weakDependency) }() + case 980: try { try decoder.decodeSingularInt32Field(value: &_storage._where) }() + case 981: try { try decoder.decodeSingularInt32Field(value: &_storage._wireFormat) }() + case 982: try { try decoder.decodeSingularInt32Field(value: &_storage._with) }() + case 983: try { try decoder.decodeSingularInt32Field(value: &_storage._withUnsafeBytes) }() + case 984: try { try decoder.decodeSingularInt32Field(value: &_storage._withUnsafeMutableBytes) }() + case 985: try { try decoder.decodeSingularInt32Field(value: &_storage._work) }() + case 986: try { try decoder.decodeSingularInt32Field(value: &_storage._wrapped) }() + case 987: try { try decoder.decodeSingularInt32Field(value: &_storage._wrappedType) }() + case 988: try { try decoder.decodeSingularInt32Field(value: &_storage._wrappedValue) }() + case 989: try { try decoder.decodeSingularInt32Field(value: &_storage._written) }() + case 990: try { try decoder.decodeSingularInt32Field(value: &_storage._yday) }() default: break } } @@ -9065,2954 +9029,2942 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._anyMessageStorage != 0 { try visitor.visitSingularInt32Field(value: _storage._anyMessageStorage, fieldNumber: 11) } - if _storage._anyTypeUrlnotRegistered != 0 { - try visitor.visitSingularInt32Field(value: _storage._anyTypeUrlnotRegistered, fieldNumber: 12) - } if _storage._anyUnpackError != 0 { - try visitor.visitSingularInt32Field(value: _storage._anyUnpackError, fieldNumber: 13) + try visitor.visitSingularInt32Field(value: _storage._anyUnpackError, fieldNumber: 12) } if _storage._api != 0 { - try visitor.visitSingularInt32Field(value: _storage._api, fieldNumber: 14) + try visitor.visitSingularInt32Field(value: _storage._api, fieldNumber: 13) } if _storage._appended != 0 { - try visitor.visitSingularInt32Field(value: _storage._appended, fieldNumber: 15) + try visitor.visitSingularInt32Field(value: _storage._appended, fieldNumber: 14) } if _storage._appendUintHex != 0 { - try visitor.visitSingularInt32Field(value: _storage._appendUintHex, fieldNumber: 16) + try visitor.visitSingularInt32Field(value: _storage._appendUintHex, fieldNumber: 15) } if _storage._appendUnknown != 0 { - try visitor.visitSingularInt32Field(value: _storage._appendUnknown, fieldNumber: 17) + try visitor.visitSingularInt32Field(value: _storage._appendUnknown, fieldNumber: 16) } if _storage._areAllInitialized != 0 { - try visitor.visitSingularInt32Field(value: _storage._areAllInitialized, fieldNumber: 18) + try visitor.visitSingularInt32Field(value: _storage._areAllInitialized, fieldNumber: 17) } if _storage._array != 0 { - try visitor.visitSingularInt32Field(value: _storage._array, fieldNumber: 19) + try visitor.visitSingularInt32Field(value: _storage._array, fieldNumber: 18) } if _storage._arrayDepth != 0 { - try visitor.visitSingularInt32Field(value: _storage._arrayDepth, fieldNumber: 20) + try visitor.visitSingularInt32Field(value: _storage._arrayDepth, fieldNumber: 19) } if _storage._arrayLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._arrayLiteral, fieldNumber: 21) + try visitor.visitSingularInt32Field(value: _storage._arrayLiteral, fieldNumber: 20) } if _storage._arraySeparator != 0 { - try visitor.visitSingularInt32Field(value: _storage._arraySeparator, fieldNumber: 22) + try visitor.visitSingularInt32Field(value: _storage._arraySeparator, fieldNumber: 21) } if _storage._as != 0 { - try visitor.visitSingularInt32Field(value: _storage._as, fieldNumber: 23) + try visitor.visitSingularInt32Field(value: _storage._as, fieldNumber: 22) } if _storage._asciiOpenCurlyBracket != 0 { - try visitor.visitSingularInt32Field(value: _storage._asciiOpenCurlyBracket, fieldNumber: 24) + try visitor.visitSingularInt32Field(value: _storage._asciiOpenCurlyBracket, fieldNumber: 23) } if _storage._asciiZero != 0 { - try visitor.visitSingularInt32Field(value: _storage._asciiZero, fieldNumber: 25) + try visitor.visitSingularInt32Field(value: _storage._asciiZero, fieldNumber: 24) } if _storage._async != 0 { - try visitor.visitSingularInt32Field(value: _storage._async, fieldNumber: 26) + try visitor.visitSingularInt32Field(value: _storage._async, fieldNumber: 25) } if _storage._asyncIterator != 0 { - try visitor.visitSingularInt32Field(value: _storage._asyncIterator, fieldNumber: 27) + try visitor.visitSingularInt32Field(value: _storage._asyncIterator, fieldNumber: 26) } if _storage._asyncIteratorProtocol != 0 { - try visitor.visitSingularInt32Field(value: _storage._asyncIteratorProtocol, fieldNumber: 28) + try visitor.visitSingularInt32Field(value: _storage._asyncIteratorProtocol, fieldNumber: 27) } if _storage._asyncMessageSequence != 0 { - try visitor.visitSingularInt32Field(value: _storage._asyncMessageSequence, fieldNumber: 29) + try visitor.visitSingularInt32Field(value: _storage._asyncMessageSequence, fieldNumber: 28) } if _storage._available != 0 { - try visitor.visitSingularInt32Field(value: _storage._available, fieldNumber: 30) + try visitor.visitSingularInt32Field(value: _storage._available, fieldNumber: 29) } if _storage._b != 0 { - try visitor.visitSingularInt32Field(value: _storage._b, fieldNumber: 31) + try visitor.visitSingularInt32Field(value: _storage._b, fieldNumber: 30) } if _storage._base != 0 { - try visitor.visitSingularInt32Field(value: _storage._base, fieldNumber: 32) + try visitor.visitSingularInt32Field(value: _storage._base, fieldNumber: 31) } if _storage._base64Values != 0 { - try visitor.visitSingularInt32Field(value: _storage._base64Values, fieldNumber: 33) + try visitor.visitSingularInt32Field(value: _storage._base64Values, fieldNumber: 32) } if _storage._baseAddress != 0 { - try visitor.visitSingularInt32Field(value: _storage._baseAddress, fieldNumber: 34) + try visitor.visitSingularInt32Field(value: _storage._baseAddress, fieldNumber: 33) } if _storage._baseType != 0 { - try visitor.visitSingularInt32Field(value: _storage._baseType, fieldNumber: 35) + try visitor.visitSingularInt32Field(value: _storage._baseType, fieldNumber: 34) } if _storage._begin != 0 { - try visitor.visitSingularInt32Field(value: _storage._begin, fieldNumber: 36) + try visitor.visitSingularInt32Field(value: _storage._begin, fieldNumber: 35) } if _storage._binary != 0 { - try visitor.visitSingularInt32Field(value: _storage._binary, fieldNumber: 37) + try visitor.visitSingularInt32Field(value: _storage._binary, fieldNumber: 36) } if _storage._binaryDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryDecoder, fieldNumber: 38) + try visitor.visitSingularInt32Field(value: _storage._binaryDecoder, fieldNumber: 37) } if _storage._binaryDecoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryDecoding, fieldNumber: 39) + try visitor.visitSingularInt32Field(value: _storage._binaryDecoding, fieldNumber: 38) } if _storage._binaryDecodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryDecodingError, fieldNumber: 40) + try visitor.visitSingularInt32Field(value: _storage._binaryDecodingError, fieldNumber: 39) } if _storage._binaryDecodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryDecodingOptions, fieldNumber: 41) + try visitor.visitSingularInt32Field(value: _storage._binaryDecodingOptions, fieldNumber: 40) } if _storage._binaryDelimited != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryDelimited, fieldNumber: 42) + try visitor.visitSingularInt32Field(value: _storage._binaryDelimited, fieldNumber: 41) } if _storage._binaryEncoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncoder, fieldNumber: 43) - } - if _storage._binaryEncoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncoding, fieldNumber: 44) + try visitor.visitSingularInt32Field(value: _storage._binaryEncoder, fieldNumber: 42) } if _storage._binaryEncodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingError, fieldNumber: 45) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingError, fieldNumber: 43) } if _storage._binaryEncodingMessageSetSizeVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingMessageSetSizeVisitor, fieldNumber: 46) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingMessageSetSizeVisitor, fieldNumber: 44) } if _storage._binaryEncodingMessageSetVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingMessageSetVisitor, fieldNumber: 47) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingMessageSetVisitor, fieldNumber: 45) } if _storage._binaryEncodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingOptions, fieldNumber: 48) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingOptions, fieldNumber: 46) } if _storage._binaryEncodingSizeVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingSizeVisitor, fieldNumber: 49) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingSizeVisitor, fieldNumber: 47) } if _storage._binaryEncodingVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryEncodingVisitor, fieldNumber: 50) + try visitor.visitSingularInt32Field(value: _storage._binaryEncodingVisitor, fieldNumber: 48) } if _storage._binaryOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryOptions, fieldNumber: 51) + try visitor.visitSingularInt32Field(value: _storage._binaryOptions, fieldNumber: 49) } if _storage._binaryProtobufDelimitedMessages != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryProtobufDelimitedMessages, fieldNumber: 52) + try visitor.visitSingularInt32Field(value: _storage._binaryProtobufDelimitedMessages, fieldNumber: 50) } if _storage._binaryStreamDecoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryStreamDecoding, fieldNumber: 53) + try visitor.visitSingularInt32Field(value: _storage._binaryStreamDecoding, fieldNumber: 51) } if _storage._binaryStreamDecodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._binaryStreamDecodingError, fieldNumber: 54) + try visitor.visitSingularInt32Field(value: _storage._binaryStreamDecodingError, fieldNumber: 52) } if _storage._bitPattern != 0 { - try visitor.visitSingularInt32Field(value: _storage._bitPattern, fieldNumber: 55) + try visitor.visitSingularInt32Field(value: _storage._bitPattern, fieldNumber: 53) } if _storage._body != 0 { - try visitor.visitSingularInt32Field(value: _storage._body, fieldNumber: 56) + try visitor.visitSingularInt32Field(value: _storage._body, fieldNumber: 54) } if _storage._bool != 0 { - try visitor.visitSingularInt32Field(value: _storage._bool, fieldNumber: 57) + try visitor.visitSingularInt32Field(value: _storage._bool, fieldNumber: 55) } if _storage._booleanLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._booleanLiteral, fieldNumber: 58) + try visitor.visitSingularInt32Field(value: _storage._booleanLiteral, fieldNumber: 56) } if _storage._booleanLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._booleanLiteralType, fieldNumber: 59) + try visitor.visitSingularInt32Field(value: _storage._booleanLiteralType, fieldNumber: 57) } if _storage._boolValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._boolValue, fieldNumber: 60) + try visitor.visitSingularInt32Field(value: _storage._boolValue, fieldNumber: 58) } if _storage._buffer != 0 { - try visitor.visitSingularInt32Field(value: _storage._buffer, fieldNumber: 61) + try visitor.visitSingularInt32Field(value: _storage._buffer, fieldNumber: 59) } if _storage._bytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytes, fieldNumber: 62) + try visitor.visitSingularInt32Field(value: _storage._bytes, fieldNumber: 60) } if _storage._bytesInGroup != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytesInGroup, fieldNumber: 63) + try visitor.visitSingularInt32Field(value: _storage._bytesInGroup, fieldNumber: 61) } if _storage._bytesNeeded != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytesNeeded, fieldNumber: 64) + try visitor.visitSingularInt32Field(value: _storage._bytesNeeded, fieldNumber: 62) } if _storage._bytesRead != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytesRead, fieldNumber: 65) + try visitor.visitSingularInt32Field(value: _storage._bytesRead, fieldNumber: 63) } if _storage._bytesValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._bytesValue, fieldNumber: 66) + try visitor.visitSingularInt32Field(value: _storage._bytesValue, fieldNumber: 64) } if _storage._c != 0 { - try visitor.visitSingularInt32Field(value: _storage._c, fieldNumber: 67) + try visitor.visitSingularInt32Field(value: _storage._c, fieldNumber: 65) } if _storage._capitalizeNext != 0 { - try visitor.visitSingularInt32Field(value: _storage._capitalizeNext, fieldNumber: 68) + try visitor.visitSingularInt32Field(value: _storage._capitalizeNext, fieldNumber: 66) } if _storage._cardinality != 0 { - try visitor.visitSingularInt32Field(value: _storage._cardinality, fieldNumber: 69) + try visitor.visitSingularInt32Field(value: _storage._cardinality, fieldNumber: 67) } if _storage._caseIterable != 0 { - try visitor.visitSingularInt32Field(value: _storage._caseIterable, fieldNumber: 70) + try visitor.visitSingularInt32Field(value: _storage._caseIterable, fieldNumber: 68) } if _storage._ccEnableArenas != 0 { - try visitor.visitSingularInt32Field(value: _storage._ccEnableArenas, fieldNumber: 71) + try visitor.visitSingularInt32Field(value: _storage._ccEnableArenas, fieldNumber: 69) } if _storage._ccGenericServices != 0 { - try visitor.visitSingularInt32Field(value: _storage._ccGenericServices, fieldNumber: 72) + try visitor.visitSingularInt32Field(value: _storage._ccGenericServices, fieldNumber: 70) } if _storage._character != 0 { - try visitor.visitSingularInt32Field(value: _storage._character, fieldNumber: 73) + try visitor.visitSingularInt32Field(value: _storage._character, fieldNumber: 71) } if _storage._chars != 0 { - try visitor.visitSingularInt32Field(value: _storage._chars, fieldNumber: 74) + try visitor.visitSingularInt32Field(value: _storage._chars, fieldNumber: 72) } if _storage._chunk != 0 { - try visitor.visitSingularInt32Field(value: _storage._chunk, fieldNumber: 75) + try visitor.visitSingularInt32Field(value: _storage._chunk, fieldNumber: 73) } if _storage._class != 0 { - try visitor.visitSingularInt32Field(value: _storage._class, fieldNumber: 76) + try visitor.visitSingularInt32Field(value: _storage._class, fieldNumber: 74) } if _storage._clearAggregateValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearAggregateValue_p, fieldNumber: 77) + try visitor.visitSingularInt32Field(value: _storage._clearAggregateValue_p, fieldNumber: 75) } if _storage._clearAllowAlias_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearAllowAlias_p, fieldNumber: 78) + try visitor.visitSingularInt32Field(value: _storage._clearAllowAlias_p, fieldNumber: 76) } if _storage._clearBegin_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearBegin_p, fieldNumber: 79) + try visitor.visitSingularInt32Field(value: _storage._clearBegin_p, fieldNumber: 77) } if _storage._clearCcEnableArenas_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearCcEnableArenas_p, fieldNumber: 80) + try visitor.visitSingularInt32Field(value: _storage._clearCcEnableArenas_p, fieldNumber: 78) } if _storage._clearCcGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearCcGenericServices_p, fieldNumber: 81) + try visitor.visitSingularInt32Field(value: _storage._clearCcGenericServices_p, fieldNumber: 79) } if _storage._clearClientStreaming_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearClientStreaming_p, fieldNumber: 82) + try visitor.visitSingularInt32Field(value: _storage._clearClientStreaming_p, fieldNumber: 80) } if _storage._clearCsharpNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearCsharpNamespace_p, fieldNumber: 83) + try visitor.visitSingularInt32Field(value: _storage._clearCsharpNamespace_p, fieldNumber: 81) } if _storage._clearCtype_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearCtype_p, fieldNumber: 84) + try visitor.visitSingularInt32Field(value: _storage._clearCtype_p, fieldNumber: 82) } if _storage._clearDebugRedact_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDebugRedact_p, fieldNumber: 85) + try visitor.visitSingularInt32Field(value: _storage._clearDebugRedact_p, fieldNumber: 83) } if _storage._clearDefaultValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDefaultValue_p, fieldNumber: 86) + try visitor.visitSingularInt32Field(value: _storage._clearDefaultValue_p, fieldNumber: 84) } if _storage._clearDeprecated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDeprecated_p, fieldNumber: 87) + try visitor.visitSingularInt32Field(value: _storage._clearDeprecated_p, fieldNumber: 85) } if _storage._clearDeprecatedLegacyJsonFieldConflicts_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDeprecatedLegacyJsonFieldConflicts_p, fieldNumber: 88) + try visitor.visitSingularInt32Field(value: _storage._clearDeprecatedLegacyJsonFieldConflicts_p, fieldNumber: 86) } if _storage._clearDeprecationWarning_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDeprecationWarning_p, fieldNumber: 89) + try visitor.visitSingularInt32Field(value: _storage._clearDeprecationWarning_p, fieldNumber: 87) } if _storage._clearDoubleValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearDoubleValue_p, fieldNumber: 90) + try visitor.visitSingularInt32Field(value: _storage._clearDoubleValue_p, fieldNumber: 88) } if _storage._clearEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEdition_p, fieldNumber: 91) + try visitor.visitSingularInt32Field(value: _storage._clearEdition_p, fieldNumber: 89) } if _storage._clearEditionDeprecated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEditionDeprecated_p, fieldNumber: 92) + try visitor.visitSingularInt32Field(value: _storage._clearEditionDeprecated_p, fieldNumber: 90) } if _storage._clearEditionIntroduced_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEditionIntroduced_p, fieldNumber: 93) + try visitor.visitSingularInt32Field(value: _storage._clearEditionIntroduced_p, fieldNumber: 91) } if _storage._clearEditionRemoved_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEditionRemoved_p, fieldNumber: 94) + try visitor.visitSingularInt32Field(value: _storage._clearEditionRemoved_p, fieldNumber: 92) } if _storage._clearEnd_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEnd_p, fieldNumber: 95) + try visitor.visitSingularInt32Field(value: _storage._clearEnd_p, fieldNumber: 93) } if _storage._clearEnumType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearEnumType_p, fieldNumber: 96) + try visitor.visitSingularInt32Field(value: _storage._clearEnumType_p, fieldNumber: 94) } if _storage._clearExtendee_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearExtendee_p, fieldNumber: 97) + try visitor.visitSingularInt32Field(value: _storage._clearExtendee_p, fieldNumber: 95) } if _storage._clearExtensionValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearExtensionValue_p, fieldNumber: 98) + try visitor.visitSingularInt32Field(value: _storage._clearExtensionValue_p, fieldNumber: 96) } if _storage._clearFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFeatures_p, fieldNumber: 99) + try visitor.visitSingularInt32Field(value: _storage._clearFeatures_p, fieldNumber: 97) } if _storage._clearFeatureSupport_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFeatureSupport_p, fieldNumber: 100) + try visitor.visitSingularInt32Field(value: _storage._clearFeatureSupport_p, fieldNumber: 98) } if _storage._clearFieldPresence_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFieldPresence_p, fieldNumber: 101) + try visitor.visitSingularInt32Field(value: _storage._clearFieldPresence_p, fieldNumber: 99) } if _storage._clearFixedFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFixedFeatures_p, fieldNumber: 102) + try visitor.visitSingularInt32Field(value: _storage._clearFixedFeatures_p, fieldNumber: 100) } if _storage._clearFullName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearFullName_p, fieldNumber: 103) + try visitor.visitSingularInt32Field(value: _storage._clearFullName_p, fieldNumber: 101) } if _storage._clearGoPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearGoPackage_p, fieldNumber: 104) + try visitor.visitSingularInt32Field(value: _storage._clearGoPackage_p, fieldNumber: 102) } if _storage._clearIdempotencyLevel_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearIdempotencyLevel_p, fieldNumber: 105) + try visitor.visitSingularInt32Field(value: _storage._clearIdempotencyLevel_p, fieldNumber: 103) } if _storage._clearIdentifierValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearIdentifierValue_p, fieldNumber: 106) + try visitor.visitSingularInt32Field(value: _storage._clearIdentifierValue_p, fieldNumber: 104) } if _storage._clearInputType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearInputType_p, fieldNumber: 107) + try visitor.visitSingularInt32Field(value: _storage._clearInputType_p, fieldNumber: 105) } if _storage._clearIsExtension_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearIsExtension_p, fieldNumber: 108) + try visitor.visitSingularInt32Field(value: _storage._clearIsExtension_p, fieldNumber: 106) } if _storage._clearJavaGenerateEqualsAndHash_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaGenerateEqualsAndHash_p, fieldNumber: 109) + try visitor.visitSingularInt32Field(value: _storage._clearJavaGenerateEqualsAndHash_p, fieldNumber: 107) } if _storage._clearJavaGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaGenericServices_p, fieldNumber: 110) + try visitor.visitSingularInt32Field(value: _storage._clearJavaGenericServices_p, fieldNumber: 108) } if _storage._clearJavaMultipleFiles_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaMultipleFiles_p, fieldNumber: 111) + try visitor.visitSingularInt32Field(value: _storage._clearJavaMultipleFiles_p, fieldNumber: 109) } if _storage._clearJavaOuterClassname_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaOuterClassname_p, fieldNumber: 112) + try visitor.visitSingularInt32Field(value: _storage._clearJavaOuterClassname_p, fieldNumber: 110) } if _storage._clearJavaPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaPackage_p, fieldNumber: 113) + try visitor.visitSingularInt32Field(value: _storage._clearJavaPackage_p, fieldNumber: 111) } if _storage._clearJavaStringCheckUtf8_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJavaStringCheckUtf8_p, fieldNumber: 114) + try visitor.visitSingularInt32Field(value: _storage._clearJavaStringCheckUtf8_p, fieldNumber: 112) } if _storage._clearJsonFormat_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJsonFormat_p, fieldNumber: 115) + try visitor.visitSingularInt32Field(value: _storage._clearJsonFormat_p, fieldNumber: 113) } if _storage._clearJsonName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJsonName_p, fieldNumber: 116) + try visitor.visitSingularInt32Field(value: _storage._clearJsonName_p, fieldNumber: 114) } if _storage._clearJstype_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearJstype_p, fieldNumber: 117) + try visitor.visitSingularInt32Field(value: _storage._clearJstype_p, fieldNumber: 115) } if _storage._clearLabel_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearLabel_p, fieldNumber: 118) + try visitor.visitSingularInt32Field(value: _storage._clearLabel_p, fieldNumber: 116) } if _storage._clearLazy_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearLazy_p, fieldNumber: 119) + try visitor.visitSingularInt32Field(value: _storage._clearLazy_p, fieldNumber: 117) } if _storage._clearLeadingComments_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearLeadingComments_p, fieldNumber: 120) + try visitor.visitSingularInt32Field(value: _storage._clearLeadingComments_p, fieldNumber: 118) } if _storage._clearMapEntry_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMapEntry_p, fieldNumber: 121) + try visitor.visitSingularInt32Field(value: _storage._clearMapEntry_p, fieldNumber: 119) } if _storage._clearMaximumEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMaximumEdition_p, fieldNumber: 122) + try visitor.visitSingularInt32Field(value: _storage._clearMaximumEdition_p, fieldNumber: 120) } if _storage._clearMessageEncoding_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMessageEncoding_p, fieldNumber: 123) + try visitor.visitSingularInt32Field(value: _storage._clearMessageEncoding_p, fieldNumber: 121) } if _storage._clearMessageSetWireFormat_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMessageSetWireFormat_p, fieldNumber: 124) + try visitor.visitSingularInt32Field(value: _storage._clearMessageSetWireFormat_p, fieldNumber: 122) } if _storage._clearMinimumEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearMinimumEdition_p, fieldNumber: 125) + try visitor.visitSingularInt32Field(value: _storage._clearMinimumEdition_p, fieldNumber: 123) } if _storage._clearName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearName_p, fieldNumber: 126) + try visitor.visitSingularInt32Field(value: _storage._clearName_p, fieldNumber: 124) } if _storage._clearNamePart_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearNamePart_p, fieldNumber: 127) + try visitor.visitSingularInt32Field(value: _storage._clearNamePart_p, fieldNumber: 125) } if _storage._clearNegativeIntValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearNegativeIntValue_p, fieldNumber: 128) + try visitor.visitSingularInt32Field(value: _storage._clearNegativeIntValue_p, fieldNumber: 126) } if _storage._clearNoStandardDescriptorAccessor_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearNoStandardDescriptorAccessor_p, fieldNumber: 129) + try visitor.visitSingularInt32Field(value: _storage._clearNoStandardDescriptorAccessor_p, fieldNumber: 127) } if _storage._clearNumber_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearNumber_p, fieldNumber: 130) + try visitor.visitSingularInt32Field(value: _storage._clearNumber_p, fieldNumber: 128) } if _storage._clearObjcClassPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearObjcClassPrefix_p, fieldNumber: 131) + try visitor.visitSingularInt32Field(value: _storage._clearObjcClassPrefix_p, fieldNumber: 129) } if _storage._clearOneofIndex_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOneofIndex_p, fieldNumber: 132) + try visitor.visitSingularInt32Field(value: _storage._clearOneofIndex_p, fieldNumber: 130) } if _storage._clearOptimizeFor_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOptimizeFor_p, fieldNumber: 133) + try visitor.visitSingularInt32Field(value: _storage._clearOptimizeFor_p, fieldNumber: 131) } if _storage._clearOptions_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOptions_p, fieldNumber: 134) + try visitor.visitSingularInt32Field(value: _storage._clearOptions_p, fieldNumber: 132) } if _storage._clearOutputType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOutputType_p, fieldNumber: 135) + try visitor.visitSingularInt32Field(value: _storage._clearOutputType_p, fieldNumber: 133) } if _storage._clearOverridableFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearOverridableFeatures_p, fieldNumber: 136) + try visitor.visitSingularInt32Field(value: _storage._clearOverridableFeatures_p, fieldNumber: 134) } if _storage._clearPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPackage_p, fieldNumber: 137) + try visitor.visitSingularInt32Field(value: _storage._clearPackage_p, fieldNumber: 135) } if _storage._clearPacked_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPacked_p, fieldNumber: 138) + try visitor.visitSingularInt32Field(value: _storage._clearPacked_p, fieldNumber: 136) } if _storage._clearPhpClassPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPhpClassPrefix_p, fieldNumber: 139) + try visitor.visitSingularInt32Field(value: _storage._clearPhpClassPrefix_p, fieldNumber: 137) } if _storage._clearPhpMetadataNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPhpMetadataNamespace_p, fieldNumber: 140) + try visitor.visitSingularInt32Field(value: _storage._clearPhpMetadataNamespace_p, fieldNumber: 138) } if _storage._clearPhpNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPhpNamespace_p, fieldNumber: 141) + try visitor.visitSingularInt32Field(value: _storage._clearPhpNamespace_p, fieldNumber: 139) } if _storage._clearPositiveIntValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPositiveIntValue_p, fieldNumber: 142) + try visitor.visitSingularInt32Field(value: _storage._clearPositiveIntValue_p, fieldNumber: 140) } if _storage._clearProto3Optional_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearProto3Optional_p, fieldNumber: 143) + try visitor.visitSingularInt32Field(value: _storage._clearProto3Optional_p, fieldNumber: 141) } if _storage._clearPyGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearPyGenericServices_p, fieldNumber: 144) + try visitor.visitSingularInt32Field(value: _storage._clearPyGenericServices_p, fieldNumber: 142) } if _storage._clearRepeated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearRepeated_p, fieldNumber: 145) + try visitor.visitSingularInt32Field(value: _storage._clearRepeated_p, fieldNumber: 143) } if _storage._clearRepeatedFieldEncoding_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearRepeatedFieldEncoding_p, fieldNumber: 146) + try visitor.visitSingularInt32Field(value: _storage._clearRepeatedFieldEncoding_p, fieldNumber: 144) } if _storage._clearReserved_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearReserved_p, fieldNumber: 147) + try visitor.visitSingularInt32Field(value: _storage._clearReserved_p, fieldNumber: 145) } if _storage._clearRetention_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearRetention_p, fieldNumber: 148) + try visitor.visitSingularInt32Field(value: _storage._clearRetention_p, fieldNumber: 146) } if _storage._clearRubyPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearRubyPackage_p, fieldNumber: 149) + try visitor.visitSingularInt32Field(value: _storage._clearRubyPackage_p, fieldNumber: 147) } if _storage._clearSemantic_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSemantic_p, fieldNumber: 150) + try visitor.visitSingularInt32Field(value: _storage._clearSemantic_p, fieldNumber: 148) } if _storage._clearServerStreaming_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearServerStreaming_p, fieldNumber: 151) + try visitor.visitSingularInt32Field(value: _storage._clearServerStreaming_p, fieldNumber: 149) } if _storage._clearSourceCodeInfo_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSourceCodeInfo_p, fieldNumber: 152) + try visitor.visitSingularInt32Field(value: _storage._clearSourceCodeInfo_p, fieldNumber: 150) } if _storage._clearSourceContext_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSourceContext_p, fieldNumber: 153) + try visitor.visitSingularInt32Field(value: _storage._clearSourceContext_p, fieldNumber: 151) } if _storage._clearSourceFile_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSourceFile_p, fieldNumber: 154) + try visitor.visitSingularInt32Field(value: _storage._clearSourceFile_p, fieldNumber: 152) } if _storage._clearStart_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearStart_p, fieldNumber: 155) + try visitor.visitSingularInt32Field(value: _storage._clearStart_p, fieldNumber: 153) } if _storage._clearStringValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearStringValue_p, fieldNumber: 156) + try visitor.visitSingularInt32Field(value: _storage._clearStringValue_p, fieldNumber: 154) } if _storage._clearSwiftPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSwiftPrefix_p, fieldNumber: 157) + try visitor.visitSingularInt32Field(value: _storage._clearSwiftPrefix_p, fieldNumber: 155) } if _storage._clearSyntax_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearSyntax_p, fieldNumber: 158) + try visitor.visitSingularInt32Field(value: _storage._clearSyntax_p, fieldNumber: 156) } if _storage._clearTrailingComments_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearTrailingComments_p, fieldNumber: 159) + try visitor.visitSingularInt32Field(value: _storage._clearTrailingComments_p, fieldNumber: 157) } if _storage._clearType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearType_p, fieldNumber: 160) + try visitor.visitSingularInt32Field(value: _storage._clearType_p, fieldNumber: 158) } if _storage._clearTypeName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearTypeName_p, fieldNumber: 161) + try visitor.visitSingularInt32Field(value: _storage._clearTypeName_p, fieldNumber: 159) } if _storage._clearUnverifiedLazy_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearUnverifiedLazy_p, fieldNumber: 162) + try visitor.visitSingularInt32Field(value: _storage._clearUnverifiedLazy_p, fieldNumber: 160) } if _storage._clearUtf8Validation_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearUtf8Validation_p, fieldNumber: 163) + try visitor.visitSingularInt32Field(value: _storage._clearUtf8Validation_p, fieldNumber: 161) } if _storage._clearValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearValue_p, fieldNumber: 164) + try visitor.visitSingularInt32Field(value: _storage._clearValue_p, fieldNumber: 162) } if _storage._clearVerification_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearVerification_p, fieldNumber: 165) + try visitor.visitSingularInt32Field(value: _storage._clearVerification_p, fieldNumber: 163) } if _storage._clearWeak_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._clearWeak_p, fieldNumber: 166) + try visitor.visitSingularInt32Field(value: _storage._clearWeak_p, fieldNumber: 164) } if _storage._clientStreaming != 0 { - try visitor.visitSingularInt32Field(value: _storage._clientStreaming, fieldNumber: 167) + try visitor.visitSingularInt32Field(value: _storage._clientStreaming, fieldNumber: 165) } if _storage._code != 0 { - try visitor.visitSingularInt32Field(value: _storage._code, fieldNumber: 168) + try visitor.visitSingularInt32Field(value: _storage._code, fieldNumber: 166) } if _storage._codePoint != 0 { - try visitor.visitSingularInt32Field(value: _storage._codePoint, fieldNumber: 169) + try visitor.visitSingularInt32Field(value: _storage._codePoint, fieldNumber: 167) } if _storage._codeUnits != 0 { - try visitor.visitSingularInt32Field(value: _storage._codeUnits, fieldNumber: 170) + try visitor.visitSingularInt32Field(value: _storage._codeUnits, fieldNumber: 168) } if _storage._collection != 0 { - try visitor.visitSingularInt32Field(value: _storage._collection, fieldNumber: 171) + try visitor.visitSingularInt32Field(value: _storage._collection, fieldNumber: 169) } if _storage._com != 0 { - try visitor.visitSingularInt32Field(value: _storage._com, fieldNumber: 172) + try visitor.visitSingularInt32Field(value: _storage._com, fieldNumber: 170) } if _storage._comma != 0 { - try visitor.visitSingularInt32Field(value: _storage._comma, fieldNumber: 173) + try visitor.visitSingularInt32Field(value: _storage._comma, fieldNumber: 171) } if _storage._consumedBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._consumedBytes, fieldNumber: 174) + try visitor.visitSingularInt32Field(value: _storage._consumedBytes, fieldNumber: 172) } if _storage._contentsOf != 0 { - try visitor.visitSingularInt32Field(value: _storage._contentsOf, fieldNumber: 175) + try visitor.visitSingularInt32Field(value: _storage._contentsOf, fieldNumber: 173) } if _storage._copy != 0 { - try visitor.visitSingularInt32Field(value: _storage._copy, fieldNumber: 176) + try visitor.visitSingularInt32Field(value: _storage._copy, fieldNumber: 174) } if _storage._count != 0 { - try visitor.visitSingularInt32Field(value: _storage._count, fieldNumber: 177) + try visitor.visitSingularInt32Field(value: _storage._count, fieldNumber: 175) } if _storage._countVarintsInBuffer != 0 { - try visitor.visitSingularInt32Field(value: _storage._countVarintsInBuffer, fieldNumber: 178) + try visitor.visitSingularInt32Field(value: _storage._countVarintsInBuffer, fieldNumber: 176) } if _storage._csharpNamespace != 0 { - try visitor.visitSingularInt32Field(value: _storage._csharpNamespace, fieldNumber: 179) + try visitor.visitSingularInt32Field(value: _storage._csharpNamespace, fieldNumber: 177) } if _storage._ctype != 0 { - try visitor.visitSingularInt32Field(value: _storage._ctype, fieldNumber: 180) + try visitor.visitSingularInt32Field(value: _storage._ctype, fieldNumber: 178) } if _storage._customCodable != 0 { - try visitor.visitSingularInt32Field(value: _storage._customCodable, fieldNumber: 181) + try visitor.visitSingularInt32Field(value: _storage._customCodable, fieldNumber: 179) } if _storage._customDebugStringConvertible != 0 { - try visitor.visitSingularInt32Field(value: _storage._customDebugStringConvertible, fieldNumber: 182) + try visitor.visitSingularInt32Field(value: _storage._customDebugStringConvertible, fieldNumber: 180) } if _storage._customStringConvertible != 0 { - try visitor.visitSingularInt32Field(value: _storage._customStringConvertible, fieldNumber: 183) + try visitor.visitSingularInt32Field(value: _storage._customStringConvertible, fieldNumber: 181) } if _storage._d != 0 { - try visitor.visitSingularInt32Field(value: _storage._d, fieldNumber: 184) + try visitor.visitSingularInt32Field(value: _storage._d, fieldNumber: 182) } if _storage._data != 0 { - try visitor.visitSingularInt32Field(value: _storage._data, fieldNumber: 185) + try visitor.visitSingularInt32Field(value: _storage._data, fieldNumber: 183) } if _storage._dataResult != 0 { - try visitor.visitSingularInt32Field(value: _storage._dataResult, fieldNumber: 186) + try visitor.visitSingularInt32Field(value: _storage._dataResult, fieldNumber: 184) } if _storage._date != 0 { - try visitor.visitSingularInt32Field(value: _storage._date, fieldNumber: 187) + try visitor.visitSingularInt32Field(value: _storage._date, fieldNumber: 185) } if _storage._daySec != 0 { - try visitor.visitSingularInt32Field(value: _storage._daySec, fieldNumber: 188) + try visitor.visitSingularInt32Field(value: _storage._daySec, fieldNumber: 186) } if _storage._daysSinceEpoch != 0 { - try visitor.visitSingularInt32Field(value: _storage._daysSinceEpoch, fieldNumber: 189) + try visitor.visitSingularInt32Field(value: _storage._daysSinceEpoch, fieldNumber: 187) } if _storage._debugDescription_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._debugDescription_p, fieldNumber: 190) + try visitor.visitSingularInt32Field(value: _storage._debugDescription_p, fieldNumber: 188) } if _storage._debugRedact != 0 { - try visitor.visitSingularInt32Field(value: _storage._debugRedact, fieldNumber: 191) + try visitor.visitSingularInt32Field(value: _storage._debugRedact, fieldNumber: 189) } if _storage._declaration != 0 { - try visitor.visitSingularInt32Field(value: _storage._declaration, fieldNumber: 192) + try visitor.visitSingularInt32Field(value: _storage._declaration, fieldNumber: 190) } if _storage._decoded != 0 { - try visitor.visitSingularInt32Field(value: _storage._decoded, fieldNumber: 193) + try visitor.visitSingularInt32Field(value: _storage._decoded, fieldNumber: 191) } if _storage._decodedFromJsonnull != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodedFromJsonnull, fieldNumber: 194) + try visitor.visitSingularInt32Field(value: _storage._decodedFromJsonnull, fieldNumber: 192) } if _storage._decodeExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeExtensionField, fieldNumber: 195) + try visitor.visitSingularInt32Field(value: _storage._decodeExtensionField, fieldNumber: 193) } if _storage._decodeExtensionFieldsAsMessageSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeExtensionFieldsAsMessageSet, fieldNumber: 196) + try visitor.visitSingularInt32Field(value: _storage._decodeExtensionFieldsAsMessageSet, fieldNumber: 194) } if _storage._decodeJson != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeJson, fieldNumber: 197) + try visitor.visitSingularInt32Field(value: _storage._decodeJson, fieldNumber: 195) } if _storage._decodeMapField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeMapField, fieldNumber: 198) + try visitor.visitSingularInt32Field(value: _storage._decodeMapField, fieldNumber: 196) } if _storage._decodeMessage != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeMessage, fieldNumber: 199) + try visitor.visitSingularInt32Field(value: _storage._decodeMessage, fieldNumber: 197) } if _storage._decoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._decoder, fieldNumber: 200) + try visitor.visitSingularInt32Field(value: _storage._decoder, fieldNumber: 198) } if _storage._decodeRepeated != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeated, fieldNumber: 201) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeated, fieldNumber: 199) } if _storage._decodeRepeatedBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedBoolField, fieldNumber: 202) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedBoolField, fieldNumber: 200) } if _storage._decodeRepeatedBytesField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedBytesField, fieldNumber: 203) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedBytesField, fieldNumber: 201) } if _storage._decodeRepeatedDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedDoubleField, fieldNumber: 204) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedDoubleField, fieldNumber: 202) } if _storage._decodeRepeatedEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedEnumField, fieldNumber: 205) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedEnumField, fieldNumber: 203) } if _storage._decodeRepeatedFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFixed32Field, fieldNumber: 206) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFixed32Field, fieldNumber: 204) } if _storage._decodeRepeatedFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFixed64Field, fieldNumber: 207) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFixed64Field, fieldNumber: 205) } if _storage._decodeRepeatedFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFloatField, fieldNumber: 208) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedFloatField, fieldNumber: 206) } if _storage._decodeRepeatedGroupField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedGroupField, fieldNumber: 209) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedGroupField, fieldNumber: 207) } if _storage._decodeRepeatedInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedInt32Field, fieldNumber: 210) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedInt32Field, fieldNumber: 208) } if _storage._decodeRepeatedInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedInt64Field, fieldNumber: 211) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedInt64Field, fieldNumber: 209) } if _storage._decodeRepeatedMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedMessageField, fieldNumber: 212) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedMessageField, fieldNumber: 210) } if _storage._decodeRepeatedSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSfixed32Field, fieldNumber: 213) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSfixed32Field, fieldNumber: 211) } if _storage._decodeRepeatedSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSfixed64Field, fieldNumber: 214) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSfixed64Field, fieldNumber: 212) } if _storage._decodeRepeatedSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSint32Field, fieldNumber: 215) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSint32Field, fieldNumber: 213) } if _storage._decodeRepeatedSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSint64Field, fieldNumber: 216) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedSint64Field, fieldNumber: 214) } if _storage._decodeRepeatedStringField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedStringField, fieldNumber: 217) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedStringField, fieldNumber: 215) } if _storage._decodeRepeatedUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedUint32Field, fieldNumber: 218) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedUint32Field, fieldNumber: 216) } if _storage._decodeRepeatedUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedUint64Field, fieldNumber: 219) + try visitor.visitSingularInt32Field(value: _storage._decodeRepeatedUint64Field, fieldNumber: 217) } if _storage._decodeSingular != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingular, fieldNumber: 220) + try visitor.visitSingularInt32Field(value: _storage._decodeSingular, fieldNumber: 218) } if _storage._decodeSingularBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularBoolField, fieldNumber: 221) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularBoolField, fieldNumber: 219) } if _storage._decodeSingularBytesField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularBytesField, fieldNumber: 222) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularBytesField, fieldNumber: 220) } if _storage._decodeSingularDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularDoubleField, fieldNumber: 223) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularDoubleField, fieldNumber: 221) } if _storage._decodeSingularEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularEnumField, fieldNumber: 224) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularEnumField, fieldNumber: 222) } if _storage._decodeSingularFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularFixed32Field, fieldNumber: 225) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularFixed32Field, fieldNumber: 223) } if _storage._decodeSingularFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularFixed64Field, fieldNumber: 226) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularFixed64Field, fieldNumber: 224) } if _storage._decodeSingularFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularFloatField, fieldNumber: 227) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularFloatField, fieldNumber: 225) } if _storage._decodeSingularGroupField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularGroupField, fieldNumber: 228) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularGroupField, fieldNumber: 226) } if _storage._decodeSingularInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularInt32Field, fieldNumber: 229) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularInt32Field, fieldNumber: 227) } if _storage._decodeSingularInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularInt64Field, fieldNumber: 230) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularInt64Field, fieldNumber: 228) } if _storage._decodeSingularMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularMessageField, fieldNumber: 231) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularMessageField, fieldNumber: 229) } if _storage._decodeSingularSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularSfixed32Field, fieldNumber: 232) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularSfixed32Field, fieldNumber: 230) } if _storage._decodeSingularSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularSfixed64Field, fieldNumber: 233) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularSfixed64Field, fieldNumber: 231) } if _storage._decodeSingularSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularSint32Field, fieldNumber: 234) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularSint32Field, fieldNumber: 232) } if _storage._decodeSingularSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularSint64Field, fieldNumber: 235) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularSint64Field, fieldNumber: 233) } if _storage._decodeSingularStringField != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularStringField, fieldNumber: 236) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularStringField, fieldNumber: 234) } if _storage._decodeSingularUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularUint32Field, fieldNumber: 237) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularUint32Field, fieldNumber: 235) } if _storage._decodeSingularUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeSingularUint64Field, fieldNumber: 238) + try visitor.visitSingularInt32Field(value: _storage._decodeSingularUint64Field, fieldNumber: 236) } if _storage._decodeTextFormat != 0 { - try visitor.visitSingularInt32Field(value: _storage._decodeTextFormat, fieldNumber: 239) + try visitor.visitSingularInt32Field(value: _storage._decodeTextFormat, fieldNumber: 237) } if _storage._defaultAnyTypeUrlprefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._defaultAnyTypeUrlprefix, fieldNumber: 240) + try visitor.visitSingularInt32Field(value: _storage._defaultAnyTypeUrlprefix, fieldNumber: 238) } if _storage._defaults != 0 { - try visitor.visitSingularInt32Field(value: _storage._defaults, fieldNumber: 241) + try visitor.visitSingularInt32Field(value: _storage._defaults, fieldNumber: 239) } if _storage._defaultValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._defaultValue, fieldNumber: 242) + try visitor.visitSingularInt32Field(value: _storage._defaultValue, fieldNumber: 240) } if _storage._dependency != 0 { - try visitor.visitSingularInt32Field(value: _storage._dependency, fieldNumber: 243) + try visitor.visitSingularInt32Field(value: _storage._dependency, fieldNumber: 241) } if _storage._deprecated != 0 { - try visitor.visitSingularInt32Field(value: _storage._deprecated, fieldNumber: 244) + try visitor.visitSingularInt32Field(value: _storage._deprecated, fieldNumber: 242) } if _storage._deprecatedLegacyJsonFieldConflicts != 0 { - try visitor.visitSingularInt32Field(value: _storage._deprecatedLegacyJsonFieldConflicts, fieldNumber: 245) + try visitor.visitSingularInt32Field(value: _storage._deprecatedLegacyJsonFieldConflicts, fieldNumber: 243) } if _storage._deprecationWarning != 0 { - try visitor.visitSingularInt32Field(value: _storage._deprecationWarning, fieldNumber: 246) + try visitor.visitSingularInt32Field(value: _storage._deprecationWarning, fieldNumber: 244) } if _storage._description_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._description_p, fieldNumber: 247) + try visitor.visitSingularInt32Field(value: _storage._description_p, fieldNumber: 245) } if _storage._descriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._descriptorProto, fieldNumber: 248) + try visitor.visitSingularInt32Field(value: _storage._descriptorProto, fieldNumber: 246) } if _storage._dictionary != 0 { - try visitor.visitSingularInt32Field(value: _storage._dictionary, fieldNumber: 249) + try visitor.visitSingularInt32Field(value: _storage._dictionary, fieldNumber: 247) } if _storage._dictionaryLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._dictionaryLiteral, fieldNumber: 250) + try visitor.visitSingularInt32Field(value: _storage._dictionaryLiteral, fieldNumber: 248) } if _storage._digit != 0 { - try visitor.visitSingularInt32Field(value: _storage._digit, fieldNumber: 251) + try visitor.visitSingularInt32Field(value: _storage._digit, fieldNumber: 249) } if _storage._digit0 != 0 { - try visitor.visitSingularInt32Field(value: _storage._digit0, fieldNumber: 252) + try visitor.visitSingularInt32Field(value: _storage._digit0, fieldNumber: 250) } if _storage._digit1 != 0 { - try visitor.visitSingularInt32Field(value: _storage._digit1, fieldNumber: 253) + try visitor.visitSingularInt32Field(value: _storage._digit1, fieldNumber: 251) } if _storage._digitCount != 0 { - try visitor.visitSingularInt32Field(value: _storage._digitCount, fieldNumber: 254) + try visitor.visitSingularInt32Field(value: _storage._digitCount, fieldNumber: 252) } if _storage._digits != 0 { - try visitor.visitSingularInt32Field(value: _storage._digits, fieldNumber: 255) + try visitor.visitSingularInt32Field(value: _storage._digits, fieldNumber: 253) } if _storage._digitValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._digitValue, fieldNumber: 256) + try visitor.visitSingularInt32Field(value: _storage._digitValue, fieldNumber: 254) } if _storage._discardableResult != 0 { - try visitor.visitSingularInt32Field(value: _storage._discardableResult, fieldNumber: 257) + try visitor.visitSingularInt32Field(value: _storage._discardableResult, fieldNumber: 255) } if _storage._discardUnknownFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._discardUnknownFields, fieldNumber: 258) + try visitor.visitSingularInt32Field(value: _storage._discardUnknownFields, fieldNumber: 256) } if _storage._double != 0 { - try visitor.visitSingularInt32Field(value: _storage._double, fieldNumber: 259) + try visitor.visitSingularInt32Field(value: _storage._double, fieldNumber: 257) } if _storage._doubleValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._doubleValue, fieldNumber: 260) + try visitor.visitSingularInt32Field(value: _storage._doubleValue, fieldNumber: 258) } if _storage._duration != 0 { - try visitor.visitSingularInt32Field(value: _storage._duration, fieldNumber: 261) + try visitor.visitSingularInt32Field(value: _storage._duration, fieldNumber: 259) } if _storage._e != 0 { - try visitor.visitSingularInt32Field(value: _storage._e, fieldNumber: 262) + try visitor.visitSingularInt32Field(value: _storage._e, fieldNumber: 260) } if _storage._edition != 0 { - try visitor.visitSingularInt32Field(value: _storage._edition, fieldNumber: 263) + try visitor.visitSingularInt32Field(value: _storage._edition, fieldNumber: 261) } if _storage._editionDefault != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionDefault, fieldNumber: 264) + try visitor.visitSingularInt32Field(value: _storage._editionDefault, fieldNumber: 262) } if _storage._editionDefaults != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionDefaults, fieldNumber: 265) + try visitor.visitSingularInt32Field(value: _storage._editionDefaults, fieldNumber: 263) } if _storage._editionDeprecated != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionDeprecated, fieldNumber: 266) + try visitor.visitSingularInt32Field(value: _storage._editionDeprecated, fieldNumber: 264) } if _storage._editionIntroduced != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionIntroduced, fieldNumber: 267) + try visitor.visitSingularInt32Field(value: _storage._editionIntroduced, fieldNumber: 265) } if _storage._editionRemoved != 0 { - try visitor.visitSingularInt32Field(value: _storage._editionRemoved, fieldNumber: 268) + try visitor.visitSingularInt32Field(value: _storage._editionRemoved, fieldNumber: 266) } if _storage._element != 0 { - try visitor.visitSingularInt32Field(value: _storage._element, fieldNumber: 269) + try visitor.visitSingularInt32Field(value: _storage._element, fieldNumber: 267) } if _storage._elements != 0 { - try visitor.visitSingularInt32Field(value: _storage._elements, fieldNumber: 270) + try visitor.visitSingularInt32Field(value: _storage._elements, fieldNumber: 268) } if _storage._emitExtensionFieldName != 0 { - try visitor.visitSingularInt32Field(value: _storage._emitExtensionFieldName, fieldNumber: 271) + try visitor.visitSingularInt32Field(value: _storage._emitExtensionFieldName, fieldNumber: 269) } if _storage._emitFieldName != 0 { - try visitor.visitSingularInt32Field(value: _storage._emitFieldName, fieldNumber: 272) + try visitor.visitSingularInt32Field(value: _storage._emitFieldName, fieldNumber: 270) } if _storage._emitFieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._emitFieldNumber, fieldNumber: 273) + try visitor.visitSingularInt32Field(value: _storage._emitFieldNumber, fieldNumber: 271) } if _storage._empty != 0 { - try visitor.visitSingularInt32Field(value: _storage._empty, fieldNumber: 274) + try visitor.visitSingularInt32Field(value: _storage._empty, fieldNumber: 272) } if _storage._encodeAsBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._encodeAsBytes, fieldNumber: 275) + try visitor.visitSingularInt32Field(value: _storage._encodeAsBytes, fieldNumber: 273) } if _storage._encoded != 0 { - try visitor.visitSingularInt32Field(value: _storage._encoded, fieldNumber: 276) + try visitor.visitSingularInt32Field(value: _storage._encoded, fieldNumber: 274) } if _storage._encodedJsonstring != 0 { - try visitor.visitSingularInt32Field(value: _storage._encodedJsonstring, fieldNumber: 277) + try visitor.visitSingularInt32Field(value: _storage._encodedJsonstring, fieldNumber: 275) } if _storage._encodedSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._encodedSize, fieldNumber: 278) + try visitor.visitSingularInt32Field(value: _storage._encodedSize, fieldNumber: 276) } if _storage._encodeField != 0 { - try visitor.visitSingularInt32Field(value: _storage._encodeField, fieldNumber: 279) + try visitor.visitSingularInt32Field(value: _storage._encodeField, fieldNumber: 277) } if _storage._encoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._encoder, fieldNumber: 280) + try visitor.visitSingularInt32Field(value: _storage._encoder, fieldNumber: 278) } if _storage._end != 0 { - try visitor.visitSingularInt32Field(value: _storage._end, fieldNumber: 281) + try visitor.visitSingularInt32Field(value: _storage._end, fieldNumber: 279) } if _storage._endArray != 0 { - try visitor.visitSingularInt32Field(value: _storage._endArray, fieldNumber: 282) + try visitor.visitSingularInt32Field(value: _storage._endArray, fieldNumber: 280) } if _storage._endMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._endMessageField, fieldNumber: 283) + try visitor.visitSingularInt32Field(value: _storage._endMessageField, fieldNumber: 281) } if _storage._endObject != 0 { - try visitor.visitSingularInt32Field(value: _storage._endObject, fieldNumber: 284) + try visitor.visitSingularInt32Field(value: _storage._endObject, fieldNumber: 282) } if _storage._endRegularField != 0 { - try visitor.visitSingularInt32Field(value: _storage._endRegularField, fieldNumber: 285) + try visitor.visitSingularInt32Field(value: _storage._endRegularField, fieldNumber: 283) } if _storage._enum != 0 { - try visitor.visitSingularInt32Field(value: _storage._enum, fieldNumber: 286) + try visitor.visitSingularInt32Field(value: _storage._enum, fieldNumber: 284) } if _storage._enumDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumDescriptorProto, fieldNumber: 287) + try visitor.visitSingularInt32Field(value: _storage._enumDescriptorProto, fieldNumber: 285) } if _storage._enumOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumOptions, fieldNumber: 288) + try visitor.visitSingularInt32Field(value: _storage._enumOptions, fieldNumber: 286) } if _storage._enumReservedRange != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumReservedRange, fieldNumber: 289) + try visitor.visitSingularInt32Field(value: _storage._enumReservedRange, fieldNumber: 287) } if _storage._enumType != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumType, fieldNumber: 290) + try visitor.visitSingularInt32Field(value: _storage._enumType, fieldNumber: 288) } if _storage._enumvalue != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumvalue, fieldNumber: 291) + try visitor.visitSingularInt32Field(value: _storage._enumvalue, fieldNumber: 289) } if _storage._enumValueDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumValueDescriptorProto, fieldNumber: 292) + try visitor.visitSingularInt32Field(value: _storage._enumValueDescriptorProto, fieldNumber: 290) } if _storage._enumValueOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._enumValueOptions, fieldNumber: 293) + try visitor.visitSingularInt32Field(value: _storage._enumValueOptions, fieldNumber: 291) } if _storage._equatable != 0 { - try visitor.visitSingularInt32Field(value: _storage._equatable, fieldNumber: 294) + try visitor.visitSingularInt32Field(value: _storage._equatable, fieldNumber: 292) } if _storage._error != 0 { - try visitor.visitSingularInt32Field(value: _storage._error, fieldNumber: 295) + try visitor.visitSingularInt32Field(value: _storage._error, fieldNumber: 293) } if _storage._expressibleByArrayLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._expressibleByArrayLiteral, fieldNumber: 296) + try visitor.visitSingularInt32Field(value: _storage._expressibleByArrayLiteral, fieldNumber: 294) } if _storage._expressibleByDictionaryLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._expressibleByDictionaryLiteral, fieldNumber: 297) + try visitor.visitSingularInt32Field(value: _storage._expressibleByDictionaryLiteral, fieldNumber: 295) } if _storage._ext != 0 { - try visitor.visitSingularInt32Field(value: _storage._ext, fieldNumber: 298) + try visitor.visitSingularInt32Field(value: _storage._ext, fieldNumber: 296) } if _storage._extDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._extDecoder, fieldNumber: 299) + try visitor.visitSingularInt32Field(value: _storage._extDecoder, fieldNumber: 297) } if _storage._extendedGraphemeClusterLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._extendedGraphemeClusterLiteral, fieldNumber: 300) + try visitor.visitSingularInt32Field(value: _storage._extendedGraphemeClusterLiteral, fieldNumber: 298) } if _storage._extendedGraphemeClusterLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._extendedGraphemeClusterLiteralType, fieldNumber: 301) + try visitor.visitSingularInt32Field(value: _storage._extendedGraphemeClusterLiteralType, fieldNumber: 299) } if _storage._extendee != 0 { - try visitor.visitSingularInt32Field(value: _storage._extendee, fieldNumber: 302) + try visitor.visitSingularInt32Field(value: _storage._extendee, fieldNumber: 300) } if _storage._extensibleMessage != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensibleMessage, fieldNumber: 303) + try visitor.visitSingularInt32Field(value: _storage._extensibleMessage, fieldNumber: 301) } if _storage._extension != 0 { - try visitor.visitSingularInt32Field(value: _storage._extension, fieldNumber: 304) + try visitor.visitSingularInt32Field(value: _storage._extension, fieldNumber: 302) } if _storage._extensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionField, fieldNumber: 305) + try visitor.visitSingularInt32Field(value: _storage._extensionField, fieldNumber: 303) } if _storage._extensionFieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionFieldNumber, fieldNumber: 306) + try visitor.visitSingularInt32Field(value: _storage._extensionFieldNumber, fieldNumber: 304) } if _storage._extensionFieldValueSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionFieldValueSet, fieldNumber: 307) + try visitor.visitSingularInt32Field(value: _storage._extensionFieldValueSet, fieldNumber: 305) } if _storage._extensionMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionMap, fieldNumber: 308) + try visitor.visitSingularInt32Field(value: _storage._extensionMap, fieldNumber: 306) } if _storage._extensionRange != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionRange, fieldNumber: 309) + try visitor.visitSingularInt32Field(value: _storage._extensionRange, fieldNumber: 307) } if _storage._extensionRangeOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensionRangeOptions, fieldNumber: 310) + try visitor.visitSingularInt32Field(value: _storage._extensionRangeOptions, fieldNumber: 308) } if _storage._extensions != 0 { - try visitor.visitSingularInt32Field(value: _storage._extensions, fieldNumber: 311) + try visitor.visitSingularInt32Field(value: _storage._extensions, fieldNumber: 309) } if _storage._extras != 0 { - try visitor.visitSingularInt32Field(value: _storage._extras, fieldNumber: 312) + try visitor.visitSingularInt32Field(value: _storage._extras, fieldNumber: 310) } if _storage._f != 0 { - try visitor.visitSingularInt32Field(value: _storage._f, fieldNumber: 313) + try visitor.visitSingularInt32Field(value: _storage._f, fieldNumber: 311) } if _storage._false != 0 { - try visitor.visitSingularInt32Field(value: _storage._false, fieldNumber: 314) + try visitor.visitSingularInt32Field(value: _storage._false, fieldNumber: 312) } if _storage._features != 0 { - try visitor.visitSingularInt32Field(value: _storage._features, fieldNumber: 315) + try visitor.visitSingularInt32Field(value: _storage._features, fieldNumber: 313) } if _storage._featureSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._featureSet, fieldNumber: 316) + try visitor.visitSingularInt32Field(value: _storage._featureSet, fieldNumber: 314) } if _storage._featureSetDefaults != 0 { - try visitor.visitSingularInt32Field(value: _storage._featureSetDefaults, fieldNumber: 317) + try visitor.visitSingularInt32Field(value: _storage._featureSetDefaults, fieldNumber: 315) } if _storage._featureSetEditionDefault != 0 { - try visitor.visitSingularInt32Field(value: _storage._featureSetEditionDefault, fieldNumber: 318) + try visitor.visitSingularInt32Field(value: _storage._featureSetEditionDefault, fieldNumber: 316) } if _storage._featureSupport != 0 { - try visitor.visitSingularInt32Field(value: _storage._featureSupport, fieldNumber: 319) + try visitor.visitSingularInt32Field(value: _storage._featureSupport, fieldNumber: 317) } if _storage._field != 0 { - try visitor.visitSingularInt32Field(value: _storage._field, fieldNumber: 320) + try visitor.visitSingularInt32Field(value: _storage._field, fieldNumber: 318) } if _storage._fieldData != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldData, fieldNumber: 321) + try visitor.visitSingularInt32Field(value: _storage._fieldData, fieldNumber: 319) } if _storage._fieldDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldDescriptorProto, fieldNumber: 322) + try visitor.visitSingularInt32Field(value: _storage._fieldDescriptorProto, fieldNumber: 320) } if _storage._fieldMask != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldMask, fieldNumber: 323) + try visitor.visitSingularInt32Field(value: _storage._fieldMask, fieldNumber: 321) } if _storage._fieldName != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldName, fieldNumber: 324) + try visitor.visitSingularInt32Field(value: _storage._fieldName, fieldNumber: 322) } if _storage._fieldNameCount != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldNameCount, fieldNumber: 325) + try visitor.visitSingularInt32Field(value: _storage._fieldNameCount, fieldNumber: 323) } if _storage._fieldNum != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldNum, fieldNumber: 326) + try visitor.visitSingularInt32Field(value: _storage._fieldNum, fieldNumber: 324) } if _storage._fieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldNumber, fieldNumber: 327) + try visitor.visitSingularInt32Field(value: _storage._fieldNumber, fieldNumber: 325) } if _storage._fieldNumberForProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldNumberForProto, fieldNumber: 328) + try visitor.visitSingularInt32Field(value: _storage._fieldNumberForProto, fieldNumber: 326) } if _storage._fieldOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldOptions, fieldNumber: 329) + try visitor.visitSingularInt32Field(value: _storage._fieldOptions, fieldNumber: 327) } if _storage._fieldPresence != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldPresence, fieldNumber: 330) + try visitor.visitSingularInt32Field(value: _storage._fieldPresence, fieldNumber: 328) } if _storage._fields != 0 { - try visitor.visitSingularInt32Field(value: _storage._fields, fieldNumber: 331) + try visitor.visitSingularInt32Field(value: _storage._fields, fieldNumber: 329) } if _storage._fieldSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldSize, fieldNumber: 332) + try visitor.visitSingularInt32Field(value: _storage._fieldSize, fieldNumber: 330) } if _storage._fieldTag != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldTag, fieldNumber: 333) + try visitor.visitSingularInt32Field(value: _storage._fieldTag, fieldNumber: 331) } if _storage._fieldType != 0 { - try visitor.visitSingularInt32Field(value: _storage._fieldType, fieldNumber: 334) + try visitor.visitSingularInt32Field(value: _storage._fieldType, fieldNumber: 332) } if _storage._file != 0 { - try visitor.visitSingularInt32Field(value: _storage._file, fieldNumber: 335) + try visitor.visitSingularInt32Field(value: _storage._file, fieldNumber: 333) } if _storage._fileDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._fileDescriptorProto, fieldNumber: 336) + try visitor.visitSingularInt32Field(value: _storage._fileDescriptorProto, fieldNumber: 334) } if _storage._fileDescriptorSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._fileDescriptorSet, fieldNumber: 337) + try visitor.visitSingularInt32Field(value: _storage._fileDescriptorSet, fieldNumber: 335) } if _storage._fileName != 0 { - try visitor.visitSingularInt32Field(value: _storage._fileName, fieldNumber: 338) + try visitor.visitSingularInt32Field(value: _storage._fileName, fieldNumber: 336) } if _storage._fileOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._fileOptions, fieldNumber: 339) + try visitor.visitSingularInt32Field(value: _storage._fileOptions, fieldNumber: 337) } if _storage._filter != 0 { - try visitor.visitSingularInt32Field(value: _storage._filter, fieldNumber: 340) + try visitor.visitSingularInt32Field(value: _storage._filter, fieldNumber: 338) } if _storage._final != 0 { - try visitor.visitSingularInt32Field(value: _storage._final, fieldNumber: 341) + try visitor.visitSingularInt32Field(value: _storage._final, fieldNumber: 339) } if _storage._finiteOnly != 0 { - try visitor.visitSingularInt32Field(value: _storage._finiteOnly, fieldNumber: 342) + try visitor.visitSingularInt32Field(value: _storage._finiteOnly, fieldNumber: 340) } if _storage._first != 0 { - try visitor.visitSingularInt32Field(value: _storage._first, fieldNumber: 343) + try visitor.visitSingularInt32Field(value: _storage._first, fieldNumber: 341) } if _storage._firstItem != 0 { - try visitor.visitSingularInt32Field(value: _storage._firstItem, fieldNumber: 344) + try visitor.visitSingularInt32Field(value: _storage._firstItem, fieldNumber: 342) } if _storage._fixedFeatures != 0 { - try visitor.visitSingularInt32Field(value: _storage._fixedFeatures, fieldNumber: 345) + try visitor.visitSingularInt32Field(value: _storage._fixedFeatures, fieldNumber: 343) } if _storage._float != 0 { - try visitor.visitSingularInt32Field(value: _storage._float, fieldNumber: 346) + try visitor.visitSingularInt32Field(value: _storage._float, fieldNumber: 344) } if _storage._floatLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._floatLiteral, fieldNumber: 347) + try visitor.visitSingularInt32Field(value: _storage._floatLiteral, fieldNumber: 345) } if _storage._floatLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._floatLiteralType, fieldNumber: 348) + try visitor.visitSingularInt32Field(value: _storage._floatLiteralType, fieldNumber: 346) } if _storage._floatValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._floatValue, fieldNumber: 349) + try visitor.visitSingularInt32Field(value: _storage._floatValue, fieldNumber: 347) } if _storage._forMessageName != 0 { - try visitor.visitSingularInt32Field(value: _storage._forMessageName, fieldNumber: 350) + try visitor.visitSingularInt32Field(value: _storage._forMessageName, fieldNumber: 348) } if _storage._formUnion != 0 { - try visitor.visitSingularInt32Field(value: _storage._formUnion, fieldNumber: 351) + try visitor.visitSingularInt32Field(value: _storage._formUnion, fieldNumber: 349) } if _storage._forReadingFrom != 0 { - try visitor.visitSingularInt32Field(value: _storage._forReadingFrom, fieldNumber: 352) + try visitor.visitSingularInt32Field(value: _storage._forReadingFrom, fieldNumber: 350) } if _storage._forTypeURL != 0 { - try visitor.visitSingularInt32Field(value: _storage._forTypeURL, fieldNumber: 353) + try visitor.visitSingularInt32Field(value: _storage._forTypeURL, fieldNumber: 351) } if _storage._forwardParser != 0 { - try visitor.visitSingularInt32Field(value: _storage._forwardParser, fieldNumber: 354) + try visitor.visitSingularInt32Field(value: _storage._forwardParser, fieldNumber: 352) } if _storage._forWritingInto != 0 { - try visitor.visitSingularInt32Field(value: _storage._forWritingInto, fieldNumber: 355) + try visitor.visitSingularInt32Field(value: _storage._forWritingInto, fieldNumber: 353) } if _storage._from != 0 { - try visitor.visitSingularInt32Field(value: _storage._from, fieldNumber: 356) + try visitor.visitSingularInt32Field(value: _storage._from, fieldNumber: 354) } if _storage._fromAscii2 != 0 { - try visitor.visitSingularInt32Field(value: _storage._fromAscii2, fieldNumber: 357) + try visitor.visitSingularInt32Field(value: _storage._fromAscii2, fieldNumber: 355) } if _storage._fromAscii4 != 0 { - try visitor.visitSingularInt32Field(value: _storage._fromAscii4, fieldNumber: 358) + try visitor.visitSingularInt32Field(value: _storage._fromAscii4, fieldNumber: 356) } if _storage._fromByteOffset != 0 { - try visitor.visitSingularInt32Field(value: _storage._fromByteOffset, fieldNumber: 359) + try visitor.visitSingularInt32Field(value: _storage._fromByteOffset, fieldNumber: 357) } if _storage._fromHexDigit != 0 { - try visitor.visitSingularInt32Field(value: _storage._fromHexDigit, fieldNumber: 360) + try visitor.visitSingularInt32Field(value: _storage._fromHexDigit, fieldNumber: 358) } if _storage._fullName != 0 { - try visitor.visitSingularInt32Field(value: _storage._fullName, fieldNumber: 361) + try visitor.visitSingularInt32Field(value: _storage._fullName, fieldNumber: 359) } if _storage._func != 0 { - try visitor.visitSingularInt32Field(value: _storage._func, fieldNumber: 362) + try visitor.visitSingularInt32Field(value: _storage._func, fieldNumber: 360) } if _storage._function != 0 { - try visitor.visitSingularInt32Field(value: _storage._function, fieldNumber: 363) + try visitor.visitSingularInt32Field(value: _storage._function, fieldNumber: 361) } if _storage._g != 0 { - try visitor.visitSingularInt32Field(value: _storage._g, fieldNumber: 364) + try visitor.visitSingularInt32Field(value: _storage._g, fieldNumber: 362) } if _storage._generatedCodeInfo != 0 { - try visitor.visitSingularInt32Field(value: _storage._generatedCodeInfo, fieldNumber: 365) + try visitor.visitSingularInt32Field(value: _storage._generatedCodeInfo, fieldNumber: 363) } if _storage._get != 0 { - try visitor.visitSingularInt32Field(value: _storage._get, fieldNumber: 366) + try visitor.visitSingularInt32Field(value: _storage._get, fieldNumber: 364) } if _storage._getExtensionValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._getExtensionValue, fieldNumber: 367) + try visitor.visitSingularInt32Field(value: _storage._getExtensionValue, fieldNumber: 365) } if _storage._googleapis != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleapis, fieldNumber: 368) + try visitor.visitSingularInt32Field(value: _storage._googleapis, fieldNumber: 366) } if _storage._googleProtobufAny != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufAny, fieldNumber: 369) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufAny, fieldNumber: 367) } if _storage._googleProtobufApi != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufApi, fieldNumber: 370) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufApi, fieldNumber: 368) } if _storage._googleProtobufBoolValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufBoolValue, fieldNumber: 371) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufBoolValue, fieldNumber: 369) } if _storage._googleProtobufBytesValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufBytesValue, fieldNumber: 372) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufBytesValue, fieldNumber: 370) } if _storage._googleProtobufDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufDescriptorProto, fieldNumber: 373) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufDescriptorProto, fieldNumber: 371) } if _storage._googleProtobufDoubleValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufDoubleValue, fieldNumber: 374) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufDoubleValue, fieldNumber: 372) } if _storage._googleProtobufDuration != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufDuration, fieldNumber: 375) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufDuration, fieldNumber: 373) } if _storage._googleProtobufEdition != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEdition, fieldNumber: 376) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEdition, fieldNumber: 374) } if _storage._googleProtobufEmpty != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEmpty, fieldNumber: 377) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEmpty, fieldNumber: 375) } if _storage._googleProtobufEnum != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnum, fieldNumber: 378) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnum, fieldNumber: 376) } if _storage._googleProtobufEnumDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumDescriptorProto, fieldNumber: 379) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumDescriptorProto, fieldNumber: 377) } if _storage._googleProtobufEnumOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumOptions, fieldNumber: 380) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumOptions, fieldNumber: 378) } if _storage._googleProtobufEnumValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValue, fieldNumber: 381) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValue, fieldNumber: 379) } if _storage._googleProtobufEnumValueDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValueDescriptorProto, fieldNumber: 382) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValueDescriptorProto, fieldNumber: 380) } if _storage._googleProtobufEnumValueOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValueOptions, fieldNumber: 383) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufEnumValueOptions, fieldNumber: 381) } if _storage._googleProtobufExtensionRangeOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufExtensionRangeOptions, fieldNumber: 384) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufExtensionRangeOptions, fieldNumber: 382) } if _storage._googleProtobufFeatureSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFeatureSet, fieldNumber: 385) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFeatureSet, fieldNumber: 383) } if _storage._googleProtobufFeatureSetDefaults != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFeatureSetDefaults, fieldNumber: 386) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFeatureSetDefaults, fieldNumber: 384) } if _storage._googleProtobufField != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufField, fieldNumber: 387) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufField, fieldNumber: 385) } if _storage._googleProtobufFieldDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldDescriptorProto, fieldNumber: 388) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldDescriptorProto, fieldNumber: 386) } if _storage._googleProtobufFieldMask != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldMask, fieldNumber: 389) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldMask, fieldNumber: 387) } if _storage._googleProtobufFieldOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldOptions, fieldNumber: 390) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFieldOptions, fieldNumber: 388) } if _storage._googleProtobufFileDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileDescriptorProto, fieldNumber: 391) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileDescriptorProto, fieldNumber: 389) } if _storage._googleProtobufFileDescriptorSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileDescriptorSet, fieldNumber: 392) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileDescriptorSet, fieldNumber: 390) } if _storage._googleProtobufFileOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileOptions, fieldNumber: 393) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFileOptions, fieldNumber: 391) } if _storage._googleProtobufFloatValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufFloatValue, fieldNumber: 394) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufFloatValue, fieldNumber: 392) } if _storage._googleProtobufGeneratedCodeInfo != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufGeneratedCodeInfo, fieldNumber: 395) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufGeneratedCodeInfo, fieldNumber: 393) } if _storage._googleProtobufInt32Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufInt32Value, fieldNumber: 396) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufInt32Value, fieldNumber: 394) } if _storage._googleProtobufInt64Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufInt64Value, fieldNumber: 397) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufInt64Value, fieldNumber: 395) } if _storage._googleProtobufListValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufListValue, fieldNumber: 398) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufListValue, fieldNumber: 396) } if _storage._googleProtobufMessageOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMessageOptions, fieldNumber: 399) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMessageOptions, fieldNumber: 397) } if _storage._googleProtobufMethod != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethod, fieldNumber: 400) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethod, fieldNumber: 398) } if _storage._googleProtobufMethodDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethodDescriptorProto, fieldNumber: 401) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethodDescriptorProto, fieldNumber: 399) } if _storage._googleProtobufMethodOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethodOptions, fieldNumber: 402) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMethodOptions, fieldNumber: 400) } if _storage._googleProtobufMixin != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufMixin, fieldNumber: 403) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufMixin, fieldNumber: 401) } if _storage._googleProtobufNullValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufNullValue, fieldNumber: 404) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufNullValue, fieldNumber: 402) } if _storage._googleProtobufOneofDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufOneofDescriptorProto, fieldNumber: 405) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufOneofDescriptorProto, fieldNumber: 403) } if _storage._googleProtobufOneofOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufOneofOptions, fieldNumber: 406) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufOneofOptions, fieldNumber: 404) } if _storage._googleProtobufOption != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufOption, fieldNumber: 407) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufOption, fieldNumber: 405) } if _storage._googleProtobufServiceDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufServiceDescriptorProto, fieldNumber: 408) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufServiceDescriptorProto, fieldNumber: 406) } if _storage._googleProtobufServiceOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufServiceOptions, fieldNumber: 409) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufServiceOptions, fieldNumber: 407) } if _storage._googleProtobufSourceCodeInfo != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufSourceCodeInfo, fieldNumber: 410) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufSourceCodeInfo, fieldNumber: 408) } if _storage._googleProtobufSourceContext != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufSourceContext, fieldNumber: 411) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufSourceContext, fieldNumber: 409) } if _storage._googleProtobufStringValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufStringValue, fieldNumber: 412) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufStringValue, fieldNumber: 410) } if _storage._googleProtobufStruct != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufStruct, fieldNumber: 413) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufStruct, fieldNumber: 411) } if _storage._googleProtobufSyntax != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufSyntax, fieldNumber: 414) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufSyntax, fieldNumber: 412) } if _storage._googleProtobufTimestamp != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufTimestamp, fieldNumber: 415) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufTimestamp, fieldNumber: 413) } if _storage._googleProtobufType != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufType, fieldNumber: 416) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufType, fieldNumber: 414) } if _storage._googleProtobufUint32Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufUint32Value, fieldNumber: 417) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufUint32Value, fieldNumber: 415) } if _storage._googleProtobufUint64Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufUint64Value, fieldNumber: 418) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufUint64Value, fieldNumber: 416) } if _storage._googleProtobufUninterpretedOption != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufUninterpretedOption, fieldNumber: 419) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufUninterpretedOption, fieldNumber: 417) } if _storage._googleProtobufValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._googleProtobufValue, fieldNumber: 420) + try visitor.visitSingularInt32Field(value: _storage._googleProtobufValue, fieldNumber: 418) } if _storage._goPackage != 0 { - try visitor.visitSingularInt32Field(value: _storage._goPackage, fieldNumber: 421) + try visitor.visitSingularInt32Field(value: _storage._goPackage, fieldNumber: 419) } if _storage._group != 0 { - try visitor.visitSingularInt32Field(value: _storage._group, fieldNumber: 422) + try visitor.visitSingularInt32Field(value: _storage._group, fieldNumber: 420) } if _storage._groupFieldNumberStack != 0 { - try visitor.visitSingularInt32Field(value: _storage._groupFieldNumberStack, fieldNumber: 423) + try visitor.visitSingularInt32Field(value: _storage._groupFieldNumberStack, fieldNumber: 421) } if _storage._groupSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._groupSize, fieldNumber: 424) + try visitor.visitSingularInt32Field(value: _storage._groupSize, fieldNumber: 422) } if _storage._hadOneofValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._hadOneofValue, fieldNumber: 425) + try visitor.visitSingularInt32Field(value: _storage._hadOneofValue, fieldNumber: 423) } if _storage._handleConflictingOneOf != 0 { - try visitor.visitSingularInt32Field(value: _storage._handleConflictingOneOf, fieldNumber: 426) + try visitor.visitSingularInt32Field(value: _storage._handleConflictingOneOf, fieldNumber: 424) } if _storage._hasAggregateValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasAggregateValue_p, fieldNumber: 427) + try visitor.visitSingularInt32Field(value: _storage._hasAggregateValue_p, fieldNumber: 425) } if _storage._hasAllowAlias_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasAllowAlias_p, fieldNumber: 428) + try visitor.visitSingularInt32Field(value: _storage._hasAllowAlias_p, fieldNumber: 426) } if _storage._hasBegin_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasBegin_p, fieldNumber: 429) + try visitor.visitSingularInt32Field(value: _storage._hasBegin_p, fieldNumber: 427) } if _storage._hasCcEnableArenas_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasCcEnableArenas_p, fieldNumber: 430) + try visitor.visitSingularInt32Field(value: _storage._hasCcEnableArenas_p, fieldNumber: 428) } if _storage._hasCcGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasCcGenericServices_p, fieldNumber: 431) + try visitor.visitSingularInt32Field(value: _storage._hasCcGenericServices_p, fieldNumber: 429) } if _storage._hasClientStreaming_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasClientStreaming_p, fieldNumber: 432) + try visitor.visitSingularInt32Field(value: _storage._hasClientStreaming_p, fieldNumber: 430) } if _storage._hasCsharpNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasCsharpNamespace_p, fieldNumber: 433) + try visitor.visitSingularInt32Field(value: _storage._hasCsharpNamespace_p, fieldNumber: 431) } if _storage._hasCtype_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasCtype_p, fieldNumber: 434) + try visitor.visitSingularInt32Field(value: _storage._hasCtype_p, fieldNumber: 432) } if _storage._hasDebugRedact_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDebugRedact_p, fieldNumber: 435) + try visitor.visitSingularInt32Field(value: _storage._hasDebugRedact_p, fieldNumber: 433) } if _storage._hasDefaultValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDefaultValue_p, fieldNumber: 436) + try visitor.visitSingularInt32Field(value: _storage._hasDefaultValue_p, fieldNumber: 434) } if _storage._hasDeprecated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDeprecated_p, fieldNumber: 437) + try visitor.visitSingularInt32Field(value: _storage._hasDeprecated_p, fieldNumber: 435) } if _storage._hasDeprecatedLegacyJsonFieldConflicts_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDeprecatedLegacyJsonFieldConflicts_p, fieldNumber: 438) + try visitor.visitSingularInt32Field(value: _storage._hasDeprecatedLegacyJsonFieldConflicts_p, fieldNumber: 436) } if _storage._hasDeprecationWarning_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDeprecationWarning_p, fieldNumber: 439) + try visitor.visitSingularInt32Field(value: _storage._hasDeprecationWarning_p, fieldNumber: 437) } if _storage._hasDoubleValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasDoubleValue_p, fieldNumber: 440) + try visitor.visitSingularInt32Field(value: _storage._hasDoubleValue_p, fieldNumber: 438) } if _storage._hasEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEdition_p, fieldNumber: 441) + try visitor.visitSingularInt32Field(value: _storage._hasEdition_p, fieldNumber: 439) } if _storage._hasEditionDeprecated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEditionDeprecated_p, fieldNumber: 442) + try visitor.visitSingularInt32Field(value: _storage._hasEditionDeprecated_p, fieldNumber: 440) } if _storage._hasEditionIntroduced_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEditionIntroduced_p, fieldNumber: 443) + try visitor.visitSingularInt32Field(value: _storage._hasEditionIntroduced_p, fieldNumber: 441) } if _storage._hasEditionRemoved_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEditionRemoved_p, fieldNumber: 444) + try visitor.visitSingularInt32Field(value: _storage._hasEditionRemoved_p, fieldNumber: 442) } if _storage._hasEnd_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEnd_p, fieldNumber: 445) + try visitor.visitSingularInt32Field(value: _storage._hasEnd_p, fieldNumber: 443) } if _storage._hasEnumType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasEnumType_p, fieldNumber: 446) + try visitor.visitSingularInt32Field(value: _storage._hasEnumType_p, fieldNumber: 444) } if _storage._hasExtendee_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasExtendee_p, fieldNumber: 447) + try visitor.visitSingularInt32Field(value: _storage._hasExtendee_p, fieldNumber: 445) } if _storage._hasExtensionValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasExtensionValue_p, fieldNumber: 448) + try visitor.visitSingularInt32Field(value: _storage._hasExtensionValue_p, fieldNumber: 446) } if _storage._hasFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFeatures_p, fieldNumber: 449) + try visitor.visitSingularInt32Field(value: _storage._hasFeatures_p, fieldNumber: 447) } if _storage._hasFeatureSupport_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFeatureSupport_p, fieldNumber: 450) + try visitor.visitSingularInt32Field(value: _storage._hasFeatureSupport_p, fieldNumber: 448) } if _storage._hasFieldPresence_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFieldPresence_p, fieldNumber: 451) + try visitor.visitSingularInt32Field(value: _storage._hasFieldPresence_p, fieldNumber: 449) } if _storage._hasFixedFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFixedFeatures_p, fieldNumber: 452) + try visitor.visitSingularInt32Field(value: _storage._hasFixedFeatures_p, fieldNumber: 450) } if _storage._hasFullName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasFullName_p, fieldNumber: 453) + try visitor.visitSingularInt32Field(value: _storage._hasFullName_p, fieldNumber: 451) } if _storage._hasGoPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasGoPackage_p, fieldNumber: 454) + try visitor.visitSingularInt32Field(value: _storage._hasGoPackage_p, fieldNumber: 452) } if _storage._hash != 0 { - try visitor.visitSingularInt32Field(value: _storage._hash, fieldNumber: 455) + try visitor.visitSingularInt32Field(value: _storage._hash, fieldNumber: 453) } if _storage._hashable != 0 { - try visitor.visitSingularInt32Field(value: _storage._hashable, fieldNumber: 456) + try visitor.visitSingularInt32Field(value: _storage._hashable, fieldNumber: 454) } if _storage._hasher != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasher, fieldNumber: 457) + try visitor.visitSingularInt32Field(value: _storage._hasher, fieldNumber: 455) } if _storage._hashVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._hashVisitor, fieldNumber: 458) + try visitor.visitSingularInt32Field(value: _storage._hashVisitor, fieldNumber: 456) } if _storage._hasIdempotencyLevel_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasIdempotencyLevel_p, fieldNumber: 459) + try visitor.visitSingularInt32Field(value: _storage._hasIdempotencyLevel_p, fieldNumber: 457) } if _storage._hasIdentifierValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasIdentifierValue_p, fieldNumber: 460) + try visitor.visitSingularInt32Field(value: _storage._hasIdentifierValue_p, fieldNumber: 458) } if _storage._hasInputType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasInputType_p, fieldNumber: 461) + try visitor.visitSingularInt32Field(value: _storage._hasInputType_p, fieldNumber: 459) } if _storage._hasIsExtension_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasIsExtension_p, fieldNumber: 462) + try visitor.visitSingularInt32Field(value: _storage._hasIsExtension_p, fieldNumber: 460) } if _storage._hasJavaGenerateEqualsAndHash_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaGenerateEqualsAndHash_p, fieldNumber: 463) + try visitor.visitSingularInt32Field(value: _storage._hasJavaGenerateEqualsAndHash_p, fieldNumber: 461) } if _storage._hasJavaGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaGenericServices_p, fieldNumber: 464) + try visitor.visitSingularInt32Field(value: _storage._hasJavaGenericServices_p, fieldNumber: 462) } if _storage._hasJavaMultipleFiles_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaMultipleFiles_p, fieldNumber: 465) + try visitor.visitSingularInt32Field(value: _storage._hasJavaMultipleFiles_p, fieldNumber: 463) } if _storage._hasJavaOuterClassname_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaOuterClassname_p, fieldNumber: 466) + try visitor.visitSingularInt32Field(value: _storage._hasJavaOuterClassname_p, fieldNumber: 464) } if _storage._hasJavaPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaPackage_p, fieldNumber: 467) + try visitor.visitSingularInt32Field(value: _storage._hasJavaPackage_p, fieldNumber: 465) } if _storage._hasJavaStringCheckUtf8_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJavaStringCheckUtf8_p, fieldNumber: 468) + try visitor.visitSingularInt32Field(value: _storage._hasJavaStringCheckUtf8_p, fieldNumber: 466) } if _storage._hasJsonFormat_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJsonFormat_p, fieldNumber: 469) + try visitor.visitSingularInt32Field(value: _storage._hasJsonFormat_p, fieldNumber: 467) } if _storage._hasJsonName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJsonName_p, fieldNumber: 470) + try visitor.visitSingularInt32Field(value: _storage._hasJsonName_p, fieldNumber: 468) } if _storage._hasJstype_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasJstype_p, fieldNumber: 471) + try visitor.visitSingularInt32Field(value: _storage._hasJstype_p, fieldNumber: 469) } if _storage._hasLabel_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasLabel_p, fieldNumber: 472) + try visitor.visitSingularInt32Field(value: _storage._hasLabel_p, fieldNumber: 470) } if _storage._hasLazy_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasLazy_p, fieldNumber: 473) + try visitor.visitSingularInt32Field(value: _storage._hasLazy_p, fieldNumber: 471) } if _storage._hasLeadingComments_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasLeadingComments_p, fieldNumber: 474) + try visitor.visitSingularInt32Field(value: _storage._hasLeadingComments_p, fieldNumber: 472) } if _storage._hasMapEntry_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMapEntry_p, fieldNumber: 475) + try visitor.visitSingularInt32Field(value: _storage._hasMapEntry_p, fieldNumber: 473) } if _storage._hasMaximumEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMaximumEdition_p, fieldNumber: 476) + try visitor.visitSingularInt32Field(value: _storage._hasMaximumEdition_p, fieldNumber: 474) } if _storage._hasMessageEncoding_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMessageEncoding_p, fieldNumber: 477) + try visitor.visitSingularInt32Field(value: _storage._hasMessageEncoding_p, fieldNumber: 475) } if _storage._hasMessageSetWireFormat_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMessageSetWireFormat_p, fieldNumber: 478) + try visitor.visitSingularInt32Field(value: _storage._hasMessageSetWireFormat_p, fieldNumber: 476) } if _storage._hasMinimumEdition_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasMinimumEdition_p, fieldNumber: 479) + try visitor.visitSingularInt32Field(value: _storage._hasMinimumEdition_p, fieldNumber: 477) } if _storage._hasName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasName_p, fieldNumber: 480) + try visitor.visitSingularInt32Field(value: _storage._hasName_p, fieldNumber: 478) } if _storage._hasNamePart_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasNamePart_p, fieldNumber: 481) + try visitor.visitSingularInt32Field(value: _storage._hasNamePart_p, fieldNumber: 479) } if _storage._hasNegativeIntValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasNegativeIntValue_p, fieldNumber: 482) + try visitor.visitSingularInt32Field(value: _storage._hasNegativeIntValue_p, fieldNumber: 480) } if _storage._hasNoStandardDescriptorAccessor_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasNoStandardDescriptorAccessor_p, fieldNumber: 483) + try visitor.visitSingularInt32Field(value: _storage._hasNoStandardDescriptorAccessor_p, fieldNumber: 481) } if _storage._hasNumber_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasNumber_p, fieldNumber: 484) + try visitor.visitSingularInt32Field(value: _storage._hasNumber_p, fieldNumber: 482) } if _storage._hasObjcClassPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasObjcClassPrefix_p, fieldNumber: 485) + try visitor.visitSingularInt32Field(value: _storage._hasObjcClassPrefix_p, fieldNumber: 483) } if _storage._hasOneofIndex_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOneofIndex_p, fieldNumber: 486) + try visitor.visitSingularInt32Field(value: _storage._hasOneofIndex_p, fieldNumber: 484) } if _storage._hasOptimizeFor_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOptimizeFor_p, fieldNumber: 487) + try visitor.visitSingularInt32Field(value: _storage._hasOptimizeFor_p, fieldNumber: 485) } if _storage._hasOptions_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOptions_p, fieldNumber: 488) + try visitor.visitSingularInt32Field(value: _storage._hasOptions_p, fieldNumber: 486) } if _storage._hasOutputType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOutputType_p, fieldNumber: 489) + try visitor.visitSingularInt32Field(value: _storage._hasOutputType_p, fieldNumber: 487) } if _storage._hasOverridableFeatures_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasOverridableFeatures_p, fieldNumber: 490) + try visitor.visitSingularInt32Field(value: _storage._hasOverridableFeatures_p, fieldNumber: 488) } if _storage._hasPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPackage_p, fieldNumber: 491) + try visitor.visitSingularInt32Field(value: _storage._hasPackage_p, fieldNumber: 489) } if _storage._hasPacked_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPacked_p, fieldNumber: 492) + try visitor.visitSingularInt32Field(value: _storage._hasPacked_p, fieldNumber: 490) } if _storage._hasPhpClassPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPhpClassPrefix_p, fieldNumber: 493) + try visitor.visitSingularInt32Field(value: _storage._hasPhpClassPrefix_p, fieldNumber: 491) } if _storage._hasPhpMetadataNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPhpMetadataNamespace_p, fieldNumber: 494) + try visitor.visitSingularInt32Field(value: _storage._hasPhpMetadataNamespace_p, fieldNumber: 492) } if _storage._hasPhpNamespace_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPhpNamespace_p, fieldNumber: 495) + try visitor.visitSingularInt32Field(value: _storage._hasPhpNamespace_p, fieldNumber: 493) } if _storage._hasPositiveIntValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPositiveIntValue_p, fieldNumber: 496) + try visitor.visitSingularInt32Field(value: _storage._hasPositiveIntValue_p, fieldNumber: 494) } if _storage._hasProto3Optional_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasProto3Optional_p, fieldNumber: 497) + try visitor.visitSingularInt32Field(value: _storage._hasProto3Optional_p, fieldNumber: 495) } if _storage._hasPyGenericServices_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasPyGenericServices_p, fieldNumber: 498) + try visitor.visitSingularInt32Field(value: _storage._hasPyGenericServices_p, fieldNumber: 496) } if _storage._hasRepeated_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasRepeated_p, fieldNumber: 499) + try visitor.visitSingularInt32Field(value: _storage._hasRepeated_p, fieldNumber: 497) } if _storage._hasRepeatedFieldEncoding_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasRepeatedFieldEncoding_p, fieldNumber: 500) + try visitor.visitSingularInt32Field(value: _storage._hasRepeatedFieldEncoding_p, fieldNumber: 498) } if _storage._hasReserved_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasReserved_p, fieldNumber: 501) + try visitor.visitSingularInt32Field(value: _storage._hasReserved_p, fieldNumber: 499) } if _storage._hasRetention_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasRetention_p, fieldNumber: 502) + try visitor.visitSingularInt32Field(value: _storage._hasRetention_p, fieldNumber: 500) } if _storage._hasRubyPackage_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasRubyPackage_p, fieldNumber: 503) + try visitor.visitSingularInt32Field(value: _storage._hasRubyPackage_p, fieldNumber: 501) } if _storage._hasSemantic_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSemantic_p, fieldNumber: 504) + try visitor.visitSingularInt32Field(value: _storage._hasSemantic_p, fieldNumber: 502) } if _storage._hasServerStreaming_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasServerStreaming_p, fieldNumber: 505) + try visitor.visitSingularInt32Field(value: _storage._hasServerStreaming_p, fieldNumber: 503) } if _storage._hasSourceCodeInfo_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSourceCodeInfo_p, fieldNumber: 506) + try visitor.visitSingularInt32Field(value: _storage._hasSourceCodeInfo_p, fieldNumber: 504) } if _storage._hasSourceContext_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSourceContext_p, fieldNumber: 507) + try visitor.visitSingularInt32Field(value: _storage._hasSourceContext_p, fieldNumber: 505) } if _storage._hasSourceFile_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSourceFile_p, fieldNumber: 508) + try visitor.visitSingularInt32Field(value: _storage._hasSourceFile_p, fieldNumber: 506) } if _storage._hasStart_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasStart_p, fieldNumber: 509) + try visitor.visitSingularInt32Field(value: _storage._hasStart_p, fieldNumber: 507) } if _storage._hasStringValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasStringValue_p, fieldNumber: 510) + try visitor.visitSingularInt32Field(value: _storage._hasStringValue_p, fieldNumber: 508) } if _storage._hasSwiftPrefix_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSwiftPrefix_p, fieldNumber: 511) + try visitor.visitSingularInt32Field(value: _storage._hasSwiftPrefix_p, fieldNumber: 509) } if _storage._hasSyntax_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasSyntax_p, fieldNumber: 512) + try visitor.visitSingularInt32Field(value: _storage._hasSyntax_p, fieldNumber: 510) } if _storage._hasTrailingComments_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasTrailingComments_p, fieldNumber: 513) + try visitor.visitSingularInt32Field(value: _storage._hasTrailingComments_p, fieldNumber: 511) } if _storage._hasType_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasType_p, fieldNumber: 514) + try visitor.visitSingularInt32Field(value: _storage._hasType_p, fieldNumber: 512) } if _storage._hasTypeName_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasTypeName_p, fieldNumber: 515) + try visitor.visitSingularInt32Field(value: _storage._hasTypeName_p, fieldNumber: 513) } if _storage._hasUnverifiedLazy_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasUnverifiedLazy_p, fieldNumber: 516) + try visitor.visitSingularInt32Field(value: _storage._hasUnverifiedLazy_p, fieldNumber: 514) } if _storage._hasUtf8Validation_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasUtf8Validation_p, fieldNumber: 517) + try visitor.visitSingularInt32Field(value: _storage._hasUtf8Validation_p, fieldNumber: 515) } if _storage._hasValue_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasValue_p, fieldNumber: 518) + try visitor.visitSingularInt32Field(value: _storage._hasValue_p, fieldNumber: 516) } if _storage._hasVerification_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasVerification_p, fieldNumber: 519) + try visitor.visitSingularInt32Field(value: _storage._hasVerification_p, fieldNumber: 517) } if _storage._hasWeak_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._hasWeak_p, fieldNumber: 520) + try visitor.visitSingularInt32Field(value: _storage._hasWeak_p, fieldNumber: 518) } if _storage._hour != 0 { - try visitor.visitSingularInt32Field(value: _storage._hour, fieldNumber: 521) + try visitor.visitSingularInt32Field(value: _storage._hour, fieldNumber: 519) } if _storage._i != 0 { - try visitor.visitSingularInt32Field(value: _storage._i, fieldNumber: 522) + try visitor.visitSingularInt32Field(value: _storage._i, fieldNumber: 520) } if _storage._idempotencyLevel != 0 { - try visitor.visitSingularInt32Field(value: _storage._idempotencyLevel, fieldNumber: 523) + try visitor.visitSingularInt32Field(value: _storage._idempotencyLevel, fieldNumber: 521) } if _storage._identifierValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._identifierValue, fieldNumber: 524) + try visitor.visitSingularInt32Field(value: _storage._identifierValue, fieldNumber: 522) } if _storage._if != 0 { - try visitor.visitSingularInt32Field(value: _storage._if, fieldNumber: 525) + try visitor.visitSingularInt32Field(value: _storage._if, fieldNumber: 523) } if _storage._ignoreUnknownExtensionFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._ignoreUnknownExtensionFields, fieldNumber: 526) + try visitor.visitSingularInt32Field(value: _storage._ignoreUnknownExtensionFields, fieldNumber: 524) } if _storage._ignoreUnknownFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._ignoreUnknownFields, fieldNumber: 527) + try visitor.visitSingularInt32Field(value: _storage._ignoreUnknownFields, fieldNumber: 525) } if _storage._index != 0 { - try visitor.visitSingularInt32Field(value: _storage._index, fieldNumber: 528) + try visitor.visitSingularInt32Field(value: _storage._index, fieldNumber: 526) } if _storage._init_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._init_p, fieldNumber: 529) + try visitor.visitSingularInt32Field(value: _storage._init_p, fieldNumber: 527) } if _storage._inout != 0 { - try visitor.visitSingularInt32Field(value: _storage._inout, fieldNumber: 530) + try visitor.visitSingularInt32Field(value: _storage._inout, fieldNumber: 528) } if _storage._inputType != 0 { - try visitor.visitSingularInt32Field(value: _storage._inputType, fieldNumber: 531) + try visitor.visitSingularInt32Field(value: _storage._inputType, fieldNumber: 529) } if _storage._insert != 0 { - try visitor.visitSingularInt32Field(value: _storage._insert, fieldNumber: 532) + try visitor.visitSingularInt32Field(value: _storage._insert, fieldNumber: 530) } if _storage._int != 0 { - try visitor.visitSingularInt32Field(value: _storage._int, fieldNumber: 533) + try visitor.visitSingularInt32Field(value: _storage._int, fieldNumber: 531) } if _storage._int32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._int32, fieldNumber: 534) + try visitor.visitSingularInt32Field(value: _storage._int32, fieldNumber: 532) } if _storage._int32Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._int32Value, fieldNumber: 535) + try visitor.visitSingularInt32Field(value: _storage._int32Value, fieldNumber: 533) } if _storage._int64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._int64, fieldNumber: 536) + try visitor.visitSingularInt32Field(value: _storage._int64, fieldNumber: 534) } if _storage._int64Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._int64Value, fieldNumber: 537) + try visitor.visitSingularInt32Field(value: _storage._int64Value, fieldNumber: 535) } if _storage._int8 != 0 { - try visitor.visitSingularInt32Field(value: _storage._int8, fieldNumber: 538) + try visitor.visitSingularInt32Field(value: _storage._int8, fieldNumber: 536) } if _storage._integerLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._integerLiteral, fieldNumber: 539) + try visitor.visitSingularInt32Field(value: _storage._integerLiteral, fieldNumber: 537) } if _storage._integerLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._integerLiteralType, fieldNumber: 540) + try visitor.visitSingularInt32Field(value: _storage._integerLiteralType, fieldNumber: 538) } if _storage._intern != 0 { - try visitor.visitSingularInt32Field(value: _storage._intern, fieldNumber: 541) + try visitor.visitSingularInt32Field(value: _storage._intern, fieldNumber: 539) } if _storage._internal != 0 { - try visitor.visitSingularInt32Field(value: _storage._internal, fieldNumber: 542) + try visitor.visitSingularInt32Field(value: _storage._internal, fieldNumber: 540) } if _storage._internalState != 0 { - try visitor.visitSingularInt32Field(value: _storage._internalState, fieldNumber: 543) + try visitor.visitSingularInt32Field(value: _storage._internalState, fieldNumber: 541) } if _storage._into != 0 { - try visitor.visitSingularInt32Field(value: _storage._into, fieldNumber: 544) + try visitor.visitSingularInt32Field(value: _storage._into, fieldNumber: 542) } if _storage._ints != 0 { - try visitor.visitSingularInt32Field(value: _storage._ints, fieldNumber: 545) + try visitor.visitSingularInt32Field(value: _storage._ints, fieldNumber: 543) } if _storage._isA != 0 { - try visitor.visitSingularInt32Field(value: _storage._isA, fieldNumber: 546) + try visitor.visitSingularInt32Field(value: _storage._isA, fieldNumber: 544) } if _storage._isEqual != 0 { - try visitor.visitSingularInt32Field(value: _storage._isEqual, fieldNumber: 547) + try visitor.visitSingularInt32Field(value: _storage._isEqual, fieldNumber: 545) } if _storage._isEqualTo != 0 { - try visitor.visitSingularInt32Field(value: _storage._isEqualTo, fieldNumber: 548) + try visitor.visitSingularInt32Field(value: _storage._isEqualTo, fieldNumber: 546) } if _storage._isExtension != 0 { - try visitor.visitSingularInt32Field(value: _storage._isExtension, fieldNumber: 549) + try visitor.visitSingularInt32Field(value: _storage._isExtension, fieldNumber: 547) } if _storage._isInitialized_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._isInitialized_p, fieldNumber: 550) + try visitor.visitSingularInt32Field(value: _storage._isInitialized_p, fieldNumber: 548) } if _storage._isNegative != 0 { - try visitor.visitSingularInt32Field(value: _storage._isNegative, fieldNumber: 551) + try visitor.visitSingularInt32Field(value: _storage._isNegative, fieldNumber: 549) } if _storage._itemTagsEncodedSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._itemTagsEncodedSize, fieldNumber: 552) + try visitor.visitSingularInt32Field(value: _storage._itemTagsEncodedSize, fieldNumber: 550) } if _storage._iterator != 0 { - try visitor.visitSingularInt32Field(value: _storage._iterator, fieldNumber: 553) + try visitor.visitSingularInt32Field(value: _storage._iterator, fieldNumber: 551) } if _storage._javaGenerateEqualsAndHash != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaGenerateEqualsAndHash, fieldNumber: 554) + try visitor.visitSingularInt32Field(value: _storage._javaGenerateEqualsAndHash, fieldNumber: 552) } if _storage._javaGenericServices != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaGenericServices, fieldNumber: 555) + try visitor.visitSingularInt32Field(value: _storage._javaGenericServices, fieldNumber: 553) } if _storage._javaMultipleFiles != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaMultipleFiles, fieldNumber: 556) + try visitor.visitSingularInt32Field(value: _storage._javaMultipleFiles, fieldNumber: 554) } if _storage._javaOuterClassname != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaOuterClassname, fieldNumber: 557) + try visitor.visitSingularInt32Field(value: _storage._javaOuterClassname, fieldNumber: 555) } if _storage._javaPackage != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaPackage, fieldNumber: 558) + try visitor.visitSingularInt32Field(value: _storage._javaPackage, fieldNumber: 556) } if _storage._javaStringCheckUtf8 != 0 { - try visitor.visitSingularInt32Field(value: _storage._javaStringCheckUtf8, fieldNumber: 559) + try visitor.visitSingularInt32Field(value: _storage._javaStringCheckUtf8, fieldNumber: 557) } if _storage._jsondecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsondecoder, fieldNumber: 560) + try visitor.visitSingularInt32Field(value: _storage._jsondecoder, fieldNumber: 558) } if _storage._jsondecodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsondecodingError, fieldNumber: 561) + try visitor.visitSingularInt32Field(value: _storage._jsondecodingError, fieldNumber: 559) } if _storage._jsondecodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsondecodingOptions, fieldNumber: 562) + try visitor.visitSingularInt32Field(value: _storage._jsondecodingOptions, fieldNumber: 560) } if _storage._jsonEncoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonEncoder, fieldNumber: 563) - } - if _storage._jsonencoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonencoding, fieldNumber: 564) + try visitor.visitSingularInt32Field(value: _storage._jsonEncoder, fieldNumber: 561) } if _storage._jsonencodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonencodingError, fieldNumber: 565) + try visitor.visitSingularInt32Field(value: _storage._jsonencodingError, fieldNumber: 562) } if _storage._jsonencodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonencodingOptions, fieldNumber: 566) + try visitor.visitSingularInt32Field(value: _storage._jsonencodingOptions, fieldNumber: 563) } if _storage._jsonencodingVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonencodingVisitor, fieldNumber: 567) + try visitor.visitSingularInt32Field(value: _storage._jsonencodingVisitor, fieldNumber: 564) } if _storage._jsonFormat != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonFormat, fieldNumber: 568) + try visitor.visitSingularInt32Field(value: _storage._jsonFormat, fieldNumber: 565) } if _storage._jsonmapEncodingVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonmapEncodingVisitor, fieldNumber: 569) + try visitor.visitSingularInt32Field(value: _storage._jsonmapEncodingVisitor, fieldNumber: 566) } if _storage._jsonName != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonName, fieldNumber: 570) + try visitor.visitSingularInt32Field(value: _storage._jsonName, fieldNumber: 567) } if _storage._jsonPath != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonPath, fieldNumber: 571) + try visitor.visitSingularInt32Field(value: _storage._jsonPath, fieldNumber: 568) } if _storage._jsonPaths != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonPaths, fieldNumber: 572) + try visitor.visitSingularInt32Field(value: _storage._jsonPaths, fieldNumber: 569) } if _storage._jsonscanner != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonscanner, fieldNumber: 573) + try visitor.visitSingularInt32Field(value: _storage._jsonscanner, fieldNumber: 570) } if _storage._jsonString != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonString, fieldNumber: 574) + try visitor.visitSingularInt32Field(value: _storage._jsonString, fieldNumber: 571) } if _storage._jsonText != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonText, fieldNumber: 575) + try visitor.visitSingularInt32Field(value: _storage._jsonText, fieldNumber: 572) } if _storage._jsonUtf8Bytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonUtf8Bytes, fieldNumber: 576) + try visitor.visitSingularInt32Field(value: _storage._jsonUtf8Bytes, fieldNumber: 573) } if _storage._jsonUtf8Data != 0 { - try visitor.visitSingularInt32Field(value: _storage._jsonUtf8Data, fieldNumber: 577) + try visitor.visitSingularInt32Field(value: _storage._jsonUtf8Data, fieldNumber: 574) } if _storage._jstype != 0 { - try visitor.visitSingularInt32Field(value: _storage._jstype, fieldNumber: 578) + try visitor.visitSingularInt32Field(value: _storage._jstype, fieldNumber: 575) } if _storage._k != 0 { - try visitor.visitSingularInt32Field(value: _storage._k, fieldNumber: 579) + try visitor.visitSingularInt32Field(value: _storage._k, fieldNumber: 576) } if _storage._kChunkSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._kChunkSize, fieldNumber: 580) + try visitor.visitSingularInt32Field(value: _storage._kChunkSize, fieldNumber: 577) } if _storage._key != 0 { - try visitor.visitSingularInt32Field(value: _storage._key, fieldNumber: 581) + try visitor.visitSingularInt32Field(value: _storage._key, fieldNumber: 578) } if _storage._keyField != 0 { - try visitor.visitSingularInt32Field(value: _storage._keyField, fieldNumber: 582) + try visitor.visitSingularInt32Field(value: _storage._keyField, fieldNumber: 579) } if _storage._keyFieldOpt != 0 { - try visitor.visitSingularInt32Field(value: _storage._keyFieldOpt, fieldNumber: 583) + try visitor.visitSingularInt32Field(value: _storage._keyFieldOpt, fieldNumber: 580) } if _storage._keyType != 0 { - try visitor.visitSingularInt32Field(value: _storage._keyType, fieldNumber: 584) + try visitor.visitSingularInt32Field(value: _storage._keyType, fieldNumber: 581) } if _storage._kind != 0 { - try visitor.visitSingularInt32Field(value: _storage._kind, fieldNumber: 585) + try visitor.visitSingularInt32Field(value: _storage._kind, fieldNumber: 582) } if _storage._l != 0 { - try visitor.visitSingularInt32Field(value: _storage._l, fieldNumber: 586) + try visitor.visitSingularInt32Field(value: _storage._l, fieldNumber: 583) } if _storage._label != 0 { - try visitor.visitSingularInt32Field(value: _storage._label, fieldNumber: 587) + try visitor.visitSingularInt32Field(value: _storage._label, fieldNumber: 584) } if _storage._lazy != 0 { - try visitor.visitSingularInt32Field(value: _storage._lazy, fieldNumber: 588) + try visitor.visitSingularInt32Field(value: _storage._lazy, fieldNumber: 585) } if _storage._leadingComments != 0 { - try visitor.visitSingularInt32Field(value: _storage._leadingComments, fieldNumber: 589) + try visitor.visitSingularInt32Field(value: _storage._leadingComments, fieldNumber: 586) } if _storage._leadingDetachedComments != 0 { - try visitor.visitSingularInt32Field(value: _storage._leadingDetachedComments, fieldNumber: 590) + try visitor.visitSingularInt32Field(value: _storage._leadingDetachedComments, fieldNumber: 587) } if _storage._length != 0 { - try visitor.visitSingularInt32Field(value: _storage._length, fieldNumber: 591) + try visitor.visitSingularInt32Field(value: _storage._length, fieldNumber: 588) } if _storage._lessThan != 0 { - try visitor.visitSingularInt32Field(value: _storage._lessThan, fieldNumber: 592) + try visitor.visitSingularInt32Field(value: _storage._lessThan, fieldNumber: 589) } if _storage._let != 0 { - try visitor.visitSingularInt32Field(value: _storage._let, fieldNumber: 593) + try visitor.visitSingularInt32Field(value: _storage._let, fieldNumber: 590) } if _storage._lhs != 0 { - try visitor.visitSingularInt32Field(value: _storage._lhs, fieldNumber: 594) + try visitor.visitSingularInt32Field(value: _storage._lhs, fieldNumber: 591) } if _storage._line != 0 { - try visitor.visitSingularInt32Field(value: _storage._line, fieldNumber: 595) + try visitor.visitSingularInt32Field(value: _storage._line, fieldNumber: 592) } if _storage._list != 0 { - try visitor.visitSingularInt32Field(value: _storage._list, fieldNumber: 596) + try visitor.visitSingularInt32Field(value: _storage._list, fieldNumber: 593) } if _storage._listOfMessages != 0 { - try visitor.visitSingularInt32Field(value: _storage._listOfMessages, fieldNumber: 597) + try visitor.visitSingularInt32Field(value: _storage._listOfMessages, fieldNumber: 594) } if _storage._listValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._listValue, fieldNumber: 598) + try visitor.visitSingularInt32Field(value: _storage._listValue, fieldNumber: 595) } if _storage._littleEndian != 0 { - try visitor.visitSingularInt32Field(value: _storage._littleEndian, fieldNumber: 599) + try visitor.visitSingularInt32Field(value: _storage._littleEndian, fieldNumber: 596) } if _storage._load != 0 { - try visitor.visitSingularInt32Field(value: _storage._load, fieldNumber: 600) + try visitor.visitSingularInt32Field(value: _storage._load, fieldNumber: 597) } if _storage._localHasher != 0 { - try visitor.visitSingularInt32Field(value: _storage._localHasher, fieldNumber: 601) + try visitor.visitSingularInt32Field(value: _storage._localHasher, fieldNumber: 598) } if _storage._location != 0 { - try visitor.visitSingularInt32Field(value: _storage._location, fieldNumber: 602) + try visitor.visitSingularInt32Field(value: _storage._location, fieldNumber: 599) } if _storage._m != 0 { - try visitor.visitSingularInt32Field(value: _storage._m, fieldNumber: 603) + try visitor.visitSingularInt32Field(value: _storage._m, fieldNumber: 600) } if _storage._major != 0 { - try visitor.visitSingularInt32Field(value: _storage._major, fieldNumber: 604) + try visitor.visitSingularInt32Field(value: _storage._major, fieldNumber: 601) } if _storage._makeAsyncIterator != 0 { - try visitor.visitSingularInt32Field(value: _storage._makeAsyncIterator, fieldNumber: 605) + try visitor.visitSingularInt32Field(value: _storage._makeAsyncIterator, fieldNumber: 602) } if _storage._makeIterator != 0 { - try visitor.visitSingularInt32Field(value: _storage._makeIterator, fieldNumber: 606) + try visitor.visitSingularInt32Field(value: _storage._makeIterator, fieldNumber: 603) } if _storage._malformedLength != 0 { - try visitor.visitSingularInt32Field(value: _storage._malformedLength, fieldNumber: 607) + try visitor.visitSingularInt32Field(value: _storage._malformedLength, fieldNumber: 604) } if _storage._mapEntry != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapEntry, fieldNumber: 608) + try visitor.visitSingularInt32Field(value: _storage._mapEntry, fieldNumber: 605) } if _storage._mapKeyType != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapKeyType, fieldNumber: 609) + try visitor.visitSingularInt32Field(value: _storage._mapKeyType, fieldNumber: 606) } if _storage._mapToMessages != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapToMessages, fieldNumber: 610) + try visitor.visitSingularInt32Field(value: _storage._mapToMessages, fieldNumber: 607) } if _storage._mapValueType != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapValueType, fieldNumber: 611) + try visitor.visitSingularInt32Field(value: _storage._mapValueType, fieldNumber: 608) } if _storage._mapVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._mapVisitor, fieldNumber: 612) + try visitor.visitSingularInt32Field(value: _storage._mapVisitor, fieldNumber: 609) } if _storage._maximumEdition != 0 { - try visitor.visitSingularInt32Field(value: _storage._maximumEdition, fieldNumber: 613) + try visitor.visitSingularInt32Field(value: _storage._maximumEdition, fieldNumber: 610) } if _storage._mdayStart != 0 { - try visitor.visitSingularInt32Field(value: _storage._mdayStart, fieldNumber: 614) + try visitor.visitSingularInt32Field(value: _storage._mdayStart, fieldNumber: 611) } if _storage._merge != 0 { - try visitor.visitSingularInt32Field(value: _storage._merge, fieldNumber: 615) + try visitor.visitSingularInt32Field(value: _storage._merge, fieldNumber: 612) } if _storage._message != 0 { - try visitor.visitSingularInt32Field(value: _storage._message, fieldNumber: 616) + try visitor.visitSingularInt32Field(value: _storage._message, fieldNumber: 613) } if _storage._messageDepthLimit != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageDepthLimit, fieldNumber: 617) + try visitor.visitSingularInt32Field(value: _storage._messageDepthLimit, fieldNumber: 614) } if _storage._messageEncoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageEncoding, fieldNumber: 618) + try visitor.visitSingularInt32Field(value: _storage._messageEncoding, fieldNumber: 615) } if _storage._messageExtension != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageExtension, fieldNumber: 619) + try visitor.visitSingularInt32Field(value: _storage._messageExtension, fieldNumber: 616) } if _storage._messageImplementationBase != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageImplementationBase, fieldNumber: 620) + try visitor.visitSingularInt32Field(value: _storage._messageImplementationBase, fieldNumber: 617) } if _storage._messageOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageOptions, fieldNumber: 621) + try visitor.visitSingularInt32Field(value: _storage._messageOptions, fieldNumber: 618) } if _storage._messageSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageSet, fieldNumber: 622) + try visitor.visitSingularInt32Field(value: _storage._messageSet, fieldNumber: 619) } if _storage._messageSetWireFormat != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageSetWireFormat, fieldNumber: 623) + try visitor.visitSingularInt32Field(value: _storage._messageSetWireFormat, fieldNumber: 620) } if _storage._messageSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageSize, fieldNumber: 624) + try visitor.visitSingularInt32Field(value: _storage._messageSize, fieldNumber: 621) } if _storage._messageType != 0 { - try visitor.visitSingularInt32Field(value: _storage._messageType, fieldNumber: 625) + try visitor.visitSingularInt32Field(value: _storage._messageType, fieldNumber: 622) } if _storage._method != 0 { - try visitor.visitSingularInt32Field(value: _storage._method, fieldNumber: 626) + try visitor.visitSingularInt32Field(value: _storage._method, fieldNumber: 623) } if _storage._methodDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._methodDescriptorProto, fieldNumber: 627) + try visitor.visitSingularInt32Field(value: _storage._methodDescriptorProto, fieldNumber: 624) } if _storage._methodOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._methodOptions, fieldNumber: 628) + try visitor.visitSingularInt32Field(value: _storage._methodOptions, fieldNumber: 625) } if _storage._methods != 0 { - try visitor.visitSingularInt32Field(value: _storage._methods, fieldNumber: 629) + try visitor.visitSingularInt32Field(value: _storage._methods, fieldNumber: 626) } if _storage._min != 0 { - try visitor.visitSingularInt32Field(value: _storage._min, fieldNumber: 630) + try visitor.visitSingularInt32Field(value: _storage._min, fieldNumber: 627) } if _storage._minimumEdition != 0 { - try visitor.visitSingularInt32Field(value: _storage._minimumEdition, fieldNumber: 631) + try visitor.visitSingularInt32Field(value: _storage._minimumEdition, fieldNumber: 628) } if _storage._minor != 0 { - try visitor.visitSingularInt32Field(value: _storage._minor, fieldNumber: 632) + try visitor.visitSingularInt32Field(value: _storage._minor, fieldNumber: 629) } if _storage._mixin != 0 { - try visitor.visitSingularInt32Field(value: _storage._mixin, fieldNumber: 633) + try visitor.visitSingularInt32Field(value: _storage._mixin, fieldNumber: 630) } if _storage._mixins != 0 { - try visitor.visitSingularInt32Field(value: _storage._mixins, fieldNumber: 634) + try visitor.visitSingularInt32Field(value: _storage._mixins, fieldNumber: 631) } if _storage._modifier != 0 { - try visitor.visitSingularInt32Field(value: _storage._modifier, fieldNumber: 635) + try visitor.visitSingularInt32Field(value: _storage._modifier, fieldNumber: 632) } if _storage._modify != 0 { - try visitor.visitSingularInt32Field(value: _storage._modify, fieldNumber: 636) + try visitor.visitSingularInt32Field(value: _storage._modify, fieldNumber: 633) } if _storage._month != 0 { - try visitor.visitSingularInt32Field(value: _storage._month, fieldNumber: 637) + try visitor.visitSingularInt32Field(value: _storage._month, fieldNumber: 634) } if _storage._msgExtension != 0 { - try visitor.visitSingularInt32Field(value: _storage._msgExtension, fieldNumber: 638) + try visitor.visitSingularInt32Field(value: _storage._msgExtension, fieldNumber: 635) } if _storage._mutating != 0 { - try visitor.visitSingularInt32Field(value: _storage._mutating, fieldNumber: 639) + try visitor.visitSingularInt32Field(value: _storage._mutating, fieldNumber: 636) } if _storage._n != 0 { - try visitor.visitSingularInt32Field(value: _storage._n, fieldNumber: 640) + try visitor.visitSingularInt32Field(value: _storage._n, fieldNumber: 637) } if _storage._name != 0 { - try visitor.visitSingularInt32Field(value: _storage._name, fieldNumber: 641) + try visitor.visitSingularInt32Field(value: _storage._name, fieldNumber: 638) } if _storage._nameDescription != 0 { - try visitor.visitSingularInt32Field(value: _storage._nameDescription, fieldNumber: 642) + try visitor.visitSingularInt32Field(value: _storage._nameDescription, fieldNumber: 639) } if _storage._nameMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._nameMap, fieldNumber: 643) + try visitor.visitSingularInt32Field(value: _storage._nameMap, fieldNumber: 640) } if _storage._namePart != 0 { - try visitor.visitSingularInt32Field(value: _storage._namePart, fieldNumber: 644) + try visitor.visitSingularInt32Field(value: _storage._namePart, fieldNumber: 641) } if _storage._names != 0 { - try visitor.visitSingularInt32Field(value: _storage._names, fieldNumber: 645) + try visitor.visitSingularInt32Field(value: _storage._names, fieldNumber: 642) } if _storage._nanos != 0 { - try visitor.visitSingularInt32Field(value: _storage._nanos, fieldNumber: 646) + try visitor.visitSingularInt32Field(value: _storage._nanos, fieldNumber: 643) } if _storage._negativeIntValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._negativeIntValue, fieldNumber: 647) + try visitor.visitSingularInt32Field(value: _storage._negativeIntValue, fieldNumber: 644) } if _storage._nestedType != 0 { - try visitor.visitSingularInt32Field(value: _storage._nestedType, fieldNumber: 648) + try visitor.visitSingularInt32Field(value: _storage._nestedType, fieldNumber: 645) } if _storage._newL != 0 { - try visitor.visitSingularInt32Field(value: _storage._newL, fieldNumber: 649) + try visitor.visitSingularInt32Field(value: _storage._newL, fieldNumber: 646) } if _storage._newList != 0 { - try visitor.visitSingularInt32Field(value: _storage._newList, fieldNumber: 650) + try visitor.visitSingularInt32Field(value: _storage._newList, fieldNumber: 647) } if _storage._newValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._newValue, fieldNumber: 651) + try visitor.visitSingularInt32Field(value: _storage._newValue, fieldNumber: 648) } if _storage._next != 0 { - try visitor.visitSingularInt32Field(value: _storage._next, fieldNumber: 652) + try visitor.visitSingularInt32Field(value: _storage._next, fieldNumber: 649) } if _storage._nextByte != 0 { - try visitor.visitSingularInt32Field(value: _storage._nextByte, fieldNumber: 653) + try visitor.visitSingularInt32Field(value: _storage._nextByte, fieldNumber: 650) } if _storage._nextFieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._nextFieldNumber, fieldNumber: 654) + try visitor.visitSingularInt32Field(value: _storage._nextFieldNumber, fieldNumber: 651) } if _storage._nextVarInt != 0 { - try visitor.visitSingularInt32Field(value: _storage._nextVarInt, fieldNumber: 655) + try visitor.visitSingularInt32Field(value: _storage._nextVarInt, fieldNumber: 652) } if _storage._nil != 0 { - try visitor.visitSingularInt32Field(value: _storage._nil, fieldNumber: 656) + try visitor.visitSingularInt32Field(value: _storage._nil, fieldNumber: 653) } if _storage._nilLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._nilLiteral, fieldNumber: 657) + try visitor.visitSingularInt32Field(value: _storage._nilLiteral, fieldNumber: 654) } if _storage._noBytesAvailable != 0 { - try visitor.visitSingularInt32Field(value: _storage._noBytesAvailable, fieldNumber: 658) + try visitor.visitSingularInt32Field(value: _storage._noBytesAvailable, fieldNumber: 655) } if _storage._noStandardDescriptorAccessor != 0 { - try visitor.visitSingularInt32Field(value: _storage._noStandardDescriptorAccessor, fieldNumber: 659) + try visitor.visitSingularInt32Field(value: _storage._noStandardDescriptorAccessor, fieldNumber: 656) } if _storage._nullValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._nullValue, fieldNumber: 660) + try visitor.visitSingularInt32Field(value: _storage._nullValue, fieldNumber: 657) } if _storage._number != 0 { - try visitor.visitSingularInt32Field(value: _storage._number, fieldNumber: 661) + try visitor.visitSingularInt32Field(value: _storage._number, fieldNumber: 658) } if _storage._numberValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._numberValue, fieldNumber: 662) + try visitor.visitSingularInt32Field(value: _storage._numberValue, fieldNumber: 659) } if _storage._objcClassPrefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._objcClassPrefix, fieldNumber: 663) + try visitor.visitSingularInt32Field(value: _storage._objcClassPrefix, fieldNumber: 660) } if _storage._of != 0 { - try visitor.visitSingularInt32Field(value: _storage._of, fieldNumber: 664) + try visitor.visitSingularInt32Field(value: _storage._of, fieldNumber: 661) } if _storage._oneofDecl != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofDecl, fieldNumber: 665) + try visitor.visitSingularInt32Field(value: _storage._oneofDecl, fieldNumber: 662) } if _storage._oneofDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofDescriptorProto, fieldNumber: 666) + try visitor.visitSingularInt32Field(value: _storage._oneofDescriptorProto, fieldNumber: 663) } if _storage._oneofIndex != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofIndex, fieldNumber: 667) + try visitor.visitSingularInt32Field(value: _storage._oneofIndex, fieldNumber: 664) } if _storage._oneofOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofOptions, fieldNumber: 668) + try visitor.visitSingularInt32Field(value: _storage._oneofOptions, fieldNumber: 665) } if _storage._oneofs != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneofs, fieldNumber: 669) + try visitor.visitSingularInt32Field(value: _storage._oneofs, fieldNumber: 666) } if _storage._oneOfKind != 0 { - try visitor.visitSingularInt32Field(value: _storage._oneOfKind, fieldNumber: 670) + try visitor.visitSingularInt32Field(value: _storage._oneOfKind, fieldNumber: 667) } if _storage._optimizeFor != 0 { - try visitor.visitSingularInt32Field(value: _storage._optimizeFor, fieldNumber: 671) + try visitor.visitSingularInt32Field(value: _storage._optimizeFor, fieldNumber: 668) } if _storage._optimizeMode != 0 { - try visitor.visitSingularInt32Field(value: _storage._optimizeMode, fieldNumber: 672) + try visitor.visitSingularInt32Field(value: _storage._optimizeMode, fieldNumber: 669) } if _storage._option != 0 { - try visitor.visitSingularInt32Field(value: _storage._option, fieldNumber: 673) + try visitor.visitSingularInt32Field(value: _storage._option, fieldNumber: 670) } if _storage._optionalEnumExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionalEnumExtensionField, fieldNumber: 674) + try visitor.visitSingularInt32Field(value: _storage._optionalEnumExtensionField, fieldNumber: 671) } if _storage._optionalExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionalExtensionField, fieldNumber: 675) + try visitor.visitSingularInt32Field(value: _storage._optionalExtensionField, fieldNumber: 672) } if _storage._optionalGroupExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionalGroupExtensionField, fieldNumber: 676) + try visitor.visitSingularInt32Field(value: _storage._optionalGroupExtensionField, fieldNumber: 673) } if _storage._optionalMessageExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionalMessageExtensionField, fieldNumber: 677) + try visitor.visitSingularInt32Field(value: _storage._optionalMessageExtensionField, fieldNumber: 674) } if _storage._optionRetention != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionRetention, fieldNumber: 678) + try visitor.visitSingularInt32Field(value: _storage._optionRetention, fieldNumber: 675) } if _storage._options != 0 { - try visitor.visitSingularInt32Field(value: _storage._options, fieldNumber: 679) + try visitor.visitSingularInt32Field(value: _storage._options, fieldNumber: 676) } if _storage._optionTargetType != 0 { - try visitor.visitSingularInt32Field(value: _storage._optionTargetType, fieldNumber: 680) + try visitor.visitSingularInt32Field(value: _storage._optionTargetType, fieldNumber: 677) } if _storage._other != 0 { - try visitor.visitSingularInt32Field(value: _storage._other, fieldNumber: 681) + try visitor.visitSingularInt32Field(value: _storage._other, fieldNumber: 678) } if _storage._others != 0 { - try visitor.visitSingularInt32Field(value: _storage._others, fieldNumber: 682) + try visitor.visitSingularInt32Field(value: _storage._others, fieldNumber: 679) } if _storage._out != 0 { - try visitor.visitSingularInt32Field(value: _storage._out, fieldNumber: 683) + try visitor.visitSingularInt32Field(value: _storage._out, fieldNumber: 680) } if _storage._outputType != 0 { - try visitor.visitSingularInt32Field(value: _storage._outputType, fieldNumber: 684) + try visitor.visitSingularInt32Field(value: _storage._outputType, fieldNumber: 681) } if _storage._overridableFeatures != 0 { - try visitor.visitSingularInt32Field(value: _storage._overridableFeatures, fieldNumber: 685) + try visitor.visitSingularInt32Field(value: _storage._overridableFeatures, fieldNumber: 682) } if _storage._p != 0 { - try visitor.visitSingularInt32Field(value: _storage._p, fieldNumber: 686) + try visitor.visitSingularInt32Field(value: _storage._p, fieldNumber: 683) } if _storage._package != 0 { - try visitor.visitSingularInt32Field(value: _storage._package, fieldNumber: 687) + try visitor.visitSingularInt32Field(value: _storage._package, fieldNumber: 684) } if _storage._packed != 0 { - try visitor.visitSingularInt32Field(value: _storage._packed, fieldNumber: 688) + try visitor.visitSingularInt32Field(value: _storage._packed, fieldNumber: 685) } if _storage._packedEnumExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._packedEnumExtensionField, fieldNumber: 689) + try visitor.visitSingularInt32Field(value: _storage._packedEnumExtensionField, fieldNumber: 686) } if _storage._packedExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._packedExtensionField, fieldNumber: 690) + try visitor.visitSingularInt32Field(value: _storage._packedExtensionField, fieldNumber: 687) } if _storage._padding != 0 { - try visitor.visitSingularInt32Field(value: _storage._padding, fieldNumber: 691) + try visitor.visitSingularInt32Field(value: _storage._padding, fieldNumber: 688) } if _storage._parent != 0 { - try visitor.visitSingularInt32Field(value: _storage._parent, fieldNumber: 692) + try visitor.visitSingularInt32Field(value: _storage._parent, fieldNumber: 689) } if _storage._parse != 0 { - try visitor.visitSingularInt32Field(value: _storage._parse, fieldNumber: 693) + try visitor.visitSingularInt32Field(value: _storage._parse, fieldNumber: 690) } if _storage._path != 0 { - try visitor.visitSingularInt32Field(value: _storage._path, fieldNumber: 694) + try visitor.visitSingularInt32Field(value: _storage._path, fieldNumber: 691) } if _storage._paths != 0 { - try visitor.visitSingularInt32Field(value: _storage._paths, fieldNumber: 695) + try visitor.visitSingularInt32Field(value: _storage._paths, fieldNumber: 692) } if _storage._payload != 0 { - try visitor.visitSingularInt32Field(value: _storage._payload, fieldNumber: 696) + try visitor.visitSingularInt32Field(value: _storage._payload, fieldNumber: 693) } if _storage._payloadSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._payloadSize, fieldNumber: 697) + try visitor.visitSingularInt32Field(value: _storage._payloadSize, fieldNumber: 694) } if _storage._phpClassPrefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._phpClassPrefix, fieldNumber: 698) + try visitor.visitSingularInt32Field(value: _storage._phpClassPrefix, fieldNumber: 695) } if _storage._phpMetadataNamespace != 0 { - try visitor.visitSingularInt32Field(value: _storage._phpMetadataNamespace, fieldNumber: 699) + try visitor.visitSingularInt32Field(value: _storage._phpMetadataNamespace, fieldNumber: 696) } if _storage._phpNamespace != 0 { - try visitor.visitSingularInt32Field(value: _storage._phpNamespace, fieldNumber: 700) + try visitor.visitSingularInt32Field(value: _storage._phpNamespace, fieldNumber: 697) } if _storage._pos != 0 { - try visitor.visitSingularInt32Field(value: _storage._pos, fieldNumber: 701) + try visitor.visitSingularInt32Field(value: _storage._pos, fieldNumber: 698) } if _storage._positiveIntValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._positiveIntValue, fieldNumber: 702) + try visitor.visitSingularInt32Field(value: _storage._positiveIntValue, fieldNumber: 699) } if _storage._prefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._prefix, fieldNumber: 703) + try visitor.visitSingularInt32Field(value: _storage._prefix, fieldNumber: 700) } if _storage._preserveProtoFieldNames != 0 { - try visitor.visitSingularInt32Field(value: _storage._preserveProtoFieldNames, fieldNumber: 704) + try visitor.visitSingularInt32Field(value: _storage._preserveProtoFieldNames, fieldNumber: 701) } if _storage._preTraverse != 0 { - try visitor.visitSingularInt32Field(value: _storage._preTraverse, fieldNumber: 705) + try visitor.visitSingularInt32Field(value: _storage._preTraverse, fieldNumber: 702) } if _storage._printUnknownFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._printUnknownFields, fieldNumber: 706) + try visitor.visitSingularInt32Field(value: _storage._printUnknownFields, fieldNumber: 703) } if _storage._proto2 != 0 { - try visitor.visitSingularInt32Field(value: _storage._proto2, fieldNumber: 707) + try visitor.visitSingularInt32Field(value: _storage._proto2, fieldNumber: 704) } if _storage._proto3DefaultValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._proto3DefaultValue, fieldNumber: 708) + try visitor.visitSingularInt32Field(value: _storage._proto3DefaultValue, fieldNumber: 705) } if _storage._proto3Optional != 0 { - try visitor.visitSingularInt32Field(value: _storage._proto3Optional, fieldNumber: 709) + try visitor.visitSingularInt32Field(value: _storage._proto3Optional, fieldNumber: 706) } if _storage._protobufApiversionCheck != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufApiversionCheck, fieldNumber: 710) + try visitor.visitSingularInt32Field(value: _storage._protobufApiversionCheck, fieldNumber: 707) } if _storage._protobufApiversion3 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufApiversion3, fieldNumber: 711) + try visitor.visitSingularInt32Field(value: _storage._protobufApiversion3, fieldNumber: 708) } if _storage._protobufBool != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufBool, fieldNumber: 712) + try visitor.visitSingularInt32Field(value: _storage._protobufBool, fieldNumber: 709) } if _storage._protobufBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufBytes, fieldNumber: 713) + try visitor.visitSingularInt32Field(value: _storage._protobufBytes, fieldNumber: 710) } if _storage._protobufDouble != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufDouble, fieldNumber: 714) + try visitor.visitSingularInt32Field(value: _storage._protobufDouble, fieldNumber: 711) } if _storage._protobufEnumMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufEnumMap, fieldNumber: 715) + try visitor.visitSingularInt32Field(value: _storage._protobufEnumMap, fieldNumber: 712) } if _storage._protobufExtension != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufExtension, fieldNumber: 716) + try visitor.visitSingularInt32Field(value: _storage._protobufExtension, fieldNumber: 713) } if _storage._protobufFixed32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufFixed32, fieldNumber: 717) + try visitor.visitSingularInt32Field(value: _storage._protobufFixed32, fieldNumber: 714) } if _storage._protobufFixed64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufFixed64, fieldNumber: 718) + try visitor.visitSingularInt32Field(value: _storage._protobufFixed64, fieldNumber: 715) } if _storage._protobufFloat != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufFloat, fieldNumber: 719) + try visitor.visitSingularInt32Field(value: _storage._protobufFloat, fieldNumber: 716) } if _storage._protobufInt32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufInt32, fieldNumber: 720) + try visitor.visitSingularInt32Field(value: _storage._protobufInt32, fieldNumber: 717) } if _storage._protobufInt64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufInt64, fieldNumber: 721) + try visitor.visitSingularInt32Field(value: _storage._protobufInt64, fieldNumber: 718) } if _storage._protobufMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufMap, fieldNumber: 722) + try visitor.visitSingularInt32Field(value: _storage._protobufMap, fieldNumber: 719) } if _storage._protobufMessageMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufMessageMap, fieldNumber: 723) + try visitor.visitSingularInt32Field(value: _storage._protobufMessageMap, fieldNumber: 720) } if _storage._protobufSfixed32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufSfixed32, fieldNumber: 724) + try visitor.visitSingularInt32Field(value: _storage._protobufSfixed32, fieldNumber: 721) } if _storage._protobufSfixed64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufSfixed64, fieldNumber: 725) + try visitor.visitSingularInt32Field(value: _storage._protobufSfixed64, fieldNumber: 722) } if _storage._protobufSint32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufSint32, fieldNumber: 726) + try visitor.visitSingularInt32Field(value: _storage._protobufSint32, fieldNumber: 723) } if _storage._protobufSint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufSint64, fieldNumber: 727) + try visitor.visitSingularInt32Field(value: _storage._protobufSint64, fieldNumber: 724) } if _storage._protobufString != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufString, fieldNumber: 728) + try visitor.visitSingularInt32Field(value: _storage._protobufString, fieldNumber: 725) } if _storage._protobufUint32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufUint32, fieldNumber: 729) + try visitor.visitSingularInt32Field(value: _storage._protobufUint32, fieldNumber: 726) } if _storage._protobufUint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufUint64, fieldNumber: 730) + try visitor.visitSingularInt32Field(value: _storage._protobufUint64, fieldNumber: 727) } if _storage._protobufExtensionFieldValues != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufExtensionFieldValues, fieldNumber: 731) + try visitor.visitSingularInt32Field(value: _storage._protobufExtensionFieldValues, fieldNumber: 728) } if _storage._protobufFieldNumber != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufFieldNumber, fieldNumber: 732) + try visitor.visitSingularInt32Field(value: _storage._protobufFieldNumber, fieldNumber: 729) } if _storage._protobufGeneratedIsEqualTo != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufGeneratedIsEqualTo, fieldNumber: 733) + try visitor.visitSingularInt32Field(value: _storage._protobufGeneratedIsEqualTo, fieldNumber: 730) } if _storage._protobufNameMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufNameMap, fieldNumber: 734) + try visitor.visitSingularInt32Field(value: _storage._protobufNameMap, fieldNumber: 731) } if _storage._protobufNewField != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufNewField, fieldNumber: 735) + try visitor.visitSingularInt32Field(value: _storage._protobufNewField, fieldNumber: 732) } if _storage._protobufPackage != 0 { - try visitor.visitSingularInt32Field(value: _storage._protobufPackage, fieldNumber: 736) + try visitor.visitSingularInt32Field(value: _storage._protobufPackage, fieldNumber: 733) } if _storage._protocol != 0 { - try visitor.visitSingularInt32Field(value: _storage._protocol, fieldNumber: 737) + try visitor.visitSingularInt32Field(value: _storage._protocol, fieldNumber: 734) } if _storage._protoFieldName != 0 { - try visitor.visitSingularInt32Field(value: _storage._protoFieldName, fieldNumber: 738) + try visitor.visitSingularInt32Field(value: _storage._protoFieldName, fieldNumber: 735) } if _storage._protoMessageName != 0 { - try visitor.visitSingularInt32Field(value: _storage._protoMessageName, fieldNumber: 739) + try visitor.visitSingularInt32Field(value: _storage._protoMessageName, fieldNumber: 736) } if _storage._protoNameProviding != 0 { - try visitor.visitSingularInt32Field(value: _storage._protoNameProviding, fieldNumber: 740) + try visitor.visitSingularInt32Field(value: _storage._protoNameProviding, fieldNumber: 737) } if _storage._protoPaths != 0 { - try visitor.visitSingularInt32Field(value: _storage._protoPaths, fieldNumber: 741) + try visitor.visitSingularInt32Field(value: _storage._protoPaths, fieldNumber: 738) } if _storage._public != 0 { - try visitor.visitSingularInt32Field(value: _storage._public, fieldNumber: 742) + try visitor.visitSingularInt32Field(value: _storage._public, fieldNumber: 739) } if _storage._publicDependency != 0 { - try visitor.visitSingularInt32Field(value: _storage._publicDependency, fieldNumber: 743) + try visitor.visitSingularInt32Field(value: _storage._publicDependency, fieldNumber: 740) } if _storage._putBoolValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putBoolValue, fieldNumber: 744) + try visitor.visitSingularInt32Field(value: _storage._putBoolValue, fieldNumber: 741) } if _storage._putBytesValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putBytesValue, fieldNumber: 745) + try visitor.visitSingularInt32Field(value: _storage._putBytesValue, fieldNumber: 742) } if _storage._putDoubleValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putDoubleValue, fieldNumber: 746) + try visitor.visitSingularInt32Field(value: _storage._putDoubleValue, fieldNumber: 743) } if _storage._putEnumValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putEnumValue, fieldNumber: 747) + try visitor.visitSingularInt32Field(value: _storage._putEnumValue, fieldNumber: 744) } if _storage._putFixedUint32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._putFixedUint32, fieldNumber: 748) + try visitor.visitSingularInt32Field(value: _storage._putFixedUint32, fieldNumber: 745) } if _storage._putFixedUint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._putFixedUint64, fieldNumber: 749) + try visitor.visitSingularInt32Field(value: _storage._putFixedUint64, fieldNumber: 746) } if _storage._putFloatValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putFloatValue, fieldNumber: 750) + try visitor.visitSingularInt32Field(value: _storage._putFloatValue, fieldNumber: 747) } if _storage._putInt64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._putInt64, fieldNumber: 751) + try visitor.visitSingularInt32Field(value: _storage._putInt64, fieldNumber: 748) } if _storage._putStringValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._putStringValue, fieldNumber: 752) + try visitor.visitSingularInt32Field(value: _storage._putStringValue, fieldNumber: 749) } if _storage._putUint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._putUint64, fieldNumber: 753) + try visitor.visitSingularInt32Field(value: _storage._putUint64, fieldNumber: 750) } if _storage._putUint64Hex != 0 { - try visitor.visitSingularInt32Field(value: _storage._putUint64Hex, fieldNumber: 754) + try visitor.visitSingularInt32Field(value: _storage._putUint64Hex, fieldNumber: 751) } if _storage._putVarInt != 0 { - try visitor.visitSingularInt32Field(value: _storage._putVarInt, fieldNumber: 755) + try visitor.visitSingularInt32Field(value: _storage._putVarInt, fieldNumber: 752) } if _storage._putZigZagVarInt != 0 { - try visitor.visitSingularInt32Field(value: _storage._putZigZagVarInt, fieldNumber: 756) + try visitor.visitSingularInt32Field(value: _storage._putZigZagVarInt, fieldNumber: 753) } if _storage._pyGenericServices != 0 { - try visitor.visitSingularInt32Field(value: _storage._pyGenericServices, fieldNumber: 757) + try visitor.visitSingularInt32Field(value: _storage._pyGenericServices, fieldNumber: 754) } if _storage._r != 0 { - try visitor.visitSingularInt32Field(value: _storage._r, fieldNumber: 758) + try visitor.visitSingularInt32Field(value: _storage._r, fieldNumber: 755) } if _storage._rawChars != 0 { - try visitor.visitSingularInt32Field(value: _storage._rawChars, fieldNumber: 759) + try visitor.visitSingularInt32Field(value: _storage._rawChars, fieldNumber: 756) } if _storage._rawRepresentable != 0 { - try visitor.visitSingularInt32Field(value: _storage._rawRepresentable, fieldNumber: 760) + try visitor.visitSingularInt32Field(value: _storage._rawRepresentable, fieldNumber: 757) } if _storage._rawValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._rawValue, fieldNumber: 761) + try visitor.visitSingularInt32Field(value: _storage._rawValue, fieldNumber: 758) } if _storage._read4HexDigits != 0 { - try visitor.visitSingularInt32Field(value: _storage._read4HexDigits, fieldNumber: 762) + try visitor.visitSingularInt32Field(value: _storage._read4HexDigits, fieldNumber: 759) } if _storage._readBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._readBytes, fieldNumber: 763) + try visitor.visitSingularInt32Field(value: _storage._readBytes, fieldNumber: 760) } if _storage._register != 0 { - try visitor.visitSingularInt32Field(value: _storage._register, fieldNumber: 764) + try visitor.visitSingularInt32Field(value: _storage._register, fieldNumber: 761) } if _storage._repeated != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeated, fieldNumber: 765) + try visitor.visitSingularInt32Field(value: _storage._repeated, fieldNumber: 762) } if _storage._repeatedEnumExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedEnumExtensionField, fieldNumber: 766) + try visitor.visitSingularInt32Field(value: _storage._repeatedEnumExtensionField, fieldNumber: 763) } if _storage._repeatedExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedExtensionField, fieldNumber: 767) + try visitor.visitSingularInt32Field(value: _storage._repeatedExtensionField, fieldNumber: 764) } if _storage._repeatedFieldEncoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedFieldEncoding, fieldNumber: 768) + try visitor.visitSingularInt32Field(value: _storage._repeatedFieldEncoding, fieldNumber: 765) } if _storage._repeatedGroupExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedGroupExtensionField, fieldNumber: 769) + try visitor.visitSingularInt32Field(value: _storage._repeatedGroupExtensionField, fieldNumber: 766) } if _storage._repeatedMessageExtensionField != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeatedMessageExtensionField, fieldNumber: 770) + try visitor.visitSingularInt32Field(value: _storage._repeatedMessageExtensionField, fieldNumber: 767) } if _storage._repeating != 0 { - try visitor.visitSingularInt32Field(value: _storage._repeating, fieldNumber: 771) + try visitor.visitSingularInt32Field(value: _storage._repeating, fieldNumber: 768) } if _storage._requestStreaming != 0 { - try visitor.visitSingularInt32Field(value: _storage._requestStreaming, fieldNumber: 772) + try visitor.visitSingularInt32Field(value: _storage._requestStreaming, fieldNumber: 769) } if _storage._requestTypeURL != 0 { - try visitor.visitSingularInt32Field(value: _storage._requestTypeURL, fieldNumber: 773) + try visitor.visitSingularInt32Field(value: _storage._requestTypeURL, fieldNumber: 770) } if _storage._requiredSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._requiredSize, fieldNumber: 774) + try visitor.visitSingularInt32Field(value: _storage._requiredSize, fieldNumber: 771) } if _storage._responseStreaming != 0 { - try visitor.visitSingularInt32Field(value: _storage._responseStreaming, fieldNumber: 775) + try visitor.visitSingularInt32Field(value: _storage._responseStreaming, fieldNumber: 772) } if _storage._responseTypeURL != 0 { - try visitor.visitSingularInt32Field(value: _storage._responseTypeURL, fieldNumber: 776) + try visitor.visitSingularInt32Field(value: _storage._responseTypeURL, fieldNumber: 773) } if _storage._result != 0 { - try visitor.visitSingularInt32Field(value: _storage._result, fieldNumber: 777) + try visitor.visitSingularInt32Field(value: _storage._result, fieldNumber: 774) } if _storage._retention != 0 { - try visitor.visitSingularInt32Field(value: _storage._retention, fieldNumber: 778) + try visitor.visitSingularInt32Field(value: _storage._retention, fieldNumber: 775) } if _storage._rethrows != 0 { - try visitor.visitSingularInt32Field(value: _storage._rethrows, fieldNumber: 779) + try visitor.visitSingularInt32Field(value: _storage._rethrows, fieldNumber: 776) } if _storage._return != 0 { - try visitor.visitSingularInt32Field(value: _storage._return, fieldNumber: 780) + try visitor.visitSingularInt32Field(value: _storage._return, fieldNumber: 777) } if _storage._returnType != 0 { - try visitor.visitSingularInt32Field(value: _storage._returnType, fieldNumber: 781) + try visitor.visitSingularInt32Field(value: _storage._returnType, fieldNumber: 778) } if _storage._revision != 0 { - try visitor.visitSingularInt32Field(value: _storage._revision, fieldNumber: 782) + try visitor.visitSingularInt32Field(value: _storage._revision, fieldNumber: 779) } if _storage._rhs != 0 { - try visitor.visitSingularInt32Field(value: _storage._rhs, fieldNumber: 783) + try visitor.visitSingularInt32Field(value: _storage._rhs, fieldNumber: 780) } if _storage._root != 0 { - try visitor.visitSingularInt32Field(value: _storage._root, fieldNumber: 784) + try visitor.visitSingularInt32Field(value: _storage._root, fieldNumber: 781) } if _storage._rubyPackage != 0 { - try visitor.visitSingularInt32Field(value: _storage._rubyPackage, fieldNumber: 785) + try visitor.visitSingularInt32Field(value: _storage._rubyPackage, fieldNumber: 782) } if _storage._s != 0 { - try visitor.visitSingularInt32Field(value: _storage._s, fieldNumber: 786) + try visitor.visitSingularInt32Field(value: _storage._s, fieldNumber: 783) } if _storage._sawBackslash != 0 { - try visitor.visitSingularInt32Field(value: _storage._sawBackslash, fieldNumber: 787) + try visitor.visitSingularInt32Field(value: _storage._sawBackslash, fieldNumber: 784) } if _storage._sawSection4Characters != 0 { - try visitor.visitSingularInt32Field(value: _storage._sawSection4Characters, fieldNumber: 788) + try visitor.visitSingularInt32Field(value: _storage._sawSection4Characters, fieldNumber: 785) } if _storage._sawSection5Characters != 0 { - try visitor.visitSingularInt32Field(value: _storage._sawSection5Characters, fieldNumber: 789) + try visitor.visitSingularInt32Field(value: _storage._sawSection5Characters, fieldNumber: 786) } if _storage._scan != 0 { - try visitor.visitSingularInt32Field(value: _storage._scan, fieldNumber: 790) + try visitor.visitSingularInt32Field(value: _storage._scan, fieldNumber: 787) } if _storage._scanner != 0 { - try visitor.visitSingularInt32Field(value: _storage._scanner, fieldNumber: 791) + try visitor.visitSingularInt32Field(value: _storage._scanner, fieldNumber: 788) } if _storage._seconds != 0 { - try visitor.visitSingularInt32Field(value: _storage._seconds, fieldNumber: 792) + try visitor.visitSingularInt32Field(value: _storage._seconds, fieldNumber: 789) } if _storage._self_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._self_p, fieldNumber: 793) + try visitor.visitSingularInt32Field(value: _storage._self_p, fieldNumber: 790) } if _storage._semantic != 0 { - try visitor.visitSingularInt32Field(value: _storage._semantic, fieldNumber: 794) + try visitor.visitSingularInt32Field(value: _storage._semantic, fieldNumber: 791) } if _storage._sendable != 0 { - try visitor.visitSingularInt32Field(value: _storage._sendable, fieldNumber: 795) + try visitor.visitSingularInt32Field(value: _storage._sendable, fieldNumber: 792) } if _storage._separator != 0 { - try visitor.visitSingularInt32Field(value: _storage._separator, fieldNumber: 796) + try visitor.visitSingularInt32Field(value: _storage._separator, fieldNumber: 793) } if _storage._serialize != 0 { - try visitor.visitSingularInt32Field(value: _storage._serialize, fieldNumber: 797) + try visitor.visitSingularInt32Field(value: _storage._serialize, fieldNumber: 794) } if _storage._serializedBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._serializedBytes, fieldNumber: 798) + try visitor.visitSingularInt32Field(value: _storage._serializedBytes, fieldNumber: 795) } if _storage._serializedData != 0 { - try visitor.visitSingularInt32Field(value: _storage._serializedData, fieldNumber: 799) + try visitor.visitSingularInt32Field(value: _storage._serializedData, fieldNumber: 796) } if _storage._serializedSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._serializedSize, fieldNumber: 800) + try visitor.visitSingularInt32Field(value: _storage._serializedSize, fieldNumber: 797) } if _storage._serverStreaming != 0 { - try visitor.visitSingularInt32Field(value: _storage._serverStreaming, fieldNumber: 801) + try visitor.visitSingularInt32Field(value: _storage._serverStreaming, fieldNumber: 798) } if _storage._service != 0 { - try visitor.visitSingularInt32Field(value: _storage._service, fieldNumber: 802) + try visitor.visitSingularInt32Field(value: _storage._service, fieldNumber: 799) } if _storage._serviceDescriptorProto != 0 { - try visitor.visitSingularInt32Field(value: _storage._serviceDescriptorProto, fieldNumber: 803) + try visitor.visitSingularInt32Field(value: _storage._serviceDescriptorProto, fieldNumber: 800) } if _storage._serviceOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._serviceOptions, fieldNumber: 804) + try visitor.visitSingularInt32Field(value: _storage._serviceOptions, fieldNumber: 801) } if _storage._set != 0 { - try visitor.visitSingularInt32Field(value: _storage._set, fieldNumber: 805) + try visitor.visitSingularInt32Field(value: _storage._set, fieldNumber: 802) } if _storage._setExtensionValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._setExtensionValue, fieldNumber: 806) + try visitor.visitSingularInt32Field(value: _storage._setExtensionValue, fieldNumber: 803) } if _storage._shift != 0 { - try visitor.visitSingularInt32Field(value: _storage._shift, fieldNumber: 807) + try visitor.visitSingularInt32Field(value: _storage._shift, fieldNumber: 804) } if _storage._simpleExtensionMap != 0 { - try visitor.visitSingularInt32Field(value: _storage._simpleExtensionMap, fieldNumber: 808) + try visitor.visitSingularInt32Field(value: _storage._simpleExtensionMap, fieldNumber: 805) } if _storage._size != 0 { - try visitor.visitSingularInt32Field(value: _storage._size, fieldNumber: 809) + try visitor.visitSingularInt32Field(value: _storage._size, fieldNumber: 806) } if _storage._sizer != 0 { - try visitor.visitSingularInt32Field(value: _storage._sizer, fieldNumber: 810) + try visitor.visitSingularInt32Field(value: _storage._sizer, fieldNumber: 807) } if _storage._source != 0 { - try visitor.visitSingularInt32Field(value: _storage._source, fieldNumber: 811) + try visitor.visitSingularInt32Field(value: _storage._source, fieldNumber: 808) } if _storage._sourceCodeInfo != 0 { - try visitor.visitSingularInt32Field(value: _storage._sourceCodeInfo, fieldNumber: 812) + try visitor.visitSingularInt32Field(value: _storage._sourceCodeInfo, fieldNumber: 809) } if _storage._sourceContext != 0 { - try visitor.visitSingularInt32Field(value: _storage._sourceContext, fieldNumber: 813) + try visitor.visitSingularInt32Field(value: _storage._sourceContext, fieldNumber: 810) } if _storage._sourceEncoding != 0 { - try visitor.visitSingularInt32Field(value: _storage._sourceEncoding, fieldNumber: 814) + try visitor.visitSingularInt32Field(value: _storage._sourceEncoding, fieldNumber: 811) } if _storage._sourceFile != 0 { - try visitor.visitSingularInt32Field(value: _storage._sourceFile, fieldNumber: 815) + try visitor.visitSingularInt32Field(value: _storage._sourceFile, fieldNumber: 812) } if _storage._sourceLocation != 0 { - try visitor.visitSingularInt32Field(value: _storage._sourceLocation, fieldNumber: 816) + try visitor.visitSingularInt32Field(value: _storage._sourceLocation, fieldNumber: 813) } if _storage._span != 0 { - try visitor.visitSingularInt32Field(value: _storage._span, fieldNumber: 817) + try visitor.visitSingularInt32Field(value: _storage._span, fieldNumber: 814) } if _storage._split != 0 { - try visitor.visitSingularInt32Field(value: _storage._split, fieldNumber: 818) + try visitor.visitSingularInt32Field(value: _storage._split, fieldNumber: 815) } if _storage._start != 0 { - try visitor.visitSingularInt32Field(value: _storage._start, fieldNumber: 819) + try visitor.visitSingularInt32Field(value: _storage._start, fieldNumber: 816) } if _storage._startArray != 0 { - try visitor.visitSingularInt32Field(value: _storage._startArray, fieldNumber: 820) + try visitor.visitSingularInt32Field(value: _storage._startArray, fieldNumber: 817) } if _storage._startArrayObject != 0 { - try visitor.visitSingularInt32Field(value: _storage._startArrayObject, fieldNumber: 821) + try visitor.visitSingularInt32Field(value: _storage._startArrayObject, fieldNumber: 818) } if _storage._startField != 0 { - try visitor.visitSingularInt32Field(value: _storage._startField, fieldNumber: 822) + try visitor.visitSingularInt32Field(value: _storage._startField, fieldNumber: 819) } if _storage._startIndex != 0 { - try visitor.visitSingularInt32Field(value: _storage._startIndex, fieldNumber: 823) + try visitor.visitSingularInt32Field(value: _storage._startIndex, fieldNumber: 820) } if _storage._startMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._startMessageField, fieldNumber: 824) + try visitor.visitSingularInt32Field(value: _storage._startMessageField, fieldNumber: 821) } if _storage._startObject != 0 { - try visitor.visitSingularInt32Field(value: _storage._startObject, fieldNumber: 825) + try visitor.visitSingularInt32Field(value: _storage._startObject, fieldNumber: 822) } if _storage._startRegularField != 0 { - try visitor.visitSingularInt32Field(value: _storage._startRegularField, fieldNumber: 826) + try visitor.visitSingularInt32Field(value: _storage._startRegularField, fieldNumber: 823) } if _storage._state != 0 { - try visitor.visitSingularInt32Field(value: _storage._state, fieldNumber: 827) + try visitor.visitSingularInt32Field(value: _storage._state, fieldNumber: 824) } if _storage._static != 0 { - try visitor.visitSingularInt32Field(value: _storage._static, fieldNumber: 828) + try visitor.visitSingularInt32Field(value: _storage._static, fieldNumber: 825) } if _storage._staticString != 0 { - try visitor.visitSingularInt32Field(value: _storage._staticString, fieldNumber: 829) + try visitor.visitSingularInt32Field(value: _storage._staticString, fieldNumber: 826) } if _storage._storage != 0 { - try visitor.visitSingularInt32Field(value: _storage._storage, fieldNumber: 830) + try visitor.visitSingularInt32Field(value: _storage._storage, fieldNumber: 827) } if _storage._string != 0 { - try visitor.visitSingularInt32Field(value: _storage._string, fieldNumber: 831) + try visitor.visitSingularInt32Field(value: _storage._string, fieldNumber: 828) } if _storage._stringLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._stringLiteral, fieldNumber: 832) + try visitor.visitSingularInt32Field(value: _storage._stringLiteral, fieldNumber: 829) } if _storage._stringLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._stringLiteralType, fieldNumber: 833) + try visitor.visitSingularInt32Field(value: _storage._stringLiteralType, fieldNumber: 830) } if _storage._stringResult != 0 { - try visitor.visitSingularInt32Field(value: _storage._stringResult, fieldNumber: 834) + try visitor.visitSingularInt32Field(value: _storage._stringResult, fieldNumber: 831) } if _storage._stringValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._stringValue, fieldNumber: 835) + try visitor.visitSingularInt32Field(value: _storage._stringValue, fieldNumber: 832) } if _storage._struct != 0 { - try visitor.visitSingularInt32Field(value: _storage._struct, fieldNumber: 836) + try visitor.visitSingularInt32Field(value: _storage._struct, fieldNumber: 833) } if _storage._structValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._structValue, fieldNumber: 837) + try visitor.visitSingularInt32Field(value: _storage._structValue, fieldNumber: 834) } if _storage._subDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._subDecoder, fieldNumber: 838) + try visitor.visitSingularInt32Field(value: _storage._subDecoder, fieldNumber: 835) } if _storage._subscript != 0 { - try visitor.visitSingularInt32Field(value: _storage._subscript, fieldNumber: 839) + try visitor.visitSingularInt32Field(value: _storage._subscript, fieldNumber: 836) } if _storage._subVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._subVisitor, fieldNumber: 840) + try visitor.visitSingularInt32Field(value: _storage._subVisitor, fieldNumber: 837) } if _storage._swift != 0 { - try visitor.visitSingularInt32Field(value: _storage._swift, fieldNumber: 841) + try visitor.visitSingularInt32Field(value: _storage._swift, fieldNumber: 838) } if _storage._swiftPrefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._swiftPrefix, fieldNumber: 842) + try visitor.visitSingularInt32Field(value: _storage._swiftPrefix, fieldNumber: 839) } if _storage._swiftProtobufContiguousBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._swiftProtobufContiguousBytes, fieldNumber: 843) + try visitor.visitSingularInt32Field(value: _storage._swiftProtobufContiguousBytes, fieldNumber: 840) } if _storage._swiftProtobufError != 0 { - try visitor.visitSingularInt32Field(value: _storage._swiftProtobufError, fieldNumber: 844) + try visitor.visitSingularInt32Field(value: _storage._swiftProtobufError, fieldNumber: 841) } if _storage._syntax != 0 { - try visitor.visitSingularInt32Field(value: _storage._syntax, fieldNumber: 845) + try visitor.visitSingularInt32Field(value: _storage._syntax, fieldNumber: 842) } if _storage._t != 0 { - try visitor.visitSingularInt32Field(value: _storage._t, fieldNumber: 846) + try visitor.visitSingularInt32Field(value: _storage._t, fieldNumber: 843) } if _storage._tag != 0 { - try visitor.visitSingularInt32Field(value: _storage._tag, fieldNumber: 847) + try visitor.visitSingularInt32Field(value: _storage._tag, fieldNumber: 844) } if _storage._targets != 0 { - try visitor.visitSingularInt32Field(value: _storage._targets, fieldNumber: 848) + try visitor.visitSingularInt32Field(value: _storage._targets, fieldNumber: 845) } if _storage._terminator != 0 { - try visitor.visitSingularInt32Field(value: _storage._terminator, fieldNumber: 849) + try visitor.visitSingularInt32Field(value: _storage._terminator, fieldNumber: 846) } if _storage._testDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._testDecoder, fieldNumber: 850) + try visitor.visitSingularInt32Field(value: _storage._testDecoder, fieldNumber: 847) } if _storage._text != 0 { - try visitor.visitSingularInt32Field(value: _storage._text, fieldNumber: 851) + try visitor.visitSingularInt32Field(value: _storage._text, fieldNumber: 848) } if _storage._textDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._textDecoder, fieldNumber: 852) + try visitor.visitSingularInt32Field(value: _storage._textDecoder, fieldNumber: 849) } if _storage._textFormatDecoder != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatDecoder, fieldNumber: 853) + try visitor.visitSingularInt32Field(value: _storage._textFormatDecoder, fieldNumber: 850) } if _storage._textFormatDecodingError != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatDecodingError, fieldNumber: 854) + try visitor.visitSingularInt32Field(value: _storage._textFormatDecodingError, fieldNumber: 851) } if _storage._textFormatDecodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatDecodingOptions, fieldNumber: 855) + try visitor.visitSingularInt32Field(value: _storage._textFormatDecodingOptions, fieldNumber: 852) } if _storage._textFormatEncodingOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatEncodingOptions, fieldNumber: 856) + try visitor.visitSingularInt32Field(value: _storage._textFormatEncodingOptions, fieldNumber: 853) } if _storage._textFormatEncodingVisitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatEncodingVisitor, fieldNumber: 857) + try visitor.visitSingularInt32Field(value: _storage._textFormatEncodingVisitor, fieldNumber: 854) } if _storage._textFormatString != 0 { - try visitor.visitSingularInt32Field(value: _storage._textFormatString, fieldNumber: 858) + try visitor.visitSingularInt32Field(value: _storage._textFormatString, fieldNumber: 855) } if _storage._throwOrIgnore != 0 { - try visitor.visitSingularInt32Field(value: _storage._throwOrIgnore, fieldNumber: 859) + try visitor.visitSingularInt32Field(value: _storage._throwOrIgnore, fieldNumber: 856) } if _storage._throws != 0 { - try visitor.visitSingularInt32Field(value: _storage._throws, fieldNumber: 860) + try visitor.visitSingularInt32Field(value: _storage._throws, fieldNumber: 857) } if _storage._timeInterval != 0 { - try visitor.visitSingularInt32Field(value: _storage._timeInterval, fieldNumber: 861) + try visitor.visitSingularInt32Field(value: _storage._timeInterval, fieldNumber: 858) } if _storage._timeIntervalSince1970 != 0 { - try visitor.visitSingularInt32Field(value: _storage._timeIntervalSince1970, fieldNumber: 862) + try visitor.visitSingularInt32Field(value: _storage._timeIntervalSince1970, fieldNumber: 859) } if _storage._timeIntervalSinceReferenceDate != 0 { - try visitor.visitSingularInt32Field(value: _storage._timeIntervalSinceReferenceDate, fieldNumber: 863) + try visitor.visitSingularInt32Field(value: _storage._timeIntervalSinceReferenceDate, fieldNumber: 860) } if _storage._timestamp != 0 { - try visitor.visitSingularInt32Field(value: _storage._timestamp, fieldNumber: 864) + try visitor.visitSingularInt32Field(value: _storage._timestamp, fieldNumber: 861) } if _storage._tooLarge != 0 { - try visitor.visitSingularInt32Field(value: _storage._tooLarge, fieldNumber: 865) + try visitor.visitSingularInt32Field(value: _storage._tooLarge, fieldNumber: 862) } if _storage._total != 0 { - try visitor.visitSingularInt32Field(value: _storage._total, fieldNumber: 866) + try visitor.visitSingularInt32Field(value: _storage._total, fieldNumber: 863) } if _storage._totalArrayDepth != 0 { - try visitor.visitSingularInt32Field(value: _storage._totalArrayDepth, fieldNumber: 867) + try visitor.visitSingularInt32Field(value: _storage._totalArrayDepth, fieldNumber: 864) } if _storage._totalSize != 0 { - try visitor.visitSingularInt32Field(value: _storage._totalSize, fieldNumber: 868) + try visitor.visitSingularInt32Field(value: _storage._totalSize, fieldNumber: 865) } if _storage._trailingComments != 0 { - try visitor.visitSingularInt32Field(value: _storage._trailingComments, fieldNumber: 869) + try visitor.visitSingularInt32Field(value: _storage._trailingComments, fieldNumber: 866) } if _storage._traverse != 0 { - try visitor.visitSingularInt32Field(value: _storage._traverse, fieldNumber: 870) + try visitor.visitSingularInt32Field(value: _storage._traverse, fieldNumber: 867) } if _storage._true != 0 { - try visitor.visitSingularInt32Field(value: _storage._true, fieldNumber: 871) + try visitor.visitSingularInt32Field(value: _storage._true, fieldNumber: 868) } if _storage._try != 0 { - try visitor.visitSingularInt32Field(value: _storage._try, fieldNumber: 872) + try visitor.visitSingularInt32Field(value: _storage._try, fieldNumber: 869) } if _storage._type != 0 { - try visitor.visitSingularInt32Field(value: _storage._type, fieldNumber: 873) + try visitor.visitSingularInt32Field(value: _storage._type, fieldNumber: 870) } if _storage._typealias != 0 { - try visitor.visitSingularInt32Field(value: _storage._typealias, fieldNumber: 874) + try visitor.visitSingularInt32Field(value: _storage._typealias, fieldNumber: 871) } if _storage._typeEnum != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeEnum, fieldNumber: 875) + try visitor.visitSingularInt32Field(value: _storage._typeEnum, fieldNumber: 872) } if _storage._typeName != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeName, fieldNumber: 876) + try visitor.visitSingularInt32Field(value: _storage._typeName, fieldNumber: 873) } if _storage._typePrefix != 0 { - try visitor.visitSingularInt32Field(value: _storage._typePrefix, fieldNumber: 877) + try visitor.visitSingularInt32Field(value: _storage._typePrefix, fieldNumber: 874) } if _storage._typeStart != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeStart, fieldNumber: 878) + try visitor.visitSingularInt32Field(value: _storage._typeStart, fieldNumber: 875) } if _storage._typeUnknown != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeUnknown, fieldNumber: 879) + try visitor.visitSingularInt32Field(value: _storage._typeUnknown, fieldNumber: 876) } if _storage._typeURL != 0 { - try visitor.visitSingularInt32Field(value: _storage._typeURL, fieldNumber: 880) + try visitor.visitSingularInt32Field(value: _storage._typeURL, fieldNumber: 877) } if _storage._uint32 != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint32, fieldNumber: 881) + try visitor.visitSingularInt32Field(value: _storage._uint32, fieldNumber: 878) } if _storage._uint32Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint32Value, fieldNumber: 882) + try visitor.visitSingularInt32Field(value: _storage._uint32Value, fieldNumber: 879) } if _storage._uint64 != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint64, fieldNumber: 883) + try visitor.visitSingularInt32Field(value: _storage._uint64, fieldNumber: 880) } if _storage._uint64Value != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint64Value, fieldNumber: 884) + try visitor.visitSingularInt32Field(value: _storage._uint64Value, fieldNumber: 881) } if _storage._uint8 != 0 { - try visitor.visitSingularInt32Field(value: _storage._uint8, fieldNumber: 885) + try visitor.visitSingularInt32Field(value: _storage._uint8, fieldNumber: 882) } if _storage._unchecked != 0 { - try visitor.visitSingularInt32Field(value: _storage._unchecked, fieldNumber: 886) + try visitor.visitSingularInt32Field(value: _storage._unchecked, fieldNumber: 883) } if _storage._unicodeScalarLiteral != 0 { - try visitor.visitSingularInt32Field(value: _storage._unicodeScalarLiteral, fieldNumber: 887) + try visitor.visitSingularInt32Field(value: _storage._unicodeScalarLiteral, fieldNumber: 884) } if _storage._unicodeScalarLiteralType != 0 { - try visitor.visitSingularInt32Field(value: _storage._unicodeScalarLiteralType, fieldNumber: 888) + try visitor.visitSingularInt32Field(value: _storage._unicodeScalarLiteralType, fieldNumber: 885) } if _storage._unicodeScalars != 0 { - try visitor.visitSingularInt32Field(value: _storage._unicodeScalars, fieldNumber: 889) + try visitor.visitSingularInt32Field(value: _storage._unicodeScalars, fieldNumber: 886) } if _storage._unicodeScalarView != 0 { - try visitor.visitSingularInt32Field(value: _storage._unicodeScalarView, fieldNumber: 890) + try visitor.visitSingularInt32Field(value: _storage._unicodeScalarView, fieldNumber: 887) } if _storage._uninterpretedOption != 0 { - try visitor.visitSingularInt32Field(value: _storage._uninterpretedOption, fieldNumber: 891) + try visitor.visitSingularInt32Field(value: _storage._uninterpretedOption, fieldNumber: 888) } if _storage._union != 0 { - try visitor.visitSingularInt32Field(value: _storage._union, fieldNumber: 892) + try visitor.visitSingularInt32Field(value: _storage._union, fieldNumber: 889) } if _storage._uniqueStorage != 0 { - try visitor.visitSingularInt32Field(value: _storage._uniqueStorage, fieldNumber: 893) + try visitor.visitSingularInt32Field(value: _storage._uniqueStorage, fieldNumber: 890) } if _storage._unknown != 0 { - try visitor.visitSingularInt32Field(value: _storage._unknown, fieldNumber: 894) + try visitor.visitSingularInt32Field(value: _storage._unknown, fieldNumber: 891) } if _storage._unknownFields_p != 0 { - try visitor.visitSingularInt32Field(value: _storage._unknownFields_p, fieldNumber: 895) + try visitor.visitSingularInt32Field(value: _storage._unknownFields_p, fieldNumber: 892) } if _storage._unknownStorage != 0 { - try visitor.visitSingularInt32Field(value: _storage._unknownStorage, fieldNumber: 896) + try visitor.visitSingularInt32Field(value: _storage._unknownStorage, fieldNumber: 893) } if _storage._unpackTo != 0 { - try visitor.visitSingularInt32Field(value: _storage._unpackTo, fieldNumber: 897) - } - if _storage._unregisteredTypeURL != 0 { - try visitor.visitSingularInt32Field(value: _storage._unregisteredTypeURL, fieldNumber: 898) + try visitor.visitSingularInt32Field(value: _storage._unpackTo, fieldNumber: 894) } if _storage._unsafeBufferPointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeBufferPointer, fieldNumber: 899) + try visitor.visitSingularInt32Field(value: _storage._unsafeBufferPointer, fieldNumber: 895) } if _storage._unsafeMutablePointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeMutablePointer, fieldNumber: 900) + try visitor.visitSingularInt32Field(value: _storage._unsafeMutablePointer, fieldNumber: 896) } if _storage._unsafeMutableRawBufferPointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeMutableRawBufferPointer, fieldNumber: 901) + try visitor.visitSingularInt32Field(value: _storage._unsafeMutableRawBufferPointer, fieldNumber: 897) } if _storage._unsafeRawBufferPointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeRawBufferPointer, fieldNumber: 902) + try visitor.visitSingularInt32Field(value: _storage._unsafeRawBufferPointer, fieldNumber: 898) } if _storage._unsafeRawPointer != 0 { - try visitor.visitSingularInt32Field(value: _storage._unsafeRawPointer, fieldNumber: 903) + try visitor.visitSingularInt32Field(value: _storage._unsafeRawPointer, fieldNumber: 899) } if _storage._unverifiedLazy != 0 { - try visitor.visitSingularInt32Field(value: _storage._unverifiedLazy, fieldNumber: 904) + try visitor.visitSingularInt32Field(value: _storage._unverifiedLazy, fieldNumber: 900) } if _storage._updatedOptions != 0 { - try visitor.visitSingularInt32Field(value: _storage._updatedOptions, fieldNumber: 905) + try visitor.visitSingularInt32Field(value: _storage._updatedOptions, fieldNumber: 901) } if _storage._url != 0 { - try visitor.visitSingularInt32Field(value: _storage._url, fieldNumber: 906) + try visitor.visitSingularInt32Field(value: _storage._url, fieldNumber: 902) } if _storage._useDeterministicOrdering != 0 { - try visitor.visitSingularInt32Field(value: _storage._useDeterministicOrdering, fieldNumber: 907) + try visitor.visitSingularInt32Field(value: _storage._useDeterministicOrdering, fieldNumber: 903) } if _storage._utf8 != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8, fieldNumber: 908) + try visitor.visitSingularInt32Field(value: _storage._utf8, fieldNumber: 904) } if _storage._utf8Ptr != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8Ptr, fieldNumber: 909) + try visitor.visitSingularInt32Field(value: _storage._utf8Ptr, fieldNumber: 905) } if _storage._utf8ToDouble != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8ToDouble, fieldNumber: 910) + try visitor.visitSingularInt32Field(value: _storage._utf8ToDouble, fieldNumber: 906) } if _storage._utf8Validation != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8Validation, fieldNumber: 911) + try visitor.visitSingularInt32Field(value: _storage._utf8Validation, fieldNumber: 907) } if _storage._utf8View != 0 { - try visitor.visitSingularInt32Field(value: _storage._utf8View, fieldNumber: 912) + try visitor.visitSingularInt32Field(value: _storage._utf8View, fieldNumber: 908) } if _storage._v != 0 { - try visitor.visitSingularInt32Field(value: _storage._v, fieldNumber: 913) + try visitor.visitSingularInt32Field(value: _storage._v, fieldNumber: 909) } if _storage._value != 0 { - try visitor.visitSingularInt32Field(value: _storage._value, fieldNumber: 914) + try visitor.visitSingularInt32Field(value: _storage._value, fieldNumber: 910) } if _storage._valueField != 0 { - try visitor.visitSingularInt32Field(value: _storage._valueField, fieldNumber: 915) + try visitor.visitSingularInt32Field(value: _storage._valueField, fieldNumber: 911) } if _storage._values != 0 { - try visitor.visitSingularInt32Field(value: _storage._values, fieldNumber: 916) + try visitor.visitSingularInt32Field(value: _storage._values, fieldNumber: 912) } if _storage._valueType != 0 { - try visitor.visitSingularInt32Field(value: _storage._valueType, fieldNumber: 917) + try visitor.visitSingularInt32Field(value: _storage._valueType, fieldNumber: 913) } if _storage._var != 0 { - try visitor.visitSingularInt32Field(value: _storage._var, fieldNumber: 918) + try visitor.visitSingularInt32Field(value: _storage._var, fieldNumber: 914) } if _storage._verification != 0 { - try visitor.visitSingularInt32Field(value: _storage._verification, fieldNumber: 919) + try visitor.visitSingularInt32Field(value: _storage._verification, fieldNumber: 915) } if _storage._verificationState != 0 { - try visitor.visitSingularInt32Field(value: _storage._verificationState, fieldNumber: 920) + try visitor.visitSingularInt32Field(value: _storage._verificationState, fieldNumber: 916) } if _storage._version != 0 { - try visitor.visitSingularInt32Field(value: _storage._version, fieldNumber: 921) + try visitor.visitSingularInt32Field(value: _storage._version, fieldNumber: 917) } if _storage._versionString != 0 { - try visitor.visitSingularInt32Field(value: _storage._versionString, fieldNumber: 922) + try visitor.visitSingularInt32Field(value: _storage._versionString, fieldNumber: 918) } if _storage._visitExtensionFields != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitExtensionFields, fieldNumber: 923) + try visitor.visitSingularInt32Field(value: _storage._visitExtensionFields, fieldNumber: 919) } if _storage._visitExtensionFieldsAsMessageSet != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitExtensionFieldsAsMessageSet, fieldNumber: 924) + try visitor.visitSingularInt32Field(value: _storage._visitExtensionFieldsAsMessageSet, fieldNumber: 920) } if _storage._visitMapField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitMapField, fieldNumber: 925) + try visitor.visitSingularInt32Field(value: _storage._visitMapField, fieldNumber: 921) } if _storage._visitor != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitor, fieldNumber: 926) + try visitor.visitSingularInt32Field(value: _storage._visitor, fieldNumber: 922) } if _storage._visitPacked != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPacked, fieldNumber: 927) + try visitor.visitSingularInt32Field(value: _storage._visitPacked, fieldNumber: 923) } if _storage._visitPackedBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedBoolField, fieldNumber: 928) + try visitor.visitSingularInt32Field(value: _storage._visitPackedBoolField, fieldNumber: 924) } if _storage._visitPackedDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedDoubleField, fieldNumber: 929) + try visitor.visitSingularInt32Field(value: _storage._visitPackedDoubleField, fieldNumber: 925) } if _storage._visitPackedEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedEnumField, fieldNumber: 930) + try visitor.visitSingularInt32Field(value: _storage._visitPackedEnumField, fieldNumber: 926) } if _storage._visitPackedFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedFixed32Field, fieldNumber: 931) + try visitor.visitSingularInt32Field(value: _storage._visitPackedFixed32Field, fieldNumber: 927) } if _storage._visitPackedFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedFixed64Field, fieldNumber: 932) + try visitor.visitSingularInt32Field(value: _storage._visitPackedFixed64Field, fieldNumber: 928) } if _storage._visitPackedFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedFloatField, fieldNumber: 933) + try visitor.visitSingularInt32Field(value: _storage._visitPackedFloatField, fieldNumber: 929) } if _storage._visitPackedInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedInt32Field, fieldNumber: 934) + try visitor.visitSingularInt32Field(value: _storage._visitPackedInt32Field, fieldNumber: 930) } if _storage._visitPackedInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedInt64Field, fieldNumber: 935) + try visitor.visitSingularInt32Field(value: _storage._visitPackedInt64Field, fieldNumber: 931) } if _storage._visitPackedSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedSfixed32Field, fieldNumber: 936) + try visitor.visitSingularInt32Field(value: _storage._visitPackedSfixed32Field, fieldNumber: 932) } if _storage._visitPackedSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedSfixed64Field, fieldNumber: 937) + try visitor.visitSingularInt32Field(value: _storage._visitPackedSfixed64Field, fieldNumber: 933) } if _storage._visitPackedSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedSint32Field, fieldNumber: 938) + try visitor.visitSingularInt32Field(value: _storage._visitPackedSint32Field, fieldNumber: 934) } if _storage._visitPackedSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedSint64Field, fieldNumber: 939) + try visitor.visitSingularInt32Field(value: _storage._visitPackedSint64Field, fieldNumber: 935) } if _storage._visitPackedUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedUint32Field, fieldNumber: 940) + try visitor.visitSingularInt32Field(value: _storage._visitPackedUint32Field, fieldNumber: 936) } if _storage._visitPackedUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitPackedUint64Field, fieldNumber: 941) + try visitor.visitSingularInt32Field(value: _storage._visitPackedUint64Field, fieldNumber: 937) } if _storage._visitRepeated != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeated, fieldNumber: 942) + try visitor.visitSingularInt32Field(value: _storage._visitRepeated, fieldNumber: 938) } if _storage._visitRepeatedBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedBoolField, fieldNumber: 943) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedBoolField, fieldNumber: 939) } if _storage._visitRepeatedBytesField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedBytesField, fieldNumber: 944) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedBytesField, fieldNumber: 940) } if _storage._visitRepeatedDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedDoubleField, fieldNumber: 945) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedDoubleField, fieldNumber: 941) } if _storage._visitRepeatedEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedEnumField, fieldNumber: 946) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedEnumField, fieldNumber: 942) } if _storage._visitRepeatedFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFixed32Field, fieldNumber: 947) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFixed32Field, fieldNumber: 943) } if _storage._visitRepeatedFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFixed64Field, fieldNumber: 948) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFixed64Field, fieldNumber: 944) } if _storage._visitRepeatedFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFloatField, fieldNumber: 949) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedFloatField, fieldNumber: 945) } if _storage._visitRepeatedGroupField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedGroupField, fieldNumber: 950) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedGroupField, fieldNumber: 946) } if _storage._visitRepeatedInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedInt32Field, fieldNumber: 951) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedInt32Field, fieldNumber: 947) } if _storage._visitRepeatedInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedInt64Field, fieldNumber: 952) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedInt64Field, fieldNumber: 948) } if _storage._visitRepeatedMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedMessageField, fieldNumber: 953) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedMessageField, fieldNumber: 949) } if _storage._visitRepeatedSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSfixed32Field, fieldNumber: 954) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSfixed32Field, fieldNumber: 950) } if _storage._visitRepeatedSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSfixed64Field, fieldNumber: 955) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSfixed64Field, fieldNumber: 951) } if _storage._visitRepeatedSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSint32Field, fieldNumber: 956) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSint32Field, fieldNumber: 952) } if _storage._visitRepeatedSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSint64Field, fieldNumber: 957) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedSint64Field, fieldNumber: 953) } if _storage._visitRepeatedStringField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedStringField, fieldNumber: 958) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedStringField, fieldNumber: 954) } if _storage._visitRepeatedUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedUint32Field, fieldNumber: 959) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedUint32Field, fieldNumber: 955) } if _storage._visitRepeatedUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitRepeatedUint64Field, fieldNumber: 960) + try visitor.visitSingularInt32Field(value: _storage._visitRepeatedUint64Field, fieldNumber: 956) } if _storage._visitSingular != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingular, fieldNumber: 961) + try visitor.visitSingularInt32Field(value: _storage._visitSingular, fieldNumber: 957) } if _storage._visitSingularBoolField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularBoolField, fieldNumber: 962) + try visitor.visitSingularInt32Field(value: _storage._visitSingularBoolField, fieldNumber: 958) } if _storage._visitSingularBytesField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularBytesField, fieldNumber: 963) + try visitor.visitSingularInt32Field(value: _storage._visitSingularBytesField, fieldNumber: 959) } if _storage._visitSingularDoubleField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularDoubleField, fieldNumber: 964) + try visitor.visitSingularInt32Field(value: _storage._visitSingularDoubleField, fieldNumber: 960) } if _storage._visitSingularEnumField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularEnumField, fieldNumber: 965) + try visitor.visitSingularInt32Field(value: _storage._visitSingularEnumField, fieldNumber: 961) } if _storage._visitSingularFixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularFixed32Field, fieldNumber: 966) + try visitor.visitSingularInt32Field(value: _storage._visitSingularFixed32Field, fieldNumber: 962) } if _storage._visitSingularFixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularFixed64Field, fieldNumber: 967) + try visitor.visitSingularInt32Field(value: _storage._visitSingularFixed64Field, fieldNumber: 963) } if _storage._visitSingularFloatField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularFloatField, fieldNumber: 968) + try visitor.visitSingularInt32Field(value: _storage._visitSingularFloatField, fieldNumber: 964) } if _storage._visitSingularGroupField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularGroupField, fieldNumber: 969) + try visitor.visitSingularInt32Field(value: _storage._visitSingularGroupField, fieldNumber: 965) } if _storage._visitSingularInt32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularInt32Field, fieldNumber: 970) + try visitor.visitSingularInt32Field(value: _storage._visitSingularInt32Field, fieldNumber: 966) } if _storage._visitSingularInt64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularInt64Field, fieldNumber: 971) + try visitor.visitSingularInt32Field(value: _storage._visitSingularInt64Field, fieldNumber: 967) } if _storage._visitSingularMessageField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularMessageField, fieldNumber: 972) + try visitor.visitSingularInt32Field(value: _storage._visitSingularMessageField, fieldNumber: 968) } if _storage._visitSingularSfixed32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularSfixed32Field, fieldNumber: 973) + try visitor.visitSingularInt32Field(value: _storage._visitSingularSfixed32Field, fieldNumber: 969) } if _storage._visitSingularSfixed64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularSfixed64Field, fieldNumber: 974) + try visitor.visitSingularInt32Field(value: _storage._visitSingularSfixed64Field, fieldNumber: 970) } if _storage._visitSingularSint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularSint32Field, fieldNumber: 975) + try visitor.visitSingularInt32Field(value: _storage._visitSingularSint32Field, fieldNumber: 971) } if _storage._visitSingularSint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularSint64Field, fieldNumber: 976) + try visitor.visitSingularInt32Field(value: _storage._visitSingularSint64Field, fieldNumber: 972) } if _storage._visitSingularStringField != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularStringField, fieldNumber: 977) + try visitor.visitSingularInt32Field(value: _storage._visitSingularStringField, fieldNumber: 973) } if _storage._visitSingularUint32Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularUint32Field, fieldNumber: 978) + try visitor.visitSingularInt32Field(value: _storage._visitSingularUint32Field, fieldNumber: 974) } if _storage._visitSingularUint64Field != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitSingularUint64Field, fieldNumber: 979) + try visitor.visitSingularInt32Field(value: _storage._visitSingularUint64Field, fieldNumber: 975) } if _storage._visitUnknown != 0 { - try visitor.visitSingularInt32Field(value: _storage._visitUnknown, fieldNumber: 980) + try visitor.visitSingularInt32Field(value: _storage._visitUnknown, fieldNumber: 976) } if _storage._wasDecoded != 0 { - try visitor.visitSingularInt32Field(value: _storage._wasDecoded, fieldNumber: 981) + try visitor.visitSingularInt32Field(value: _storage._wasDecoded, fieldNumber: 977) } if _storage._weak != 0 { - try visitor.visitSingularInt32Field(value: _storage._weak, fieldNumber: 982) + try visitor.visitSingularInt32Field(value: _storage._weak, fieldNumber: 978) } if _storage._weakDependency != 0 { - try visitor.visitSingularInt32Field(value: _storage._weakDependency, fieldNumber: 983) + try visitor.visitSingularInt32Field(value: _storage._weakDependency, fieldNumber: 979) } if _storage._where != 0 { - try visitor.visitSingularInt32Field(value: _storage._where, fieldNumber: 984) + try visitor.visitSingularInt32Field(value: _storage._where, fieldNumber: 980) } if _storage._wireFormat != 0 { - try visitor.visitSingularInt32Field(value: _storage._wireFormat, fieldNumber: 985) + try visitor.visitSingularInt32Field(value: _storage._wireFormat, fieldNumber: 981) } if _storage._with != 0 { - try visitor.visitSingularInt32Field(value: _storage._with, fieldNumber: 986) + try visitor.visitSingularInt32Field(value: _storage._with, fieldNumber: 982) } if _storage._withUnsafeBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._withUnsafeBytes, fieldNumber: 987) + try visitor.visitSingularInt32Field(value: _storage._withUnsafeBytes, fieldNumber: 983) } if _storage._withUnsafeMutableBytes != 0 { - try visitor.visitSingularInt32Field(value: _storage._withUnsafeMutableBytes, fieldNumber: 988) + try visitor.visitSingularInt32Field(value: _storage._withUnsafeMutableBytes, fieldNumber: 984) } if _storage._work != 0 { - try visitor.visitSingularInt32Field(value: _storage._work, fieldNumber: 989) + try visitor.visitSingularInt32Field(value: _storage._work, fieldNumber: 985) } if _storage._wrapped != 0 { - try visitor.visitSingularInt32Field(value: _storage._wrapped, fieldNumber: 990) + try visitor.visitSingularInt32Field(value: _storage._wrapped, fieldNumber: 986) } if _storage._wrappedType != 0 { - try visitor.visitSingularInt32Field(value: _storage._wrappedType, fieldNumber: 991) + try visitor.visitSingularInt32Field(value: _storage._wrappedType, fieldNumber: 987) } if _storage._wrappedValue != 0 { - try visitor.visitSingularInt32Field(value: _storage._wrappedValue, fieldNumber: 992) + try visitor.visitSingularInt32Field(value: _storage._wrappedValue, fieldNumber: 988) } if _storage._written != 0 { - try visitor.visitSingularInt32Field(value: _storage._written, fieldNumber: 993) + try visitor.visitSingularInt32Field(value: _storage._written, fieldNumber: 989) } if _storage._yday != 0 { - try visitor.visitSingularInt32Field(value: _storage._yday, fieldNumber: 994) + try visitor.visitSingularInt32Field(value: _storage._yday, fieldNumber: 990) } } try unknownFields.traverse(visitor: &visitor) @@ -12034,7 +11986,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._anyExtensionField != rhs_storage._anyExtensionField {return false} if _storage._anyMessageExtension != rhs_storage._anyMessageExtension {return false} if _storage._anyMessageStorage != rhs_storage._anyMessageStorage {return false} - if _storage._anyTypeUrlnotRegistered != rhs_storage._anyTypeUrlnotRegistered {return false} if _storage._anyUnpackError != rhs_storage._anyUnpackError {return false} if _storage._api != rhs_storage._api {return false} if _storage._appended != rhs_storage._appended {return false} @@ -12066,7 +12017,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._binaryDecodingOptions != rhs_storage._binaryDecodingOptions {return false} if _storage._binaryDelimited != rhs_storage._binaryDelimited {return false} if _storage._binaryEncoder != rhs_storage._binaryEncoder {return false} - if _storage._binaryEncoding != rhs_storage._binaryEncoding {return false} if _storage._binaryEncodingError != rhs_storage._binaryEncodingError {return false} if _storage._binaryEncodingMessageSetSizeVisitor != rhs_storage._binaryEncodingMessageSetSizeVisitor {return false} if _storage._binaryEncodingMessageSetVisitor != rhs_storage._binaryEncodingMessageSetVisitor {return false} @@ -12586,7 +12536,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._jsondecodingError != rhs_storage._jsondecodingError {return false} if _storage._jsondecodingOptions != rhs_storage._jsondecodingOptions {return false} if _storage._jsonEncoder != rhs_storage._jsonEncoder {return false} - if _storage._jsonencoding != rhs_storage._jsonencoding {return false} if _storage._jsonencodingError != rhs_storage._jsonencodingError {return false} if _storage._jsonencodingOptions != rhs_storage._jsonencodingOptions {return false} if _storage._jsonencodingVisitor != rhs_storage._jsonencodingVisitor {return false} @@ -12920,7 +12869,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedFields: SwiftProtobu if _storage._unknownFields_p != rhs_storage._unknownFields_p {return false} if _storage._unknownStorage != rhs_storage._unknownStorage {return false} if _storage._unpackTo != rhs_storage._unpackTo {return false} - if _storage._unregisteredTypeURL != rhs_storage._unregisteredTypeURL {return false} if _storage._unsafeBufferPointer != rhs_storage._unsafeBufferPointer {return false} if _storage._unsafeMutablePointer != rhs_storage._unsafeMutablePointer {return false} if _storage._unsafeMutableRawBufferPointer != rhs_storage._unsafeMutableRawBufferPointer {return false} diff --git a/Tests/SwiftProtobufTests/generated_swift_names_messages.pb.swift b/Tests/SwiftProtobufTests/generated_swift_names_messages.pb.swift index 9f29280d9..2ff026346 100644 --- a/Tests/SwiftProtobufTests/generated_swift_names_messages.pb.swift +++ b/Tests/SwiftProtobufTests/generated_swift_names_messages.pb.swift @@ -163,18 +163,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct anyTypeURLNotRegistered: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var anyTypeUrlnotRegistered: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct AnyUnpackError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -547,18 +535,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct BinaryEncoding: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var binaryEncoding: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct BinaryEncodingError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -6787,18 +6763,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct JSONEncoding: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var jsonencoding: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct JSONEncodingError: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -10795,18 +10759,6 @@ struct SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages: Sendable { init() {} } - struct unregisteredTypeURL: Sendable { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var unregisteredTypeURL: Int32 = 0 - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - } - struct UnsafeBufferPointer: Sendable { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -12337,38 +12289,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyMessageS } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.anyTypeURLNotRegistered: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".anyTypeURLNotRegistered" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "anyTypeURLNotRegistered"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.anyTypeUrlnotRegistered) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.anyTypeUrlnotRegistered != 0 { - try visitor.visitSingularInt32Field(value: self.anyTypeUrlnotRegistered, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.anyTypeURLNotRegistered, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.anyTypeURLNotRegistered) -> Bool { - if lhs.anyTypeUrlnotRegistered != rhs.anyTypeUrlnotRegistered {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.AnyUnpackError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".AnyUnpackError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -13361,38 +13281,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncod } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".BinaryEncoding" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "BinaryEncoding"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.binaryEncoding) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.binaryEncoding != 0 { - try visitor.visitSingularInt32Field(value: self.binaryEncoding, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncoding) -> Bool { - if lhs.binaryEncoding != rhs.binaryEncoding {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.BinaryEncodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".BinaryEncodingError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -30001,38 +29889,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.jsonEncoder } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONEncoding: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".JSONEncoding" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "JSONEncoding"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.jsonencoding) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.jsonencoding != 0 { - try visitor.visitSingularInt32Field(value: self.jsonencoding, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONEncoding, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONEncoding) -> Bool { - if lhs.jsonencoding != rhs.jsonencoding {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.JSONEncodingError: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".JSONEncodingError" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ @@ -40689,38 +40545,6 @@ extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unpackTo: S } } -extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unregisteredTypeURL: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".unregisteredTypeURL" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .same(proto: "unregisteredTypeURL"), - ] - - mutating func decodeMessage(decoder: inout D) throws { - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &self.unregisteredTypeURL) }() - default: break - } - } - } - - func traverse(visitor: inout V) throws { - if self.unregisteredTypeURL != 0 { - try visitor.visitSingularInt32Field(value: self.unregisteredTypeURL, fieldNumber: 1) - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unregisteredTypeURL, rhs: SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.unregisteredTypeURL) -> Bool { - if lhs.unregisteredTypeURL != rhs.unregisteredTypeURL {return false} - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - extension SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.UnsafeBufferPointer: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = SwiftProtoTesting_Generated_GeneratedSwiftReservedMessages.protoMessageName + ".UnsafeBufferPointer" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ From 36d5b6e03e3c815408936562d5817d3f35affe28 Mon Sep 17 00:00:00 2001 From: Gus Cairo Date: Thu, 30 May 2024 16:25:57 +0100 Subject: [PATCH 19/19] Formatting --- .../SwiftProtobuf/AsyncMessageSequence.swift | 4 +- Sources/SwiftProtobuf/BinaryDecoder.swift | 10 ++-- .../Google_Protobuf_Duration+Extensions.swift | 17 +++--- Sources/SwiftProtobuf/JSONScanner.swift | 26 ++++----- .../SwiftProtobuf/Message+JSONAdditions.swift | 10 ++-- Sources/SwiftProtobuf/TextFormatScanner.swift | 54 +++++++++---------- 6 files changed, 60 insertions(+), 61 deletions(-) diff --git a/Sources/SwiftProtobuf/AsyncMessageSequence.swift b/Sources/SwiftProtobuf/AsyncMessageSequence.swift index e05635757..08ca7a6d0 100644 --- a/Sources/SwiftProtobuf/AsyncMessageSequence.swift +++ b/Sources/SwiftProtobuf/AsyncMessageSequence.swift @@ -125,7 +125,7 @@ public struct AsyncMessageSequence< if (shift > 0) { // The stream has ended inside a varint. iterator = nil - throw BinaryDelimited.Error.truncated + throw BinaryDelimited.Error.truncated } return nil // End of stream reached. } @@ -175,7 +175,7 @@ public struct AsyncMessageSequence< } guard messageSize <= UInt64(0x7fffffff) else { iterator = nil - throw SwiftProtobufError.BinaryDecoding.tooLarge() + throw SwiftProtobufError.BinaryDecoding.tooLarge() } if messageSize == 0 { return try M( diff --git a/Sources/SwiftProtobuf/BinaryDecoder.swift b/Sources/SwiftProtobuf/BinaryDecoder.swift index 714a41bc4..fa84c25a9 100644 --- a/Sources/SwiftProtobuf/BinaryDecoder.swift +++ b/Sources/SwiftProtobuf/BinaryDecoder.swift @@ -890,7 +890,7 @@ internal struct BinaryDecoder: Decoder { try message.decodeMessage(decoder: &self) decrementRecursionDepth() guard complete else { - throw BinaryDecodingError.trailingGarbage + throw BinaryDecodingError.trailingGarbage } if let unknownData = unknownData { message.unknownFields.append(protobufData: unknownData) @@ -1125,7 +1125,7 @@ internal struct BinaryDecoder: Decoder { break case .malformed: - throw BinaryDecodingError.malformedProtobuf + throw BinaryDecodingError.malformedProtobuf } assert(recursionBudget == subDecoder.recursionBudget) @@ -1424,12 +1424,12 @@ internal struct BinaryDecoder: Decoder { // that is length delimited on the wire, so the spec would imply // the limit still applies. guard length < 0x7fffffff else { - // Reuse existing error to avoid breaking change of changing thrown error - throw BinaryDecodingError.malformedProtobuf + // Reuse existing error to avoid breaking change of changing thrown error + throw BinaryDecodingError.malformedProtobuf } guard length <= UInt64(available) else { - throw BinaryDecodingError.truncated + throw BinaryDecodingError.truncated } count = Int(length) diff --git a/Sources/SwiftProtobuf/Google_Protobuf_Duration+Extensions.swift b/Sources/SwiftProtobuf/Google_Protobuf_Duration+Extensions.swift index 684809412..b110d02db 100644 --- a/Sources/SwiftProtobuf/Google_Protobuf_Duration+Extensions.swift +++ b/Sources/SwiftProtobuf/Google_Protobuf_Duration+Extensions.swift @@ -45,7 +45,7 @@ private func parseDuration(text: String) throws -> (Int64, Int32) { } let digitString = String(digits) if let s = Int64(digitString), - s >= minDurationSeconds && s <= maxDurationSeconds { + s >= minDurationSeconds && s <= maxDurationSeconds { seconds = s } else { throw JSONDecodingError.malformedDuration @@ -77,7 +77,7 @@ private func parseDuration(text: String) throws -> (Int64, Int32) { // No fraction, we just have an integral number of seconds let digitString = String(digits) if let s = Int64(digitString), - s >= minDurationSeconds && s <= maxDurationSeconds { + s >= minDurationSeconds && s <= maxDurationSeconds { seconds = s } else { throw JSONDecodingError.malformedDuration @@ -137,7 +137,7 @@ extension Google_Protobuf_Duration: _CustomJSONCodable { extension Google_Protobuf_Duration: ExpressibleByFloatLiteral { public typealias FloatLiteralType = Double - + /// Creates a new `Google_Protobuf_Duration` from a floating point literal /// that is interpreted as a duration in seconds, rounded to the nearest /// nanosecond. @@ -160,11 +160,10 @@ extension Google_Protobuf_Duration { let (s, n) = normalizeForDuration(seconds: Int64(sd), nanos: Int32(nd)) self.init(seconds: s, nanos: n) } - + /// The `TimeInterval` (measured in seconds) equal to this duration. public var timeInterval: TimeInterval { - return TimeInterval(self.seconds) + - TimeInterval(self.nanos) / TimeInterval(nanosPerSecond) + return TimeInterval(self.seconds) + TimeInterval(self.nanos) / TimeInterval(nanosPerSecond) } } @@ -174,14 +173,14 @@ private func normalizeForDuration( ) -> (seconds: Int64, nanos: Int32) { var s = seconds var n = nanos - + // If the magnitude of n exceeds a second then // we need to factor it into s instead. if n >= nanosPerSecond || n <= -nanosPerSecond { s += Int64(n / nanosPerSecond) n = n % nanosPerSecond } - + // The Duration spec says that when s != 0, s and // n must have the same sign. if s > 0 && n < 0 { @@ -191,7 +190,7 @@ private func normalizeForDuration( n -= nanosPerSecond s += 1 } - + return (seconds: s, nanos: n) } diff --git a/Sources/SwiftProtobuf/JSONScanner.swift b/Sources/SwiftProtobuf/JSONScanner.swift index 583752856..98c8c317b 100644 --- a/Sources/SwiftProtobuf/JSONScanner.swift +++ b/Sources/SwiftProtobuf/JSONScanner.swift @@ -122,7 +122,7 @@ private func parseBytes( ) throws -> Data { let c = source[index] if c != asciiDoubleQuote { - throw JSONDecodingError.malformedString + throw JSONDecodingError.malformedString } source.formIndex(after: &index) @@ -142,7 +142,7 @@ private func parseBytes( if digit == asciiBackslash { source.formIndex(after: &index) if index == end { - throw JSONDecodingError.malformedString + throw JSONDecodingError.malformedString } let escaped = source[index] switch escaped { @@ -150,12 +150,12 @@ private func parseBytes( // TODO: Parse hex escapes such as \u0041. Note that // such escapes are going to be extremely rare, so // there's little point in optimizing for them. - throw JSONDecodingError.malformedString + throw JSONDecodingError.malformedString case asciiForwardSlash: digit = escaped default: // Reject \b \f \n \r \t \" or \\ and all illegal escapes - throw JSONDecodingError.malformedString + throw JSONDecodingError.malformedString } } @@ -173,11 +173,11 @@ private func parseBytes( // We reached the end without seeing the close quote if index == end { - throw JSONDecodingError.malformedString + throw JSONDecodingError.malformedString } // Reject mixed encodings. if sawSection4Characters && sawSection5Characters { - throw JSONDecodingError.malformedString + throw JSONDecodingError.malformedString } // Allocate a Data object of exactly the right size @@ -671,7 +671,7 @@ internal struct JSONScanner { return nil } if c >= asciiZero && c <= asciiNine { - throw JSONDecodingError.leadingZero + throw JSONDecodingError.leadingZero } case asciiOne...asciiNine: while c >= asciiZero && c <= asciiNine { @@ -1209,7 +1209,7 @@ internal struct JSONScanner { default: break } } - throw JSONDecodingError.malformedBool + throw JSONDecodingError.malformedBool } /// Returns pointer/count spanning the UTF8 bytes of the next regular @@ -1309,7 +1309,7 @@ internal struct JSONScanner { } skipWhitespace() guard hasMoreContent else { - throw JSONDecodingError.truncated + throw JSONDecodingError.truncated } if currentByte == asciiDoubleQuote { if let name = try nextOptionalKey() { @@ -1446,7 +1446,7 @@ internal struct JSONScanner { try skipObject() case asciiCloseSquareBracket: // ] ends an empty array if arrayDepth == 0 { - throw JSONDecodingError.failure + throw JSONDecodingError.failure } // We also close out [[]] or [[[]]] here while arrayDepth > 0 && skipOptionalArrayEnd() { @@ -1456,19 +1456,19 @@ internal struct JSONScanner { if !skipOptionalKeyword(bytes: [ asciiLowerN, asciiLowerU, asciiLowerL, asciiLowerL ]) { - throw JSONDecodingError.truncated + throw JSONDecodingError.truncated } case asciiLowerF: // f must be false if !skipOptionalKeyword(bytes: [ asciiLowerF, asciiLowerA, asciiLowerL, asciiLowerS, asciiLowerE ]) { - throw JSONDecodingError.truncated + throw JSONDecodingError.truncated } case asciiLowerT: // t must be true if !skipOptionalKeyword(bytes: [ asciiLowerT, asciiLowerR, asciiLowerU, asciiLowerE ]) { - throw JSONDecodingError.truncated + throw JSONDecodingError.truncated } default: // everything else is a number token _ = try nextDouble() diff --git a/Sources/SwiftProtobuf/Message+JSONAdditions.swift b/Sources/SwiftProtobuf/Message+JSONAdditions.swift index a283f8e3b..d3afd1e13 100644 --- a/Sources/SwiftProtobuf/Message+JSONAdditions.swift +++ b/Sources/SwiftProtobuf/Message+JSONAdditions.swift @@ -34,7 +34,7 @@ extension Message { let data: [UInt8] = try jsonUTF8Bytes(options: options) return String(bytes: data, encoding: .utf8)! } - + /// Returns a `SwiftProtobufContiguousBytes` containing the UTF-8 JSON serialization of the message. /// /// Unlike binary encoding, presence of required fields is not enforced when @@ -57,7 +57,7 @@ extension Message { visitor.endObject() return Bytes(visitor.dataResult) } - + /// Creates a new message by decoding the given string containing a /// serialized message in JSON format. /// @@ -70,7 +70,7 @@ extension Message { ) throws { try self.init(jsonString: jsonString, extensions: nil, options: options) } - + /// Creates a new message by decoding the given string containing a /// serialized message in JSON format. /// @@ -92,7 +92,7 @@ extension Message { throw JSONDecodingError.truncated } } - + /// Creates a new message by decoding the given `SwiftProtobufContiguousBytes` /// containing a serialized message in JSON format, interpreting the data as UTF-8 encoded /// text. @@ -107,7 +107,7 @@ extension Message { ) throws { try self.init(jsonUTF8Bytes: jsonUTF8Bytes, extensions: nil, options: options) } - + /// Creates a new message by decoding the given `SwiftProtobufContiguousBytes` /// containing a serialized message in JSON format, interpreting the data as UTF-8 encoded /// text. diff --git a/Sources/SwiftProtobuf/TextFormatScanner.swift b/Sources/SwiftProtobuf/TextFormatScanner.swift index 84c2763ff..f523625a7 100644 --- a/Sources/SwiftProtobuf/TextFormatScanner.swift +++ b/Sources/SwiftProtobuf/TextFormatScanner.swift @@ -270,7 +270,7 @@ internal struct TextFormatScanner { private mutating func incrementRecursionDepth() throws { recursionBudget -= 1 if recursionBudget < 0 { - throw TextFormatDecodingError.messageDepthLimit + throw TextFormatDecodingError.messageDepthLimit } } @@ -431,7 +431,7 @@ internal struct TextFormatScanner { asciiBackslash: // \\ count += 1 default: - throw TextFormatDecodingError.malformedText // Unrecognized escape + throw TextFormatDecodingError.malformedText // Unrecognized escape } } default: @@ -592,7 +592,7 @@ internal struct TextFormatScanner { internal mutating func nextUInt() throws -> UInt64 { if p == end { - throw TextFormatDecodingError.malformedNumber + throw TextFormatDecodingError.malformedNumber } let c = p[0] p += 1 @@ -619,7 +619,7 @@ internal struct TextFormatScanner { return n } if n > UInt64.max / 16 { - throw TextFormatDecodingError.malformedNumber + throw TextFormatDecodingError.malformedNumber } p += 1 n = n * 16 + val @@ -636,7 +636,7 @@ internal struct TextFormatScanner { } let val = UInt64(digit - asciiZero) if n > UInt64.max / 8 { - throw TextFormatDecodingError.malformedNumber + throw TextFormatDecodingError.malformedNumber } p += 1 n = n * 8 + val @@ -654,7 +654,7 @@ internal struct TextFormatScanner { } let val = UInt64(digit - asciiZero) if n > UInt64.max / 10 || n * 10 > UInt64.max - val { - throw TextFormatDecodingError.malformedNumber + throw TextFormatDecodingError.malformedNumber } p += 1 n = n * 10 + val @@ -662,30 +662,30 @@ internal struct TextFormatScanner { skipWhitespace() return n } - throw TextFormatDecodingError.malformedNumber + throw TextFormatDecodingError.malformedNumber } internal mutating func nextSInt() throws -> Int64 { if p == end { - throw TextFormatDecodingError.malformedNumber + throw TextFormatDecodingError.malformedNumber } let c = p[0] if c == asciiMinus { // - p += 1 if p == end { - throw TextFormatDecodingError.malformedNumber + throw TextFormatDecodingError.malformedNumber } // character after '-' must be digit let digit = p[0] if digit < asciiZero || digit > asciiNine { - throw TextFormatDecodingError.malformedNumber + throw TextFormatDecodingError.malformedNumber } let n = try nextUInt() let limit: UInt64 = 0x8000000000000000 // -Int64.min if n >= limit { if n > limit { // Too large negative number - throw TextFormatDecodingError.malformedNumber + throw TextFormatDecodingError.malformedNumber } else { return Int64.min // Special case for Int64.min } @@ -694,7 +694,7 @@ internal struct TextFormatScanner { } else { let n = try nextUInt() if n > UInt64(bitPattern: Int64.max) { - throw TextFormatDecodingError.malformedNumber + throw TextFormatDecodingError.malformedNumber } return Int64(bitPattern: n) } @@ -704,17 +704,17 @@ internal struct TextFormatScanner { var result: String skipWhitespace() if p == end { - throw TextFormatDecodingError.malformedText + throw TextFormatDecodingError.malformedText } let c = p[0] if c != asciiSingleQuote && c != asciiDoubleQuote { - throw TextFormatDecodingError.malformedText + throw TextFormatDecodingError.malformedText } p += 1 if let s = parseStringSegment(terminator: c) { result = s } else { - throw TextFormatDecodingError.malformedText + throw TextFormatDecodingError.malformedText } while true { @@ -729,7 +729,7 @@ internal struct TextFormatScanner { if let s = parseStringSegment(terminator: c) { result.append(s) } else { - throw TextFormatDecodingError.malformedText + throw TextFormatDecodingError.malformedText } } } @@ -744,11 +744,11 @@ internal struct TextFormatScanner { var result: Data skipWhitespace() if p == end { - throw TextFormatDecodingError.malformedText + throw TextFormatDecodingError.malformedText } let c = p[0] if c != asciiSingleQuote && c != asciiDoubleQuote { - throw TextFormatDecodingError.malformedText + throw TextFormatDecodingError.malformedText } p += 1 var sawBackslash = false @@ -947,7 +947,7 @@ internal struct TextFormatScanner { if let inf = skipOptionalInfinity() { return inf } - throw TextFormatDecodingError.malformedNumber + throw TextFormatDecodingError.malformedNumber } internal mutating func nextDouble() throws -> Double { @@ -960,13 +960,13 @@ internal struct TextFormatScanner { if let inf = skipOptionalInfinity() { return Double(inf) } - throw TextFormatDecodingError.malformedNumber + throw TextFormatDecodingError.malformedNumber } internal mutating func nextBool() throws -> Bool { skipWhitespace() if p == end { - throw TextFormatDecodingError.malformedText + throw TextFormatDecodingError.malformedText } let c = p[0] p += 1 @@ -989,7 +989,7 @@ internal struct TextFormatScanner { } result = true default: - throw TextFormatDecodingError.malformedText + throw TextFormatDecodingError.malformedText } if p == end { return result @@ -1008,14 +1008,14 @@ internal struct TextFormatScanner { skipWhitespace() return result default: - throw TextFormatDecodingError.malformedText + throw TextFormatDecodingError.malformedText } } internal mutating func nextOptionalEnumName() throws -> UnsafeRawBufferPointer? { skipWhitespace() if p == end { - throw TextFormatDecodingError.malformedText + throw TextFormatDecodingError.malformedText } switch p[0] { case asciiLowerA...asciiLowerZ, asciiUpperA...asciiUpperZ: @@ -1130,7 +1130,7 @@ internal struct TextFormatScanner { // Safe, can't be invalid UTF-8 given the input. return s! default: - throw TextFormatDecodingError.malformedText + throw TextFormatDecodingError.malformedText } } @@ -1368,7 +1368,7 @@ internal struct TextFormatScanner { p += 1 skipWhitespace() } else { - throw TextFormatDecodingError.malformedText + throw TextFormatDecodingError.malformedText } } @@ -1436,6 +1436,6 @@ internal struct TextFormatScanner { break } } - throw TextFormatDecodingError.malformedText + throw TextFormatDecodingError.malformedText } }