mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
17 lines
436 B
Plaintext
17 lines
436 B
Plaintext
import rust
|
|
import utils.modelgenerator.internal.CaptureModels
|
|
import SummaryModels
|
|
import utils.test.InlineMadTest
|
|
|
|
module InlineMadTestConfig implements InlineMadTestConfigSig {
|
|
string getCapturedModel(Function f) {
|
|
exists(QualifiedCallable qc | f = qc.getFunction() |
|
|
result = ContentSensitive::captureFlow(qc, _, _, _, _)
|
|
)
|
|
}
|
|
|
|
string getKind() { result = "summary" }
|
|
}
|
|
|
|
import InlineMadTest<InlineMadTestConfig>
|