mirror of
https://github.com/github/codeql.git
synced 2026-08-03 17:03:02 +02:00
This collapses all generated test QL sources into a single one per directory, using query predicates to run the different tests. This should improve the time required to run generated tests.
11 lines
288 B
Plaintext
Generated
11 lines
288 B
Plaintext
Generated
// generated by codegen/codegen.py, do not edit
|
|
import codeql.swift.elements
|
|
import TestUtils
|
|
|
|
query predicate instances(ThenStmt x, string getResult__label, Expr getResult) {
|
|
toBeTested(x) and
|
|
not x.isUnknown() and
|
|
getResult__label = "getResult:" and
|
|
getResult = x.getResult()
|
|
}
|