mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 12:20:00 +01:00
Previously, the given test would create an object with the test
property that pointed to itself.
This is because `temp = temp.test || {}` overwrote the `temp` local
register, and `temp.test = temp` used the new object instead of the
original one it fetched.
Allows https://www.yorkshiretea.co.uk/ to load, which was failing in
Gsap library initialization.
34 lines
719 B
JavaScript
34 lines
719 B
JavaScript
test("Assignment should always evaluate LHS first", () => {
|
|
function go(a) {
|
|
let i = 0;
|
|
a[i] = a[++i];
|
|
}
|
|
|
|
let a = [1, 2, 3];
|
|
go(a);
|
|
expect(a).toEqual([2, 2, 3]);
|
|
});
|
|
|
|
test("Binary assignment should always evaluate LHS first", () => {
|
|
function go(a) {
|
|
let i = 0;
|
|
a[i] |= a[++i];
|
|
}
|
|
|
|
let a = [1, 2];
|
|
go(a);
|
|
expect(a).toEqual([3, 2]);
|
|
});
|
|
|
|
test("Base object of lhs of assignment is copied to preserve evaluation order", () => {
|
|
let topLevel = {};
|
|
function go() {
|
|
let temp = topLevel;
|
|
temp.test = temp = temp.test || {};
|
|
}
|
|
|
|
go();
|
|
expect(topLevel.test).not.toBeUndefined();
|
|
expect(topLevel.test).toEqual({});
|
|
});
|