Merge branch 'master' into harmony-v2.8.11

This commit is contained in:
alexlamsl
2017-03-10 11:17:49 +08:00
8 changed files with 239 additions and 34 deletions

View File

@@ -842,3 +842,33 @@ assign_chain: {
}
}
}
issue_1583: {
options = {
keep_fargs: true,
reduce_vars: true,
unused: true,
}
input: {
function m(t) {
(function(e) {
t = e();
})(function() {
return (function(a) {
return a;
})(function(a) {});
});
}
}
expect: {
function m(t) {
(function(e) {
t = (function() {
return (function(a) {
return a;
})(function(a) {});
})();
})();
}
}
}