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 2edb32f commit 89ce04dCopy full SHA for 89ce04d
java/ql/src/Telemetry/SupportedExternalSources.ql
@@ -11,12 +11,13 @@ import APIUsage
11
import ExternalAPI
12
import semmle.code.java.GeneratedFiles
13
14
-from ExternalAPI api
+from ExternalAPI api, int usages
15
where
16
not api.isTestLibrary() and
17
- supportKind(api) = "source"
18
-select api.asCsv(api) as csv,
19
- strictcount(Call c |
20
- c.getCallee() = api and
21
- not c.getFile() instanceof GeneratedFile
22
- ) as Usages order by Usages desc
+ supportKind(api) = "source" and
+ usages =
+ strictcount(Call c |
+ c.getCallee() = api and
+ not c.getFile() instanceof GeneratedFile
+ )
23
+select api.asCsv(api) as csv, usages order by usages desc
0 commit comments