mirror of
https://github.com/github/codeql.git
synced 2026-03-02 13:53:42 +01:00
12 lines
328 B
Plaintext
12 lines
328 B
Plaintext
/**
|
|
* Provides sign analysis to determine whether expression are always positive
|
|
* or negative.
|
|
*
|
|
* The analysis is implemented as an abstract interpretation over the
|
|
* three-valued domain `{negative, zero, positive}`.
|
|
*/
|
|
overlay[local?]
|
|
module;
|
|
|
|
import semmle.code.java.dataflow.internal.rangeanalysis.SignAnalysisCommon
|