Index: tests/corelib/hash_set_type_check_test.dart |
diff --git a/tests/corelib/hash_set_type_check_test.dart b/tests/corelib/hash_set_type_check_test.dart |
index 1e21c95087f13830c600c75a6500c0220c9fca5e..27c7908423e56c73b982c5f9b24b7a00345b66de 100644 |
--- a/tests/corelib/hash_set_type_check_test.dart |
+++ b/tests/corelib/hash_set_type_check_test.dart |
@@ -5,6 +5,7 @@ |
// Tests of hash set type checking. |
library hash_set_type_check_test; |
+ |
import "package:expect/expect.dart"; |
import 'dart:collection'; |
@@ -14,14 +15,12 @@ testSet(Set<String> newSet()) { |
Expect.isNull(s.lookup(1)); |
} |
- |
void testIdentitySet(Set create()) { |
Set<String> s = create(); |
Expect.throws(() => s.add(1), (e) => e is Error); |
Expect.isNull(s.lookup(1)); |
} |
- |
bool get inCheckedMode { |
try { |
var i = 1; |
@@ -32,7 +31,6 @@ bool get inCheckedMode { |
return false; |
} |
- |
void main() { |
if (!inCheckedMode) return; |
@@ -42,9 +40,8 @@ void main() { |
testIdentitySet(() => new Set<String>.identity()); |
testIdentitySet(() => new HashSet<String>.identity()); |
testIdentitySet(() => new LinkedHashSet<String>.identity()); |
- testIdentitySet(() => new HashSet<String>(equals: (x, y) => identical(x, y), |
- hashCode: (x) => identityHashCode(x))); |
- testIdentitySet( |
- () => new LinkedHashSet<String>(equals: (x, y) => identical(x, y), |
- hashCode: (x) => identityHashCode(x))); |
+ testIdentitySet(() => new HashSet<String>( |
+ equals: (x, y) => identical(x, y), hashCode: (x) => identityHashCode(x))); |
+ testIdentitySet(() => new LinkedHashSet<String>( |
+ equals: (x, y) => identical(x, y), hashCode: (x) => identityHashCode(x))); |
} |