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

Unified Diff: tests/compiler/dart2js/exit_code_test.dart

Issue 1146813009: Introduce WorldImpact (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Rebased Created 5 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 | « pkg/compiler/lib/src/types/type_mask.dart ('k') | tests/compiler/dart2js/type_checker_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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()) {
« no previous file with comments | « pkg/compiler/lib/src/types/type_mask.dart ('k') | tests/compiler/dart2js/type_checker_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698