(address)
| 305 | } |
| 306 | |
| 307 | function print_object(address) { |
| 308 | let output = make_call(`_v8_internal_Print_Object(${decomp(address)})`); |
| 309 | |
| 310 | // skip the first few lines with meta info of .call command |
| 311 | let skip_line = true; |
| 312 | for (let line of output) { |
| 313 | if (!skip_line) { |
| 314 | print(line); |
| 315 | continue; |
| 316 | } |
| 317 | if (line.includes("deadlocks and corruption of the debuggee")) { |
| 318 | skip_line = false; |
| 319 | } |
| 320 | } |
| 321 | } |
| 322 | |
| 323 | function print_object_from_handle(handle_to_object) { |
| 324 | let handle = host.evaluateExpression(handle_to_object); |
no test coverage detected
searching dependent graphs…