@@ -773,7 +773,7 @@ private module ControlFlowGraphImpl {
773
773
or
774
774
result .asExpr ( ) = n and n instanceof StmtExpr
775
775
or
776
- result = n .getCFGNode ( ) and n .( PostOrderNode ) .isLeafNode ( )
776
+ result = n .getCfgNode ( ) and n .( PostOrderNode ) .isLeafNode ( )
777
777
or
778
778
result = first ( n .( PostOrderNode ) .firstChild ( ) )
779
779
or
@@ -932,7 +932,7 @@ private module ControlFlowGraphImpl {
932
932
or
933
933
// The last node of a node executed in post-order is the node itself.
934
934
exists ( PostOrderNode p | p = n |
935
- p .mayCompleteNormally ( ) and last = p .getCFGNode ( ) and completion = NormalCompletion ( )
935
+ p .mayCompleteNormally ( ) and last = p .getCfgNode ( ) and completion = NormalCompletion ( )
936
936
)
937
937
or
938
938
last .asExpr ( ) = n and completion = basicBooleanCompletion ( n .( BooleanLiteral ) .getBooleanValue ( ) )
@@ -1088,7 +1088,7 @@ private module ControlFlowGraphImpl {
1088
1088
or
1089
1089
// `throw` statements or throwing calls give rise to ` Throw` completion
1090
1090
exists ( ThrowableType tt | mayThrow ( n , tt ) |
1091
- last = n .getCFGNode ( ) and completion = ThrowCompletion ( tt )
1091
+ last = n .getCfgNode ( ) and completion = ThrowCompletion ( tt )
1092
1092
)
1093
1093
or
1094
1094
// `break` statements give rise to a `Break` completion
@@ -1244,7 +1244,7 @@ private module ControlFlowGraphImpl {
1244
1244
|
1245
1245
result = first ( p .getChildNode ( i + 1 ) )
1246
1246
or
1247
- not exists ( p .getChildNode ( i + 1 ) ) and result = p .getCFGNode ( )
1247
+ not exists ( p .getChildNode ( i + 1 ) ) and result = p .getCfgNode ( )
1248
1248
)
1249
1249
or
1250
1250
// Statements within a block execute sequentially.
0 commit comments