8 lines
125 B
JavaScript
8 lines
125 B
JavaScript
function test() {
|
|
function end() {
|
|
throw "thrown exception";
|
|
}
|
|
waitForExplicitFinish();
|
|
setTimeout(end, 1000);
|
|
}
|