Add missing QLDoc

This commit is contained in:
Jeroen Ketema
2023-08-04 11:53:52 +02:00
parent 7ba2f7a22a
commit 20b792545d
2 changed files with 8 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
/**
* Provides classes for performing local (intra-procedural) and
* Provides modules for performing local (intra-procedural) and
* global (inter-procedural) taint-tracking analyses.
*/
@@ -8,6 +8,9 @@ private import DataFlowImpl
private import DataFlowParameter
import TaintTrackingParameter
/**
* Construct the modules for taint-tracking analyses.
*/
module TaintFlowMake<
DataFlowParameter DataFlowLang, TaintTrackingParameter<DataFlowLang> TaintTrackingLang>
{

View File

@@ -1,3 +1,7 @@
/**
* Provides the signature for the language-specific parts of the taint-tracking analyses.
*/
import DataFlowParameter
signature module TaintTrackingParameter<DataFlowParameter Lang> {