1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:28:12 +00:00

LibJS: Support o.f++ :^)

This patch teaches UpdateExpression how to use a Reference. Some other
changes were necessary to keep tests working:
A Reference can now also refer to a local or global variable. This is
not fully aligned with the spec since we don't have a Record concept.
This commit is contained in:
Andreas Kling 2020-04-28 14:44:48 +02:00
parent ee0bf55127
commit 24cce3674b
5 changed files with 101 additions and 12 deletions

View file

@ -0,0 +1,14 @@
load("test-common.js");
try {
var o = {};
o.f = 1;
assert(o.f++ === 1);
assert(++o.f === 3);
assert(isNaN(++o.missing));
console.log("PASS");
} catch (e) {
console.log("FAIL: " + e);
}