mirror of
https://github.com/github/codeql.git
synced 2026-02-23 10:23:41 +01:00
27 lines
577 B
Plaintext
27 lines
577 B
Plaintext
/**
|
|
* Provides Java-specific definitions for use in the data flow library.
|
|
*/
|
|
|
|
private import semmle.code.Location
|
|
private import codeql.dataflow.DataFlow
|
|
|
|
module Private {
|
|
import DataFlowPrivate
|
|
import DataFlowDispatch
|
|
}
|
|
|
|
module Public {
|
|
import DataFlowUtil
|
|
}
|
|
|
|
module JavaDataFlow implements InputSig<Location> {
|
|
import Private
|
|
import Public
|
|
|
|
Node exprNode(DataFlowExpr e) { result = Public::exprNode(e) }
|
|
|
|
predicate mayBenefitFromCallContext = Private::mayBenefitFromCallContext/1;
|
|
|
|
predicate viableImplInCallContext = Private::viableImplInCallContext/2;
|
|
}
|