{"ScriptPreparationCode":"let a = new Proxy({a:3}, {\r\n get(t, p) {\r\n return t[p]\r\n }\r\n})\r\nlet b = new Proxy({a:3}, {\r\n get: (t, p) =\u003E t[p]\r\n})","TestCases":[{"Name":"method","Code":"for(let i = 100; i--;)a.a","IsDeferred":false},{"Name":"arrow","Code":"for(let i = 100; i--;)b.a","IsDeferred":false}]}