| Index: pkg/analyzer/lib/src/generated/constant.dart
|
| diff --git a/pkg/analyzer/lib/src/generated/constant.dart b/pkg/analyzer/lib/src/generated/constant.dart
|
| index 23dec9e39e5d3102509ff25020007ff2c5fa544f..374a1f925ed5c3b2c246797e6aa1965135a5b83a 100644
|
| --- a/pkg/analyzer/lib/src/generated/constant.dart
|
| +++ b/pkg/analyzer/lib/src/generated/constant.dart
|
| @@ -900,10 +900,16 @@ class ConstantValueComputer {
|
| }
|
|
|
| /**
|
| - * [AstCloner] that copies the necessary information from the AST to allow const constructor
|
| - * initializers to be evaluated.
|
| + * A `ConstantValueComputer_InitializerCloner` is an [AstCloner] that copies the
|
| + * necessary information from the AST to allow const constructor initializers to
|
| + * be evaluated.
|
| */
|
| class ConstantValueComputer_InitializerCloner extends AstCloner {
|
| + // TODO(brianwilkerson) Investigate replacing uses of this class with uses of
|
| + // AstCloner and ResolutionCopier.
|
| +
|
| + ConstantValueComputer_InitializerCloner() : super(true);
|
| +
|
| @override
|
| InstanceCreationExpression visitInstanceCreationExpression(InstanceCreationExpression node) {
|
| InstanceCreationExpression expression = super.visitInstanceCreationExpression(node);
|
|
|