ABT.LabeledStmt.LabeledStmt C# (CSharp) 메소드

LabeledStmt() 공개 메소드

public LabeledStmt ( String label, Stmt stmt ) : System
label String
stmt Stmt
리턴 System
        public LabeledStmt(String label, Stmt stmt) {
            this.Label = label;
            this.Stmt = stmt;
        }