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

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

Issue 135803003: Translate index. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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/source_io.dart
diff --git a/pkg/analyzer/lib/src/generated/source_io.dart b/pkg/analyzer/lib/src/generated/source_io.dart
index e751b79cb139b8ceac43db875ad76710c7f7cf75..67c8bc1a40c4d7b02dfb0bb3a023389f502f7810 100644
--- a/pkg/analyzer/lib/src/generated/source_io.dart
+++ b/pkg/analyzer/lib/src/generated/source_io.dart
@@ -19,18 +19,18 @@ abstract class LocalSourcePredicate {
/**
* Instance of [LocalSourcePredicate] that always returns `false`.
*/
- static final LocalSourcePredicate FALSE = new LocalSourcePredicate_20();
+ static final LocalSourcePredicate FALSE = new LocalSourcePredicate_23();
/**
* Instance of [LocalSourcePredicate] that always returns `true`.
*/
- static final LocalSourcePredicate TRUE = new LocalSourcePredicate_21();
+ static final LocalSourcePredicate TRUE = new LocalSourcePredicate_24();
/**
* Instance of [LocalSourcePredicate] that returns `true` for all [Source]s
* except of SDK.
*/
- static final LocalSourcePredicate NOT_SDK = new LocalSourcePredicate_22();
+ static final LocalSourcePredicate NOT_SDK = new LocalSourcePredicate_25();
/**
* Determines if the given [Source] is local.
@@ -41,15 +41,15 @@ abstract class LocalSourcePredicate {
bool isLocal(Source source);
}
-class LocalSourcePredicate_20 implements LocalSourcePredicate {
+class LocalSourcePredicate_23 implements LocalSourcePredicate {
bool isLocal(Source source) => false;
}
-class LocalSourcePredicate_21 implements LocalSourcePredicate {
+class LocalSourcePredicate_24 implements LocalSourcePredicate {
bool isLocal(Source source) => true;
}
-class LocalSourcePredicate_22 implements LocalSourcePredicate {
+class LocalSourcePredicate_25 implements LocalSourcePredicate {
bool isLocal(Source source) => source.uriKind != UriKind.DART_URI;
}

Powered by Google App Engine
This is Rietveld 408576698