| 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 library engine.sdk; | 3 library engine.sdk; |
| 4 import 'source.dart' show ContentCache, Source, UriKind; | 4 import 'source.dart' show ContentCache, Source, UriKind; |
| 5 import 'engine.dart' show AnalysisContext; | 5 import 'engine.dart' show AnalysisContext; |
| 6 /** | 6 /** |
| 7 * Represents a single library in the SDK | 7 * Represents a single library in the SDK |
| 8 */ | 8 */ |
| 9 abstract class SdkLibrary { | 9 abstract class SdkLibrary { |
| 10 | 10 |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 | 328 |
| 329 /** | 329 /** |
| 330 * Return the source representing the library with the given `dart:` URI, or `
null` if | 330 * Return the source representing the library with the given `dart:` URI, or `
null` if |
| 331 * the given URI does not denote a library in this SDK. | 331 * the given URI does not denote a library in this SDK. |
| 332 * | 332 * |
| 333 * @param dartUri the URI of the library to be returned | 333 * @param dartUri the URI of the library to be returned |
| 334 * @return the source representing the specified library | 334 * @return the source representing the specified library |
| 335 */ | 335 */ |
| 336 Source mapDartUri(String dartUri); | 336 Source mapDartUri(String dartUri); |
| 337 } | 337 } |
| OLD | NEW |