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

Unified Diff: test/codegen_test.dart

Issue 1239803005: fix issues caught by analysis_server (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 5 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/checker/self_host_test.dart ('k') | test/dependency_graph_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen_test.dart
diff --git a/test/codegen_test.dart b/test/codegen_test.dart
index dade175694f53a3c4f9a49f781c26845c9518eec..e72dd09405582e107194fe3d2ba7a00960fbcc7e 100644
--- a/test/codegen_test.dart
+++ b/test/codegen_test.dart
@@ -132,8 +132,8 @@ main(arguments) {
// Get the test SDK. We use a checked in copy so test expectations can
// be generated against a specific SDK version.
var testSdk = path.join(testDirectory, '..', 'tool', 'generated_sdk');
- var result = compile('dart:core', testSdk, checkSdk: true);
- var outputDir = new Directory(path.join(expectDir, 'core'));
+ compile('dart:core', testSdk, checkSdk: true);
+ new Directory(path.join(expectDir, 'core'));
var outFile = new File(path.join(expectDir, 'dart/core.js'));
expect(outFile.existsSync(), true,
reason: '${outFile.path} was created for dart:core');
« no previous file with comments | « test/checker/self_host_test.dart ('k') | test/dependency_graph_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698