a finally block is handled like a no return block in mapStackToLocal

This is because we know, that finally block will make the old stack again,
but we don't check it because if the jsr analysis didn't succeed, it is
better to ignore this error.


git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@1110 379699f6-c40d-0410-875b-85095c16579e
branch_1_1
jochen 25 years ago
parent 97bf664ac8
commit 9d59b9ced1
  1. 12
      jode/jode/flow/FinallyBlock.java

@ -67,6 +67,18 @@ public class FinallyBlock extends StructuredBlock {
return new StructuredBlock[] { subBlock };
}
/**
* A finally block starts with empty stack. It must return with empty
* stack too, but that need not to be checked. If the JSR's aren't
* correctly determined this may even not be true.
*
* @param stack the stack before the instruction is called
* @return stack the stack afterwards. */
public VariableStack mapStackToLocal(VariableStack stack) {
super.mapStackToLocal(stack);
return null;
}
/**
* Returns the block where the control will normally flow to, when
* the given sub block is finished (<em>not</em> ignoring the jump

Loading…
Cancel
Save