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

Unified Diff: runtime/vm/object_store.h

Issue 12335111: Resubmit change 19074. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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 | « runtime/vm/object.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object_store.h
===================================================================
--- runtime/vm/object_store.h (revision 19094)
+++ runtime/vm/object_store.h (working copy)
@@ -525,6 +525,13 @@
out_of_memory_ = value.raw();
}
+ RawStacktrace* preallocated_stack_trace() const {
+ return preallocated_stack_trace_;
+ }
+ void set_preallocated_stack_trace(const Stacktrace& value) {
+ preallocated_stack_trace_ = value.raw();
+ }
+
RawArray* keyword_symbols() const { return keyword_symbols_; }
void set_keyword_symbols(const Array& value) {
keyword_symbols_ = value.raw();
@@ -650,6 +657,7 @@
RawContext* empty_context_;
RawInstance* stack_overflow_;
RawInstance* out_of_memory_;
+ RawStacktrace* preallocated_stack_trace_;
RawArray* keyword_symbols_;
RawFunction* receive_port_create_function_;
RawFunction* lookup_receive_port_function_;
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698