| Index: tests/compiler/dart2js/exit_code_test.dart
|
| diff --git a/tests/compiler/dart2js/exit_code_test.dart b/tests/compiler/dart2js/exit_code_test.dart
|
| index 3199c455c15479bc47811e0561f57cf5e47a5202..82473cb81cc03eb25c989dac6304402984196cba 100644
|
| --- a/tests/compiler/dart2js/exit_code_test.dart
|
| +++ b/tests/compiler/dart2js/exit_code_test.dart
|
| @@ -59,14 +59,14 @@ class TestCompiler extends apiimpl.Compiler {
|
| return super.onLibrariesLoaded(loadedLibraries);
|
| }
|
|
|
| - void analyzeElement(Element element) {
|
| + WorldImpact analyzeElement(Element element) {
|
| test('Compiler.analyzeElement');
|
| - super.analyzeElement(element);
|
| + return super.analyzeElement(element);
|
| }
|
|
|
| - void codegen(CodegenWorkItem work, CodegenEnqueuer world) {
|
| + WorldImpact codegen(CodegenWorkItem work, CodegenEnqueuer world) {
|
| test('Compiler.codegen');
|
| - super.codegen(work, world);
|
| + return super.codegen(work, world);
|
| }
|
|
|
| withCurrentElement(Element element, f()) {
|
|
|