File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
python/ql/lib/semmle/python/dataflow/new/internal Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -450,9 +450,6 @@ abstract class DataFlowCall extends TDataFlowCall {
450
450
/** Gets a textual representation of this element. */
451
451
abstract string toString ( ) ;
452
452
453
- /** Gets the enclosing callable of this call. */
454
- abstract DataFlowCallable getEnclosingCallable ( ) ;
455
-
456
453
/** Get the callable to which this call goes, if such exists. */
457
454
abstract DataFlowCallable getCallable ( ) ;
458
455
@@ -465,6 +462,9 @@ abstract class DataFlowCall extends TDataFlowCall {
465
462
/** Get the control flow node representing this call, if any. */
466
463
abstract ControlFlowNode getNode ( ) ;
467
464
465
+ /** Gets the enclosing callable of this call. */
466
+ abstract DataFlowCallable getEnclosingCallable ( ) ;
467
+
468
468
/** Gets the location of this dataflow call. */
469
469
abstract Location getLocation ( ) ;
470
470
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ module SyntheticPostUpdateNode {
155
155
)
156
156
}
157
157
158
- /** Holds if `call` can be resolved as anormal call */
158
+ /** Holds if `call` can be resolved as a normal call */
159
159
private predicate resolvedCall ( CallNode call ) {
160
160
call = any ( DataFlowCallableValue cv ) .getACall ( )
161
161
or
You can’t perform that action at this time.
0 commit comments