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

Unified Diff: pkg/analyzer/lib/src/generated/java_engine.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
« no previous file with comments | « pkg/analyzer/lib/src/generated/java_core.dart ('k') | pkg/analyzer/lib/src/generated/java_engine_io.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/generated/java_engine.dart
diff --git a/pkg/analyzer/lib/src/generated/java_engine.dart b/pkg/analyzer/lib/src/generated/java_engine.dart
index 8a6bb5d8500ede652ed8b41195f8562c7bb54c36..98ff8e43639efafe1bbe33ec523f2d0caf4527d6 100644
--- a/pkg/analyzer/lib/src/generated/java_engine.dart
+++ b/pkg/analyzer/lib/src/generated/java_engine.dart
@@ -115,7 +115,6 @@ class FileNameUtilities {
}
}
-
class StringUtilities {
static const String EMPTY = '';
static const List<String> EMPTY_ARRAY = const <String>[];
@@ -155,8 +154,8 @@ class StringUtilities {
}
return -1;
}
- static int indexOf4(String string, int start, int c1, int c2, int c3,
- int c4) {
+ static int indexOf4(
+ String string, int start, int c1, int c2, int c3, int c4) {
int index = start;
int last = string.length - 3;
while (index < last) {
@@ -170,8 +169,8 @@ class StringUtilities {
}
return -1;
}
- static int indexOf5(String str, int start, int c1, int c2, int c3, int c4,
- int c5) {
+ static int indexOf5(
+ String str, int start, int c1, int c2, int c3, int c4, int c5) {
int index = start;
int last = str.length - 4;
while (index < last) {
@@ -274,8 +273,8 @@ class StringUtilities {
str.codeUnitAt(start + 2) == c3 &&
str.codeUnitAt(start + 3) == c4;
}
- static startsWith5(String str, int start, int c1, int c2, int c3, int c4,
- int c5) {
+ static startsWith5(
+ String str, int start, int c1, int c2, int c3, int c4, int c5) {
return str.length - start >= 5 &&
str.codeUnitAt(start) == c1 &&
str.codeUnitAt(start + 1) == c2 &&
@@ -283,8 +282,8 @@ class StringUtilities {
str.codeUnitAt(start + 3) == c4 &&
str.codeUnitAt(start + 4) == c5;
}
- static startsWith6(String str, int start, int c1, int c2, int c3, int c4,
- int c5, int c6) {
+ static startsWith6(
+ String str, int start, int c1, int c2, int c3, int c4, int c5, int c6) {
return str.length - start >= 6 &&
str.codeUnitAt(start) == c1 &&
str.codeUnitAt(start + 1) == c2 &&
@@ -323,7 +322,6 @@ class StringUtilities {
}
}
-
class UUID {
static int __nextId = 0;
final String id;
« no previous file with comments | « pkg/analyzer/lib/src/generated/java_core.dart ('k') | pkg/analyzer/lib/src/generated/java_engine_io.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698