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.source.io; | 3 library engine.source.io; |
4 import 'source.dart'; | 4 import 'source.dart'; |
5 import 'java_core.dart'; | 5 import 'java_core.dart'; |
6 import 'java_io.dart'; | 6 import 'java_io.dart'; |
7 import 'engine.dart' show AnalysisContext, AnalysisEngine; | 7 import 'engine.dart' show AnalysisContext, AnalysisEngine; |
8 export 'source.dart'; | 8 export 'source.dart'; |
9 /** | 9 /** |
10 * Instances of the class `FileBasedSource` implement a source that represents a
file. | 10 * Instances of the class `FileBasedSource` implement a source that represents a
file. |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 } | 345 } |
346 return null; | 346 return null; |
347 } | 347 } |
348 Source resolveAbsolute(ContentCache contentCache, Uri uri) { | 348 Source resolveAbsolute(ContentCache contentCache, Uri uri) { |
349 if (!isFileUri(uri)) { | 349 if (!isFileUri(uri)) { |
350 return null; | 350 return null; |
351 } | 351 } |
352 return new FileBasedSource.con1(contentCache, new JavaFile.fromUri(uri)); | 352 return new FileBasedSource.con1(contentCache, new JavaFile.fromUri(uri)); |
353 } | 353 } |
354 } | 354 } |
OLD | NEW |