| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 2edb32f commit 89ce04d
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,12 +11,13 @@ import APIUsage | |||
| 11 | 11 | import ExternalAPI | |
| 12 | 12 | import semmle.code.java.GeneratedFiles | |
| 13 | 13 | ||
| 14 | - from ExternalAPI api | ||
| 14 | + from ExternalAPI api, int usages | ||
| 15 | 15 | where | |
| 16 | 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 | ||
| 17 | + supportKind(api) = "source" and | ||
| 18 | + usages = | ||
| 19 | + strictcount(Call c | | ||
| 20 | + c.getCallee() = api and | ||
| 21 | + not c.getFile() instanceof GeneratedFile | ||
| 22 | + ) | ||
| 23 | + select api.asCsv(api) as csv, usages order by usages desc | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments