Files
codeql/java/ql/lib/upgrades/37f33da42d2cffa6ad8b26feaa6beed1c5ce3149/diagnostics.ql
2022-05-10 19:51:31 +01:00

15 lines
459 B
Plaintext

class Diagnostic extends @diagnostic {
string toString() { none() }
}
class Location extends @location_default {
string toString() { none() }
}
from
Diagnostic d, int severity, string error_tag, string error_message, string full_error_message,
Location l
where diagnostics(d, severity, error_tag, error_message, full_error_message, l)
select d, /* generated_by */ "CodeQL Java extractor", severity, error_tag, error_message,
full_error_message, l