mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 13:28:38 +02:00
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.
|
|
|
|
/**
|
|
* "break" within a "while" Statement is allowed and performed as described in 12.8
|
|
*
|
|
* @path ch12/12.6/12.6.2/S12.6.2_A4_T1.js
|
|
* @description "break" within a "while" Statement
|
|
*/
|
|
|
|
while(1===1){
|
|
__in__do__before__break="reached";
|
|
break;
|
|
__in__do__after__break="where am i";
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//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 );
|
|
}
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|