{"ScriptPreparationCode":"class Arrow {\r\n constructor() {};\r\n test = () =\u003E 1;\r\n}\r\n\r\nvar arrow = new Arrow();\r\n\r\nclass Normal {\r\n constructor() {};\r\n test() {\r\n return 1\r\n }\r\n}\r\n\r\nvar normal = new Normal();","TestCases":[{"Name":"Arrow function method","Code":"arrow.test()","IsDeferred":false},{"Name":"Normal function method","Code":"normal.test()","IsDeferred":false}]}