{"ScriptPreparationCode":"var str = \u0027foo bar baz\u0027;\r\nvar noop = Function.prototype;","TestCases":[{"Name":"character index","Code":"if (str[4] == \u0027b\u0027) noop();","IsDeferred":false},{"Name":"charAt()","Code":"if (str.charAt(4) == \u0027b\u0027) noop();","IsDeferred":false},{"Name":"slice()","Code":"if (str.slice(4, 5) == \u0027b\u0027) noop();","IsDeferred":false},{"Name":"charCodeAt()","Code":"if (str.charCodeAt(4) == 98) noop();","IsDeferred":false}]}