Skip to content

Commit 359ee98

Browse files
committed
Add missing QLDocs
1 parent 2ca2a4b commit 359ee98

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

java/ql/lib/semmle/code/java/ControlFlowGraph.qll

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ module ControlFlow {
152152
ExprParent getAstNode() { none() }
153153
}
154154

155+
/** A control-flow node that represents the evaluation of an expression. */
155156
class ExprNode extends Node, TExprNode {
156157
Expr e;
157158

@@ -174,6 +175,7 @@ module ControlFlow {
174175
override Location getLocation() { result = e.getLocation() }
175176
}
176177

178+
/** A control-flow node that represents a statement. */
177179
class StmtNode extends Node, TStmtNode {
178180
Stmt s;
179181

@@ -194,7 +196,7 @@ module ControlFlow {
194196
override Location getLocation() { result = s.getLocation() }
195197
}
196198

197-
/** A synthetic node for the exit of a callable. */
199+
/** A synthetic control-flow node for the exit of a callable. */
198200
class ExitNode extends Node, TExitNode {
199201
Callable c;
200202

0 commit comments

Comments
 (0)