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 library engine.utilities.dart; | 3 library engine.utilities.dart; |
4 import 'java_core.dart'; | 4 import 'java_core.dart'; |
5 /** | 5 /** |
6 * The enumeration `ParameterKind` defines the different kinds of parameters. Th
ere are two | 6 * The enumeration `ParameterKind` defines the different kinds of parameters. Th
ere are two |
7 * basic kinds of parameters: required and optional. Optional parameters are fur
ther divided into | 7 * basic kinds of parameters: required and optional. Optional parameters are fur
ther divided into |
8 * two kinds: positional optional and named optional. | 8 * two kinds: positional optional and named optional. |
9 * | 9 * |
10 * @coverage dart.engine.utilities | 10 * @coverage dart.engine.utilities |
(...skipping 11 matching lines...) Expand all Loading... |
22 | 22 |
23 /** | 23 /** |
24 * Initialize a newly created kind with the given state. | 24 * Initialize a newly created kind with the given state. |
25 * | 25 * |
26 * @param isOptional `true` if this is an optional parameter | 26 * @param isOptional `true` if this is an optional parameter |
27 */ | 27 */ |
28 ParameterKind(String name, int ordinal, bool isOptional) : super(name, ordinal
) { | 28 ParameterKind(String name, int ordinal, bool isOptional) : super(name, ordinal
) { |
29 this.isOptional = isOptional; | 29 this.isOptional = isOptional; |
30 } | 30 } |
31 } | 31 } |
OLD | NEW |