| Index: pkg/analyzer_experimental/lib/src/generated/utilities_dart.dart
|
| diff --git a/pkg/analyzer_experimental/lib/src/generated/utilities_dart.dart b/pkg/analyzer_experimental/lib/src/generated/utilities_dart.dart
|
| index 0a331cbc5ea503c9243bbc226b6f24f382373012..714c4ceba4047d3618b2c59eb449456085fc5b97 100644
|
| --- a/pkg/analyzer_experimental/lib/src/generated/utilities_dart.dart
|
| +++ b/pkg/analyzer_experimental/lib/src/generated/utilities_dart.dart
|
| @@ -5,6 +5,7 @@ library engine.utilities.dart;
|
| * The enumeration `ParameterKind` defines the different kinds of parameters. There are two
|
| * basic kinds of parameters: required and optional. Optional parameters are further divided into
|
| * two kinds: positional optional and named optional.
|
| + *
|
| * @coverage dart.engine.utilities
|
| */
|
| class ParameterKind implements Comparable<ParameterKind> {
|
| @@ -26,6 +27,7 @@ class ParameterKind implements Comparable<ParameterKind> {
|
|
|
| /**
|
| * Initialize a newly created kind with the given state.
|
| + *
|
| * @param isOptional `true` if this is an optional parameter
|
| */
|
| ParameterKind(this.name, this.ordinal, bool isOptional) {
|
| @@ -34,6 +36,7 @@ class ParameterKind implements Comparable<ParameterKind> {
|
|
|
| /**
|
| * Return `true` if this is an optional parameter.
|
| + *
|
| * @return `true` if this is an optional parameter
|
| */
|
| bool get isOptional => _isOptional2;
|
|
|