Skip to content

Commit

Permalink
Test case
Browse files Browse the repository at this point in the history
  • Loading branch information
overlookmotel authored and Dunqing committed Sep 18, 2024
1 parent b5d8dc7 commit 23f11ac
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
function outer() {
let f = () => {
{
let t = this;
}
};

let f2 = () => {
if (x) {
if (y) {
return this;
}
}
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
function outer() {
var _this = this;

let f = function() {
{
let t = _this;
}
};

let f2 = function() {
if (x) {
if (y) {
return _this;
}
}
};
}

0 comments on commit 23f11ac

Please sign in to comment.