summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/parser/modifier-do-while.js
blob: 9fa9b06dfec1aa06d60f4ccd52af0296daf0325a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
do 1
while(false);

do if (1) {
} while(false);

do if (1) 1
while(false);

do try {
} catch(ex) {
} while(false);