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

Unified Diff: vm/object_store.cc

Issue 11648006: Create read only handles for empty_array and sentinel objects (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years 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/object.cc ('k') | vm/object_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/object_store.cc
===================================================================
--- vm/object_store.cc (revision 16415)
+++ vm/object_store.cc (working copy)
@@ -117,16 +117,16 @@
}
ASSERT(this->stack_overflow() == Instance::null());
ASSERT(this->out_of_memory() == Instance::null());
- const Array& args = Array::Handle(Object::empty_array());
Object& result = Object::Handle();
- result = Exceptions::Create(Exceptions::kStackOverflow, args);
+ result = Exceptions::Create(Exceptions::kStackOverflow,
+ Object::empty_array());
if (result.IsError()) {
return false;
}
set_stack_overflow(Instance::Cast(result));
- result = Exceptions::Create(Exceptions::kOutOfMemory, args);
+ result = Exceptions::Create(Exceptions::kOutOfMemory, Object::empty_array());
if (result.IsError()) {
return false;
}
« no previous file with comments | « vm/object.cc ('k') | vm/object_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698