mirror of
https://github.com/github/codeql.git
synced 2026-01-06 19:20:25 +01:00
18 lines
478 B
Plaintext
18 lines
478 B
Plaintext
import java
|
|
import Metrics.Summaries.TopJdkApis
|
|
|
|
from string apiName, string message
|
|
where
|
|
// top jdk api names for which there is no callable
|
|
topJdkApiName(apiName) and
|
|
not hasApiName(_, apiName) and
|
|
message = "no callable"
|
|
or
|
|
// top jdk api names for which there isn't a manual model
|
|
exists(TopJdkApi topApi |
|
|
not topApi.hasManualMadModel() and
|
|
hasApiName(topApi, apiName) and
|
|
message = "no manual model"
|
|
)
|
|
select apiName, message order by apiName
|