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

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

Issue 2894583005: Unsort methods from CL 2872903005. (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 e714c5327c31a970c925897efdf5af281fce905b..1401159e716b61736dc18e894ce6b8a9640c56c1 100644
--- a/pkg/front_end/lib/src/fasta/dill/dill_loader.dart
+++ b/pkg/front_end/lib/src/fasta/dill/dill_loader.dart
@@ -34,9 +34,7 @@ class DillLoader extends Loader<Library> {
return builders;
}
- Future<Null> buildBody(DillLibraryBuilder builder) {
- return buildOutline(builder);
- }
+ DillLibraryBuilder read(Uri uri, [Uri fileUri]) => super.read(uri, fileUri);
Future<Null> buildOutline(DillLibraryBuilder builder) async {
builder.library.classes.forEach(builder.addClass);
@@ -45,5 +43,7 @@ class DillLoader extends Loader<Library> {
builder.library.fields.forEach(builder.addMember);
}
- DillLibraryBuilder read(Uri uri, [Uri fileUri]) => super.read(uri, fileUri);
+ Future<Null> buildBody(DillLibraryBuilder builder) {
+ return buildOutline(builder);
+ }
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698