Everywhere: Hoist the Libraries folder to the top-level

This commit is contained in:
Timothy Flynn 2024-11-09 12:25:08 -05:00 committed by Andreas Kling
commit 93712b24bf
Notes: github-actions[bot] 2024-11-10 11:51:52 +00:00
4547 changed files with 104 additions and 113 deletions

View file

@ -0,0 +1,62 @@
test("normal methods named get and set", () => {
let o = {
get() {
return 5;
},
set() {
return 10;
},
};
expect(o.get()).toBe(5);
expect(o.set()).toBe(10);
});
test("basic get and set", () => {
let o = {
get x() {
return 5;
},
set x(_) {},
};
expect(o.x).toBe(5);
o.x = 10;
expect(o.x).toBe(5);
});
test("get and set with 'this'", () => {
let o = {
get x() {
return this._x + 1;
},
set x(value) {
this._x = value + 1;
},
};
expect(o.x).toBeNaN();
o.x = 10;
expect(o.x).toBe(12);
o.x = 20;
expect(o.x).toBe(22);
});
test("multiple getters", () => {
let o = {
get x() {
return 5;
},
get x() {
return 10;
},
};
expect(o.x).toBe(10);
});
test("setter return value", () => {
o = {
set x(value) {
return 10;
},
};
expect((o.x = 20)).toBe(20);
});