Update test for o[p] = f() (#4052)

* Update test for o[p] = f()

Update S11.13.1_A7_T3.js now that consensus has been reached on https://github.com/tc39/ecma262/pull/3307.

* Rename test and add an analogous one for super.
This commit is contained in:
Ross Kirsling 2024-04-13 03:59:40 +09:00 committed by GitHub
parent c5a80993cd
commit 142a6a6fbe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 87 additions and 26 deletions

View File

@ -1,26 +0,0 @@
// Copyright (C) 2015 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: Assignment Operator evaluates its operands from left to right.
description: >
The left-hand side expression is evaluated before the right-hand side.
Left-hand side expression is MemberExpression: base[prop]. Evaluating
ToPropertyKey(prop) throws an error.
---*/
function DummyError() { }
assert.throws(DummyError, function() {
var base = {};
var prop = {
toString: function() {
throw new DummyError();
}
};
var expr = function() {
throw new Test262Error("right-hand side expression evaluated");
};
base[prop] = expr();
});

View File

@ -0,0 +1,40 @@
// Copyright (C) 2015 André Bargull. All rights reserved.
// Copyright (C) 2024 Sony Interactive Entertainment Inc. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-assignment-operators
description: Assignment Operator evaluates its operands from left to right (formerly S11.13.1_A7_T3)
info: |
The left-hand side expression is evaluated before the right-hand side.
Left-hand side expression is MemberExpression: base[prop].
ToPropertyKey(prop) occurs after both sides are evaluated.
---*/
function DummyError() { }
assert.throws(DummyError, function() {
var base = {};
var prop = function() {
throw new DummyError();
};
var expr = function() {
throw new Test262Error("right-hand side expression evaluated");
};
base[prop()] = expr();
});
assert.throws(DummyError, function() {
var base = {};
var prop = {
toString: function() {
throw new Test262Error("property key evaluated");
}
};
var expr = function() {
throw new DummyError();
};
base[prop] = expr();
});

View File

@ -0,0 +1,47 @@
// Copyright (C) 2024 Sony Interactive Entertainment Inc. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-assignment-operators
description: Assignment Operator evaluates its operands from left to right
info: |
The left-hand side expression is evaluated before the right-hand side.
Left-hand side expression is MemberExpression: super[prop].
ToPropertyKey(prop) occurs after both sides are evaluated.
---*/
assert.throws(DummyError, function() {
var prop = function() {
throw new DummyError();
};
var expr = function() {
throw new Test262Error("right-hand side expression evaluated");
};
class C extends class {} {
m() {
super[prop()] = expr();
}
}
(new C()).m();
});
assert.throws(DummyError, function() {
var prop = {
toString: function() {
throw new Test262Error("property key evaluated");
}
};
var expr = function() {
throw new DummyError();
};
class C extends class {} {
m() {
super[prop] = expr();
}
}
(new C()).m();
});