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

Unified Diff: runtime/vm/object_store.h

Issue 72923002: Add Dart keyword symbols to the VM isolate (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 1 month 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: runtime/vm/object_store.h
===================================================================
--- runtime/vm/object_store.h (revision 30276)
+++ runtime/vm/object_store.h (working copy)
@@ -379,12 +379,6 @@
preallocated_stack_trace_ = value.raw();
}
- RawArray* keyword_symbols() const { return keyword_symbols_; }
- void set_keyword_symbols(const Array& value) {
- keyword_symbols_ = value.raw();
- }
- void InitKeywordTable();
-
RawFunction* receive_port_create_function() const {
return receive_port_create_function_;
}
@@ -484,11 +478,12 @@
RawInstance* stack_overflow_;
RawInstance* out_of_memory_;
RawStacktrace* preallocated_stack_trace_;
- RawArray* keyword_symbols_;
RawFunction* receive_port_create_function_;
RawFunction* lookup_receive_port_function_;
RawFunction* handle_message_function_;
- RawObject** to() { return reinterpret_cast<RawObject**>(&keyword_symbols_); }
+ RawObject** to() {
+ return reinterpret_cast<RawObject**>(&handle_message_function_);
regis 2013/11/14 18:37:29 Oops :-)
+ }
friend class SnapshotReader;
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/object_store.cc » ('j') | runtime/vm/symbols.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698