| Index: test/codegen/expect/closure.js
|
| diff --git a/test/codegen/expect/closure.js b/test/codegen/expect/closure.js
|
| index f1d937d8dcfb8edd7d4f8dba1f18e979f266d620..9f08422f1b81dd2c63ad170ce5e124042e24161b 100644
|
| --- a/test/codegen/expect/closure.js
|
| +++ b/test/codegen/expect/closure.js
|
| @@ -56,10 +56,8 @@ dart_library.library('closure', null, /* Imports */[
|
| * @param {?=} c
|
| */
|
| optional_params(a, b, c) {
|
| - if (b === void 0)
|
| - b = null;
|
| - if (c === void 0)
|
| - c = null;
|
| + if (b === void 0) b = null;
|
| + if (c === void 0) c = null;
|
| }
|
| /**
|
| * @param {?} a
|
|
|