mirror of
https://github.com/github/codeql.git
synced 2025-12-21 11:16:30 +01:00
10 lines
285 B
Plaintext
10 lines
285 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
|