public Variable getNewTemporaryClosureVariable(int closureId) {
return new TemporaryClosureVariable(closureId, allocateNextPrefixedName("%cl_" + closureId));
}
public Variable getNewTemporaryVariable() {
return new TemporaryVariable(allocateNextPrefixedName("%v"));
}