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

Unified Diff: test/rules/unnecessary_brace_in_string_interp.dart

Issue 900093002: Fix for alphanumerics following braces. (Closed) Base URL: https://github.com/dart-lang/dart_lint.git@master
Patch Set: Added final modifier. Created 5 years, 10 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: test/rules/unnecessary_brace_in_string_interp.dart
diff --git a/test/rules/unnecessary_brace_in_string_interp.dart b/test/rules/unnecessary_brace_in_string_interp.dart
index 4dbd01470ba5a81c0c78dc30132a0043cf10d67a..c5701339b6d461ad1ee15e67f70e27f9a5a674ed 100644
--- a/test/rules/unnecessary_brace_in_string_interp.dart
+++ b/test/rules/unnecessary_brace_in_string_interp.dart
@@ -5,6 +5,9 @@
main(args) {
print('hello');
print('hello $args');
+ print('hello $args!');
+ print('hello ${args}1');
print('hello ${args}'); //LINT
+ print('hello ${args}!'); //LINT
print('hello ${args.length}');
}

Powered by Google App Engine
This is Rietveld 408576698