| Index: lib/src/codegen/js_metalet.dart
|
| diff --git a/lib/src/codegen/js_metalet.dart b/lib/src/codegen/js_metalet.dart
|
| index 1fbf392e96cf0d8f1f4c5925eb593e95fb8e8b24..daf7215d070df4ec632689f84e0f062ad3755832 100644
|
| --- a/lib/src/codegen/js_metalet.dart
|
| +++ b/lib/src/codegen/js_metalet.dart
|
| @@ -132,8 +132,10 @@ class MetaLet extends Expression {
|
| vars.add(new VariableInitialization(params[i], values[i]));
|
| }
|
|
|
| - return new Block(
|
| - [new VariableDeclarationList('let', vars).toStatement(), block]);
|
| + return new Block(<Statement>[
|
| + new VariableDeclarationList('let', vars).toStatement(),
|
| + block
|
| + ]);
|
| }
|
|
|
| Node _build(List<TemporaryId> params, List<Expression> values, Node node) {
|
|
|