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
{{ message }}
This repository was archived by the owner on Jul 12, 2022. It is now read-only.
The current rule will convert @"This is a snowman: ☃." to: @"This is a snowman: \u2603.". This is wrong because we want the unicode literal in the string, not the escaped version. Instead it should convert it to something like:
@"This is a snowman: "+"\u2603"+@"."
Note that to be nice we should probably compress runs of Unicode characters together if they appear one after another.