CaseLabel() 공개 메소드

public CaseLabel ( Int32 value ) : Int32
value System.Int32
리턴 System.Int32
예제 #1
0
 public override void CGenStmt(Env env, CGenState state) {
     Int32 label = state.CaseLabel(this.Value);
     state.CGenLabel(label);
     this.Stmt.CGenStmt(env, state);
 }