Chromium Code Reviews| Index: pkg/compiler/lib/src/common/backend_api.dart |
| diff --git a/pkg/compiler/lib/src/common/backend_api.dart b/pkg/compiler/lib/src/common/backend_api.dart |
| index dcf0ec9c05d301eca176288f89b7faf6e3dd0670..dfe86e3c7302df6af9fb71b56308ad44b9298885 100644 |
| --- a/pkg/compiler/lib/src/common/backend_api.dart |
| +++ b/pkg/compiler/lib/src/common/backend_api.dart |
| @@ -313,6 +313,9 @@ abstract class Backend extends Target { |
| /// [WorldImpact] of enabled backend features is returned. |
| WorldImpact onCodegenStart(ClosedWorld closedWorld) => const WorldImpact(); |
| + /// Called when code generation has been completed. |
| + void onCodegenEnd(); |
|
Siggi Cherem (dart-lang)
2016/12/15 19:24:47
; => {}
(most other code in this class just has a
Johnni Winther
2016/12/16 09:17:00
Done.
|
| + |
| // Does this element belong in the output |
| bool shouldOutput(Element element) => true; |