{"ScriptPreparationCode":"/* Andr\u00E9 Antunes da Cunha - hello world! */\r\nvar negative = /\u003C[^\u003E]*\u003E/g;\r\nvar lazy = /\u003C.*?\u003E/g;\r\nvar input =\r\n \u0022hello \u003C01\u003E hello \u003C02\u003E hello \u003C03\u003E hello \u003C04\u003E hello \u003C05\u003E hello \u003C06\u003E hello \u003C07\u003E hello \u003C08\u003E hello \u003C09\u003E hello \u003C10\u003E \u0022 \u002B\r\n \u0022hello \u003C11\u003E hello \u003C12\u003E hello \u003C13\u003E hello \u003C14\u003E hello \u003C15\u003E hello \u003C16\u003E hello \u003C17\u003E hello \u003C18\u003E hello \u003C19\u003E hello \u003C20\u003E \u0022 \u002B\r\n \u0022hello\u0022;","TestCases":[{"Name":"Negative","Code":"[...input.matchAll(negative)]; /* Array.from(input.matchAll(negative)); */","IsDeferred":false},{"Name":"Lazy (non-greedy)","Code":"[...input.matchAll(lazy)]; /* Array.from(input.matchAll(lazy)); */","IsDeferred":false}]}