Reads an instruction out of the stream from the current address plus an offset.
| 240 | |
| 241 | // Reads an instruction out of the stream from the current address plus an offset. |
| 242 | const Instruction* RelativeAt(int32_t offset) const WARN_UNUSED { |
| 243 | return At(reinterpret_cast<const uint16_t*>(this) + offset); |
| 244 | } |
| 245 | |
| 246 | // Returns a pointer to the next instruction in the stream. |
| 247 | const Instruction* Next() const { |
nothing calls this directly
no outgoing calls
no test coverage detected