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

Unified Diff: pkg/compiler/lib/src/world.dart

Issue 2960723004: Handle super-method call (Closed)
Patch Set: Updated cf. comments. 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/world.dart
diff --git a/pkg/compiler/lib/src/world.dart b/pkg/compiler/lib/src/world.dart
index b02f4671d6fa74b89f4720765fa1f11b8b1f5174..9fc0684087d1f22d7da98a04097b110ec6487e79 100644
--- a/pkg/compiler/lib/src/world.dart
+++ b/pkg/compiler/lib/src/world.dart
@@ -1061,7 +1061,7 @@ abstract class ClosedWorldBase implements ClosedWorld, ClosedWorldRefiner {
// We're not tracking side effects of closures.
if (selector.isClosureCall) return new SideEffects();
SideEffects sideEffects = new SideEffects.empty();
- for (MemberElement e in _allFunctions.filter(selector, mask, this)) {
+ for (MemberEntity e in _allFunctions.filter(selector, mask, this)) {
if (e.isField) {
if (selector.isGetter) {
if (!fieldNeverChanges(e)) {
« no previous file with comments | « pkg/compiler/lib/src/ssa/codegen_helpers.dart ('k') | tests/compiler/dart2js/kernel/compile_from_dill_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698