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

Unified Diff: pkg/front_end/lib/src/fasta/dill/dill_loader.dart

Issue 2898183002: Prepare for development branch by updating externally-used API. (Closed)
Patch Set: Minor tweaks found during testing. Created 3 years, 7 months 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 side-by-side diff with in-line comments
Download patch
Index: pkg/front_end/lib/src/fasta/dill/dill_loader.dart
diff --git a/pkg/front_end/lib/src/fasta/dill/dill_loader.dart b/pkg/front_end/lib/src/fasta/dill/dill_loader.dart
index 1401159e716b61736dc18e894ce6b8a9640c56c1..b8537da9d2caddddad36a36cc7d434ac0bbf364a 100644
--- a/pkg/front_end/lib/src/fasta/dill/dill_loader.dart
+++ b/pkg/front_end/lib/src/fasta/dill/dill_loader.dart
@@ -26,7 +26,7 @@ class DillLoader extends Loader<Library> {
for (Library library in program.libraries) {
if (filter == null || filter(library.importUri)) {
libraries.add(library);
- DillLibraryBuilder builder = read(library.importUri);
+ DillLibraryBuilder builder = read(library.importUri, -1);
builder.library = library;
builders.add(builder);
}
@@ -34,8 +34,6 @@ class DillLoader extends Loader<Library> {
return builders;
}
- DillLibraryBuilder read(Uri uri, [Uri fileUri]) => super.read(uri, fileUri);
-
Future<Null> buildOutline(DillLibraryBuilder builder) async {
builder.library.classes.forEach(builder.addClass);
builder.library.procedures.forEach(builder.addMember);
« no previous file with comments | « pkg/compiler/lib/src/kernel/fasta_support.dart ('k') | pkg/front_end/lib/src/fasta/kernel/body_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698