| 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 60fe02ce6061efd1b645f64a425358c400dfe7b0..169724fb8bb29bf3df5a724458ae049314c3755c 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_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.
|
| @@ -41,15 +41,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;
|
| }
|
|
|
|
|