script.coffee 286 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 sourceMapSupport.install() foo = -> throw new Error 'foo' try foo() catch e if /\bscript\.coffee\b/.test e.stack document.body.appendChild document.createTextNode 'Test passed' else document.body.appendChild document.createTextNode 'Test failed' console.log e.stack