mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
8 lines
172 B
JavaScript
8 lines
172 B
JavaScript
test("this value in async function", () => {
|
|
function X() {
|
|
this.boog = async () => {
|
|
this.f = await null;
|
|
};
|
|
}
|
|
new X().boog();
|
|
});
|