Actions: Implement added predicates in CFG instantiation

This commit is contained in:
Simon Friis Vindum
2025-01-17 13:31:00 +01:00
parent 4d05b6a0a5
commit 53b63bed00

View File

@@ -134,6 +134,10 @@ private module Implementation implements CfgShared::InputSig<Location> {
SuccessorType getAMatchingSuccessorType(Completion c) { result = c.getAMatchingSuccessorType() }
predicate isAbnormalExitType(SuccessorType t) { none() }
int idOfAstNode(AstNode node) { none() }
int idOfCfgScope(CfgScope scope) { none() }
}
module CfgImpl = CfgShared::Make<Location, Implementation>;