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

Unified Diff: runtime/vm/code_generator.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/code_generator.cc
===================================================================
--- runtime/vm/code_generator.cc (revision 10615)
+++ runtime/vm/code_generator.cc (working copy)
@@ -47,7 +47,7 @@
const Function& function = Function::CheckedHandle(arguments.At(0));
const String& function_name = String::Handle(function.name());
const String& class_name =
- String::Handle(Class::Handle(function.owner()).Name());
+ String::Handle(Class::Handle(function.Owner()).Name());
OS::Print("> Entering '%s.%s'\n",
class_name.ToCString(), function_name.ToCString());
}
@@ -58,7 +58,7 @@
const Function& function = Function::CheckedHandle(arguments.At(0));
const String& function_name = String::Handle(function.name());
const String& class_name =
- String::Handle(Class::Handle(function.owner()).Name());
+ String::Handle(Class::Handle(function.Owner()).Name());
OS::Print("< Exiting '%s.%s'\n",
class_name.ToCString(), function_name.ToCString());
}
« no previous file with comments | « runtime/vm/class_finalizer.cc ('k') | runtime/vm/dart_api_impl.cc » ('j') | runtime/vm/object.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698