Files
codeql/rust/ql/test/extractor-tests/generated/Trait/Trait.ql
Geoffrey White 152ae1d29b Rust: Codegen.
2025-08-27 10:42:42 +01:00

49 lines
1.6 KiB
Plaintext
Generated

// generated by codegen, do not edit
import codeql.rust.elements
import TestUtils
query predicate instances(
Trait x, string isAuto__label, string isAuto, string isUnsafe__label, string isUnsafe
) {
toBeTested(x) and
not x.isUnknown() and
isAuto__label = "isAuto:" and
(if x.isAuto() then isAuto = "yes" else isAuto = "no") and
isUnsafe__label = "isUnsafe:" and
if x.isUnsafe() then isUnsafe = "yes" else isUnsafe = "no"
}
query predicate getAttributeMacroExpansion(Trait x, MacroItems getAttributeMacroExpansion) {
toBeTested(x) and
not x.isUnknown() and
getAttributeMacroExpansion = x.getAttributeMacroExpansion()
}
query predicate getAssocItemList(Trait x, AssocItemList getAssocItemList) {
toBeTested(x) and not x.isUnknown() and getAssocItemList = x.getAssocItemList()
}
query predicate getAttr(Trait x, int index, Attr getAttr) {
toBeTested(x) and not x.isUnknown() and getAttr = x.getAttr(index)
}
query predicate getGenericParamList(Trait x, GenericParamList getGenericParamList) {
toBeTested(x) and not x.isUnknown() and getGenericParamList = x.getGenericParamList()
}
query predicate getName(Trait x, Name getName) {
toBeTested(x) and not x.isUnknown() and getName = x.getName()
}
query predicate getTypeBoundList(Trait x, TypeBoundList getTypeBoundList) {
toBeTested(x) and not x.isUnknown() and getTypeBoundList = x.getTypeBoundList()
}
query predicate getVisibility(Trait x, Visibility getVisibility) {
toBeTested(x) and not x.isUnknown() and getVisibility = x.getVisibility()
}
query predicate getWhereClause(Trait x, WhereClause getWhereClause) {
toBeTested(x) and not x.isUnknown() and getWhereClause = x.getWhereClause()
}