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

Side by Side Diff: sdk/lib/_internal/pub/lib/src/exit_codes.dart

Issue 14297021: Move pub into sdk/lib/_internal. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /// Exit code constants. From [the BSD sysexits manpage][manpage]. Not every 5 /// Exit code constants. From [the BSD sysexits manpage][manpage]. Not every
6 /// constant here is used, even though some of the unused ones may be 6 /// constant here is used, even though some of the unused ones may be
7 /// appropriate for errors encountered by pub. 7 /// appropriate for errors encountered by pub.
8 /// 8 ///
9 /// [manpage]: http://www.freebsd.org/cgi/man.cgi?query=sysexits 9 /// [manpage]: http://www.freebsd.org/cgi/man.cgi?query=sysexits
10 library exit_codes; 10 library exit_codes;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 final TEMP_FAIL = 75; 46 final TEMP_FAIL = 75;
47 47
48 /// The remote system returned something invalid during a protocol exchange. 48 /// The remote system returned something invalid during a protocol exchange.
49 final PROTOCOL = 76; 49 final PROTOCOL = 76;
50 50
51 /// The user did not have sufficient permissions. 51 /// The user did not have sufficient permissions.
52 final NO_PERM = 77; 52 final NO_PERM = 77;
53 53
54 /// Something was unconfigured or mis-configured. 54 /// Something was unconfigured or mis-configured.
55 final CONFIG = 78; 55 final CONFIG = 78;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698