-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
This is my script:
console.log(1)
if (false) throw new Error('test')
console.log(2)
console.log(3)
I run it like this:
// this.jsContents is the the above script
const jsContentsExecutor: string = `async function _execute() {${this.jsContents}}; return _execute();`
const jsExecutor = sandbox.compileAsync(jsContentsExecutor)
await jsExecutor({
// _vars: pluginVars, // Normally some vars are added
// _settings: pluginSettings
}).run()
This is the output:
1
3
So it appears the 2 is disappearing.
If I change the line to have brackets, it does work:
if (false) {
throw new Error('test')
}
Results in:
1
2
3
Metadata
Metadata
Assignees
Labels
No labels