You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove dead code in runtime_debug.js. NFC (#17012)
I was running with PTHREADS_DEBUG + closure and closure
figured out that all this code is dead.
I traced this all the way back to 2012 when it first became
dead code: 9b2446d
Copy file name to clipboardExpand all lines: src/runtime_debug.js
+1-25Lines changed: 1 addition & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -63,31 +63,7 @@ function prettyPrint(arg) {
63
63
returnarg+'\n\n';
64
64
}
65
65
if(arg.byteLength){
66
-
return'{'+Array.prototype.slice.call(arg,0,Math.min(arg.length,400))+'}';// Useful for correct arrays, less so for compiled arrays, see the code below for that
0 commit comments