AST.WhileStmt.Create C# (CSharp) 메소드

Create() 공개 정적인 메소드

public static Create ( Expr cond, Stmt body ) : Stmt
cond Expr
body Stmt
리턴 Stmt
        public static Stmt Create(Expr cond, Stmt body) =>
            new WhileStmt(cond, body);