Skip to content

Commit

Permalink
tests: more cases
Browse files Browse the repository at this point in the history
  • Loading branch information
snitin315 committed Nov 15, 2020
1 parent c353aa4 commit 5330ae1
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
Expand Up @@ -70,4 +70,12 @@ function ten() {
return arguments;
};
}
ten();
ten();

var eleven = () => {
var arguments = 2;
return function () {
return () => arguments;
}
};
eleven()(1,2,3)();
Expand Up @@ -121,3 +121,15 @@ function ten() {
}

ten();

var eleven = function () {
var arguments = 2;
return function () {
var _arguments9 = arguments;
return function () {
return _arguments9;
};
};
};

eleven()(1, 2, 3)();

0 comments on commit 5330ae1

Please sign in to comment.