| OLD | NEW |
| 1 // This code was auto-generated, is not intended to be edited, and is subject to | 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. | 2 // significant change. Please see the README file for more information. |
| 3 | 3 |
| 4 library engine.utilities.dart; | 4 library engine.utilities.dart; |
| 5 | 5 |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * The enumeration {@code ParameterKind} defines the different kinds of paramete
rs. There are two | 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 | 9 * basic kinds of parameters: required and optional. Optional parameters are fur
ther divided into |
| 10 * two kinds: positional optional and named optional. | 10 * two kinds: positional optional and named optional. |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 ParameterKind(this.__name, this.__ordinal, bool isOptional) { | 29 ParameterKind(this.__name, this.__ordinal, bool isOptional) { |
| 30 this._isOptional2 = isOptional; | 30 this._isOptional2 = isOptional; |
| 31 } | 31 } |
| 32 /** | 32 /** |
| 33 * Return {@code true} if this is an optional parameter. | 33 * Return {@code true} if this is an optional parameter. |
| 34 * @return {@code true} if this is an optional parameter | 34 * @return {@code true} if this is an optional parameter |
| 35 */ | 35 */ |
| 36 bool isOptional() => _isOptional2; | 36 bool isOptional() => _isOptional2; |
| 37 String toString() => __name; | 37 String toString() => __name; |
| 38 } | 38 } |
| OLD | NEW |