mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01: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()
|