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

Side by Side Diff: sdk/lib/_internal/pub_generated/lib/src/command/version.dart

Issue 557563002: Store the async-await compiled pub code directly in the repo. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 library pub.command.version; 1 library pub.command.version;
6
7 import 'dart:async'; 2 import 'dart:async';
8
9 import '../command.dart'; 3 import '../command.dart';
10 import '../log.dart' as log; 4 import '../log.dart' as log;
11 import '../sdk.dart' as sdk; 5 import '../sdk.dart' as sdk;
12
13 /// Handles the `version` pub command.
14 class VersionCommand extends PubCommand { 6 class VersionCommand extends PubCommand {
15 String get description => "Print pub version."; 7 String get description => "Print pub version.";
16 String get usage => "pub version"; 8 String get usage => "pub version";
17
18 Future onRun() { 9 Future onRun() {
19 log.message("Pub ${sdk.version}"); 10 log.message("Pub ${sdk.version}");
20 return null; 11 return null;
21 } 12 }
22 } 13 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698