pointerValue contains a single pointer, with an offset into the underlying object.
| 499 | // pointerValue contains a single pointer, with an offset into the underlying |
| 500 | // object. |
| 501 | type pointerValue struct { |
| 502 | pointer uint64 // low 32 bits are offset, high 32 bits are index |
| 503 | } |
| 504 | |
| 505 | func newPointerValue(r *runner, index, offset int) pointerValue { |
| 506 | return pointerValue{ |
nothing calls this directly
no outgoing calls
no test coverage detected