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
Using transform-function-bind and transform-class-properties together makes syntax highlighting very fragile. For instance, this won't highlight:
export class Example { _someStream = someOtherStream::map( thing => 1 ); constructor() { console.log('this should be highlighted'); } }
but replacing the 1 with an identifier will highlight correctly.
1
The text was updated successfully, but these errors were encountered:
Add test for #270
e043a6a
Just added a test to catch this in the rewrite. See "re-rewrite babel-sublime" #293.
Sorry, something went wrong.
No branches or pull requests
Using transform-function-bind and transform-class-properties together makes syntax highlighting very fragile. For instance, this won't highlight:
but replacing the
1
with an identifier will highlight correctly.The text was updated successfully, but these errors were encountered: