mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-29 20:30:58 +00:00
9 lines
172 B
JavaScript
9 lines
172 B
JavaScript
|
|
test("this value in async function", () => {
|
||
|
|
function X() {
|
||
|
|
this.boog = async () => {
|
||
|
|
this.f = await null;
|
||
|
|
};
|
||
|
|
}
|
||
|
|
new X().boog();
|
||
|
|
});
|