mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 17:28:30 +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();
|
|
});
|