{"ScriptPreparationCode":"class TestAccessor {\r\n _val = 0\r\n get val() {\r\n return this._val\r\n }\r\n set val(val) {\r\n this._val = val\r\n }\r\n}\r\nvar testAccessor = new TestAccessor()\r\n\r\nclass TestProp {\r\n val = 0\r\n}\r\nvar testProp = new TestProp()","TestCases":[{"Name":"accessor","Code":"testAccessor.val \u002B= 1","IsDeferred":false},{"Name":"prop","Code":"testProp.val \u002B= 1","IsDeferred":false}]}