{"ScriptPreparationCode":"var instanceStr = \u0027var john = new Person(\u0022John\u0022)\u0027;","TestCases":[{"Name":"with no eval","Code":"class Person {\r\n\tconstructor(name) {\r\n\t\tthis.name = name;\r\n\t}\r\n}\r\n\r\nvar pedro = new Person(\u0027Pedro\u0027);","IsDeferred":false},{"Name":"With Eval","Code":"class Person {\r\n\tconstructor(name) {\r\n\t\tthis.name = name;\r\n\t}\r\n}\r\n\r\neval(instanceStr);","IsDeferred":false}]}