View source code
Display the source code in dmd/sarif.d from which thispage was generated on github.
Report a bug
If you spot a problem with this page, click here to create aBugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.Requires a signed-in GitHub account. This works well for small changes.If you'd like to make larger changes you may want to consider usinglocal clone.

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

NameDescription
executionSuccessful true for an empty results array; false for detailed errors.

Throws

This function is marked as nothrow and does not throw exceptions.

See Also

SARIF 2.1.0 schema

Authors

Walter Bright

License

Boost License 1.0