| 8526 | } |
| 8527 | |
| 8528 | virtual void initVtable(Thread* t, GcClass* c) |
| 8529 | { |
| 8530 | PROTECT(t, c); |
| 8531 | for (int i = c->length() - 1; i >= 0; --i) { |
| 8532 | void* thunk |
| 8533 | = reinterpret_cast<void*>(virtualThunk(static_cast<MyThread*>(t), i)); |
| 8534 | c->vtable()[i] = thunk; |
| 8535 | } |
| 8536 | } |
| 8537 | |
| 8538 | virtual void visitObjects(Thread* vmt, Heap::Visitor* v) |
| 8539 | { |
no test coverage detected