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 {
9393 /**
9494 * Gets a reference to a string constant that, if used as the key in a lookup,
9595 * indicates the presence of sensitive data with `classification`.
96- *
97- * Also see `extraStepForCalls`.
9896 */
9997 DataFlow:: Node sensitiveLookupStringConst ( SensitiveDataClassification classification ) {
10098 sensitiveLookupStringConst ( DataFlow:: TypeTracker:: end ( ) , classification ) .flowsTo ( result )
@@ -118,6 +116,8 @@ private module SensitiveDataModeling {
118116 /**
119117 * Tracks any modeled source of sensitive data (with any classification),
120118 * to limit the scope of `extraStepForCalls`. See it's QLDoc for more context.
119+ *
120+ * Also see `extraStepForCalls`.
121121 */
122122 private DataFlow:: LocalSourceNode possibleSensitiveCallable ( DataFlow:: TypeTracker t ) {
123123 t .start ( ) and
@@ -129,6 +129,8 @@ private module SensitiveDataModeling {
129129 /**
130130 * Tracks any modeled source of sensitive data (with any classification),
131131 * to limit the scope of `extraStepForCalls`. See it's QLDoc for more context.
132+ *
133+ * Also see `extraStepForCalls`.
132134 */
133135 private DataFlow:: Node possibleSensitiveCallable ( ) {
134136 possibleSensitiveCallable ( DataFlow:: TypeTracker:: end ( ) ) .flowsTo ( result )
You can’t perform that action at this time.
0 commit comments