Skip to content

Commit 20b7925

Browse files
committed
Add missing QLDoc
1 parent 7ba2f7a commit 20b7925

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

shared/dataflow/codeql/dataflow/TaintTracking.qll

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Provides classes for performing local (intra-procedural) and
2+
* Provides modules for performing local (intra-procedural) and
33
* global (inter-procedural) taint-tracking analyses.
44
*/
55

@@ -8,6 +8,9 @@ private import DataFlowImpl
88
private import DataFlowParameter
99
import TaintTrackingParameter
1010

11+
/**
12+
* Construct the modules for taint-tracking analyses.
13+
*/
1114
module TaintFlowMake<
1215
DataFlowParameter DataFlowLang, TaintTrackingParameter<DataFlowLang> TaintTrackingLang>
1316
{

shared/dataflow/codeql/dataflow/TaintTrackingParameter.qll

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* Provides the signature for the language-specific parts of the taint-tracking analyses.
3+
*/
4+
15
import DataFlowParameter
26

37
signature module TaintTrackingParameter<DataFlowParameter Lang> {

0 commit comments

Comments
 (0)