| Index: dart/frog/leg/tree/nodes.dart
|
| diff --git a/dart/frog/leg/tree/nodes.dart b/dart/frog/leg/tree/nodes.dart
|
| index c8bba1500a58b7bc29dfc2819b79bccfbfc35a01..79a7929d49201dae9d5e9a9e9a96eea6010e4844 100644
|
| --- a/dart/frog/leg/tree/nodes.dart
|
| +++ b/dart/frog/leg/tree/nodes.dart
|
| @@ -552,10 +552,12 @@ class FunctionExpression extends Expression {
|
| accept(Visitor visitor) => visitor.visitFunctionExpression(this);
|
|
|
| visitChildren(Visitor visitor) {
|
| + if (modifiers !== null) modifiers.accept(visitor);
|
| + if (returnType !== null) returnType.accept(visitor);
|
| if (name !== null) name.accept(visitor);
|
| if (parameters !== null) parameters.accept(visitor);
|
| + if (initializers !== null) initializers.accept(visitor);
|
| if (body !== null) body.accept(visitor);
|
| - if (returnType !== null) returnType.accept(visitor);
|
| }
|
|
|
| bool hasBody() {
|
|
|