mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 00:19:53 +01: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();
|
|
});
|