| Index: vm/isolate.h
|
| ===================================================================
|
| --- vm/isolate.h (revision 6994)
|
| +++ vm/isolate.h (working copy)
|
| @@ -7,6 +7,7 @@
|
|
|
| #include "include/dart_api.h"
|
| #include "platform/assert.h"
|
| +#include "vm/class_table.h"
|
| #include "platform/thread.h"
|
| #include "vm/base_isolate.h"
|
| #include "vm/gc_callbacks.h"
|
| @@ -58,6 +59,8 @@
|
|
|
| StoreBufferBlock* store_buffer() { return &store_buffer_; }
|
|
|
| + ClassTable* class_table() { return &class_table_; }
|
| +
|
| Dart_MessageNotifyCallback message_notify_callback() const {
|
| return message_notify_callback_;
|
| }
|
| @@ -189,6 +192,7 @@
|
|
|
| static ThreadLocalKey isolate_key;
|
| StoreBufferBlock store_buffer_;
|
| + ClassTable class_table_;
|
| Dart_MessageNotifyCallback message_notify_callback_;
|
| char* name_;
|
| Dart_Port main_port_;
|
|
|