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

Unified Diff: sdk/lib/_internal/compiler/implementation/ssa/nodes.dart

Issue 11688010: NoSuchMethod on different super accesses/invocations handled. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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: sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
diff --git a/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart b/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
index 44a11fdaf2d29475ede037a93d4bb74c28c2ed3b..03f7e5152fc2273217b18f459fff2ad0d83ac854 100644
--- a/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
+++ b/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
@@ -1429,7 +1429,8 @@ class HInvokeStatic extends HInvoke {
class HInvokeSuper extends HInvokeStatic {
final bool isSetter;
- HInvokeSuper(inputs, {this.isSetter: false}) : super(inputs);
+ final bool isGetter;
ngeoffray 2012/12/28 10:24:03 Aren't these fields misnamed? Shouldn't they reall
Johnni Winther 2012/12/28 22:32:31 Done.
+ HInvokeSuper(inputs, {this.isSetter: false, this.isGetter: false}) : super(inputs);
ngeoffray 2012/12/28 10:24:03 long line.
Johnni Winther 2012/12/28 22:32:31 Done.
toString() => 'invoke super: ${element.name}';
accept(HVisitor visitor) => visitor.visitInvokeSuper(this);

Powered by Google App Engine
This is Rietveld 408576698