{"ScriptPreparationCode":"class MyClass {\r\n constructor() {\r\n this.field = 1;\r\n }\r\n\r\n set field_value(val) {\r\n this.field = val;\r\n }\r\n get field_value() {\r\n return this.field;\r\n }\r\n\r\n}\r\n\r\nvar theInstance = new MyClass();","TestCases":[{"Name":"lodash","Code":"theInstance.field_value = (theInstance.field_value) \u002B 1; console.log(theInstance.field);","IsDeferred":false},{"Name":"native","Code":"theInstance.field = (theInstance.field) \u002B 1; console.log(theInstance.field);","IsDeferred":false}]}