{"ScriptPreparationCode":"var input = [1, 2, 3];","TestCases":[{"Name":"Spread","Code":"const [a, b, c] = input;","IsDeferred":false},{"Name":"Destructure","Code":"const {0: a, 1: b, 2: c} = input;","IsDeferred":false},{"Name":"Naiive","Code":"const a = input[0];\r\nconst b = input[1];\r\nconst c = input[2];","IsDeferred":false}]}