(address)
| 361 | // Adjust for possible pointer compression ('address' is assumed to be on the |
| 362 | // managed heap). |
| 363 | function poim(address) { |
| 364 | try { |
| 365 | // readMemoryValues throws if cannot read from 'address'. |
| 366 | return host.memory.readMemoryValues(decomp(address), 1, tagged_size())[0]; |
| 367 | } |
| 368 | catch (e){} |
| 369 | } |
| 370 | |
| 371 | /*----------------------------------------------------------------------------- |
| 372 | Exploring objects |
no test coverage detected