mirror of
https://github.com/github/codeql.git
synced 2026-06-29 16:47:09 +02:00
7 lines
251 B
Plaintext
7 lines
251 B
Plaintext
import codeql.rust.dataflow.internal.DataFlowImpl
|
|
|
|
query predicate viableCallable(DataFlowCall call, DataFlowCallable callee) {
|
|
RustDataFlow::viableCallable(call) = callee and
|
|
(call.asCall().fromSource() or call.isImplicitDerefCall(_, _, _, _))
|
|
}
|