File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
java/ql/lib/semmle/code/java Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments