| Index: lib/compiler/implementation/closure.dart
|
| ===================================================================
|
| --- lib/compiler/implementation/closure.dart (revision 14319)
|
| +++ lib/compiler/implementation/closure.dart (working copy)
|
| @@ -613,6 +613,7 @@
|
| // TODO(floitsch): we avoid visiting the initializers on purpose so that
|
| // we get an error-message later in the builder.
|
| if (node.parameters != null) node.parameters.accept(this);
|
| + if (node.initializers != null) node.initializers.accept(this);
|
| if (node.body != null) node.body.accept(this);
|
| });
|
| }
|
|
|