OLD | NEW |
1 // Copyright (c) 2015, the Dartino 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 library fletchc.verbs.options; | 5 library dartino_compiler.verbs.options; |
6 | 6 |
7 import '../diagnostic.dart' show | 7 import '../diagnostic.dart' show |
8 DiagnosticKind, | 8 DiagnosticKind, |
9 throwFatalError; | 9 throwFatalError; |
10 | 10 |
11 typedef R ArgumentParser<R>(String argument); | 11 typedef R ArgumentParser<R>(String argument); |
12 | 12 |
13 enum OptionKind { | 13 enum OptionKind { |
14 help, | 14 help, |
15 verbose, | 15 verbose, |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 break; | 258 break; |
259 } | 259 } |
260 } | 260 } |
261 | 261 |
262 return new Options( | 262 return new Options( |
263 help, verbose, version, testDebuggerCommands, defines, | 263 help, verbose, version, testDebuggerCommands, defines, |
264 nonOptionArguments, analyzeOnly, fatalIncrementalFailures, | 264 nonOptionArguments, analyzeOnly, fatalIncrementalFailures, |
265 terminateDebugger); | 265 terminateDebugger); |
266 } | 266 } |
267 } | 267 } |
OLD | NEW |