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

Unified Diff: vm/class_finalizer_test.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/ast.cc ('k') | vm/code_descriptors.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/class_finalizer_test.cc
===================================================================
--- vm/class_finalizer_test.cc (revision 16415)
+++ vm/class_finalizer_test.cc (working copy)
@@ -11,14 +11,13 @@
static RawClass* CreateTestClass(const char* name) {
- const Array& empty_array = Array::Handle(Object::empty_array());
const String& class_name = String::Handle(Symbols::New(name));
const Script& script = Script::Handle();
const Class& cls =
Class::Handle(Class::New(class_name, script, Scanner::kDummyTokenIndex));
- cls.set_interfaces(empty_array);
- cls.SetFunctions(empty_array);
- cls.SetFields(empty_array);
+ cls.set_interfaces(Object::empty_array());
+ cls.SetFunctions(Object::empty_array());
+ cls.SetFields(Object::empty_array());
return cls.raw();
}
« no previous file with comments | « vm/ast.cc ('k') | vm/code_descriptors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698