| OLD | NEW |
| (Empty) | |
| 1 // This code was auto-generated, is not intended to be edited, and is subject to |
| 2 // significant change. Please see the README file for more information. |
| 3 |
| 4 library engine.utilities.dart; |
| 5 |
| 6 |
| 7 /** |
| 8 * The enumeration {@code ParameterKind} defines the different kinds of paramete
rs. There are two |
| 9 * basic kinds of parameters: required and optional. Optional parameters are fur
ther divided into |
| 10 * two kinds: positional optional and named optional. |
| 11 */ |
| 12 class ParameterKind { |
| 13 static final ParameterKind REQUIRED = new ParameterKind('REQUIRED', 0, false); |
| 14 static final ParameterKind POSITIONAL = new ParameterKind('POSITIONAL', 1, tru
e); |
| 15 static final ParameterKind NAMED = new ParameterKind('NAMED', 2, true); |
| 16 static final List<ParameterKind> values = [REQUIRED, POSITIONAL, NAMED]; |
| 17 final String __name; |
| 18 final int __ordinal; |
| 19 /** |
| 20 * A flag indicating whether this is an optional parameter. |
| 21 */ |
| 22 bool _isOptional2 = false; |
| 23 /** |
| 24 * Initialize a newly created kind with the given state. |
| 25 * @param isOptional {@code true} if this is an optional parameter |
| 26 */ |
| 27 ParameterKind(this.__name, this.__ordinal, bool isOptional) { |
| 28 this._isOptional2 = isOptional; |
| 29 } |
| 30 /** |
| 31 * Return {@code true} if this is an optional parameter. |
| 32 * @return {@code true} if this is an optional parameter |
| 33 */ |
| 34 bool isOptional() => _isOptional2; |
| 35 String toString() => __name; |
| 36 } |
| OLD | NEW |