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
This doesn't work:
isDraggingUpFromCenter = (startPosition, data) => startPosition < this.halfOfWindowHeight() && startPosition > this.halfOfWindowHeight() - AREAFORLISTENERCENTER && data.deltaY < TRIGGERINGDELTAY;
while this works fine:
isDraggingUpFromCenter = (startPosition, data) => { return( startPosition < this.halfOfWindowHeight() && startPosition > this.halfOfWindowHeight() - AREAFORLISTENERCENTER && data.deltaY < TRIGGERINGDELTAY; ) }
const FOO = 0; const FOOO = 0; class Bar { myFunc1 = () => 1 < 2 && 2 > 1 && FOO < FOOO; myFunc2 = () => 1 < 2 && 2 > 1 && FOO < FOOO; } export default Bar
Rsults in
With this example (because i reduced the conditions) I also found out that when format it differently - it also works.
Results in
The text was updated successfully, but these errors were encountered:
Looks like #718. I just pulled in the latest grammar form master to VS Code to test this but it still seems broken
Sorry, something went wrong.
d8c9720
mjbvz
No branches or pull requests
Initial bug found in
This doesn't work:
while this works fine:
Simple standalone code to test with
Rsults in
With this example (because i reduced the conditions) I also found out that when format it differently - it also works.
Results in
The text was updated successfully, but these errors were encountered: