2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
|
|
|
info: >
|
|
|
|
"break" within a "do-while" Statement is allowed and performed as
|
|
|
|
described in 12.8
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 12.6.1_A4_T1
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Using "break" within a "do-while" loop
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
2014-08-05 17:38:52 +02:00
|
|
|
var __in__do__before__break, __in__do__after__break;
|
|
|
|
|
2011-09-07 08:35:18 +02:00
|
|
|
do {
|
|
|
|
__in__do__before__break="reached";
|
|
|
|
break;
|
|
|
|
__in__do__after__break="where am i";
|
|
|
|
} while(2===1);
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//CHECK#1
|
|
|
|
if (__in__do__before__break !== "reached") {
|
|
|
|
$ERROR('#1: __in__do__before__break === "reached". Actual: __in__do__before__break ==='+ __in__do__before__break );
|
|
|
|
}
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//CHECK#2
|
|
|
|
if (typeof __in__do__after__break !== "undefined") {
|
|
|
|
$ERROR('#2: typeof __in__do__after__break === "undefined". Actual: typeof __in__do__after__break ==='+ typeof __in__do__after__break );
|
|
|
|
}
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|