mirror of
https://github.com/github/codeql.git
synced 2026-08-04 17:33:18 +02:00
15 lines
275 B
Plaintext
15 lines
275 B
Plaintext
class UsingEntry extends @using {
|
|
string toString() { none() }
|
|
}
|
|
|
|
class Element extends @element {
|
|
string toString() { none() }
|
|
}
|
|
|
|
from UsingEntry u, Element parent, int kind
|
|
where
|
|
usings(u, _, _, kind) and
|
|
using_container(parent, u) and
|
|
kind != 3
|
|
select parent, u
|