mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
14 lines
475 B
Plaintext
Generated
14 lines
475 B
Plaintext
Generated
// generated by codegen/codegen.py
|
|
import codeql.swift.elements
|
|
import TestUtils
|
|
|
|
from AppliedPropertyWrapperExpr x, string hasType, int getKind, Expr getValue, ParamDecl getParam
|
|
where
|
|
toBeTested(x) and
|
|
not x.isUnknown() and
|
|
(if x.hasType() then hasType = "yes" else hasType = "no") and
|
|
getKind = x.getKind() and
|
|
getValue = x.getValue() and
|
|
getParam = x.getParam()
|
|
select x, "hasType:", hasType, "getKind:", getKind, "getValue:", getValue, "getParam:", getParam
|