OLD | NEW |
1 // This code was auto-generated, is not intended to be edited, and is subject to | 1 // This code was auto-generated, is not intended to be edited, and is subject to |
2 // significant change. Please see the README file for more information. | 2 // significant change. Please see the README file for more information. |
3 | 3 |
4 library engine.sdk; | 4 library engine.sdk; |
5 | 5 |
6 import 'dart:uri'; | |
7 import 'java_core.dart'; | 6 import 'java_core.dart'; |
8 import 'java_engine.dart'; | 7 import 'java_engine.dart'; |
9 import 'source.dart' show ContentCache, Source, UriKind; | 8 import 'source.dart' show ContentCache, Source, UriKind; |
10 import 'engine.dart' show AnalysisContext; | 9 import 'engine.dart' show AnalysisContext; |
11 | 10 |
12 /** | 11 /** |
13 * Represents a single library in the SDK | 12 * Represents a single library in the SDK |
14 */ | 13 */ |
15 abstract class SdkLibrary { | 14 abstract class SdkLibrary { |
16 /** | 15 /** |
(...skipping 231 matching lines...) Loading... |
248 List<String> get uris; | 247 List<String> get uris; |
249 /** | 248 /** |
250 * Return the source representing the library with the given {@code dart:} URI
, or {@code null} if | 249 * Return the source representing the library with the given {@code dart:} URI
, or {@code null} if |
251 * the given URI does not denote a library in this SDK. | 250 * the given URI does not denote a library in this SDK. |
252 * @param contentCache the content cache used to access the contents of the ma
pped source | 251 * @param contentCache the content cache used to access the contents of the ma
pped source |
253 * @param dartUri the URI of the library to be returned | 252 * @param dartUri the URI of the library to be returned |
254 * @return the source representing the specified library | 253 * @return the source representing the specified library |
255 */ | 254 */ |
256 Source mapDartUri(ContentCache contentCache, String dartUri); | 255 Source mapDartUri(ContentCache contentCache, String dartUri); |
257 } | 256 } |
OLD | NEW |