mirror of
https://github.com/tc39/test262.git
synced 2025-09-25 19:18:48 +02:00
Enable strict mode testing for sm/destructuring/order.js
This commit is contained in:
parent
e815b2298c
commit
080a1ff59f
@ -2,8 +2,6 @@
|
|||||||
// This code is governed by the BSD license found in the LICENSE file.
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
flags:
|
|
||||||
- noStrict
|
|
||||||
description: |
|
description: |
|
||||||
Destructuring should evaluate lhs reference before rhs
|
Destructuring should evaluate lhs reference before rhs
|
||||||
esid: pending
|
esid: pending
|
||||||
@ -19,6 +17,7 @@ let obj = new Proxy(storage, {
|
|||||||
set(that, name, value) {
|
set(that, name, value) {
|
||||||
log("lhs set " + name);
|
log("lhs set " + name);
|
||||||
storage.values[name] = value;
|
storage.values[name] = value;
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user