(func)
| 1816 | var ERRNO_CODES = {}; |
| 1817 | |
| 1818 | function demangle(func) { |
| 1819 | warnOnce('warning: build with -sDEMANGLE_SUPPORT to link in libcxxabi demangling'); |
| 1820 | return func; |
| 1821 | } |
| 1822 | function demangleAll(text) { |
| 1823 | var regex = |
| 1824 | /\b_Z[\w\d_]+/g; |
no test coverage detected