mirror of
https://github.com/github/codeql.git
synced 2026-03-05 23:26:51 +01:00
10 lines
314 B
Plaintext
10 lines
314 B
Plaintext
|
|
import python
|
|
import Architect.Common.DependencyCategory
|
|
import Architect.Architect
|
|
|
|
from DependencyCategory dk, DependencyElement source, DependencyElement target, DependencyElement cause
|
|
where dk.isADependency(source, target, cause)
|
|
select dk.toString(), source.toString(), target.toString(), cause.toString()
|
|
|