mirror of https://github.com/tc39/test262.git
33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
|
||
|
/*---
|
||
|
info: >
|
||
|
"break" within a "do-while" Statement is allowed and performed as
|
||
|
described in 12.8
|
||
|
es5id: 12.6.1_A4_T1
|
||
|
description: Using "break" within a "do-while" loop
|
||
|
---*/
|
||
|
|
||
|
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 );
|
||
|
}
|
||
|
//
|
||
|
//////////////////////////////////////////////////////////////////////////////
|