Package sootup.core.jimple.common.stmt
Interface FallsThroughStmt
- All Superinterfaces:
Acceptor<StmtVisitor>
,EquivTo
,Stmt
- All Known Implementing Classes:
JAssignStmt
,JBreakpointStmt
,JEnterMonitorStmt
,JExitMonitorStmt
,JIdentityStmt
,JIfStmt
,JInvokeStmt
,JNopStmt
,JRetStmt
as an equivalent to BranchingStmt
-
Method Summary
Modifier and TypeMethodDescriptiondefault boolean
Returns true if execution after this statement may continue at the following statement.Methods inherited from interface sootup.core.jimple.basic.EquivTo
equivHashCode, equivTo, equivTo
Methods inherited from interface sootup.core.jimple.common.stmt.Stmt
asInvokableStmt, branches, containsArrayRef, containsFieldRef, getArrayRef, getDef, getExpectedSuccessorCount, getFieldRef, getPositionInfo, getUses, getUsesAndDefs, isInvokableStmt, toString, withNewUse
-
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 interfaceStmt
-