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

Unified Diff: pkg/kernel/lib/target/flutter.dart

Issue 2912503003: Perform MixinFullResolution only for source libraries. (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
Index: pkg/kernel/lib/target/flutter.dart
diff --git a/pkg/kernel/lib/target/flutter.dart b/pkg/kernel/lib/target/flutter.dart
index 0c311e3b73594ebd71ea0edb166af0443fefc4a8..43ed6b2a802222ecd8e66db7c4e828053994cf2a 100644
--- a/pkg/kernel/lib/target/flutter.dart
+++ b/pkg/kernel/lib/target/flutter.dart
@@ -50,7 +50,7 @@ class FlutterTarget extends Target {
];
void performModularTransformations(Program program) {
- new mix.MixinFullResolution(this).transform(program);
+ mix.transformLibraries(this, program.libraries);
}
void performGlobalTransformations(Program program) {

Powered by Google App Engine
This is Rietveld 408576698