clean up attachment crap

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@68 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 3009e181ab
commit 6ac08eb0b6
  1. 26
      jode/jode/flow/StructuredBlock.java

@ -91,7 +91,7 @@ public abstract class StructuredBlock {
/** /**
* Returns the block where the control will normally flow to, when * Returns the block where the control will normally flow to, when
* this block is finished (not ignoring the jump after this block). * this block is finished.
*/ */
public StructuredBlock getNextBlock() { public StructuredBlock getNextBlock() {
if (jump != null) if (jump != null)
@ -108,8 +108,7 @@ public abstract class StructuredBlock {
/** /**
* Returns the flow block where the control will normally flow to, * Returns the flow block where the control will normally flow to,
* when this block is finished (not ignoring the jump after this * when this block is finished.
* block).
* @return null, if the control flows into a non empty structured * @return null, if the control flows into a non empty structured
* block or if this is the outermost block. * block or if this is the outermost block.
*/ */
@ -121,26 +120,11 @@ public abstract class StructuredBlock {
return null; return null;
} }
/**
* Checks if the jump to the outside has correct monitorexit and
* jsr instructions attached.
* @return null, if everything is okay, and a diagnostic message that
* should be put in a comment otherwise.
*/
public String checkJump(Jump jump) {
if (outer != null)
return outer.checkJump(jump);
if (jump.hasAttachments())
return "Unknown attachments: "+jump.describeAttachments();
return null;
}
/** /**
* Returns the block where the control will normally flow to, when * Returns the block where the control will normally flow to, when
* the given sub block is finished (<em>not</em> ignoring the jump * the given sub block is finished. (This is overwritten by
* after this block). (This is overwritten by SequentialBlock and * SequentialBlock and SwitchBlock). If this isn't called with a
* SwitchBlock). If this isn't called with a direct sub block, * direct sub block, the behaviour is undefined, so take care.
* the behaviour is undefined, so take care.
* @return null, if the control flows to another FlowBlock. */ * @return null, if the control flows to another FlowBlock. */
public StructuredBlock getNextBlock(StructuredBlock subBlock) { public StructuredBlock getNextBlock(StructuredBlock subBlock) {
return getNextBlock(); return getNextBlock();

Loading…
Cancel
Save