| Index: test/codegen/expect/constructors.js
|
| diff --git a/test/codegen/expect/constructors.js b/test/codegen/expect/constructors.js
|
| index 2b1df9b0cf0c4029029b412484b2388445c2b727..853a29316f275ce9cd48d960c502ce61ee028a26 100644
|
| --- a/test/codegen/expect/constructors.js
|
| +++ b/test/codegen/expect/constructors.js
|
| @@ -42,8 +42,8 @@ var constructors;
|
| }
|
| }
|
| class H extends core.Object {
|
| - H(opt$) {
|
| - let p1 = opt$ && 'p1' in opt$ ? opt$.p1 : null;
|
| + H(opts) {
|
| + let p1 = opts && 'p1' in opts ? opts.p1 : null;
|
| }
|
| }
|
| class I extends core.Object {
|
|
|