コード例 #1
0
ファイル: CodeGen.java プロジェクト: JimoLucy/javassist
  protected int getLocalVar(Declarator d) {
    int v = d.getLocalVar();
    if (v < 0) {
      v = getMaxLocals(); // delayed variable allocation.
      d.setLocalVar(v);
      incMaxLocals(1);
    }

    return v;
  }