Skip to content

Commit fedf9db

Browse files
committed
C#: Rename SsaImpl input.
1 parent c64223a commit fedf9db

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
@@ -8,7 +8,7 @@ private import AssignableDefinitions
88
private import semmle.code.csharp.controlflow.Guards as Guards
99
private import semmle.code.csharp.dataflow.internal.BaseSSA
1010

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

1414
/**
@@ -40,7 +40,7 @@ private module SsaInput implements SsaImplCommon::InputSig<Location, BasicBlock>
4040
}
4141
}
4242

43-
import SsaImplCommon::Make<Location, Cfg, SsaInput> as Impl
43+
import SsaImplCommon::Make<Location, Cfg, SsaImplInput> as Impl
4444

4545
class Definition = Impl::Definition;
4646

@@ -800,7 +800,7 @@ private module Cached {
800800
predicate variableWriteQualifier(
801801
BasicBlock bb, int i, QualifiedFieldOrPropSourceVariable v, boolean certain
802802
) {
803-
SsaInput::variableWrite(bb, i, v.getQualifier(), certain) and
803+
SsaImplInput::variableWrite(bb, i, v.getQualifier(), certain) and
804804
// Eliminate corner case where a call definition can overlap with a
805805
// qualifier definition: if method `M` updates field `F`, then a call
806806
// to `M` is both an update of `x.M` and `x.M.M`, so the former call

0 commit comments

Comments
 (0)