{"ScriptPreparationCode":null,"TestCases":[{"Name":"Without desctructurization","Code":"const obj = {a: 1, b: 2, c: 3}\r\nconst d = obj.a \u002B obj.b \u002B obj.c;","IsDeferred":false},{"Name":"With desctructurization","Code":"const obj = {a: 1, b: 2, c: 3}\r\nconst {a, b, c} = obj;\r\nconst d = a \u002B b \u002B c; ","IsDeferred":false}]}