{"ScriptPreparationCode":null,"TestCases":[{"Name":"boring","Code":"const obj = {\r\n hello: \u0022world\u0022\r\n};\r\nif (Math.random()\u003E.5) {\r\n obj.foo = \u0022bar\u0022;\r\n}","IsDeferred":false},{"Name":"spread","Code":"const obj = {\r\n hello: \u0022world\u0022,\r\n ...Math.random()\u003E.5 \u0026\u0026 { foo: \u0022bar\u0022 }\r\n};","IsDeferred":false},{"Name":"Object.assign","Code":"const obj = Object.assign({\r\n hello: \u0022world\u0022\r\n}, Math.random()\u003E.5 \u0026\u0026 {\r\n foo: \u0022bar\u0022\r\n});","IsDeferred":false},{"Name":"Terinary","Code":"const obj = {\r\n hello: \u0022world\u0022\r\n};\r\nMath.random()\u003E.5 ? obj.foo = \u0022bar\u0022 : false","IsDeferred":false}]}