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

Unified Diff: tools/patch_sdk.dart

Issue 3004153002: Fixed analyzer test to use dart2js not dartium (Closed)
Patch Set: Removed rest of dartium files. Created 3 years, 3 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
Index: tools/patch_sdk.dart
diff --git a/tools/patch_sdk.dart b/tools/patch_sdk.dart
index 0f7b10aed65317312621a5bbded00daff2a50a08..ec5d4ab10a892e10e1a8d47a7cec12f1bc4c9ec0 100644
--- a/tools/patch_sdk.dart
+++ b/tools/patch_sdk.dart
@@ -43,7 +43,8 @@ final deps = new Set<Uri>();
File getInputFile(String path, {canBeMissing: false}) {
final file = new File(path);
if (!file.existsSync()) {
- if (!canBeMissing) throw "patch_sdk.dart expects all inputs to exist";
+ if (!canBeMissing)
+ throw "patch_sdk.dart expects all inputs to exist, missing: $path";
return null;
}
deps.add(Uri.base.resolveUri(file.uri));
« pkg/dev_compiler/tool/input_sdk/libraries.dart ('K') | « tests/lib/analyzer/analyze_library.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698