File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,8 @@ ASTs. If you use the `--commentWorkarounds=true` option it will try to prevent m
43
43
from getting deleted but it sometimes causes an assertion to fail in ` recast ` .
44
44
45
45
There are a few edge cases where ` asyncify ` produces funky output. It's intended to not break
46
- any existing behavior but sometimes the output will be be semantically wrong even if it behaves
46
+ any existing behavior (at the moment there are a few bugs that do, which I need to fix)
47
+ but sometimes the output will be be semantically wrong even if it behaves
47
48
correctly. For example, I've seen a case where doing an async operation several times in a row:
48
49
49
50
``` js
@@ -85,6 +86,3 @@ it('test', async () => {
85
86
Although I could possibly fix this for cases where it's easy to determine that the function has
86
87
no parameters, there could be cases where it's impossible to determine whether the identifier
87
88
` doSomething` is even a function or whether it has parameters.
88
-
89
- At the moment, ` .then (someIdentifier)` when ` someIdentifier` is not a function is the only known
90
- case where the output behavior is wrong and will likely throw a ` TypeError ` (#15).
You can’t perform that action at this time.
0 commit comments