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
<CompletionSupport.TestComponent on= someOtherProp=true
This is parsed as:
[ structure_item Pstr_eval expression Pexp_apply expression Pexp_ident "React.createElement" [ <arg> Nolabel expression Pexp_ident "CompletionSupport.TestComponent.make" <arg> Nolabel expression Pexp_record [ "on" expression attribute "res.namedArgLoc" [] Pexp_ident "someOtherProp" ] None ] structure_item Pstr_eval expression Pexp_construct "true" None ]
...which effectively means:
<CompletionSupport.TestComponent on=someOtherProp true
But, preferably it should be parsed as:
<CompletionSupport.TestComponent on=%rescript.exprHole someOtherProp=true
The current state prevents us from doing proper completions in this case, which is quite common, so it's a bit annoying.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is parsed as:
...which effectively means:
But, preferably it should be parsed as:
The current state prevents us from doing proper completions in this case, which is quite common, so it's a bit annoying.
The text was updated successfully, but these errors were encountered: