| 845 | } |
| 846 | |
| 847 | GcByteArray* makeByteArray(Thread* t, Stream& s, unsigned length) |
| 848 | { |
| 849 | GcByteArray* value = makeByteArray(t, length + 1); |
| 850 | s.read(reinterpret_cast<uint8_t*>(value->body().begin()), length); |
| 851 | return value; |
| 852 | } |
| 853 | |
| 854 | void removeByteArray(Thread* t, object o) |
| 855 | { |
no test coverage detected