Bike.Test.ParserTest.While C# (CSharp) Method

While() private method

private While ( ) : void
return void
        public void While()
        {
            ParseAndWalk("while(a)f();");
            ParseAndWalk("while(a){f();}");
            ParseAndWalk("while(a++);");
            ParseAndWalk("while(a && b) while (c);;");
            ParseAndWalk("while(a++) {if(b) break; else next;}");
        }