mirror of
https://github.com/github/codeql.git
synced 2026-04-19 05:54: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.
11 lines
287 B
Plaintext
Generated
11 lines
287 B
Plaintext
Generated
// generated by codegen, do not edit
|
|
import codeql.rust.elements
|
|
import TestUtils
|
|
|
|
query predicate instances(AsmOption x, string isRaw__label, string isRaw) {
|
|
toBeTested(x) and
|
|
not x.isUnknown() and
|
|
isRaw__label = "isRaw:" and
|
|
if x.isRaw() then isRaw = "yes" else isRaw = "no"
|
|
}
|