11
11
12
12
// BEGIN AUTO-GENERATED CONTENT
13
13
14
- import _RegexParser
15
14
@_spi ( RegexBuilder) import _StringProcessing
16
15
17
16
@available ( SwiftStdlib 5 . 7 , * )
@@ -709,7 +708,7 @@ extension Repeat {
709
708
) where RegexOutput == Substring {
710
709
assert ( count > 0 , " Must specify a positive count " )
711
710
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
712
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component. regex. root) )
711
+ self . init ( node: . quantification( . exactly( count) , . default, component. regex. root) )
713
712
}
714
713
715
714
@available ( SwiftStdlib 5 . 7 , * )
@@ -720,7 +719,7 @@ extension Repeat {
720
719
) where RegexOutput == Substring {
721
720
assert ( count > 0 , " Must specify a positive count " )
722
721
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
723
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component ( ) . regex. root) )
722
+ self . init ( node: . quantification( . exactly( count) , . default, component ( ) . regex. root) )
724
723
}
725
724
726
725
@available ( SwiftStdlib 5 . 7 , * )
@@ -835,7 +834,7 @@ extension Repeat {
835
834
) where RegexOutput == ( Substring , C0 ? ) , Component. RegexOutput == ( W , C0 ) {
836
835
assert ( count > 0 , " Must specify a positive count " )
837
836
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
838
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component. regex. root) )
837
+ self . init ( node: . quantification( . exactly( count) , . default, component. regex. root) )
839
838
}
840
839
841
840
@available ( SwiftStdlib 5 . 7 , * )
@@ -845,7 +844,7 @@ extension Repeat {
845
844
) where RegexOutput == ( Substring , C0 ? ) , Component. RegexOutput == ( W , C0 ) {
846
845
assert ( count > 0 , " Must specify a positive count " )
847
846
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
848
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component ( ) . regex. root) )
847
+ self . init ( node: . quantification( . exactly( count) , . default, component ( ) . regex. root) )
849
848
}
850
849
851
850
@available ( SwiftStdlib 5 . 7 , * )
@@ -958,7 +957,7 @@ extension Repeat {
958
957
) where RegexOutput == ( Substring , C0 ? , C1 ? ) , Component. RegexOutput == ( W , C0 , C1 ) {
959
958
assert ( count > 0 , " Must specify a positive count " )
960
959
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
961
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component. regex. root) )
960
+ self . init ( node: . quantification( . exactly( count) , . default, component. regex. root) )
962
961
}
963
962
964
963
@available ( SwiftStdlib 5 . 7 , * )
@@ -968,7 +967,7 @@ extension Repeat {
968
967
) where RegexOutput == ( Substring , C0 ? , C1 ? ) , Component. RegexOutput == ( W , C0 , C1 ) {
969
968
assert ( count > 0 , " Must specify a positive count " )
970
969
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
971
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component ( ) . regex. root) )
970
+ self . init ( node: . quantification( . exactly( count) , . default, component ( ) . regex. root) )
972
971
}
973
972
974
973
@available ( SwiftStdlib 5 . 7 , * )
@@ -1081,7 +1080,7 @@ extension Repeat {
1081
1080
) where RegexOutput == ( Substring , C0 ? , C1 ? , C2 ? ) , Component. RegexOutput == ( W , C0 , C1 , C2 ) {
1082
1081
assert ( count > 0 , " Must specify a positive count " )
1083
1082
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
1084
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component. regex. root) )
1083
+ self . init ( node: . quantification( . exactly( count) , . default, component. regex. root) )
1085
1084
}
1086
1085
1087
1086
@available ( SwiftStdlib 5 . 7 , * )
@@ -1091,7 +1090,7 @@ extension Repeat {
1091
1090
) where RegexOutput == ( Substring , C0 ? , C1 ? , C2 ? ) , Component. RegexOutput == ( W , C0 , C1 , C2 ) {
1092
1091
assert ( count > 0 , " Must specify a positive count " )
1093
1092
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
1094
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component ( ) . regex. root) )
1093
+ self . init ( node: . quantification( . exactly( count) , . default, component ( ) . regex. root) )
1095
1094
}
1096
1095
1097
1096
@available ( SwiftStdlib 5 . 7 , * )
@@ -1204,7 +1203,7 @@ extension Repeat {
1204
1203
) where RegexOutput == ( Substring , C0 ? , C1 ? , C2 ? , C3 ? ) , Component. RegexOutput == ( W , C0 , C1 , C2 , C3 ) {
1205
1204
assert ( count > 0 , " Must specify a positive count " )
1206
1205
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
1207
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component. regex. root) )
1206
+ self . init ( node: . quantification( . exactly( count) , . default, component. regex. root) )
1208
1207
}
1209
1208
1210
1209
@available ( SwiftStdlib 5 . 7 , * )
@@ -1214,7 +1213,7 @@ extension Repeat {
1214
1213
) where RegexOutput == ( Substring , C0 ? , C1 ? , C2 ? , C3 ? ) , Component. RegexOutput == ( W , C0 , C1 , C2 , C3 ) {
1215
1214
assert ( count > 0 , " Must specify a positive count " )
1216
1215
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
1217
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component ( ) . regex. root) )
1216
+ self . init ( node: . quantification( . exactly( count) , . default, component ( ) . regex. root) )
1218
1217
}
1219
1218
1220
1219
@available ( SwiftStdlib 5 . 7 , * )
@@ -1327,7 +1326,7 @@ extension Repeat {
1327
1326
) where RegexOutput == ( Substring , C0 ? , C1 ? , C2 ? , C3 ? , C4 ? ) , Component. RegexOutput == ( W , C0 , C1 , C2 , C3 , C4 ) {
1328
1327
assert ( count > 0 , " Must specify a positive count " )
1329
1328
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
1330
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component. regex. root) )
1329
+ self . init ( node: . quantification( . exactly( count) , . default, component. regex. root) )
1331
1330
}
1332
1331
1333
1332
@available ( SwiftStdlib 5 . 7 , * )
@@ -1337,7 +1336,7 @@ extension Repeat {
1337
1336
) where RegexOutput == ( Substring , C0 ? , C1 ? , C2 ? , C3 ? , C4 ? ) , Component. RegexOutput == ( W , C0 , C1 , C2 , C3 , C4 ) {
1338
1337
assert ( count > 0 , " Must specify a positive count " )
1339
1338
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
1340
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component ( ) . regex. root) )
1339
+ self . init ( node: . quantification( . exactly( count) , . default, component ( ) . regex. root) )
1341
1340
}
1342
1341
1343
1342
@available ( SwiftStdlib 5 . 7 , * )
@@ -1450,7 +1449,7 @@ extension Repeat {
1450
1449
) where RegexOutput == ( Substring , C0 ? , C1 ? , C2 ? , C3 ? , C4 ? , C5 ? ) , Component. RegexOutput == ( W , C0 , C1 , C2 , C3 , C4 , C5 ) {
1451
1450
assert ( count > 0 , " Must specify a positive count " )
1452
1451
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
1453
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component. regex. root) )
1452
+ self . init ( node: . quantification( . exactly( count) , . default, component. regex. root) )
1454
1453
}
1455
1454
1456
1455
@available ( SwiftStdlib 5 . 7 , * )
@@ -1460,7 +1459,7 @@ extension Repeat {
1460
1459
) where RegexOutput == ( Substring , C0 ? , C1 ? , C2 ? , C3 ? , C4 ? , C5 ? ) , Component. RegexOutput == ( W , C0 , C1 , C2 , C3 , C4 , C5 ) {
1461
1460
assert ( count > 0 , " Must specify a positive count " )
1462
1461
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
1463
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component ( ) . regex. root) )
1462
+ self . init ( node: . quantification( . exactly( count) , . default, component ( ) . regex. root) )
1464
1463
}
1465
1464
1466
1465
@available ( SwiftStdlib 5 . 7 , * )
@@ -1573,7 +1572,7 @@ extension Repeat {
1573
1572
) where RegexOutput == ( Substring , C0 ? , C1 ? , C2 ? , C3 ? , C4 ? , C5 ? , C6 ? ) , Component. RegexOutput == ( W , C0 , C1 , C2 , C3 , C4 , C5 , C6 ) {
1574
1573
assert ( count > 0 , " Must specify a positive count " )
1575
1574
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
1576
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component. regex. root) )
1575
+ self . init ( node: . quantification( . exactly( count) , . default, component. regex. root) )
1577
1576
}
1578
1577
1579
1578
@available ( SwiftStdlib 5 . 7 , * )
@@ -1583,7 +1582,7 @@ extension Repeat {
1583
1582
) where RegexOutput == ( Substring , C0 ? , C1 ? , C2 ? , C3 ? , C4 ? , C5 ? , C6 ? ) , Component. RegexOutput == ( W , C0 , C1 , C2 , C3 , C4 , C5 , C6 ) {
1584
1583
assert ( count > 0 , " Must specify a positive count " )
1585
1584
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
1586
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component ( ) . regex. root) )
1585
+ self . init ( node: . quantification( . exactly( count) , . default, component ( ) . regex. root) )
1587
1586
}
1588
1587
1589
1588
@available ( SwiftStdlib 5 . 7 , * )
@@ -1696,7 +1695,7 @@ extension Repeat {
1696
1695
) where RegexOutput == ( Substring , C0 ? , C1 ? , C2 ? , C3 ? , C4 ? , C5 ? , C6 ? , C7 ? ) , Component. RegexOutput == ( W , C0 , C1 , C2 , C3 , C4 , C5 , C6 , C7 ) {
1697
1696
assert ( count > 0 , " Must specify a positive count " )
1698
1697
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
1699
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component. regex. root) )
1698
+ self . init ( node: . quantification( . exactly( count) , . default, component. regex. root) )
1700
1699
}
1701
1700
1702
1701
@available ( SwiftStdlib 5 . 7 , * )
@@ -1706,7 +1705,7 @@ extension Repeat {
1706
1705
) where RegexOutput == ( Substring , C0 ? , C1 ? , C2 ? , C3 ? , C4 ? , C5 ? , C6 ? , C7 ? ) , Component. RegexOutput == ( W , C0 , C1 , C2 , C3 , C4 , C5 , C6 , C7 ) {
1707
1706
assert ( count > 0 , " Must specify a positive count " )
1708
1707
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
1709
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component ( ) . regex. root) )
1708
+ self . init ( node: . quantification( . exactly( count) , . default, component ( ) . regex. root) )
1710
1709
}
1711
1710
1712
1711
@available ( SwiftStdlib 5 . 7 , * )
@@ -1819,7 +1818,7 @@ extension Repeat {
1819
1818
) where RegexOutput == ( Substring , C0 ? , C1 ? , C2 ? , C3 ? , C4 ? , C5 ? , C6 ? , C7 ? , C8 ? ) , Component. RegexOutput == ( W , C0 , C1 , C2 , C3 , C4 , C5 , C6 , C7 , C8 ) {
1820
1819
assert ( count > 0 , " Must specify a positive count " )
1821
1820
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
1822
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component. regex. root) )
1821
+ self . init ( node: . quantification( . exactly( count) , . default, component. regex. root) )
1823
1822
}
1824
1823
1825
1824
@available ( SwiftStdlib 5 . 7 , * )
@@ -1829,7 +1828,7 @@ extension Repeat {
1829
1828
) where RegexOutput == ( Substring , C0 ? , C1 ? , C2 ? , C3 ? , C4 ? , C5 ? , C6 ? , C7 ? , C8 ? ) , Component. RegexOutput == ( W , C0 , C1 , C2 , C3 , C4 , C5 , C6 , C7 , C8 ) {
1830
1829
assert ( count > 0 , " Must specify a positive count " )
1831
1830
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
1832
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component ( ) . regex. root) )
1831
+ self . init ( node: . quantification( . exactly( count) , . default, component ( ) . regex. root) )
1833
1832
}
1834
1833
1835
1834
@available ( SwiftStdlib 5 . 7 , * )
@@ -1942,7 +1941,7 @@ extension Repeat {
1942
1941
) where RegexOutput == ( Substring , C0 ? , C1 ? , C2 ? , C3 ? , C4 ? , C5 ? , C6 ? , C7 ? , C8 ? , C9 ? ) , Component. RegexOutput == ( W , C0 , C1 , C2 , C3 , C4 , C5 , C6 , C7 , C8 , C9 ) {
1943
1942
assert ( count > 0 , " Must specify a positive count " )
1944
1943
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
1945
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component. regex. root) )
1944
+ self . init ( node: . quantification( . exactly( count) , . default, component. regex. root) )
1946
1945
}
1947
1946
1948
1947
@available ( SwiftStdlib 5 . 7 , * )
@@ -1952,7 +1951,7 @@ extension Repeat {
1952
1951
) where RegexOutput == ( Substring , C0 ? , C1 ? , C2 ? , C3 ? , C4 ? , C5 ? , C6 ? , C7 ? , C8 ? , C9 ? ) , Component. RegexOutput == ( W , C0 , C1 , C2 , C3 , C4 , C5 , C6 , C7 , C8 , C9 ) {
1953
1952
assert ( count > 0 , " Must specify a positive count " )
1954
1953
// TODO: Emit a warning about `repeatMatch(count: 0)` or `repeatMatch(count: 1)`
1955
- self . init ( node: . quantification( . exactly( . init ( faking : count) ) , . default, component ( ) . regex. root) )
1954
+ self . init ( node: . quantification( . exactly( count) , . default, component ( ) . regex. root) )
1956
1955
}
1957
1956
1958
1957
@available ( SwiftStdlib 5 . 7 , * )
0 commit comments