| Index: pkg/compiler/lib/src/ssa/builder.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/builder.dart b/pkg/compiler/lib/src/ssa/builder.dart
|
| index f210452a62ca79f4c87100395718d62112933112..0f0829c116e8750eab8d8b07a800ede0d3600c1a 100644
|
| --- a/pkg/compiler/lib/src/ssa/builder.dart
|
| +++ b/pkg/compiler/lib/src/ssa/builder.dart
|
| @@ -4478,6 +4478,16 @@ class SsaBuilder extends NewResolvedVisitor {
|
| }
|
|
|
| @override
|
| + void visitSuperNotEquals(
|
| + ast.Send node,
|
| + MethodElement method,
|
| + ast.Node argument,
|
| + _) {
|
| + handleSuperMethodInvoke(node, method);
|
| + pushWithPosition(new HNot(popBoolified(), backend.boolType), node.selector);
|
| + }
|
| +
|
| + @override
|
| void visitSuperUnary(
|
| ast.Send node,
|
| UnaryOperator operator,
|
|
|