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

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

Issue 123763002: New analyzer snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 12 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/sdk_io.dart ('k') | pkg/analyzer/lib/src/generated/source_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/source.dart
diff --git a/pkg/analyzer/lib/src/generated/source.dart b/pkg/analyzer/lib/src/generated/source.dart
index 1a812c6fef2fb3ee3df41e6393425b814f2bbaa6..6c0765d777d1480b11cba22c3abebb157592c22f 100644
--- a/pkg/analyzer/lib/src/generated/source.dart
+++ b/pkg/analyzer/lib/src/generated/source.dart
@@ -17,18 +17,18 @@ abstract class LocalSourcePredicate {
/**
* Instance of [LocalSourcePredicate] that always returns `false`.
*/
- static final LocalSourcePredicate FALSE = new LocalSourcePredicate_15();
+ static final LocalSourcePredicate FALSE = new LocalSourcePredicate_16();
/**
* Instance of [LocalSourcePredicate] that always returns `true`.
*/
- static final LocalSourcePredicate TRUE = new LocalSourcePredicate_16();
+ static final LocalSourcePredicate TRUE = new LocalSourcePredicate_17();
/**
* Instance of [LocalSourcePredicate] that returns `true` for all [Source]s
* except of SDK.
*/
- static final LocalSourcePredicate NOT_SDK = new LocalSourcePredicate_17();
+ static final LocalSourcePredicate NOT_SDK = new LocalSourcePredicate_18();
/**
* Determines if the given [Source] is local.
@@ -39,15 +39,15 @@ abstract class LocalSourcePredicate {
bool isLocal(Source source);
}
-class LocalSourcePredicate_15 implements LocalSourcePredicate {
+class LocalSourcePredicate_16 implements LocalSourcePredicate {
bool isLocal(Source source) => false;
}
-class LocalSourcePredicate_16 implements LocalSourcePredicate {
+class LocalSourcePredicate_17 implements LocalSourcePredicate {
bool isLocal(Source source) => true;
}
-class LocalSourcePredicate_17 implements LocalSourcePredicate {
+class LocalSourcePredicate_18 implements LocalSourcePredicate {
bool isLocal(Source source) => source.uriKind != UriKind.DART_URI;
}
« no previous file with comments | « pkg/analyzer/lib/src/generated/sdk_io.dart ('k') | pkg/analyzer/lib/src/generated/source_io.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698