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

Unified Diff: runtime/lib/object.dart

Issue 10832109: Refactor the way we emit no such method handlers so it's easier to optimize it later. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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/lib/object.dart
diff --git a/runtime/lib/object.dart b/runtime/lib/object.dart
index 86da3520b60f937b32a0bf92255ad8a52aad6d79..fe749908b0c7f10eefef80454674f216c969d21c 100644
--- a/runtime/lib/object.dart
+++ b/runtime/lib/object.dart
@@ -8,7 +8,7 @@ class Object {
bool operator ==(other) {
return this === other;
}
- void noSuchMethod(String function_name, List args) native "Object_noSuchMethod";
+ void noSuchMethod(String functionName, List args) native "Object_noSuchMethod";
/**
* Return this object without type information.
« lib/compiler/implementation/emitter.dart ('K') | « lib/compiler/implementation/emitter.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698