{"ScriptPreparationCode":"function Monster()\r\n{\r\n \tthis.x = 100;\r\n \tthis.y = 100;\r\n\tconsole.log(\u0022Monster created at \u0022 \u002B this.x \u002B \u0022 / \u0022 \u002B this.y \u002B \u0022!\u0022);\r\n}\r\n\r\nfunction Monster2()\r\n{\r\n \tvar that = this;\r\n \tthat.x = 100;\r\n \tthat.y = 100;\r\n\tconsole.log(\u0022Monster created at \u0022 \u002B that.x \u002B \u0022 / \u0022 \u002B that.y \u002B \u0022!\u0022);\r\n}","TestCases":[{"Name":"this","Code":"new Monster();","IsDeferred":false},{"Name":"that","Code":"new Monster2();","IsDeferred":false}]}