mirror of
https://github.com/github/codeql.git
synced 2026-03-29 19:58:17 +02:00
8 lines
147 B
Plaintext
8 lines
147 B
Plaintext
import javascript
|
|
|
|
from CallExpr c, Expr arg
|
|
where
|
|
c.getCalleeName() = "DUMP" and
|
|
arg = c.getArgument(0)
|
|
select arg, arg.analyze().getAValue()
|