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

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

Issue 11265020: Minifying renamer for classes, methods and instance variables. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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/minify_many_locals_test.dart
diff --git a/tests/compiler/dart2js/minify_many_locals_test.dart b/tests/compiler/dart2js/minify_many_locals_test.dart
index e25b249bca165aadd2478d8191bbd72b42d071ec..fbf0cd6c8d2eb291ce33704a611b029d595902bf 100644
--- a/tests/compiler/dart2js/minify_many_locals_test.dart
+++ b/tests/compiler/dart2js/minify_many_locals_test.dart
@@ -23,6 +23,9 @@ main() {
re = const RegExp(r"x,y,z,A,B,C");
Expect.isTrue(re.hasMatch(generated));
+ re = const RegExp(r"G,H,J,K,L,M"); // I is reserved for the isolate.
+ Expect.isTrue(re.hasMatch(generated));
+
re = const RegExp(r"Y,Z,a0,a1,a2,a3,a4,a5,a6");
Expect.isTrue(re.hasMatch(generated));

Powered by Google App Engine
This is Rietveld 408576698