{"ScriptPreparationCode":"object = {\r\n model: \u0027data\u0027,\r\n get view() {\r\n return this.model \u002B \u0027 by getter\u0027\r\n }\r\n};\r\nproxyWithReflection = new Proxy(object, {\r\n get(target, prop, receiver) {\r\n return Reflect.get(target, prop, receiver)\r\n }\r\n})\r\nproxyWithoutReflection = new Proxy(object, {\r\n get(target, prop, receiver) {\r\n return target[prop]\r\n }\r\n})","TestCases":[{"Name":"Object getter","Code":"object.view;","IsDeferred":false},{"Name":"Proxy getter with Reflection","Code":"proxyWithReflection.view","IsDeferred":false},{"Name":"Proxy getter without Reflection","Code":"proxyWithoutReflection","IsDeferred":false}]}