mirror of
https://github.com/github/codeql.git
synced 2026-08-02 00:13:00 +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.
15 lines
383 B
Plaintext
Generated
15 lines
383 B
Plaintext
Generated
// generated by codegen/codegen.py, do not edit
|
|
import codeql.swift.elements
|
|
import TestUtils
|
|
|
|
query predicate instances(
|
|
Diagnostics x, string getText__label, string getText, string getKind__label, int getKind
|
|
) {
|
|
toBeTested(x) and
|
|
not x.isUnknown() and
|
|
getText__label = "getText:" and
|
|
getText = x.getText() and
|
|
getKind__label = "getKind:" and
|
|
getKind = x.getKind()
|
|
}
|