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
In the following typescript code:
function foo() { return "|"; } function bar() { return ""; }
Saying "bring bat before funk" results in the following code:
"bring bat before funk"
function foo() { return "|"; } bar function bar() { return ""; }
This behavior is inconsistent with the way it would work if we said "bring bat to funk", which would result in the following:
"bring bat to funk"
bar; function bar() { return ""; }
The analogous behavior for "bring bat before funk"would be:
bar function foo() { return ""; } function bar() { return ""; }
The text was updated successfully, but these errors were encountered:
"its"
AndreasArvidsson
Successfully merging a pull request may close this issue.
In the following typescript code:
Saying
"bring bat before funk"
results in the following code:This behavior is inconsistent with the way it would work if we said
"bring bat to funk"
, which would result in the following:The analogous behavior for
"bring bat before funk"
would be:The text was updated successfully, but these errors were encountered: