Awesome. Thanks.
> On Mar 13, 2025, at 7:18 PM, Josh Tynjala <joshtynj...@bowlerhat.dev> wrote:
>
> Fixed the following commit:
>
> https://github.com/apache/royale-compiler/commit/e398fd6a800cc34436551a3161580f9e98d169f0
>
> I confirmed in the flex-sdk compiler codebase that \u escape sequences are
> specifically allowed in MXML strings, unlike other escape sequences like \n
> and \t.
>
> --
> Josh Tynjala
> Bowler Hat LLC
> https://bowlerhat.dev/
>
>
> On Thu, Mar 13, 2025 at 1:00 AM Harbs <harbs.li...@gmail.com> wrote:
>
>> I have an attribute in MXML which looks like this:
>>
>> suffix="\u00B0”
>>
>> This used to correctly set the “suffix” property to the specified unicode
>> value. Currently it seems like it’s parsed as a \\u00B0 literal string.
>>
>> I’m not sure when this changed.