Skip to content

Commit 7ef9e1b

Browse files
committed
C#: Rename SsaImpl input.
1 parent a473fdb commit 7ef9e1b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • csharp/ql/lib/semmle/code/csharp/dataflow/internal

csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ private import semmle.code.csharp.controlflow.Guards as Guards
99
private import semmle.code.csharp.dataflow.internal.BaseSSA
1010
private import semmle.code.csharp.internal.Location
1111

12-
private module SsaInput implements SsaImplCommon::InputSig<Location, BasicBlock> {
12+
private module SsaImplInput implements SsaImplCommon::InputSig<Location, BasicBlock> {
1313
class SourceVariable = Ssa::SourceVariable;
1414

1515
/**
@@ -41,7 +41,7 @@ private module SsaInput implements SsaImplCommon::InputSig<Location, BasicBlock>
4141
}
4242
}
4343

44-
import SsaImplCommon::Make<Location, Cfg, SsaInput> as Impl
44+
import SsaImplCommon::Make<Location, Cfg, SsaImplInput> as Impl
4545

4646
class Definition = Impl::Definition;
4747

@@ -815,7 +815,7 @@ private module Cached {
815815
predicate variableWriteQualifier(
816816
BasicBlock bb, int i, QualifiedFieldOrPropSourceVariable v, boolean certain
817817
) {
818-
SsaInput::variableWrite(bb, i, v.getQualifier(), certain) and
818+
SsaImplInput::variableWrite(bb, i, v.getQualifier(), certain) and
819819
// Eliminate corner case where a call definition can overlap with a
820820
// qualifier definition: if method `M` updates field `F`, then a call
821821
// to `M` is both an update of `x.M` and `x.M.M`, so the former call

0 commit comments

Comments
 (0)