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

Unified Diff: tests/language/reg_ex2_test.dart

Issue 10383238: Fix tests in language suite: eliminate String + (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 7 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 | « tests/language/pseudo_kw_test.dart ('k') | tests/language/reg_exp2_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/reg_ex2_test.dart
===================================================================
--- tests/language/reg_ex2_test.dart (revision 7724)
+++ tests/language/reg_ex2_test.dart (working copy)
@@ -11,9 +11,9 @@
if (match != null) {
print("got match");
int groupCount = match.groupCount();
- print("groupCount is " + groupCount);
- print("group 0 is " + match.group(0));
- print("group 1 is " + match.group(1));
+ print("groupCount is $groupCount");
+ print("group 0 is ${match.group(0)}");
+ print("group 1 is ${match.group(1)}");
} else {
print("match not round");
}
« no previous file with comments | « tests/language/pseudo_kw_test.dart ('k') | tests/language/reg_exp2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698