Python: add overlay annotations to inlined predicates

This commit is contained in:
yoff
2026-07-27 17:00:35 +02:00
parent fa94dc9a32
commit 665e046ae6

View File

@@ -85,10 +85,12 @@ class ControlFlowNode extends CfgImpl::ControlFlowNode {
}
/** Holds if this strictly dominates `other`. */
overlay[caller?]
pragma[inline]
predicate strictlyDominates(ControlFlowNode other) { super.strictlyDominates(other) }
/** Holds if this dominates `other` (reflexively). */
overlay[caller?]
pragma[inline]
predicate dominates(ControlFlowNode other) { super.dominates(other) }