Function dmd.sarif.generateSarifReport
Generates a SARIF (Static Analysis Results Interchange Format) report and prints it to stdout
.
void generateSarifReport(
bool executionSuccessful
);
This function constructs a JSON-formatted SARIF report that includes information about the tool used (such as compiler version and URI), the invocation status (indicating whether the execution was successful), and a detailed array of diagnostics (results) when executionSuccessful
is set to false
. Each diagnostic entry in the results array contains the rule identifier (ruleId
), a text message describing the issue (message
), the severity level (level
), and the location of the issue in the source code, including the file path, line number, and column number. The SARIF report adheres to the SARIF 2.1.0 standard.
Parameters
Name | Description |
---|---|
executionSuccessful | true for an empty results array; false for detailed errors. |
Throws
This function is marked as nothrow
and does not throw exceptions.