{"ScriptPreparationCode":"function f() {\r\n return this.a;\r\n}","TestCases":[{"Name":"Arrow function","Code":"const x = {a: 5};\r\nconst af = () =\u003E { return x.a }\r\naf()","IsDeferred":false},{"Name":"Bind function","Code":"const x = {a:5};\r\nconst af = f.bind(x);\r\naf();\r\n","IsDeferred":false}]}