ladybird/Libraries/LibJS/Tests/loops
Linus Groh 82ac936a9d LibJS: Check for exception after executing (do)while test expression
Otherwise we crash the interpreter when an exception is thrown during
evaluation of the while or do/while test expression - which is easily
caused by a ReferenceError - e.g.:

    while (someUndefinedVariable) {
        // ...
    }
2020-10-23 19:06:57 +02:00
..
break-basic.js LibJS: Demonstrate weird behaviour with 'break' 2020-08-28 20:19:56 +02:00
continue-basic.js
do-while-basic.js LibJS: Check for exception after executing (do)while test expression 2020-10-23 19:06:57 +02:00
for-basic.js
for-head-errors.js
for-in-basic.js
for-no-curlies.js
for-of-basic.js
for-scopes.js
while-basic.js LibJS: Check for exception after executing (do)while test expression 2020-10-23 19:06:57 +02:00