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

Unified Diff: runtime/vm/class_finalizer.cc

Issue 18097004: Support fast noSuchMethod dispatch for any number of arguments. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: addressed comments Created 7 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
« no previous file with comments | « no previous file | runtime/vm/code_generator.cc » ('j') | tests/language/no_such_method_dispatcher_test.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/class_finalizer.cc
===================================================================
--- runtime/vm/class_finalizer.cc (revision 24510)
+++ runtime/vm/class_finalizer.cc (working copy)
@@ -957,8 +957,7 @@
function = super_class.LookupFunction(name);
if (!function.IsNull() &&
!function.is_static() &&
- !function.IsMethodExtractor() &&
- !function.IsNoSuchMethodDispatcher()) {
+ !function.IsMethodExtractor()) {
return super_class.raw();
}
super_class = super_class.SuperClass();
« no previous file with comments | « no previous file | runtime/vm/code_generator.cc » ('j') | tests/language/no_such_method_dispatcher_test.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698