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

Unified Diff: vm/isolate.h

Issue 10082017: Remove code index table. (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
Index: vm/isolate.h
===================================================================
--- vm/isolate.h (revision 6535)
+++ vm/isolate.h (working copy)
@@ -105,11 +105,6 @@
StubCode* stub_code() const { return stub_code_; }
void set_stub_code(StubCode* value) { stub_code_ = value; }
- CodeIndexTable* code_index_table() const { return code_index_table_; }
- void set_code_index_table(CodeIndexTable* value) {
- code_index_table_ = value;
- }
-
LongJump* long_jump_base() const { return long_jump_base_; }
void set_long_jump_base(LongJump* value) { long_jump_base_ = value; }
@@ -208,7 +203,6 @@
Dart_LibraryTagHandler library_tag_handler_;
ApiState* api_state_;
StubCode* stub_code_;
- CodeIndexTable* code_index_table_;
Debugger* debugger_;
LongJump* long_jump_base_;
TimerList timer_list_;
« vm/find_code_object_test.cc ('K') | « vm/find_code_object_test.cc ('k') | vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698