Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(481)

Side by Side Diff: pkg/analyzer/lib/src/generated/source_io.dart

Issue 45573002: Rename analyzer_experimental to analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Tweaks before publishing. Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/generated/source.dart ('k') | pkg/analyzer/lib/src/generated/utilities_collection.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698