mirror of
https://github.com/github/codeql.git
synced 2026-04-28 18:25:24 +02:00
14 lines
291 B
Plaintext
14 lines
291 B
Plaintext
import default
|
|
|
|
query predicate classUuids(Class cls, string uuid) {
|
|
if exists(cls.getUuid()) then
|
|
uuid = cls.getUuid()
|
|
else
|
|
uuid = ""
|
|
}
|
|
|
|
query predicate uuidofOperators(UuidofOperator op, string type, string uuid) {
|
|
uuid = op.getValue() and
|
|
type = op.getType().toString()
|
|
}
|