| Index: test/codegen/expect/temps.js
|
| diff --git a/test/codegen/expect/temps.js b/test/codegen/expect/temps.js
|
| index c873da0999dd97d184d1a9cf1d90966b2f2e6a36..69e30e7d438900b9933f4c2a036d3d6096cdeb8c 100644
|
| --- a/test/codegen/expect/temps.js
|
| +++ b/test/codegen/expect/temps.js
|
| @@ -1,5 +1,5 @@
|
| -var temps;
|
| -(function(exports) {
|
| +var temps, core;
|
| +(function(exports, core) {
|
| 'use strict';
|
| let _x = Symbol('_x');
|
| let __x = Symbol('__x');
|
| @@ -34,4 +34,4 @@ var temps;
|
| exports.FormalCollision = FormalCollision;
|
| exports.OptionalArg = OptionalArg;
|
| exports.main = main;
|
| -})(temps || (temps = {}));
|
| +})(temps || (temps = {}), core);
|
|
|