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

Unified Diff: pkg/dev_compiler/tool/input_sdk/lib/html/html_common/lists.dart

Issue 2752163002: Format all dart dev compiler files (Closed)
Patch Set: Created 3 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
Index: pkg/dev_compiler/tool/input_sdk/lib/html/html_common/lists.dart
diff --git a/pkg/dev_compiler/tool/input_sdk/lib/html/html_common/lists.dart b/pkg/dev_compiler/tool/input_sdk/lib/html/html_common/lists.dart
index f33d64afb9963a39e61089795580a1ed999f4f05..c7abc41cb00fb3c9dbd34e5b2b5763e57b9bc0b7 100644
--- a/pkg/dev_compiler/tool/input_sdk/lib/html/html_common/lists.dart
+++ b/pkg/dev_compiler/tool/input_sdk/lib/html/html_common/lists.dart
@@ -5,16 +5,12 @@
part of html_common;
class Lists {
-
/**
* Returns the index in the array [a] of the given [element], starting
* the search at index [startIndex] to [endIndex] (exclusive).
* Returns -1 if [element] is not found.
*/
- static int indexOf(List a,
- Object element,
- int startIndex,
- int endIndex) {
+ static int indexOf(List a, Object element, int startIndex, int endIndex) {
if (startIndex >= a.length) {
return -1;
}

Powered by Google App Engine
This is Rietveld 408576698