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

Unified Diff: tools/dom/src/_ListIterators.dart

Issue 2827793002: Format all files under tools and utils directory. (Closed)
Patch Set: Format all files under tools and utils directory. 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
« no previous file with comments | « tools/dom/src/_HttpRequestUtils.dart ('k') | tools/dom/src/_chrome/app_runtime.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/src/_ListIterators.dart
diff --git a/tools/dom/src/_ListIterators.dart b/tools/dom/src/_ListIterators.dart
index 821ef514e4bd6cec53f27ec17df5d637829bd2dd..0a9080e7ad99ce5159e077c8dba7d473086bed88 100644
--- a/tools/dom/src/_ListIterators.dart
+++ b/tools/dom/src/_ListIterators.dart
@@ -7,10 +7,10 @@ part of html;
// Iterator for arrays with fixed size.
class FixedSizeListIterator<T> implements Iterator<T> {
final List<T> _array;
- final int _length; // Cache array length for faster access.
+ final int _length; // Cache array length for faster access.
int _position;
T _current;
-
+
FixedSizeListIterator(List<T> array)
: _array = array,
_position = -1,
« no previous file with comments | « tools/dom/src/_HttpRequestUtils.dart ('k') | tools/dom/src/_chrome/app_runtime.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698