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

Unified Diff: tests/language_strong/static_inline_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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/language_strong/static_inline_test.dart
diff --git a/tests/language_strong/static_inline_test.dart b/tests/language_strong/static_inline_test.dart
index cad3bf677d75b87ecd63194f9b8f52ab122fcdfc..50141e32f2a31ae9f0a730078d210497eec52630 100644
--- a/tests/language_strong/static_inline_test.dart
+++ b/tests/language_strong/static_inline_test.dart
@@ -17,8 +17,8 @@ class StringScanner {
return charAt(++byteOffset);
}
- static int charAt(index)
- => (string.length > index) ? string.codeUnitAt(index) : -1;
+ static int charAt(index) =>
+ (string.length > index) ? string.codeUnitAt(index) : -1;
}
void main() {

Powered by Google App Engine
This is Rietveld 408576698