mirror of
https://github.com/github/codeql.git
synced 2026-02-23 10:23:41 +01:00
Rename to neverSkipInPathGraph
This commit is contained in:
@@ -2022,7 +2022,7 @@ module Impl<FullStateConfigSig Config> {
|
||||
castNode(this.asNode()) or
|
||||
clearsContentCached(this.asNode(), _) or
|
||||
expectsContentCached(this.asNode(), _) or
|
||||
flowCheckNodeSpecific(this.asNode())
|
||||
neverSkipInPathGraph(this.asNode())
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -243,9 +243,10 @@ class CastNode extends ExprNode {
|
||||
}
|
||||
|
||||
/**
|
||||
* Holds if `n` should be a FlowCheckNode, which will appear in path summaries.
|
||||
* Holds if `n` should never be skipped over in the `PathGraph` and in path
|
||||
* explanations.
|
||||
*/
|
||||
predicate flowCheckNodeSpecific(Node n) { none() }
|
||||
predicate neverSkipInPathGraph(Node n) { none() }
|
||||
|
||||
private newtype TDataFlowCallable =
|
||||
TSrcCallable(Callable c) or
|
||||
|
||||
Reference in New Issue
Block a user