Add stub implementations of flowCheckNodeSpecific

This commit is contained in:
Owen Mansel-Chan
2023-06-14 14:36:45 +01:00
parent e0f7437d40
commit 5f72ce0935
8 changed files with 40 additions and 0 deletions

View File

@@ -497,6 +497,11 @@ class CastNode extends Node {
CastNode() { readStep(_, _, this) or storeStep(_, _, this) }
}
/**
* Holds if `n` should be a FlowCheckNode, which will appear in path summaries.
*/
predicate flowCheckNodeSpecific(Node n) { none() }
/**
* Holds if `t1` and `t2` are compatible, that is, whether data can flow from
* a node of type `t1` to a node of type `t2`.