| Index: pkg/kernel/lib/ast.dart
|
| diff --git a/pkg/kernel/lib/ast.dart b/pkg/kernel/lib/ast.dart
|
| index ef9ad9eb115e11a12a3ce6dfd1abe8a5e2b42370..f08c1c00b37bdb71462e0b4a6f5e1d86a46c24f4 100644
|
| --- a/pkg/kernel/lib/ast.dart
|
| +++ b/pkg/kernel/lib/ast.dart
|
| @@ -1085,17 +1085,17 @@ class Constructor extends Member {
|
| visitChildren(Visitor v) {
|
| visitList(annotations, v);
|
| name?.accept(v);
|
| - function?.accept(v);
|
| visitList(initializers, v);
|
| + function?.accept(v);
|
| }
|
|
|
| transformChildren(Transformer v) {
|
| transformList(annotations, v, this);
|
| + transformList(initializers, v, this);
|
| if (function != null) {
|
| function = function.accept(v);
|
| function?.parent = this;
|
| }
|
| - transformList(initializers, v, this);
|
| }
|
|
|
| DartType get getterType => const BottomType();
|
|
|