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

Unified Diff: pkg/dev_compiler/tool/input_sdk/private/js_array.dart

Issue 2764203002: Fix dev compiler formatter error. (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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dev_compiler/tool/input_sdk/private/js_array.dart
diff --git a/pkg/dev_compiler/tool/input_sdk/private/js_array.dart b/pkg/dev_compiler/tool/input_sdk/private/js_array.dart
index f9546e2fe166f2bb6a0181b52f1ac64d22473384..1053949b7f24848a3451b75b0050bef4ce7c5ce7 100644
--- a/pkg/dev_compiler/tool/input_sdk/private/js_array.dart
+++ b/pkg/dev_compiler/tool/input_sdk/private/js_array.dart
@@ -243,7 +243,8 @@ class JSArray<E> implements List<E>, JSIndexable<E> {
}
/*=T*/ fold/*<T>*/(
- /*=T*/ initialValue, /*=T*/ combine(/*=T*/ previousValue, E element)) {
+ /*=T*/ initialValue,
+ /*=T*/ combine(/*=T*/ previousValue, E element)) {
var/*=T*/ value = initialValue;
int length = this.length;
for (int i = 0; i < length; i++) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698