mirror of
https://github.com/github/codeql.git
synced 2026-04-11 18:14:01 +02:00
We currently model direct calls like
HTTParty.get("http://example.com")
but we don't yet handle calls on other classes that have included the
`HTTParty` module, like
class MyClient
include HTTParty
end
MyClient.get("http://example.com")