(p Pointer)
| 187 | const _ = uint(unsafe.Sizeof(unsafe.Pointer(nil)) - unsafe.Sizeof(MessageState{})) |
| 188 | |
| 189 | func (Export) MessageStateOf(p Pointer) *messageState { |
| 190 | // Super-tricky - see documentation on MessageState. |
| 191 | return (*messageState)(unsafe.Pointer(p)) |
| 192 | } |
| 193 | func (ms *messageState) pointer() pointer { |
| 194 | // Super-tricky - see documentation on MessageState. |
| 195 | return pointer{p: unsafe.Pointer(ms)} |
no outgoing calls
no test coverage detected