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

Unified Diff: pkg/analysis_server/lib/src/services/generated/stubs.dart

Issue 969113002: 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/analysis_server/lib/src/services/generated/stubs.dart
diff --git a/pkg/analysis_server/lib/src/services/generated/stubs.dart b/pkg/analysis_server/lib/src/services/generated/stubs.dart
index 7293cad5a12331c676e408d3d2643fccea089943..8d0982c4d794c5c67721a5d815a345bb69b53ab8 100644
--- a/pkg/analysis_server/lib/src/services/generated/stubs.dart
+++ b/pkg/analysis_server/lib/src/services/generated/stubs.dart
@@ -12,7 +12,6 @@ import 'package:analyzer/src/generated/element.dart';
import 'package:analyzer/src/generated/scanner.dart';
import 'package:analyzer/src/generated/source.dart';
-
abstract class SearchFilter {
bool passes(SearchMatch match);
}
@@ -22,10 +21,7 @@ class SearchMatch {
final SourceRange sourceRange = null;
}
-
-class SearchEngine {
-}
-
+class SearchEngine {}
class SourceRangeFactory {
static SourceRange rangeElementName(Element element) {
@@ -83,7 +79,6 @@ class SourceRangeFactory {
}
}
-
class StringUtils {
static String capitalize(String str) {
if (isEmpty(str)) {
@@ -106,8 +101,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);
}
@@ -146,8 +141,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);
}
}

Powered by Google App Engine
This is Rietveld 408576698