CaseLabel() public method

public CaseLabel ( Int32 value ) : Int32
value System.Int32
return 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);
 }