From 29db6a9bdac2eb251fe6c5552e18a3e88cf8baaf Mon Sep 17 00:00:00 2001 From: jochen Date: Sat, 6 Mar 1999 21:34:30 +0000 Subject: [PATCH] mergeBreakedStack added for stack analyzation git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@307 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/flow/BreakableBlock.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/jode/jode/flow/BreakableBlock.java b/jode/jode/flow/BreakableBlock.java index 4f88130..e803b26 100644 --- a/jode/jode/flow/BreakableBlock.java +++ b/jode/jode/flow/BreakableBlock.java @@ -33,4 +33,11 @@ public interface BreakableBlock { * Is called by BreakBlock, to tell us that this block is breaked. */ public void setBreaked(); + + /** + * Is called by BreakBlock, to tell us what the stack can be after a + * break. + * @param stack the stack at the break. + */ + public void mergeBreakedStack(VariableStack stack); }