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