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