| 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 80804cd04803041de91eedd60739540e5f83f364..58bbb66c4eab71db09dd6b804a18aa6c18122766 100644
|
| --- a/pkg/analyzer_experimental/lib/src/generated/utilities_dart.dart
|
| +++ b/pkg/analyzer_experimental/lib/src/generated/utilities_dart.dart
|
| @@ -2,7 +2,7 @@
|
| // significant change. Please see the README file for more information.
|
| library engine.utilities.dart;
|
| /**
|
| - * The enumeration {@code ParameterKind} defines the different kinds of parameters. There are two
|
| + * 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
|
| @@ -26,15 +26,15 @@ class ParameterKind implements Comparable<ParameterKind> {
|
|
|
| /**
|
| * Initialize a newly created kind with the given state.
|
| - * @param isOptional {@code true} if this is an optional parameter
|
| + * @param isOptional `true` if this is an optional parameter
|
| */
|
| ParameterKind(this.name, this.ordinal, bool isOptional) {
|
| this._isOptional2 = isOptional;
|
| }
|
|
|
| /**
|
| - * Return {@code true} if this is an optional parameter.
|
| - * @return {@code true} if this is an optional parameter
|
| + * Return `true` if this is an optional parameter.
|
| + * @return `true` if this is an optional parameter
|
| */
|
| bool isOptional() => _isOptional2;
|
| int compareTo(ParameterKind other) => ordinal - other.ordinal;
|
|
|