File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
python/ql/src/semmle/python/dataflow/new Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -93,8 +93,6 @@ private module SensitiveDataModeling {
93
93
/**
94
94
* Gets a reference to a string constant that, if used as the key in a lookup,
95
95
* indicates the presence of sensitive data with `classification`.
96
- *
97
- * Also see `extraStepForCalls`.
98
96
*/
99
97
DataFlow:: Node sensitiveLookupStringConst ( SensitiveDataClassification classification ) {
100
98
sensitiveLookupStringConst ( DataFlow:: TypeTracker:: end ( ) , classification ) .flowsTo ( result )
@@ -118,6 +116,8 @@ private module SensitiveDataModeling {
118
116
/**
119
117
* Tracks any modeled source of sensitive data (with any classification),
120
118
* to limit the scope of `extraStepForCalls`. See it's QLDoc for more context.
119
+ *
120
+ * Also see `extraStepForCalls`.
121
121
*/
122
122
private DataFlow:: LocalSourceNode possibleSensitiveCallable ( DataFlow:: TypeTracker t ) {
123
123
t .start ( ) and
@@ -129,6 +129,8 @@ private module SensitiveDataModeling {
129
129
/**
130
130
* Tracks any modeled source of sensitive data (with any classification),
131
131
* to limit the scope of `extraStepForCalls`. See it's QLDoc for more context.
132
+ *
133
+ * Also see `extraStepForCalls`.
132
134
*/
133
135
private DataFlow:: Node possibleSensitiveCallable ( ) {
134
136
possibleSensitiveCallable ( DataFlow:: TypeTracker:: end ( ) ) .flowsTo ( result )
You can’t perform that action at this time.
0 commit comments