mirror of
https://github.com/github/codeql.git
synced 2026-01-08 20:20:34 +01:00
16 lines
343 B
Plaintext
16 lines
343 B
Plaintext
/**
|
|
* @name Extracted files
|
|
* @description A list of all files in the source code directory that
|
|
* were extracted.
|
|
* @kind diagnostic
|
|
* @id java/diagnostics/successfully-extracted-files
|
|
* @tags successfully-extracted-files
|
|
*/
|
|
|
|
import java
|
|
import DiagnosticsReporting
|
|
|
|
from CompilationUnit f
|
|
where extracted(f)
|
|
select f, ""
|