Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / jit-test / tests / basic / testWhileWithContinue.js
1 // Test using 'while' with 'continue' -- the most ancient, the most powerful,
2 // the most rare of all coding incantations.
3
4 var i = 0;
5 while (i < HOTLOOP+4) {
6     ++i;
7     continue;
8 }
9 assertEq(i, HOTLOOP+4);
10