When compiling to javaScript the dart2js compiler converts the string to an escaped utf format
\u043d\u041d...
I am not sure why his is done (the original file contains text strings that are in cyrillic, but the system (and hopefully DartEditor) use UTF).
Other compilers (like Closure or TypeScript) leave it as it is.
I am wondering if someone can explain:
- Why it is done in this way
- What is the significance of this
- Is there a way to turn this off
Thanks.