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

Unified Diff: pkg/analyzer/lib/src/generated/java_core.dart

Issue 975453004: Reformat (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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/analyzer/lib/src/generated/java_core.dart
diff --git a/pkg/analyzer/lib/src/generated/java_core.dart b/pkg/analyzer/lib/src/generated/java_core.dart
index a06e98434df882353498fbfc809dd99d4ec15d16..04ef61c37afd11ec3d72df271fdc6036dad5e77f 100644
--- a/pkg/analyzer/lib/src/generated/java_core.dart
+++ b/pkg/analyzer/lib/src/generated/java_core.dart
@@ -11,8 +11,8 @@ final Stopwatch nanoTimeStopwatch = new Stopwatch();
* format('{0} are you {1}ing?', 'How', 'do') = 'How are you doing?'
* format('{0} are you {1}ing?', 'What', 'read') = 'What are you reading?'
*/
-String format(String pattern, [arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7])
- {
+String format(String pattern,
+ [arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7]) {
return formatList(pattern, [arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7]);
}
@@ -53,8 +53,8 @@ bool javaStringEqualsIgnoreCase(String a, String b) {
return a.toLowerCase() == b.toLowerCase();
}
-bool javaStringRegionMatches(String t, int toffset, String o, int ooffset,
- int len) {
+bool javaStringRegionMatches(
+ String t, int toffset, String o, int ooffset, int len) {
if (toffset < 0) return false;
if (ooffset < 0) return false;
var tend = toffset + len;
@@ -279,8 +279,8 @@ class JavaString {
}
class JavaSystem {
- static void arraycopy(List src, int srcPos, List dest, int destPos,
- int length) {
+ static void arraycopy(
+ List src, int srcPos, List dest, int destPos, int length) {
for (int i = 0; i < length; i++) {
dest[destPos + i] = src[srcPos + i];
}
@@ -376,8 +376,8 @@ class StringUtils {
return str == null || str.isEmpty;
}
- static String join(Iterable iter, [String separator = ' ', int start = 0,
- int end = -1]) {
+ static String join(Iterable iter,
+ [String separator = ' ', int start = 0, int end = -1]) {
if (start != 0) {
iter = iter.skip(start);
}
@@ -420,8 +420,8 @@ class StringUtils {
return s.split(pattern);
}
- static List<String> splitByWholeSeparatorPreserveAllTokens(String s,
- String pattern) {
+ static List<String> splitByWholeSeparatorPreserveAllTokens(
+ String s, String pattern) {
return s.split(pattern);
}
}
« no previous file with comments | « pkg/analyzer/lib/src/generated/incremental_scanner.dart ('k') | pkg/analyzer/lib/src/generated/java_engine.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698