mirror of
https://github.com/github/codeql.git
synced 2025-12-22 11:46:32 +01:00
12 lines
332 B
Plaintext
Generated
12 lines
332 B
Plaintext
Generated
// generated by codegen/codegen.py
|
|
import codeql.swift.elements
|
|
import TestUtils
|
|
|
|
from CopyExpr x, string hasType, Expr getSubExpr
|
|
where
|
|
toBeTested(x) and
|
|
not x.isUnknown() and
|
|
(if x.hasType() then hasType = "yes" else hasType = "no") and
|
|
getSubExpr = x.getSubExpr()
|
|
select x, "hasType:", hasType, "getSubExpr:", getSubExpr
|