| 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 9d1c3147f7286d0c6b8b5ad6a889d0c0125c2947..4f7763950a7385481122e36e3a3dd9a00949db79 100644
|
| --- a/tests/compiler/dart2js/mirror_helper_unique_minification_test.dart
|
| +++ b/tests/compiler/dart2js/mirror_helper_unique_minification_test.dart
|
| @@ -37,7 +37,7 @@ void testUniqueMinification() {
|
| then((Compiler compiler) {
|
| DartBackend backend = compiler.backend;
|
| MirrorRenamer mirrorRenamer = backend.mirrorRenamer;
|
| - Map<Node, String> renames = backend.renames;
|
| + Map<Node, String> renames = backend.placeholderRenamer.renames;
|
| Map<String, String> symbols = mirrorRenamer.symbols;
|
|
|
| // Check that no two different source code names get the same mangled name,
|
| @@ -63,7 +63,7 @@ void testNoUniqueMinification() {
|
| asyncTest(() => runCompiler(useMirrorHelperLibrary: false, minify: true).
|
| then((Compiler compiler) {
|
| DartBackend backend = compiler.backend;
|
| - Map<Node, String> renames = backend.renames;
|
| + Map<Node, String> renames = backend.placeholderRenamer.renames;
|
|
|
| // 'Foo' appears twice and 'invocation' and 'hest' get the same mangled
|
| // name.
|
|
|