mirror of
https://github.com/github/codeql.git
synced 2026-08-04 17:33:18 +02:00
10 lines
255 B
Plaintext
10 lines
255 B
Plaintext
class Function extends @function {
|
|
string toString() { none() }
|
|
}
|
|
|
|
from Function fun, string name, int kind, int kind_new
|
|
where
|
|
functions(fun, name, kind) and
|
|
if kind = 7 or kind = 8 then kind_new = 0 else kind_new = kind
|
|
select fun, name, kind_new
|