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

Unified Diff: test/report_test.dart

Issue 1406983003: Remove the checker and corresponding dead code (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 2 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 | « test/end_to_end_test.dart ('k') | test/testing.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/report_test.dart
diff --git a/test/report_test.dart b/test/report_test.dart
index 6c929ec26f808137659356703dcd130b2e310e7e..9b4ffa26acc1c77838fd3473d9c5fbc7e414be35 100644
--- a/test/report_test.dart
+++ b/test/report_test.dart
@@ -8,7 +8,6 @@ library dev_compiler.test.report_test;
import 'package:test/test.dart';
import 'package:dev_compiler/devc.dart';
-import 'package:dev_compiler/strong_mode.dart' show StrongModeOptions;
import 'package:dev_compiler/src/analysis_context.dart';
import 'package:dev_compiler/src/options.dart';
@@ -38,9 +37,8 @@ void main() {
var provider = createTestResourceProvider(files);
var uriResolver = new TestUriResolver(provider);
var srcOpts = new SourceResolverOptions(useMockSdk: true);
- var context = createAnalysisContextWithSources(
- new StrongModeOptions(), srcOpts,
- fileResolvers: [uriResolver]);
+ var context =
+ createAnalysisContextWithSources(srcOpts, fileResolvers: [uriResolver]);
var reporter = new SummaryReporter(context);
new BatchCompiler(context, new CompilerOptions(sourceOptions: srcOpts),
reporter: reporter).compileFromUriString('/main.dart');
« no previous file with comments | « test/end_to_end_test.dart ('k') | test/testing.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698