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

Unified Diff: runtime/vm/intrinsifier.cc

Issue 10827288: - Support for patching of class methods and fields. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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: runtime/vm/intrinsifier.cc
===================================================================
--- runtime/vm/intrinsifier.cc (revision 10615)
+++ runtime/vm/intrinsifier.cc (working copy)
@@ -53,7 +53,7 @@
bool Intrinsifier::Intrinsify(const Function& function, Assembler* assembler) {
if (!FLAG_intrinsify) return false;
const char* function_name = String::Handle(function.name()).ToCString();
- const Class& function_class = Class::Handle(function.owner());
+ const Class& function_class = Class::Handle(function.Owner());
const char* class_name = String::Handle(function_class.Name()).ToCString();
// Only core library methods can be intrinsified.
const Library& core_lib = Library::Handle(Library::CoreLibrary());

Powered by Google App Engine
This is Rietveld 408576698