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

Unified Diff: dart/frog/tests/leg/src/PrettyParameterTest.dart

Issue 9689045: Library privacy. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 9 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 | « dart/frog/tests/leg/src/LiteralListTest.dart ('k') | dart/frog/tests/leg/src/SsaPhiEliminatorTest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/frog/tests/leg/src/PrettyParameterTest.dart
diff --git a/dart/frog/tests/leg/src/PrettyParameterTest.dart b/dart/frog/tests/leg/src/PrettyParameterTest.dart
index c7c967d96af56e267c8080f37e64318b555b4c17..9b54e9fe495a3d6e51fb757a7fd57c0a2f9c1ad5 100644
--- a/dart/frog/tests/leg/src/PrettyParameterTest.dart
+++ b/dart/frog/tests/leg/src/PrettyParameterTest.dart
@@ -78,10 +78,10 @@ main() {
Expect.isTrue(regexp.hasMatch(generated));
generated = compile(PARAMETER_AND_TEMP, 'bar');
- regexp = const RegExp(@"print\$1\(t0\)");
+ regexp = const RegExp(@"print\(t0\)");
Expect.isTrue(regexp.hasMatch(generated));
// Check that the second 't0' got another name.
- regexp = const RegExp(@"print\$1\(t0_0\)");
+ regexp = const RegExp(@"print\(t0_0\)");
Expect.isTrue(regexp.hasMatch(generated));
generated = compile(NO_LOCAL, 'foo');
« no previous file with comments | « dart/frog/tests/leg/src/LiteralListTest.dart ('k') | dart/frog/tests/leg/src/SsaPhiEliminatorTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698