body.getLocals().add(tokenLocal);
units.insertBefore(Jimple.v().newAssignStmt(tokenLocal,
Jimple.v().newNewExpr(RefType.v(tokenClass))), insertPoint);
units.insertBefore(Jimple.v().newInvokeStmt(
Jimple.v().newSpecialInvokeExpr(tokenLocal,
tokenConstructor.makeRef())), insertPoint);
return tokenLocal;
} else if (token instanceof IntToken) {
Local tokenLocal = _buildConstantTokenLocal(body, insertPoint,
localName, intTokenClass, intTokenConstructor, IntConstant
.v(((IntToken) token).intValue()));