mirror of
https://github.com/github/codeql.git
synced 2026-03-12 02:26:52 +01:00
15 lines
377 B
Plaintext
15 lines
377 B
Plaintext
/**
|
|
* @name Capture neutral models.
|
|
* @description Finds neutral models to be used by other queries.
|
|
* @kind diagnostic
|
|
* @id java/utils/modelgenerator/neutral-models
|
|
* @tags modelgenerator
|
|
*/
|
|
|
|
import internal.CaptureModels
|
|
import internal.CaptureSummaryFlowQuery
|
|
|
|
from DataFlowTargetApi api, string noflow
|
|
where noflow = captureNoFlow(api)
|
|
select noflow order by noflow
|