{"ScriptPreparationCode":"class Propertied {\r\n constructor() {\r\n this.key = 1;\r\n }\r\n}\r\nwindow.Propertied = Propertied;\r\n\r\nconst symbol = Symbol(\u0022key\u0022);\r\nclass Symboled {\r\n constructor() {\r\n this[symbol] = 1;\r\n }\r\n}\r\n\r\nwindow.Symboled = Symboled;","TestCases":[{"Name":"Property","Code":"new Propertied();","IsDeferred":false},{"Name":"Symbol","Code":"new Symboled();","IsDeferred":false}]}