mirror of
https://github.com/github/codeql.git
synced 2026-07-31 23:42:59 +02:00
10 lines
331 B
Plaintext
10 lines
331 B
Plaintext
import java
|
|
|
|
from File f, string relative
|
|
where
|
|
not f.getURL().matches("file:///modules/%") and
|
|
not f.getURL().matches("file:///!unknown-binary-location/kotlin/%") and
|
|
not f.getURL().matches("%/ql/java/kotlin-extractor/%") and
|
|
if exists(f.getRelativePath()) then relative = "relative" else relative = ""
|
|
select f, relative
|