mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +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();
|
||
|
});
|