Package de.fraunhofer.aisec.cpg.graph
Class ContinueStatement
- java.lang.Object
-
- de.fraunhofer.aisec.cpg.graph.Node
-
- de.fraunhofer.aisec.cpg.graph.Statement
-
- de.fraunhofer.aisec.cpg.graph.ContinueStatement
-
public class ContinueStatement extends Statement
Statement used to interrupt further execution of a loop body and jump to the evaluation of the loop condition. Can have a loop label, e.g. in Java, to specify which of the nested loops condition should be reevaluated.
-
-
Constructor Summary
Constructors Constructor Description ContinueStatement()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)java.lang.StringgetLabel()inthashCode()voidsetLabel(java.lang.String label)-
Methods inherited from class de.fraunhofer.aisec.cpg.graph.Node
addNextDFG, addPrevDFG, disconnectFromGraph, getArgumentIndex, getCode, getFile, getId, getName, getNextCFG, getNextDFG, getNextEOG, getPrevDFG, getPrevEOG, getRegion, isDummy, isImplicit, removeNextDFG, removePrevDFG, setArgumentIndex, setCode, setComment, setDummy, setFile, setImplicit, setName, setNextDFG, setNextEOG, setPrevDFG, setPrevEOG, setRegion, toString
-
-