{"ScriptPreparationCode":"class A {\r\n constructor() {\r\n this.data = 0\r\n this.binded = this.binded.bind(this)\r\n }\r\n arrow = () =\u003E {\r\n this.data = this.data \u002B 1\r\n return this\r\n }\r\n binded() {\r\n this.data = this.data \u002B 1\r\n return this\r\n }\r\n}\r\na = new A","TestCases":[{"Name":"arrow","Code":"a.arrow()","IsDeferred":false},{"Name":"binded","Code":"a.binded()","IsDeferred":false}]}