{"ScriptPreparationCode":"window.A = class {\r\n a() {}\r\n}\r\n\r\nwindow.B = class {\r\n b = () =\u003E {};\r\n}\r\n\r\nwindow.C = class {\r\n constructor() {\r\n this.c = this.c.bind(this);\r\n }\r\n\r\n c() {}\r\n}","TestCases":[{"Name":"Call class method","Code":"(new A()).a();","IsDeferred":false},{"Name":"Call instance method","Code":"(new B()).b();","IsDeferred":false},{"Name":"Call bound method","Code":"(new C()).c();","IsDeferred":false}]}