| Index: tests/compiler/dart2js/js_backend_cps_ir_operators_test.dart
|
| diff --git a/tests/compiler/dart2js/js_backend_cps_ir_operators_test.dart b/tests/compiler/dart2js/js_backend_cps_ir_operators_test.dart
|
| index 138e68446547196ae53442b8289a4d0b59c5a1dc..534db6334865eb6cf039eb6d6f1009ba81218c35 100644
|
| --- a/tests/compiler/dart2js/js_backend_cps_ir_operators_test.dart
|
| +++ b/tests/compiler/dart2js/js_backend_cps_ir_operators_test.dart
|
| @@ -40,14 +40,14 @@ get foo => foo;
|
| main() { print(foo && foo); }
|
| """, """
|
| function() {
|
| - P.print(V.foo() ? !!P.identical(V.foo(), true) : false);
|
| + P.print(V.foo() ? V.foo() === true : false);
|
| }"""),
|
| const TestEntry("""
|
| get foo => foo;
|
| main() { print(foo || foo); }
|
| ""","""
|
| function() {
|
| - P.print(V.foo() ? true : !!P.identical(V.foo(), true));
|
| + P.print(V.foo() ? true : V.foo() === true);
|
| }"""),
|
|
|
| // Needs interceptor calling convention
|
|
|