diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-11-20 15:36:07 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-11-20 15:36:07 -0800 |
commit | 954e3a1fc346d7f3b6cb35a9953db3d8e835cecf (patch) | |
tree | f83576cc95d5c5f99ebb2532d2a4e8509cd1b39d /src | |
parent | 079a6226ea2fbb0c323b4a94eefe52ff20998d7e (diff) |
fix stack traces from js compiler
Diffstat (limited to 'src')
-rw-r--r-- | src/compiler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler.js b/src/compiler.js index 452b1f7b..f523022b 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -320,7 +320,7 @@ try { } } } catch(err) { - printErr('aborting from js compiler due to exception: ' + err); + printErr('aborting from js compiler due to exception: ' + err + ' | ' + err.stack); } //var M = keys(tokenCacheMisses).map(function(m) { return [m, misses[m]] }).sort(function(a, b) { return a[1] - b[1] }); |