1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 10:01:13 +09:00
ladybird/Libraries/LibJS/Tests/async-this-value.js

8 lines
172 B
JavaScript

test("this value in async function", () => {
function X() {
this.boog = async () => {
this.f = await null;
};
}
new X().boog();
});