}
}else{
iterator.previous();
instructions = WeaselTree.parseAndCompile(compiler, compilerHelpher, iterator);
}
WeaselBlockInfo wbi = compilerHelpher.closeBlock();
int pops = wbi.varsToPop();
if(pops==1){
instructions.add(token.line, new WeaselInstructionPop());
}else if(pops>1){
instructions.add(token.line, new WeaselInstructionPops(pops));
}