Component com;
Scope lastBrotherScope = null;
for (int i = 0; i < coms.size(); i++) {
com = coms.get(i);
if (com instanceof ScopeLogicVariable) {
ScopeLogicVariable slv = (ScopeLogicVariable) com;
if(slv.isAnonymous()){
continue;
}
/*Label start;
if (lastBrotherScope == null) {
start = parent.getStart();
} else {
start = lastBrotherScope.outerEnd();
}*/
insnHelper.declarationVariable(slv.getName(), slv
.getDeclareType().getDescriptor(), null, slv.getSpecifiedStartLabel(), parent
.innerEnd(), slv.getInitStartPos());
} else {
lastBrotherScope = (Scope) com;
declarationVariable(lastBrotherScope);
}
}