MCPcopy Create free account
hub / github.com/LFYSec/MScan / JumpStmt

Class JumpStmt

src/main/java/pascal/taie/ir/stmt/JumpStmt.java:27–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25import java.util.List;
26
27public abstract class JumpStmt extends AbstractStmt {
28
29 /**
30 * @return possible jump targets of this statement.
31 */
32 public abstract List<Stmt> getTargets();
33
34 /**
35 * Convert a target statement to its String representation.
36 */
37 public String toString(Stmt target) {
38 return target == null ?
39 "[unknown]" : Integer.toString(target.getIndex());
40 }
41}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected