michael@0: // Copyright 2009 the Sputnik authors. All rights reserved. michael@0: // This code is governed by the BSD license found in the LICENSE file. michael@0: michael@0: /** michael@0: * VariableDeclaration within "for" statement is allowed michael@0: * michael@0: * @path ch12/12.2/S12.2_A7.js michael@0: * @description Declaring variable within "for" statement michael@0: */ michael@0: michael@0: ////////////////////////////////////////////////////////////////////////////// michael@0: //CHECK#1 michael@0: try{ michael@0: infor_var = infor_var; michael@0: }catch(e){ michael@0: $ERROR('#1: Variable declaration inside "for" loop is admitted'); michael@0: }; michael@0: // michael@0: ////////////////////////////////////////////////////////////////////////////// michael@0: michael@0: for (;;){ michael@0: break; michael@0: var infor_var; michael@0: } michael@0: