Interface FallsThroughStmt

All Superinterfaces:
Acceptor<StmtVisitor>, EquivTo, Stmt
All Known Implementing Classes:
JAssignStmt, JBreakpointStmt, JEnterMonitorStmt, JExitMonitorStmt, JIdentityStmt, JIfStmt, JInvokeStmt, JNopStmt, JRetStmt

public interface FallsThroughStmt extends Stmt
as an equivalent to BranchingStmt
  • Method Details

    • fallsThrough

      default boolean fallsThrough()
      Description copied from interface: Stmt
      Returns true if execution after this statement may continue at the following statement. (e.g. GotoStmt will return false and e.g. IfStmt will return true).
      Specified by:
      fallsThrough in interface Stmt