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

Side by Side Diff: pkg/fletchc/lib/src/hub/exit_codes.dart

Issue 1649703002: Update project authors statements to Dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « pkg/fletchc/lib/src/hub/client_commands.dart ('k') | pkg/fletchc/lib/src/hub/hub_main.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dartino 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.md file. 3 // BSD-style license that can be found in the LICENSE.md file.
4 4
5 /// Exit codes recognized by our test infrastructure. This file is shared with 5 /// Exit codes recognized by our test infrastructure. This file is shared with
6 /// our test infrastructure and should be kept simple and only contain 6 /// our test infrastructure and should be kept simple and only contain
7 /// int-valued top-level compile-time constants. 7 /// int-valued top-level compile-time constants.
8 library fletchc.exit_codes; 8 library fletchc.exit_codes;
9 9
10 /// Exit code to use when the compiler crashed. This is recognized by our test 10 /// Exit code to use when the compiler crashed. This is recognized by our test
11 /// runner (test.dart) as status `Crash`. 11 /// runner (test.dart) as status `Crash`.
(...skipping 17 matching lines...) Expand all
29 /// used and incremental compilation failed. 29 /// used and incremental compilation failed.
30 const INCREMENTAL_COMPILER_FAILED = 3; 30 const INCREMENTAL_COMPILER_FAILED = 3;
31 31
32 /// Exit code returned by `compile` verb when `--analyze-only` is used and 32 /// Exit code returned by `compile` verb when `--analyze-only` is used and
33 /// problems (other than errors) were detected. 33 /// problems (other than errors) were detected.
34 const ANALYSIS_HAD_NON_ERROR_PROBLEMS = 2; 34 const ANALYSIS_HAD_NON_ERROR_PROBLEMS = 2;
35 35
36 /// Exit code returned by `compile` verb when `--analyze-only` is used and 36 /// Exit code returned by `compile` verb when `--analyze-only` is used and
37 /// errors were detected. 37 /// errors were detected.
38 const ANALYSIS_HAD_ERRORS = 1; 38 const ANALYSIS_HAD_ERRORS = 1;
OLDNEW
« no previous file with comments | « pkg/fletchc/lib/src/hub/client_commands.dart ('k') | pkg/fletchc/lib/src/hub/hub_main.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698