Enable strict mode testing for sm/destructuring/order.js

This commit is contained in:
André Bargull 2025-04-30 14:16:25 +02:00 committed by Philip Chimento
parent e815b2298c
commit 080a1ff59f

View File

@ -2,8 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
flags:
- noStrict
description: |
Destructuring should evaluate lhs reference before rhs
esid: pending
@ -19,6 +17,7 @@ let obj = new Proxy(storage, {
set(that, name, value) {
log("lhs set " + name);
storage.values[name] = value;
return true;
}
});