mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
9 lines
295 B
Plaintext
9 lines
295 B
Plaintext
import javascript
|
|
|
|
from SimpleParameter res, DataFlow::Node resNode, MethodCallExpr send
|
|
where res.getName() = "res" and
|
|
resNode = DataFlow::parameterNode(res) and
|
|
resNode.getASuccessor+() = DataFlow::valueNode(send.getReceiver()) and
|
|
send.getMethodName() = "send"
|
|
select send
|