mirror of
https://github.com/github/codeql.git
synced 2026-08-05 01:43:23 +02:00
10 lines
219 B
Plaintext
10 lines
219 B
Plaintext
class Function extends @function {
|
|
string toString() { none() }
|
|
}
|
|
|
|
from Function f, string n, int k, int new_k
|
|
where
|
|
functions(f, n, k) and
|
|
if builtin_functions(f) then new_k = 6 else new_k = k
|
|
select f, n, new_k
|