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

Create() 공개 정적인 메소드

public static Create ( String label, Stmt stmt ) : Stmt
label String
stmt Stmt
리턴 Stmt
        public static Stmt Create(String label, Stmt stmt) =>
            new LabeledStmt(label, stmt);