{"ScriptPreparationCode":"class Foo {\r\n constructor() {\r\n this.bbb = 100;\r\n }\r\n get bar() {\r\n return this.bbb; \r\n }\r\n \r\n getBar() {\r\n return this.bbb;\r\n }\r\n}\r\n\r\nvar foo = new Foo();\r\nvar count = 100000;\r\nvar bar;","TestCases":[{"Name":"getter","Code":"for(let i=0; i\u003C count; i\u002B\u002B) {\r\n bar = foo.bar;\r\n}","IsDeferred":false},{"Name":"get function","Code":"for(let i=0; i\u003C count; i\u002B\u002B) {\r\n bar = foo.getBar();\r\n}","IsDeferred":false}]}