LocalBuilder getNamedLocal(final Type type, final ParameterExpression variable) {
assert type != null && variable != null
: "type != null && variable != null";
final LocalBuilder lb = generator.declareLocal(variable.getName(), type);
if (emitDebugSymbols() && variable.getName() != null) {
_tree.getDebugInfoGenerator().setLocalName(lb, variable.getName());
}