Skip to content
Prev Previous commit
Next Next commit
v8_prof_polyfill: remove unused catch bindings
PR-URL: #24079
Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
Reviewed-By: Wyatt Preul <wpreul@gmail.com>
  • Loading branch information
cjihrig committed Nov 6, 2018
commit 30f58b92ee88a2c90ab570d68f4ff4628126b5f0
2 changes: 1 addition & 1 deletion lib/internal/v8_prof_polyfill.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ function macCppfiltNm(out) {
filtered = cp.spawnSync('c++filt', [ '-p' , '-i' ], {
input: entries.join('\n')
}).stdout.toString();
} catch (e) {
} catch {
return out;
}

Expand Down