-
-
Notifications
You must be signed in to change notification settings - Fork 88
Closed
Description
In the following typescript code:
function foo() {
return "|";
}
function bar() {
return "";
}
Saying "bring bat before funk"
results in the following code:
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:
bar;
function bar() {
return "";
}
The analogous behavior for "bring bat before funk"
would be:
bar function foo() {
return "";
}
function bar() {
return "";
}
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working