mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
14 lines
469 B
Plaintext
Generated
14 lines
469 B
Plaintext
Generated
// generated by codegen, do not edit
|
|
import codeql.rust.elements
|
|
import TestUtils
|
|
|
|
query predicate instances(MacroBlockExpr x) { toBeTested(x) and not x.isUnknown() }
|
|
|
|
query predicate getStatement(MacroBlockExpr x, int index, Stmt getStatement) {
|
|
toBeTested(x) and not x.isUnknown() and getStatement = x.getStatement(index)
|
|
}
|
|
|
|
query predicate getTailExpr(MacroBlockExpr x, Expr getTailExpr) {
|
|
toBeTested(x) and not x.isUnknown() and getTailExpr = x.getTailExpr()
|
|
}
|