| Index: pkg/analyzer/lib/src/summary/idl.dart
|
| diff --git a/pkg/analyzer/lib/src/summary/idl.dart b/pkg/analyzer/lib/src/summary/idl.dart
|
| index 4b53d95f226dd0030720ce2fcf79bf4e320c7eff..9259d99a54f2cb7c9aad08456439284b8c68c674 100644
|
| --- a/pkg/analyzer/lib/src/summary/idl.dart
|
| +++ b/pkg/analyzer/lib/src/summary/idl.dart
|
| @@ -1033,12 +1033,6 @@ abstract class UnlinkedConst extends base.SummaryClass {
|
| bool get isValidConst;
|
|
|
| /**
|
| - * If the expression is a [NamedExpression], the name of the expression.
|
| - */
|
| - @Id(7)
|
| - String get name;
|
| -
|
| - /**
|
| * Sequence of operations to execute (starting with an empty stack) to form
|
| * the constant value.
|
| */
|
| @@ -1473,6 +1467,14 @@ abstract class UnlinkedConstructorInitializer extends base.SummaryClass {
|
| List<UnlinkedConst> get arguments;
|
|
|
| /**
|
| + * If there are `m` [arguments] and `n` [argumentNames], then each argument
|
| + * from [arguments] with index `i` such that `n + i - m >= 0`, should be used
|
| + * with the name at `n + i - m`.
|
| + */
|
| + @Id(4)
|
| + List<String> get argumentNames;
|
| +
|
| + /**
|
| * If [kind] is `field`, the expression of the field initializer.
|
| * Otherwise `null`.
|
| */
|
|
|