We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 187ece6 commit d580722Copy full SHA for d580722
csharp/ql/src/meta/frameworks/UnsupportedExternalAPIs.ql
@@ -14,9 +14,9 @@ private import semmle.code.csharp.dataflow.internal.FlowSummaryImpl as FlowSumma
14
private import semmle.code.csharp.dataflow.internal.NegativeSummary
15
private import Telemetry.ExternalApi
16
17
-from DispatchCall c, ExternalApi api
+from Call c, ExternalApi api
18
where
19
- c = api.getACall() and
+ c.getTarget().getUnboundDeclaration() = api and
20
not api.isUninteresting() and
21
not api.isSupported() and
22
not api instanceof FlowSummaryImpl::Public::NegativeSummarizedCallable
0 commit comments