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

Unified Diff: pkg/compiler/lib/src/resolution/no_such_method_resolver.dart

Issue 2941033002: Finish strong mode cleaning of dart2js. (Closed)
Patch Set: Created 3 years, 6 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: pkg/compiler/lib/src/resolution/no_such_method_resolver.dart
diff --git a/pkg/compiler/lib/src/resolution/no_such_method_resolver.dart b/pkg/compiler/lib/src/resolution/no_such_method_resolver.dart
index 49f3353eff3df74309a00b132805a2af14a81609..41cef3ec7adac9eca141f18826ba6a2670b65724 100644
--- a/pkg/compiler/lib/src/resolution/no_such_method_resolver.dart
+++ b/pkg/compiler/lib/src/resolution/no_such_method_resolver.dart
@@ -52,6 +52,7 @@ class ResolutionNoSuchMethodResolver implements NoSuchMethodResolver {
arg.argumentsNode == null &&
arg.receiver == null &&
arg.selector is Identifier &&
+ // ignore: UNDEFINED_GETTER
ahe 2017/06/15 09:36:39 Type of arg is *known* to be Send due to is test,
Johnni Winther 2017/06/15 10:21:26 We probably need to nest ifs to make 'arg.selector
ahe 2017/06/15 11:41:57 Done.
arg.selector.source == param) {
return true;
}

Powered by Google App Engine
This is Rietveld 408576698