| Index: pkg/analyzer_experimental/lib/src/generated/sdk.dart
|
| diff --git a/pkg/analyzer_experimental/lib/src/generated/sdk.dart b/pkg/analyzer_experimental/lib/src/generated/sdk.dart
|
| index 9ff871625335238585d3e92a7cfbbce3b9ccc07c..64bc958fc2b5863649e8a92dc8713e5e212d381e 100644
|
| --- a/pkg/analyzer_experimental/lib/src/generated/sdk.dart
|
| +++ b/pkg/analyzer_experimental/lib/src/generated/sdk.dart
|
| @@ -6,7 +6,7 @@ library engine.sdk;
|
| import 'dart:uri';
|
| import 'java_core.dart';
|
| import 'java_engine.dart';
|
| -import 'source.dart' show Source, ContentCache;
|
| +import 'source.dart' show ContentCache, Source, UriKind;
|
| import 'engine.dart' show AnalysisContext;
|
|
|
| /**
|
| @@ -217,6 +217,15 @@ abstract class DartSdk {
|
| */
|
| static String DART_HTML = "dart:html";
|
| /**
|
| + * Return the source representing the file with the given URI.
|
| + * @param contentCache the content cache used to access the contents of the mapped source
|
| + * @param kind the kind of URI that was originally resolved in order to produce an encoding with
|
| + * the given URI
|
| + * @param uri the URI of the file to be returned
|
| + * @return the source representing the specified file
|
| + */
|
| + Source fromEncoding(ContentCache contentCache, UriKind kind, Uri uri);
|
| + /**
|
| * Return the {@link AnalysisContext} used for all of the sources in this {@link DartSdk}.
|
| * @return the {@link AnalysisContext} used for all of the sources in this {@link DartSdk}
|
| */
|
|
|