fix: handle bailed when recursive convert (#5499)

This commit is contained in:
Sven SAULEAU
2017-03-22 09:18:37 +01:00
committed by GitHub
parent 7d37017a5f
commit 2b774f46fb
3 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
const t = do {
if (true) {
throw new Error()
}
}

View File

@@ -0,0 +1,5 @@
const t = function () {
if (true) {
throw new Error();
}
}();