mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:48:11 +00:00
Libraries: Move to Userland/Libraries/
This commit is contained in:
parent
dc28c07fa5
commit
13d7c09125
1857 changed files with 266 additions and 274 deletions
|
@ -0,0 +1,39 @@
|
|||
test("basic functionality", () => {
|
||||
let callHoisted = hoisted();
|
||||
function hoisted() {
|
||||
return "foo";
|
||||
}
|
||||
expect(hoisted()).toBe("foo");
|
||||
expect(callHoisted).toBe("foo");
|
||||
});
|
||||
|
||||
// First two calls produce a ReferenceError, but the declarations should be hoisted
|
||||
test.skip("functions are hoisted across non-lexical scopes", () => {
|
||||
expect(scopedHoisted).toBeUndefined();
|
||||
expect(callScopedHoisted).toBeUndefined();
|
||||
{
|
||||
var callScopedHoisted = scopedHoisted();
|
||||
function scopedHoisted() {
|
||||
return "foo";
|
||||
}
|
||||
expect(scopedHoisted()).toBe("foo");
|
||||
expect(callScopedHoisted).toBe("foo");
|
||||
}
|
||||
expect(scopedHoisted()).toBe("foo");
|
||||
expect(callScopedHoisted).toBe("foo");
|
||||
});
|
||||
|
||||
test("functions are not hoisted across lexical scopes", () => {
|
||||
const test = () => {
|
||||
var iife = (function () {
|
||||
return declaredLater();
|
||||
})();
|
||||
function declaredLater() {
|
||||
return "yay";
|
||||
}
|
||||
return iife;
|
||||
};
|
||||
|
||||
expect(() => declaredLater).toThrow(ReferenceError);
|
||||
expect(test()).toBe("yay");
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue