Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Unified Diff: tests/compiler/dart2js/mirror_helper_unique_minification_test.dart

Issue 27510003: Scanner for UTF-8 byte arrays (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fixes compiler tests Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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])) {

Powered by Google App Engine
This is Rietveld 408576698