mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
11 lines
257 B
Plaintext
11 lines
257 B
Plaintext
import rust
|
|
import codeql.rust.internal.PathResolution
|
|
import utils.test.PathResolutionInlineExpectationsTest
|
|
|
|
query predicate resolveDollarCrate(PathExt p, Crate c) {
|
|
c = resolvePath(p) and
|
|
p.isDollarCrate() and
|
|
p.fromSource() and
|
|
c.fromSource()
|
|
}
|