From 080a1ff59f3b45ae633aec3f3716970969d53a92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bargull?= Date: Wed, 30 Apr 2025 14:16:25 +0200 Subject: [PATCH] Enable strict mode testing for sm/destructuring/order.js --- test/staging/sm/destructuring/order.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/staging/sm/destructuring/order.js b/test/staging/sm/destructuring/order.js index 58d5065b7e..d2b2a534ac 100644 --- a/test/staging/sm/destructuring/order.js +++ b/test/staging/sm/destructuring/order.js @@ -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; } });