disable broken tests on net_4_0
[mcs.git] / docs / ecma334 / 15.8.1.xml
blob92dbd9b9c4b89b063d14eac33b1e0e3c222fe8b0
1 <?xml version="1.0"?>
2 <clause number="15.8.1" title="The while statement">
3   <paragraph>The while statement conditionally executes an embedded statement zero or more times. <grammar_production><name><non_terminal where="15.8.1">while-statement</non_terminal></name> : <rhs><keyword>while</keyword><terminal>(</terminal><non_terminal where="15.7.1">boolean-expression</non_terminal><terminal>)</terminal><non_terminal where="15">embedded-statement</non_terminal></rhs></grammar_production></paragraph>
4   <paragraph>A while statement is executed as follows: <list><list_item> The <non_terminal where="15.7.1">boolean-expression</non_terminal> (<hyperlink>14.16</hyperlink>) is evaluated. </list_item><list_item> If the boolean expression yields true, control is transferred to the embedded statement. When and if control reaches the end point of the embedded statement (possibly from execution of a continue statement), control is transferred to the beginning of the while statement. </list_item><list_item> If the boolean expression yields false, control is transferred to the end point of the while statement. </list_item></list></paragraph>
5   <paragraph>Within the embedded statement of a while statement, a break statement (<hyperlink>15.9.1</hyperlink>) may be used to transfer control to the end point of the while statement (thus ending iteration of the embedded statement), and a continue statement (<hyperlink>15.9.2</hyperlink>) may be used to transfer control to the end point of the embedded statement (thus performing another iteration of the while statement). </paragraph>
6   <paragraph>The embedded statement of a while statement is reachable if the while statement is reachable and the boolean expression does not have the constant value false. </paragraph>
7   <paragraph>The end point of a while statement is reachable if at least one of the following is true: <list><list_item> The while statement contains a reachable break statement that exits the while statement. </list_item><list_item> The while statement is reachable and the boolean expression does not have the constant value true. </list_item></list></paragraph>
8 </clause>