| 358 | } |
| 359 | |
| 360 | objectID Connection::GetThis(threadID thread, frameID frame) |
| 361 | { |
| 362 | Command cmd(CommandSet::StackFrame, 3); |
| 363 | cmd.GetData().Write(thread).Write(frame); |
| 364 | |
| 365 | if(!SendReceive(cmd)) |
| 366 | return {}; |
| 367 | |
| 368 | taggedObjectID ret = {}; |
| 369 | cmd.GetData().Read(ret).Done(); |
| 370 | return ret.id; |
| 371 | } |
| 372 | |
| 373 | void Connection::ReadEvent(CommandData &data, Event &ev) |
| 374 | { |
no test coverage detected