| Index: tests/language/strict_equal_test.dart
|
| diff --git a/tests/language/strict_equal_test.dart b/tests/language/strict_equal_test.dart
|
| index 0fddafbe6c5fbac5aa9b4a01131eaa88272c607c..fbdccd84c9d6b98187983f9a5ff8614f1e8b854a 100644
|
| --- a/tests/language/strict_equal_test.dart
|
| +++ b/tests/language/strict_equal_test.dart
|
| @@ -43,7 +43,6 @@ main() {
|
| }
|
| }
|
|
|
| -
|
| test1(a) {
|
| return identical(a, 3);
|
| }
|
| @@ -52,17 +51,14 @@ test2(a) {
|
| return !identical(a, 3);
|
| }
|
|
|
| -
|
| test2r(a) {
|
| return !identical(3, a);
|
| }
|
|
|
| -
|
| test3() {
|
| return identical(get5(), 5);
|
| }
|
|
|
| -
|
| test4(a) {
|
| if (identical(a, 3)) {
|
| return 1;
|
| @@ -71,7 +67,6 @@ test4(a) {
|
| }
|
| }
|
|
|
| -
|
| test5(a) {
|
| if (!identical(a, 3)) {
|
| return 1;
|
| @@ -80,7 +75,6 @@ test5(a) {
|
| }
|
| }
|
|
|
| -
|
| test6() {
|
| if (identical(get5(), 5)) {
|
| return 1;
|
| @@ -97,7 +91,6 @@ test7() {
|
| return null != null;
|
| }
|
|
|
| -
|
| test8() {
|
| if (null != null) {
|
| return 1;
|
| @@ -106,17 +99,14 @@ test8() {
|
| }
|
| }
|
|
|
| -
|
| test9(a) {
|
| return identical(a, 0);
|
| }
|
|
|
| -
|
| test9r(a) {
|
| return identical(0, a);
|
| }
|
|
|
| -
|
| test10(a) {
|
| return !identical(a, 0);
|
| }
|
|
|