C#/Go/Python/Ruby/Swift: Fix some more references.

This commit is contained in:
Anders Schack-Mulligen
2023-05-25 13:18:01 +02:00
parent 1c3b8e2b96
commit 6020e4d0e3
5 changed files with 11 additions and 10 deletions

View File

@@ -5,12 +5,12 @@ import codeql.ruby.dataflow.internal.DataFlowPrivate
import codeql.ruby.dataflow.internal.DataFlowImplConsistency::Consistency
private class MyConsistencyConfiguration extends ConsistencyConfiguration {
override predicate postWithInFlowExclude(Node n) { n instanceof SummaryNode }
override predicate postWithInFlowExclude(Node n) { n instanceof FlowSummaryNode }
override predicate argHasPostUpdateExclude(ArgumentNode n) {
n instanceof BlockArgumentNode
or
n instanceof SummaryNode
n instanceof FlowSummaryNode
or
n instanceof SynthHashSplatArgumentNode
or