[This](https://github.com/tc39/test262/blob/6f8e0f67cad29a92a23ed7b596a9be8d7ba34644/test/language/expressions/class/elements/after-same-line-static-async-method-rs-privatename-identifier-alt.js) file has parse errors, but probably shouldn't. Considerations: - https://github.com/microsoft/TypeScript/pull/50856 added support for starting with a unicode escape - The names `#ZW__NJ` and `#ZW__J` contain `\u200c` and `\u200d`, respectively (not here, but in the file) - Support for _extended_ unicode escapes (i.e. `\u{6F}`, rather than `\u006F`) depends on ES2015, but we appear to parse the file as ES5. - Converting the extended unicode escapes to regular unicode escapes does not seem to eliminate the errors Discovered as part of https://github.com/microsoft/TypeScript/issues/50835
This file has parse errors, but probably shouldn't.
Considerations:
#ZW__NJand#ZW__Jcontain\u200cand\u200d, respectively (not here, but in the file)\u{6F}, rather than\u006F) depends on ES2015, but we appear to parse the file as ES5.Discovered as part of #50835