Closed
Description
(This is a follow-up from rescript-lang/rescript-vscode/issues/496)
When converting syntax from 9.1.4 to 10.x (for example, using formatting on save with the VS Code plugin), escaped identifiers become unescaped. E.g
\"import"()
becomes import()
,
switch editorState.\"export"
becomes switch editorState.export
type \"foobar"
becomes type foobar
,
and so on