You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This fixes an issue where using a set to unique the elements of a
CCC led to a nondeterministic ordering, which could then lead to
unexpected coalescing of separate scalars into a single character.
(e.g. `[\nA\r]` -> `["\r", "\n", "A"]` -> `["\r\n", "A"]`)
This change keeps the order of the original CCC, so coalescing into
characters should not occur unless the scalars are already in that
order.
Fixesswiftlang/swift#81427.
rdar://151046715
0 commit comments