| 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 'java_core.dart'; | 4 import 'java_core.dart'; |
| 5 import 'java_engine.dart'; | 5 import 'java_engine.dart'; |
| 6 import 'source.dart' show ContentCache, Source, UriKind; | 6 import 'source.dart' show ContentCache, Source, UriKind; |
| 7 import 'engine.dart' show AnalysisContext; | 7 import 'engine.dart' show AnalysisContext; |
| 8 /** | 8 /** |
| 9 * Represents a single library in the SDK | 9 * Represents a single library in the SDK |
| 10 */ | 10 */ |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 * Return an array containing the library URI's for the libraries defined in t
his SDK. | 325 * Return an array containing the library URI's for the libraries defined in t
his SDK. |
| 326 * | 326 * |
| 327 * @return the library URI's for the libraries defined in this SDK | 327 * @return the library URI's for the libraries defined in this SDK |
| 328 */ | 328 */ |
| 329 List<String> get uris; | 329 List<String> get uris; |
| 330 | 330 |
| 331 /** | 331 /** |
| 332 * Return the source representing the library with the given `dart:` URI, or `
null` if | 332 * Return the source representing the library with the given `dart:` URI, or `
null` if |
| 333 * the given URI does not denote a library in this SDK. | 333 * the given URI does not denote a library in this SDK. |
| 334 * | 334 * |
| 335 * @param contentCache the content cache used to access the contents of the ma
pped source | |
| 336 * @param dartUri the URI of the library to be returned | 335 * @param dartUri the URI of the library to be returned |
| 337 * @return the source representing the specified library | 336 * @return the source representing the specified library |
| 338 */ | 337 */ |
| 339 Source mapDartUri(ContentCache contentCache, String dartUri); | 338 Source mapDartUri(String dartUri); |
| 340 } | 339 } |
| OLD | NEW |