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

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

Issue 348673002: New analyzer snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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/resolver.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 3022961a5440724cb999d338fd3079fd1b459c1f..e01f15fd9c37ab2971dba8ed41611ac5a6346a43 100644
--- a/pkg/analyzer/lib/src/generated/source.dart
+++ b/pkg/analyzer/lib/src/generated/source.dart
@@ -788,16 +788,11 @@ class UriKind extends Enum<UriKind> {
static const UriKind FILE_URI = const UriKind('FILE_URI', 1, 0x66);
/**
- * A 'package:' URI referencing source package itself.
- */
- static const UriKind PACKAGE_SELF_URI = const UriKind('PACKAGE_SELF_URI', 2, 0x73);
-
- /**
* A 'package:' URI.
*/
- static const UriKind PACKAGE_URI = const UriKind('PACKAGE_URI', 3, 0x70);
+ static const UriKind PACKAGE_URI = const UriKind('PACKAGE_URI', 2, 0x70);
- static const List<UriKind> values = const [DART_URI, FILE_URI, PACKAGE_SELF_URI, PACKAGE_URI];
+ static const List<UriKind> values = const [DART_URI, FILE_URI, PACKAGE_URI];
/**
* Return the URI kind represented by the given encoding, or `null` if there is no kind with
@@ -812,8 +807,6 @@ class UriKind extends Enum<UriKind> {
return DART_URI;
} else if (encoding == 0x66) {
return FILE_URI;
- } else if (encoding == 0x73) {
- return PACKAGE_SELF_URI;
} else if (encoding == 0x70) {
return PACKAGE_URI;
}
« no previous file with comments | « pkg/analyzer/lib/src/generated/resolver.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