mirror of
https://github.com/github/codeql.git
synced 2026-04-28 18:25:24 +02:00
Like the one existing in ControlFlowNode.
This is useful for checking class of value being poitned to, as
expr.pointsTo().getClass() = someClass
Without this you need to do
exists(Value v | v.getClass() = someClass | expr.pointsTo(v))