@@ -680,6 +680,14 @@ public struct Fuzzilli_Protobuf_Instruction: Sendable {
680
680
set { operation = . typeOf( newValue) }
681
681
}
682
682
683
+ public var void : Fuzzilli_Protobuf_Void {
684
+ get {
685
+ if case . void( let v) ? = operation { return v}
686
+ return Fuzzilli_Protobuf_Void ( )
687
+ }
688
+ set { operation = . void( newValue) }
689
+ }
690
+
683
691
public var testInstanceOf : Fuzzilli_Protobuf_TestInstanceOf {
684
692
get {
685
693
if case . testInstanceOf( let v) ? = operation { return v}
@@ -1554,6 +1562,7 @@ public struct Fuzzilli_Protobuf_Instruction: Sendable {
1554
1562
case deleteComputedProperty( Fuzzilli_Protobuf_DeleteComputedProperty )
1555
1563
case configureComputedProperty( Fuzzilli_Protobuf_ConfigureComputedProperty )
1556
1564
case typeOf( Fuzzilli_Protobuf_TypeOf )
1565
+ case void( Fuzzilli_Protobuf_Void )
1557
1566
case testInstanceOf( Fuzzilli_Protobuf_TestInstanceOf )
1558
1567
case testIn( Fuzzilli_Protobuf_TestIn )
1559
1568
case beginPlainFunction( Fuzzilli_Protobuf_BeginPlainFunction )
@@ -1881,6 +1890,7 @@ extension Fuzzilli_Protobuf_Instruction: SwiftProtobuf.Message, SwiftProtobuf._M
1881
1890
177 : . same( proto: " explore " ) ,
1882
1891
178 : . same( proto: " probe " ) ,
1883
1892
179 : . same( proto: " fixup " ) ,
1893
+ 180 : . same( proto: " void " ) ,
1884
1894
]
1885
1895
1886
1896
public mutating func decodeMessage< D: SwiftProtobuf . Decoder > ( decoder: inout D ) throws {
@@ -4199,6 +4209,19 @@ extension Fuzzilli_Protobuf_Instruction: SwiftProtobuf.Message, SwiftProtobuf._M
4199
4209
self . operation = . fixup( v)
4200
4210
}
4201
4211
} ( )
4212
+ case 180 : try {
4213
+ var v : Fuzzilli_Protobuf_Void ?
4214
+ var hadOneofValue = false
4215
+ if let current = self . operation {
4216
+ hadOneofValue = true
4217
+ if case . void( let m) = current { v = m}
4218
+ }
4219
+ try decoder. decodeSingularMessageField ( value: & v)
4220
+ if let v = v {
4221
+ if hadOneofValue { try decoder. handleConflictingOneOf ( ) }
4222
+ self . operation = . void( v)
4223
+ }
4224
+ } ( )
4202
4225
default : break
4203
4226
}
4204
4227
}
@@ -4529,6 +4552,10 @@ extension Fuzzilli_Protobuf_Instruction: SwiftProtobuf.Message, SwiftProtobuf._M
4529
4552
guard case . typeOf( let v) ? = self . operation else { preconditionFailure ( ) }
4530
4553
try visitor. visitSingularMessageField ( value: v, fieldNumber: 80 )
4531
4554
} ( )
4555
+ case . void? : try {
4556
+ guard case . void( let v) ? = self . operation else { preconditionFailure ( ) }
4557
+ try visitor. visitSingularMessageField ( value: v, fieldNumber: 80 )
4558
+ } ( )
4532
4559
case . testInstanceOf? : try {
4533
4560
guard case . testInstanceOf( let v) ? = self . operation else { preconditionFailure ( ) }
4534
4561
try visitor. visitSingularMessageField ( value: v, fieldNumber: 81 )
0 commit comments