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

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

Issue 12033056: Implement "one-shot" interceptors. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 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
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/ssa/tracer.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/minify_many_locals_test.dart
===================================================================
--- tests/compiler/dart2js/minify_many_locals_test.dart (revision 17552)
+++ tests/compiler/dart2js/minify_many_locals_test.dart (working copy)
@@ -20,8 +20,7 @@
RegExp re = new RegExp(r"\(a,b,c");
Expect.isTrue(re.hasMatch(generated));
- // 'z' will be used as a local.
- re = new RegExp(r"x,y,A,B,C");
+ re = new RegExp(r"x,y,z,A,B,C");
Expect.isTrue(re.hasMatch(generated));
re = new RegExp(r"Y,Z,a0,a1,a2,a3,a4,a5,a6");
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/ssa/tracer.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698