ABT.LabeledStmt.LabeledStmt C# (CSharp) Method

LabeledStmt() public method

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