mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 00:25:12 +00:00
Libraries: Move to Userland/Libraries/
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
test("basic update expression", () => {
|
||||
const o = {};
|
||||
o.f = 1;
|
||||
|
||||
expect(o.f++).toBe(1);
|
||||
expect(++o.f).toBe(3);
|
||||
expect(++o.missing).toBeNaN();
|
||||
});
|
||||
Reference in New Issue
Block a user