mirror of
https://github.com/github/codeql.git
synced 2026-03-27 09:48:16 +01:00
10 lines
235 B
Plaintext
10 lines
235 B
Plaintext
import TestPackage
|
|
|
|
// this is a copy of the body of ExternalDependencies.ql
|
|
from File file, int num, string encodedDependency
|
|
where
|
|
encodedDependencies(file, encodedDependency, num)
|
|
select
|
|
encodedDependency, num
|
|
order by num desc
|