Skip to content

Commit d0feec9

Browse files
committed
Run config/sync-files.py
1 parent d6885c3 commit d0feec9

File tree

6 files changed

+13
-0
lines changed

6 files changed

+13
-0
lines changed

csharp/ql/lib/semmle/code/csharp/dataflow/Bound.qll

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/**
22
* Provides classes for representing abstract bounds for use in, for example, range analysis.
33
*/
4+
overlay[local?]
5+
module;
46

57
private import internal.rangeanalysis.BoundSpecific
68

csharp/ql/lib/semmle/code/csharp/dataflow/ModulusAnalysis.qll

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
* an expression, `b` is a `Bound` (typically zero or the value of an SSA
44
* variable), and `v` is an integer in the range `[0 .. m-1]`.
55
*/
6+
overlay[local?]
7+
module;
68

79
private import internal.rangeanalysis.ModulusAnalysisSpecific::Private
810
private import Bound

csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/Sign.qll

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
overlay[local?]
2+
module;
3+
14
newtype TSign =
25
TNeg() or
36
TZero() or

csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisCommon.qll

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
* The analysis is implemented as an abstract interpretation over the
66
* three-valued domain `{negative, zero, positive}`.
77
*/
8+
overlay[local?]
9+
module;
810

911
private import SignAnalysisSpecific::Private
1012
private import SsaReadPositionCommon

csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaReadPositionCommon.qll

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/**
22
* Provides classes for representing a position at which an SSA variable is read.
33
*/
4+
overlay[local?]
5+
module;
46

57
private import SsaReadPositionSpecific
68
import SsaReadPositionSpecific::Public

python/ql/lib/semmle/python/security/internal/EncryptionKeySizes.qll

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* Provides predicates for recommended encryption key sizes.
55
* Such that we can share this logic across our CodeQL analysis of different languages.
66
*/
7+
overlay[local?]
8+
module;
79

810
/** Returns the minimum recommended key size for RSA. */
911
int minSecureKeySizeRsa() { result = 2048 }

0 commit comments

Comments
 (0)