Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(673)

Unified Diff: vm/isolate.h

Issue 9965042: - Add a class index to the classes. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « vm/intrinsifier_ia32.cc ('k') | vm/isolate.cc » ('j') | vm/raw_object.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « vm/intrinsifier_ia32.cc ('k') | vm/isolate.cc » ('j') | vm/raw_object.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698