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

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

Issue 2951723002: Add closure_test for kernel based members (Closed)
Patch Set: Cleanup Created 3 years, 6 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 | « tests/compiler/dart2js/inference/send_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/memory_compiler.dart
diff --git a/tests/compiler/dart2js/memory_compiler.dart b/tests/compiler/dart2js/memory_compiler.dart
index 50eb22a06c383e2961d1f52818d5cd5d0734a3a0..ae3f9cb449f9475dfc6e11d03c75e1e5aae6e9df 100644
--- a/tests/compiler/dart2js/memory_compiler.dart
+++ b/tests/compiler/dart2js/memory_compiler.dart
@@ -49,10 +49,13 @@ CompilerDiagnostics createCompilerDiagnostics(
CompilerDiagnostics handler = diagnostics;
if (showDiagnostics) {
if (diagnostics == null) {
- handler = new FormattingDiagnosticHandler(provider)..verbose = verbose;
+ handler = new FormattingDiagnosticHandler(provider)
+ ..verbose = verbose
+ ..autoReadFileUri = true;
} else {
var formattingHandler = new FormattingDiagnosticHandler(provider)
- ..verbose = verbose;
+ ..verbose = verbose
+ ..autoReadFileUri = true;
handler = new MultiDiagnostics([diagnostics, formattingHandler]);
}
} else if (diagnostics == null) {
« no previous file with comments | « tests/compiler/dart2js/inference/send_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698