update couple tests to reflect new statement explosion

This commit is contained in:
Sebastian McKenzie
2015-03-22 04:08:55 +11:00
parent c9974a42ea
commit 3c8f3cb521
2 changed files with 6 additions and 8 deletions

View File

@@ -2,3 +2,5 @@
foo.foo = 1;
foo.bar = 2;
;

View File

@@ -1,11 +1,7 @@
"use strict";
var obj = (function () {
var _obj = {};
var _obj;
_obj[foobar] = function () {
return "foobar";
};
return _obj;
})();
var obj = (_obj = {}, _obj[foobar] = function () {
return "foobar";
}, _obj);