Chromium Code Reviews| 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); |