Open ljharb opened 6 years ago
A file of:
throw new Error('foo');
provides these results:
#### ch Error: foo #### v8 Error: foo #### sm Error: foo #### jsc Error: foo
throw 'foo';
#### ch foo: undefined #### sm #### v8 foo: undefined #### jsc foo: undefined
This is both unclear that it threw, but also, spidermonkey is reporting the wrong result.
A file of:
provides these results:
A file of:
provides these results:
This is both unclear that it threw, but also, spidermonkey is reporting the wrong result.