mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
17 lines
592 B
Plaintext
Generated
17 lines
592 B
Plaintext
Generated
// generated by codegen, do not edit
|
|
import codeql.rust.elements
|
|
import TestUtils
|
|
|
|
from
|
|
ArrayRepeatExpr x, int getNumberOfExprs, int getNumberOfAttrs, Expr getRepeatOperand,
|
|
Expr getRepeatLength
|
|
where
|
|
toBeTested(x) and
|
|
not x.isUnknown() and
|
|
getNumberOfExprs = x.getNumberOfExprs() and
|
|
getNumberOfAttrs = x.getNumberOfAttrs() and
|
|
getRepeatOperand = x.getRepeatOperand() and
|
|
getRepeatLength = x.getRepeatLength()
|
|
select x, "getNumberOfExprs:", getNumberOfExprs, "getNumberOfAttrs:", getNumberOfAttrs,
|
|
"getRepeatOperand:", getRepeatOperand, "getRepeatLength:", getRepeatLength
|