2019-02-26 07:56:58 +03:00
|
|
|
// Do not generate like this
|
|
|
|
// if(cond)with(cond2)if(cond3)debugger;else ok();
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// See https://github.com/Constellation/escodegen/issues/49
|
2018-10-25 07:17:05 +03:00
|
|
|
if (a) {
|
|
|
|
with (b){
|
|
|
|
if (c) {
|
|
|
|
debugger;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
d();
|
|
|
|
}
|