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