(handle_to_object)
| 321 | } |
| 322 | |
| 323 | function print_object_from_handle(handle_to_object) { |
| 324 | let handle = host.evaluateExpression(handle_to_object); |
| 325 | let location = handle.location_; |
| 326 | let pobj = poi(location.address); // handles use uncompressed pointers |
| 327 | print_object(pobj); |
| 328 | } |
| 329 | |
| 330 | function print_js_stack() { |
| 331 | make_call("_v8_internal_Print_StackTrace()"); |
nothing calls this directly
no test coverage detected
searching dependent graphs…