pjs/js/tests/ecma_2/Statements/dowhile-001.js

40 строки
785 B
JavaScript
Исходник Обычный вид История

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
1999-05-27 01:22:57 +04:00
/**
* File Name: dowhile-001
* ECMA Section:
* Description: do...while statements
*
*
*
* Author: christine@netscape.com
* Date: 11 August 1998
*/
var SECTION = "dowhile-002";
var VERSION = "ECMA_2";
var TITLE = "do...while with a labeled continue statement";
1999-05-27 01:22:57 +04:00
startTest();
writeHeaderToLog( SECTION + " "+ TITLE);
1999-05-27 01:22:57 +04:00
LabeledContinue( 0, 1 );
LabeledContinue( 1, 1 );
LabeledContinue( -1, 1 );
LabeledContinue( 5, 5 );
1999-05-27 01:22:57 +04:00
test();
1999-05-27 01:22:57 +04:00
function LabeledContinue( limit, expect ) {
i = 0;
woohoo:
do {
i++;
continue woohoo;
} while ( i < limit );
1999-05-27 01:22:57 +04:00
new TestCase(
SECTION,
"do while ( " + i +" < " + limit +" )",
expect,
i );
1999-05-27 01:22:57 +04:00
}