fix weird path context state by clearing the context before we visit it

This commit is contained in:
Sebastian McKenzie
2015-04-30 17:19:27 +01:00
parent 062175586c
commit 1066a42fb2
6 changed files with 19 additions and 20 deletions

View File

@@ -4,5 +4,6 @@ var i = function () {
var j = function () {
({ j } = 5);
({ y: j } = 5);
;
};

View File

@@ -4,19 +4,11 @@ var _i = function i() {
_i = 5;
};
var j = (function (_j) {
function j() {
return _j.apply(this, arguments);
}
j.toString = function () {
return _j.toString();
};
return j;
})(function () {
var _j = function j() {
var _ = 5;
j = _.j;
_j = _.j;
var _2 = 5;
_j = _2.y;
;
});
};