We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
type test = {\"TEST": int} let test = {\"TEST": 42}
now compiles to
let test = { "\\\"TEST\"": 42 };
instead of
let test = { TEST: 42 };
@cometkim Could this be a side effect of #6777/#6779?
The text was updated successfully, but these errors were encountered:
Hmmm, would they be represented as Lident in the AST?
Lident
Sorry, something went wrong.
Ok let me check it. I think we need to modify the parser then It's the backend (Js_dump)
Js_dump
Fix uppercase field names on record
e5ebb62
Fixed rescript-lang#6882
Fix uppercase field names on record (#6897)
4934f3b
Fixed #6882
Successfully merging a pull request may close this issue.
now compiles to
instead of
@cometkim Could this be a side effect of #6777/#6779?
The text was updated successfully, but these errors were encountered: