| Index: pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart
|
| diff --git a/pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart b/pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart
|
| index 7106756bf6cb81cbb929cf1611ba88797a8d1438..528edc268f3e2ddd8ac62e11d07695463ac71541 100644
|
| --- a/pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart
|
| +++ b/pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart
|
| @@ -299,12 +299,6 @@ class SExpressionStringifier extends Indentation implements Visitor<String> {
|
| return '(CreateInstance $className ($arguments)$typeInformation)';
|
| }
|
|
|
| - String visitIdentical(Identical node) {
|
| - String left = access(node.left);
|
| - String right = access(node.right);
|
| - return '(Identical $left $right)';
|
| - }
|
| -
|
| String visitInterceptor(Interceptor node) {
|
| return '(Interceptor ${access(node.input)})';
|
| }
|
|
|