{"ScriptPreparationCode":null,"TestCases":[{"Name":"With destructuring","Code":"const obj = {a: 0, b: 1, c: \u0022some string\u0022, d: [5,6], e: {x:0,y:0} };\r\nconst {a, b, c, d, e} = obj;\r\nconst x = a \u002B b;\r\nconst y = c.length;\r\nconst z = d[0] \u002B d[1];\r\nconst pos = {x: e.x, y: e.y};","IsDeferred":false},{"Name":"Without destructuring","Code":"const obj = {a: 0, b: 1, c: \u0022some string\u0022, d: [5,6], e: {x:0,y:0} };\r\nconst x = obj.a \u002B obj.b;\r\nconst y = obj.c.length;\r\nconst z = obj.d[0] \u002B obj.d[1];\r\nconst pos = {x: obj.e.x, y: obj.e.y};","IsDeferred":false}]}