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

Unified Diff: tests/language/instance_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/instance_inline_test.dart
diff --git a/tests/language/instance_inline_test.dart b/tests/language/instance_inline_test.dart
index a13d93acf68d401bbd82c12d129ed38396387351..0aabedc34980103755ad9818bdcf4e2838ecae56 100644
--- a/tests/language/instance_inline_test.dart
+++ b/tests/language/instance_inline_test.dart
@@ -16,8 +16,7 @@ class StringScanner {
int nextByte() => charAt(++byteOffset);
- int charAt(index)
- => (string.length > index) ? string.codeUnitAt(index) : -1;
+ int charAt(index) => (string.length > index) ? string.codeUnitAt(index) : -1;
}
void main() {

Powered by Google App Engine
This is Rietveld 408576698