blob: 38bc21491b5f43fe3914260c9591dc82b5ac115d [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* FunctionExpression within a "do-while" Expression is allowed
*
* @path ch12/12.6/12.6.1/S12.6.1_A14_T1.js
* @description Using FunctionExpression "function __func(){return 0;}" as an Expression
*/
//////////////////////////////////////////////////////////////////////////////
//CHECK#
do{
var __reached = 1;
break;
}while(function __func(){return 0;});
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//CHECK#2
if (__reached !== 1) {
$ERROR('#2: function expession inside of do-while expression is allowed');
}
//
//////////////////////////////////////////////////////////////////////////////