Update rustc-driver-getting-diagnostics.md

This commit is contained in:
Tbkhi 2024-03-10 15:58:49 -03:00 committed by Tshepang Mbambo
parent aa0d5c1307
commit 10809fed2f
1 changed files with 8 additions and 3 deletions

View File

@ -1,14 +1,19 @@
# Example: Getting diagnostic through `rustc_interface` # Example: Getting diagnostic through `rustc_interface`
`rustc_interface` allows you to intercept diagnostics that would otherwise be printed to stderr. The [`rustc_interface`] allows you to intercept diagnostics that would
otherwise be printed to stderr.
## Getting diagnostics ## Getting diagnostics
To get diagnostics from the compiler, To get diagnostics from the compiler,
configure `rustc_interface::Config` to output diagnostic to a buffer, configure [`rustc_interface::Config`] to output diagnostic to a buffer,
and run `TyCtxt.analysis`. The following was tested and run [`TyCtxt.analysis`]. The following was tested
with <!-- date-check: jan 2024 --> `nightly-2024-01-19`: with <!-- date-check: jan 2024 --> `nightly-2024-01-19`:
```rust ```rust
{{#include ../examples/rustc-driver-getting-diagnostics.rs}} {{#include ../examples/rustc-driver-getting-diagnostics.rs}}
``` ```
[`rustc_interface`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_interface/index.html
[`rustc_interface::Config`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_interface/interface/struct.Config.html
[`TyCtxt.analysis`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_interface/passes/fn.analysis.html