(text)
| 1154 | } |
| 1155 | |
| 1156 | function demangleAll(text) { |
| 1157 | return text.replace(/__Z[\w\d_]+/g, function(x) { var y = demangle(x); return x === y ? x : (x + ' [' + y + ']') }); |
| 1158 | } |
| 1159 | |
| 1160 | function jsStackTrace() { |
| 1161 | var err = new Error(); |
no test coverage detected