Index: tests/compiler/dart2js/mirror_helper_unique_minification_test.dart |
diff --git a/tests/compiler/dart2js/mirror_helper_unique_minification_test.dart b/tests/compiler/dart2js/mirror_helper_unique_minification_test.dart |
index 490aad35a78573bbe9a3b2fef1e1652cdbd4e46d..fd0c83fb7ee4b573aacade79c7a79cc0198e1edf 100644 |
--- a/tests/compiler/dart2js/mirror_helper_unique_minification_test.dart |
+++ b/tests/compiler/dart2js/mirror_helper_unique_minification_test.dart |
@@ -40,7 +40,7 @@ void testUniqueMinification() { |
DartBackend backend = compiler.backend; |
MirrorRenamer mirrorRenamer = backend.mirrorRenamer; |
Map<Node, String> renames = backend.renames; |
- Map<String, SourceString> symbols = mirrorRenamer.symbols; |
+ Map<String, String> symbols = mirrorRenamer.symbols; |
// Check that no two different source code names get the same mangled name, |
// with the exception of MirrorSystem.getName that gets renamed to the same |
@@ -48,7 +48,7 @@ void testUniqueMinification() { |
for (Node node in renames.keys) { |
Identifier identifier = node.asIdentifier(); |
if (identifier != null) { |
- SourceString source = identifier.source; |
+ String source = identifier.source; |
if (mirrorRenamer.mirrorSystemGetNameNodes.first.selector == node) |
continue; |
if (symbols.containsKey(renames[node])) { |