OLD | NEW |
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 library fletchc.verbs.options; | 5 library fletchc.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); |
(...skipping 246 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 |