Bike.Test.ParserTest.While C# (CSharp) 메소드

While() 개인적인 메소드

private While ( ) : void
리턴 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;}");
        }