Newer
Older
minerva / Userland / Libraries / LibJS / Tests / async-this-value.js
@minerva minerva on 13 Jul 172 bytes Initial commit
test("this value in async function", () => {
    function X() {
        this.boog = async () => {
            this.f = await null;
        };
    }
    new X().boog();
});