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

Unified Diff: sdk/lib/_internal/pub/bin/async_compile.dart

Issue 521643005: Convert more pub code to use async/await. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise! Created 6 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
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/bin/pub.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/bin/async_compile.dart
diff --git a/sdk/lib/_internal/pub/bin/async_compile.dart b/sdk/lib/_internal/pub/bin/async_compile.dart
index a6f27c0fc6795230196037da8f7959ae68ed29cf..c8d56813a7cebb806ec3e0389745c85d1b377a9c 100644
--- a/sdk/lib/_internal/pub/bin/async_compile.dart
+++ b/sdk/lib/_internal/pub/bin/async_compile.dart
@@ -13,7 +13,7 @@ import 'package:path/path.dart' as p;
/// Increment this whenever a meaningful change in the async/await compiler
/// itself is landed. Bumping this will force all previously compiled files
/// that were compiled against an older compiler to be recompiled.
-const COMPILER_VERSION = "1";
+const COMPILER_VERSION = "2";
/// The path to pub's root directory (sdk/lib/_internal/pub) in the Dart repo.
///
@@ -172,4 +172,4 @@ void _writeFile(String path, String contents) {
} on IOException catch (ex) {
// Do nothing.
}
-}
+}
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/bin/pub.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698