{"ScriptPreparationCode":"function test(msg) {\r\n var d = msg;\r\n}","TestCases":[{"Name":"direct call","Code":"test(\u0022Hello\u0022)","IsDeferred":false},{"Name":"direct call with spread syntax","Code":"test(...[\u0022Hello\u0022])","IsDeferred":false},{"Name":"bind","Code":"test.bind(null, \u0022Hello\u0022)()","IsDeferred":false},{"Name":"bind with spread syntax","Code":"test.bind(null, ...[\u0022Hello\u0022])()","IsDeferred":false},{"Name":"call","Code":"test.call(null, \u0022Hello\u0022)","IsDeferred":false},{"Name":"call with spread syntax","Code":"test.call(null, ...[\u0022Hello\u0022])","IsDeferred":false},{"Name":"apply","Code":"test.apply(null, [\u0022Hello\u0022])","IsDeferred":false}]}