We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f342756 commit d2972cbCopy full SHA for d2972cb
2 files changed
csharp/ql/lib/semmle/code/csharp/dataflow/Bound.qll
@@ -29,4 +29,6 @@ private module BoundDefs implements SharedBound::BoundDefinitions<CS::Location>
29
predicate interestingExprBound(Expr e) { CU::systemArrayLengthAccess(e.getExpr()) }
30
}
31
32
-import SharedBound::Bound<CS::Location, BoundDefs>
+module BoundImpl = SharedBound::Bound<CS::Location, BoundDefs>;
33
+
34
+import BoundImpl
java/ql/lib/semmle/code/java/dataflow/Bound.qll
@@ -31,4 +31,6 @@ private module BoundDefs implements SharedBound::BoundDefinitions<J::Location> {
-import SharedBound::Bound<J::Location, BoundDefs>
+module BoundImpl = SharedBound::Bound<J::Location, BoundDefs>;
35
36
0 commit comments