mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-06 20:58:35 +02:00
37 lines
345 B
JavaScript
37 lines
345 B
JavaScript
// dummy lines to make sure exception line number is well below parent test script
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
|
|
|
|
function myfunc() {
|
|
throw new Error('exception on line 32 in myfunc');
|
|
return "myfunc";
|
|
}
|
|
module.exports = myfunc;
|
|
if (Script[module.filename] === 'throw')
|
|
myfunc();
|