CodeGeneration.CGenState.GotoLabel C# (CSharp) Method

GotoLabel() public method

public GotoLabel ( String label ) : Int32
label String
return System.Int32
        public Int32 GotoLabel(String label) {
            return this._goto_labels[label];
        }

Usage Example

示例#1
0
 public override void CGenStmt(Env env, CGenState state) {
     state.CGenLabel(state.GotoLabel(this.Label));
     state.CGenForceStackSizeTo(state.StackSize);
     this.Stmt.CGenStmt(env, state);
 }
All Usage Examples Of CodeGeneration.CGenState::GotoLabel