{"ScriptPreparationCode":"class Parent {\r\n constructor(name, width, height, friends) {\r\n this.name = name;\r\n this.width = width;\r\n this.height = height;\r\n this.friends = friends;\r\n }\r\n}\r\nclass Child {\r\n constructor(name) {\r\n this.name = name;\r\n }\r\n}","TestCases":[{"Name":"Classes","Code":"new Parent(\u0022cool stufff!!!!\u0022, 123, 456, [new Child(\u0022aaa\u0022), new Child(\u0022bbb\u0022), new Child(\u0022ccc\u0022), new Child(\u0022ddd\u0022)]);","IsDeferred":false},{"Name":"Objects","Code":"({type: \u0022Parent\u0022, name: \u0022cool stufff!!!!\u0022, width: 123, height: 456, friends: [\r\n {type: \u0022Child\u0022, name: \u0022aaa\u0022},\r\n {type: \u0022Child\u0022, name: \u0022bbb\u0022}, \r\n {type: \u0022Child\u0022, name: \u0022ccc\u0022}, \r\n {type: \u0022Child\u0022, name: \u0022ddd\u0022}\r\n]})","IsDeferred":false}]}