@@ -858,10 +858,8 @@ def deconstruct_keys(keys)
858
858
end
859
859
860
860
def ==( other )
861
- other . is_a? ( DefineClass ) &&
862
- other . name == name &&
863
- other . class_iseq == class_iseq &&
864
- other . flags == flags
861
+ other . is_a? ( DefineClass ) && other . name == name &&
862
+ other . class_iseq == class_iseq && other . flags == flags
865
863
end
866
864
867
865
def length
@@ -997,9 +995,7 @@ def deconstruct_keys(keys)
997
995
end
998
996
999
997
def ==( other )
1000
- other . is_a? ( Defined ) &&
1001
- other . type == type &&
1002
- other . name == name &&
998
+ other . is_a? ( Defined ) && other . type == type && other . name == name &&
1003
999
other . message == message
1004
1000
end
1005
1001
@@ -1098,8 +1094,7 @@ def deconstruct_keys(keys)
1098
1094
end
1099
1095
1100
1096
def ==( other )
1101
- other . is_a? ( DefineMethod ) &&
1102
- other . method_name == method_name &&
1097
+ other . is_a? ( DefineMethod ) && other . method_name == method_name &&
1103
1098
other . method_iseq == method_iseq
1104
1099
end
1105
1100
@@ -1180,8 +1175,7 @@ def deconstruct_keys(keys)
1180
1175
end
1181
1176
1182
1177
def ==( other )
1183
- other . is_a? ( DefineSMethod ) &&
1184
- other . method_name == method_name &&
1178
+ other . is_a? ( DefineSMethod ) && other . method_name == method_name &&
1185
1179
other . method_iseq == method_iseq
1186
1180
end
1187
1181
@@ -1468,8 +1462,7 @@ def deconstruct_keys(keys)
1468
1462
end
1469
1463
1470
1464
def ==( other )
1471
- other . is_a? ( ExpandArray ) &&
1472
- other . number == number &&
1465
+ other . is_a? ( ExpandArray ) && other . number == number &&
1473
1466
other . flags == flags
1474
1467
end
1475
1468
@@ -1569,8 +1562,7 @@ def deconstruct_keys(keys)
1569
1562
end
1570
1563
1571
1564
def ==( other )
1572
- other . is_a? ( GetBlockParam ) &&
1573
- other . index == index &&
1565
+ other . is_a? ( GetBlockParam ) && other . index == index &&
1574
1566
other . level == level
1575
1567
end
1576
1568
@@ -1636,8 +1628,7 @@ def deconstruct_keys(keys)
1636
1628
end
1637
1629
1638
1630
def ==( other )
1639
- other . is_a? ( GetBlockParamProxy ) &&
1640
- other . index == index &&
1631
+ other . is_a? ( GetBlockParamProxy ) && other . index == index &&
1641
1632
other . level == level
1642
1633
end
1643
1634
@@ -1698,8 +1689,7 @@ def deconstruct_keys(keys)
1698
1689
end
1699
1690
1700
1691
def ==( other )
1701
- other . is_a? ( GetClassVariable ) &&
1702
- other . name == name &&
1692
+ other . is_a? ( GetClassVariable ) && other . name == name &&
1703
1693
other . cache == cache
1704
1694
end
1705
1695
@@ -1895,8 +1885,7 @@ def deconstruct_keys(keys)
1895
1885
end
1896
1886
1897
1887
def ==( other )
1898
- other . is_a? ( GetInstanceVariable ) &&
1899
- other . name == name &&
1888
+ other . is_a? ( GetInstanceVariable ) && other . name == name &&
1900
1889
other . cache == cache
1901
1890
end
1902
1891
@@ -2309,8 +2298,7 @@ def deconstruct_keys(keys)
2309
2298
end
2310
2299
2311
2300
def ==( other )
2312
- other . is_a? ( InvokeSuper ) &&
2313
- other . calldata == calldata &&
2301
+ other . is_a? ( InvokeSuper ) && other . calldata == calldata &&
2314
2302
other . block_iseq == block_iseq
2315
2303
end
2316
2304
@@ -3010,8 +2998,7 @@ def deconstruct_keys(keys)
3010
2998
end
3011
2999
3012
3000
def ==( other )
3013
- other . is_a? ( OptArefWith ) &&
3014
- other . object == object &&
3001
+ other . is_a? ( OptArefWith ) && other . object == object &&
3015
3002
other . calldata == calldata
3016
3003
end
3017
3004
@@ -3129,8 +3116,7 @@ def deconstruct_keys(keys)
3129
3116
end
3130
3117
3131
3118
def ==( other )
3132
- other . is_a? ( OptAsetWith ) &&
3133
- other . object == object &&
3119
+ other . is_a? ( OptAsetWith ) && other . object == object &&
3134
3120
other . calldata == calldata
3135
3121
end
3136
3122
@@ -4020,8 +4006,7 @@ def deconstruct_keys(keys)
4020
4006
end
4021
4007
4022
4008
def ==( other )
4023
- other . is_a? ( OptNEq ) &&
4024
- other . eq_calldata == eq_calldata &&
4009
+ other . is_a? ( OptNEq ) && other . eq_calldata == eq_calldata &&
4025
4010
other . neq_calldata == neq_calldata
4026
4011
end
4027
4012
@@ -4590,8 +4575,7 @@ def deconstruct_keys(keys)
4590
4575
end
4591
4576
4592
4577
def ==( other )
4593
- other . is_a? ( OptStrFreeze ) &&
4594
- other . object == object &&
4578
+ other . is_a? ( OptStrFreeze ) && other . object == object &&
4595
4579
other . calldata == calldata
4596
4580
end
4597
4581
@@ -4652,8 +4636,7 @@ def deconstruct_keys(keys)
4652
4636
end
4653
4637
4654
4638
def ==( other )
4655
- other . is_a? ( OptStrUMinus ) &&
4656
- other . object == object &&
4639
+ other . is_a? ( OptStrUMinus ) && other . object == object &&
4657
4640
other . calldata == calldata
4658
4641
end
4659
4642
@@ -5194,8 +5177,7 @@ def deconstruct_keys(keys)
5194
5177
end
5195
5178
5196
5179
def ==( other )
5197
- other . is_a? ( Send ) &&
5198
- other . calldata == calldata &&
5180
+ other . is_a? ( Send ) && other . calldata == calldata &&
5199
5181
other . block_iseq == block_iseq
5200
5182
end
5201
5183
@@ -5281,8 +5263,7 @@ def deconstruct_keys(keys)
5281
5263
end
5282
5264
5283
5265
def ==( other )
5284
- other . is_a? ( SetBlockParam ) &&
5285
- other . index == index &&
5266
+ other . is_a? ( SetBlockParam ) && other . index == index &&
5286
5267
other . level == level
5287
5268
end
5288
5269
@@ -5344,8 +5325,7 @@ def deconstruct_keys(keys)
5344
5325
end
5345
5326
5346
5327
def ==( other )
5347
- other . is_a? ( SetClassVariable ) &&
5348
- other . name == name &&
5328
+ other . is_a? ( SetClassVariable ) && other . name == name &&
5349
5329
other . cache == cache
5350
5330
end
5351
5331
@@ -5525,8 +5505,7 @@ def deconstruct_keys(keys)
5525
5505
end
5526
5506
5527
5507
def ==( other )
5528
- other . is_a? ( SetInstanceVariable ) &&
5529
- other . name == name &&
5508
+ other . is_a? ( SetInstanceVariable ) && other . name == name &&
5530
5509
other . cache == cache
5531
5510
end
5532
5511
@@ -6169,8 +6148,7 @@ def deconstruct_keys(keys)
6169
6148
end
6170
6149
6171
6150
def ==( other )
6172
- other . is_a? ( ToRegExp ) &&
6173
- other . options == options &&
6151
+ other . is_a? ( ToRegExp ) && other . options == options &&
6174
6152
other . length == length
6175
6153
end
6176
6154
0 commit comments