(addr)
| 744 | dp |
| 745 | -----------------------------------------------------------------------------*/ |
| 746 | function pad_right(addr) { |
| 747 | let addr_hex = hex(addr); |
| 748 | return `${addr_hex}${" ".repeat(pointer_size() * 2 + 2 - addr_hex.length)}`; |
| 749 | } |
| 750 | |
| 751 | // TODO irinayat: would be nice to identify handles and smi as well |
| 752 | function dp(addr, count = 10) { |
no test coverage detected
searching dependent graphs…