{"ScriptPreparationCode":"class X {\r\n test(msg) { return this; }\r\n}\r\nx = new X();\r\nbound = x.test.bind(x);\r\nwrapped = (msg) =\u003E x.test(msg);","TestCases":[{"Name":"direct call","Code":"x.test(\u0022Hello\u0022);","IsDeferred":false},{"Name":"x.bind","Code":"bound(\u0022Hello\u0022);","IsDeferred":false},{"Name":"call","Code":"wrapped(\u0022Hello\u0022)","IsDeferred":false}]}