| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 library args.src.arg_results; | 5 library args.src.arg_results; |
| 6 | 6 |
| 7 import 'dart:collection'; | 7 import 'dart:collection'; |
| 8 | 8 |
| 9 import 'arg_parser.dart'; | 9 import 'arg_parser.dart'; |
| 10 | 10 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 /// value would be used instead. | 87 /// value would be used instead. |
| 88 bool wasParsed(String name) { | 88 bool wasParsed(String name) { |
| 89 var option = _parser.options[name]; | 89 var option = _parser.options[name]; |
| 90 if (option == null) { | 90 if (option == null) { |
| 91 throw new ArgumentError('Could not find an option named "$name".'); | 91 throw new ArgumentError('Could not find an option named "$name".'); |
| 92 } | 92 } |
| 93 | 93 |
| 94 return _parsed.containsKey(name); | 94 return _parsed.containsKey(name); |
| 95 } | 95 } |
| 96 } | 96 } |
| OLD | NEW |