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

Unified Diff: test/dependency_graph_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/codegen_test.dart ('k') | test/end_to_end_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/dependency_graph_test.dart
diff --git a/test/dependency_graph_test.dart b/test/dependency_graph_test.dart
index 6b9a36da7090f527748ee5146a6ea42039a318d8..ecc091845291c933f4ae6de642b3056375a67c3c 100644
--- a/test/dependency_graph_test.dart
+++ b/test/dependency_graph_test.dart
@@ -65,8 +65,7 @@ void main() {
/// tests (since some tests modify the state of the files).
testResourceProvider = createTestResourceProvider(testFiles);
testUriResolver = new ResourceUriResolver(testResourceProvider);
- context = createAnalysisContextWithSources(
- options.strongOptions, options.sourceOptions,
+ context = createAnalysisContextWithSources(options.sourceOptions,
fileResolvers: [testUriResolver]);
graph = new SourceGraph(context, new LogReporter(context), options);
});
@@ -685,8 +684,7 @@ void main() {
runtimeDir: '/dev_compiler_runtime/',
sourceOptions: new SourceResolverOptions(useMockSdk: true),
serverMode: true);
- context = createAnalysisContextWithSources(
- opts.strongOptions, opts.sourceOptions,
+ context = createAnalysisContextWithSources(opts.sourceOptions,
fileResolvers: [testUriResolver]);
graph = new SourceGraph(context, new LogReporter(context), opts);
});
@@ -1165,8 +1163,7 @@ void main() {
group('null for non-existing files', () {
setUp(() {
- context = createAnalysisContextWithSources(
- options.strongOptions, options.sourceOptions,
+ context = createAnalysisContextWithSources(options.sourceOptions,
fileResolvers: [testUriResolver]);
graph = new SourceGraph(context, new LogReporter(context), options);
});
« no previous file with comments | « test/codegen_test.dart ('k') | test/end_to_end_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698