File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
csharp/ql/test/utils/modelgenerator/dataflow Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import utils.modelgenerator.internal.CaptureModels
3
3
import utils.test.InlineMadTest
4
4
5
5
module InlineMadTestConfig implements InlineMadTestConfigSig {
6
- string getCapturedModel ( Callable c ) { result = captureNoFlow ( c ) }
6
+ string getCapturedModel ( Callable c ) { result = Heuristic :: captureNoFlow ( c ) }
7
7
8
8
string getKind ( ) { result = "neutral" }
9
9
}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import utils.modelgenerator.internal.CaptureModels
3
3
import utils.test.InlineMadTest
4
4
5
5
module InlineMadTestConfig implements InlineMadTestConfigSig {
6
- string getCapturedModel ( Callable c ) { result = captureSink ( c ) }
6
+ string getCapturedModel ( Callable c ) { result = Heuristic :: captureSink ( c ) }
7
7
8
8
string getKind ( ) { result = "sink" }
9
9
}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import utils.modelgenerator.internal.CaptureModels
3
3
import utils.test.InlineMadTest
4
4
5
5
module InlineMadTestConfig implements InlineMadTestConfigSig {
6
- string getCapturedModel ( Callable c ) { result = captureSource ( c ) }
6
+ string getCapturedModel ( Callable c ) { result = Heuristic :: captureSource ( c ) }
7
7
8
8
string getKind ( ) { result = "source" }
9
9
}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import utils.modelgenerator.internal.CaptureModels
3
3
import utils.test.InlineMadTest
4
4
5
5
module InlineMadTestConfig implements InlineMadTestConfigSig {
6
- string getCapturedModel ( Callable c ) { result = captureFlow ( c ) }
6
+ string getCapturedModel ( Callable c ) { result = Heuristic :: captureFlow ( c ) }
7
7
8
8
string getKind ( ) { result = "summary" }
9
9
}
You can’t perform that action at this time.
0 commit comments