MCPcopy Create free account
hub / github.com/GoogleChrome/samples / demangleAll

Function demangleAll

mkbitmap/mkbitmap.js:1822–1830  ·  view source on GitHub ↗
(text)

Source from the content-addressed store, hash-verified

1820 return func;
1821 }
1822 function demangleAll(text) {
1823 var regex =
1824 /\b_Z[\w\d_]+/g;
1825 return text.replace(regex,
1826 function(x) {
1827 var y = demangle(x);
1828 return x === y ? x : (y + ' [' + x + ']');
1829 });
1830 }
1831 var FS = {root:null,mounts:[],devices:{},streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,ErrnoError:null,genericErrors:{},filesystems:null,syncFSRequests:0,lookupPath:(path, opts = {}) => {
1832 path = PATH_FS.resolve(path);
1833

Callers 1

mkbitmap.jsFile · 0.70

Calls 1

demangleFunction · 0.70

Tested by

no test coverage detected