fix: handle bailed when recursive convert (#5499)
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
const t = do {
|
||||
if (true) {
|
||||
throw new Error()
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
const t = function () {
|
||||
if (true) {
|
||||
throw new Error();
|
||||
}
|
||||
}();
|
||||
Reference in New Issue
Block a user