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

Unified Diff: bin/edit_files.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 | « no previous file | lib/devc.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/edit_files.dart
diff --git a/bin/edit_files.dart b/bin/edit_files.dart
index c7344df95e04bbf27fe4e71226bd4a1fdefc9359..e81c254ee1cdc5a6fd8e3f47c3b9462cb123c6e0 100644
--- a/bin/edit_files.dart
+++ b/bin/edit_files.dart
@@ -23,7 +23,6 @@ import 'package:source_span/source_span.dart';
import 'package:dev_compiler/src/analysis_context.dart';
import 'package:dev_compiler/src/options.dart';
import 'package:dev_compiler/src/summary.dart';
-import 'package:dev_compiler/strong_mode.dart';
final ArgParser argParser = new ArgParser()
..addOption('level', help: 'Minimum error level', defaultsTo: "info")
@@ -154,8 +153,7 @@ void main(List<String> argv) {
? new RegExp(args['include-pattern'])
: null;
- var context =
- createAnalysisContextWithSources(new StrongModeOptions(), options);
+ var context = createAnalysisContextWithSources(options);
var visitor = new EditFileSummaryVisitor(
context,
args['level'],
« no previous file with comments | « no previous file | lib/devc.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698