File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -319,7 +319,7 @@ extension String {
319
319
@inline ( __always) get { return UnicodeScalarView ( _guts) }
320
320
@inline ( __always) set { _guts = newValue. _guts }
321
321
322
- @_alwaysEmitIntoClient @inline ( __always) // 5.7
322
+ @inlinable @inline ( __always)
323
323
_modify {
324
324
var view = self . unicodeScalars
325
325
self = " "
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ extension Substring {
141
141
@inlinable @inline ( __always)
142
142
internal var _offsetRange : Range < Int > { _slice. _bounds. _encodedOffsetRange }
143
143
144
- @inlinable @inline ( __always)
144
+ @_alwaysEmitIntoClient @inline ( __always)
145
145
internal var _bounds : Range < Index > { _slice. _bounds }
146
146
}
147
147
Original file line number Diff line number Diff line change @@ -604,12 +604,13 @@ suite.test("Fully exhaustive index interchange")
604
604
fullyExhaustiveIndexInterchange ( string)
605
605
}
606
606
607
+ #if _runtime(_ObjC)
607
608
suite. test ( " Fully exhaustive index interchange/GraphemeBreakTests " ) {
608
609
for string in graphemeBreakTests . map { $0. 0 } {
609
610
fullyExhaustiveIndexInterchange ( string)
610
611
}
611
612
}
612
-
613
+ #endif
613
614
614
615
suite. test ( " Global vs local grapheme cluster boundaries " ) {
615
616
guard #available( SwiftStdlib 5 . 7 , * ) else {
You can’t perform that action at this time.
0 commit comments