about summary refs log tree commit diff
path: root/compiler/rustc_errors/src/lib.rs
AgeCommit message (Expand)AuthorLines
2024-01-09Remove `-Zdont-buffer-diagnostics`.Nicholas Nethercote-3/+0
2024-01-08Remove `{DiagCtxt,DiagCtxtInner}::emit_diagnostic_without_consuming`.Nicholas Nethercote-23/+7
2024-01-08Remove `DiagnosticBuilderState`.Nicholas Nethercote-0/+1
2024-01-08Remove all eight `DiagnosticBuilder::*_with_code` methods.Nicholas Nethercote-92/+0
2024-01-08Use chaining in `DiagnosticBuilder` construction.Nicholas Nethercote-30/+10
2024-01-08Remove `Clone` impl for `DiagnosticBuilder`.Nicholas Nethercote-0/+1
2024-01-05Rollup merge of #119601 - nnethercote:Emitter-cleanups, r=oli-obkMichael Goulet-2/+2
2024-01-05Rollup merge of #119567 - nnethercote:rm-Zreport-delayed-bugs, r=oli-obkMichael Goulet-13/+3
2024-01-05Rollup merge of #119538 - nnethercote:cleanup-errors-5, r=compiler-errorsMichael Goulet-30/+16
2024-01-05Rename `EmitterWriter` as `HumanEmitter`.Nicholas Nethercote-2/+2
2024-01-04Remove `-Zreport-delayed-bugs`.Nicholas Nethercote-13/+3
2024-01-04Remove `is_lint` field from `Level::Error`.Nicholas Nethercote-14/+10
2024-01-04compiler: fix typosvuittont60-1/+1
2024-01-04Remove unused `DiagnosticBuilder::struct_almost_fatal`.Nicholas Nethercote-10/+0
2024-01-03Rename some `Diagnostic` setters.Nicholas Nethercote-6/+6
2023-12-31rustc_lint: Make `LintLevelsProvider::current_specs()` return `&FxIndexMap`Martin Nordholts-2/+2
2023-12-24Remove `Session` methods that duplicate `DiagCtxt` methods.Nicholas Nethercote-2/+14
2023-12-24Remove `ParseSess` methods that duplicate `DiagCtxt` methods.Nicholas Nethercote-1/+12
2023-12-23Use `pub(crate)` in a couple of places.Nicholas Nethercote-2/+2
2023-12-23Take full advantage of a `use Level::*;`.Nicholas Nethercote-35/+33
2023-12-23Remove `LabelKind`.Nicholas Nethercote-2/+1
2023-12-23Improve some names.Nicholas Nethercote-1/+1
2023-12-23Remove `DiagCtxtInner::span_bug`.Nicholas Nethercote-13/+5
2023-12-23Introduce `DiagCtxt::treat_next_err_as_bug`.Nicholas Nethercote-7/+8
2023-12-23Remove unnecessary line breaks from two string literals.Nicholas Nethercote-4/+2
2023-12-23Tweak `flush_delayed`.Nicholas Nethercote-10/+11
2023-12-23Give `DiagnosticBuilder` a default type.Nicholas Nethercote-12/+6
2023-12-23Fix a couple of left-over references to `Handler`.Nicholas Nethercote-2/+2
2023-12-23Improve `use` items in `compiler/rustc_errors/src/lib.rs`.Nicholas Nethercote-30/+27
2023-12-23Streamline `struct_lint_level`.Nicholas Nethercote-53/+0
2023-12-23Add comments to `Level`.Nicholas Nethercote-5/+59
2023-12-19Remove unused `DiagCtxt::span_bug_no_panic`.Nicholas Nethercote-7/+0
2023-12-19De-weirdify `fatally_break_rust`.Nicholas Nethercote-0/+13
2023-12-19Introduce `DiagCtxt::struct_bug`.Nicholas Nethercote-1/+9
2023-12-19Add `EmitResult` associated type to `EmissionGuarantee`.Nicholas Nethercote-18/+18
2023-12-19Remove `struct_diagnostic` and `G::make_diagnostic_builder`.Nicholas Nethercote-15/+0
2023-12-19Add `level` arg to `into_diagnostic`.Nicholas Nethercote-6/+6
2023-12-18Use `.into_diagnostic()` less.Nicholas Nethercote-0/+1
2023-12-18Rename `HandlerFlags` as `DiagCtxtFlags`.Nicholas Nethercote-4/+4
2023-12-18Rename `HandlerInner` as `DiagCtxtInner`.Nicholas Nethercote-9/+9
2023-12-18Rename `Handler` as `DiagCtxt`.Nicholas Nethercote-4/+4
2023-12-15Split `Handler::emit_diagnostic` in two.Nicholas Nethercote-16/+35
2023-12-15Remove `Handler::emit_diag_at_span`.Nicholas Nethercote-23/+9
2023-12-15Avoid `DiagnosticBuilder::<T>::new` calls.Nicholas Nethercote-4/+4
2023-12-15Change `msg: impl Into<String>` for bug diagnostics.Nicholas Nethercote-7/+7
2023-12-14Avoid `struct_diagnostic` where possible.Nicholas Nethercote-2/+17
2023-12-14Inline and remove `HandlerInner::emit_diag_at_span`.Nicholas Nethercote-5/+1
2023-12-14Remove unused `Handler::treat_err_as_bug`.Nicholas Nethercote-5/+0
2023-12-04Inline and remove `fatal_no_raise`.Nicholas Nethercote-10/+3
2023-12-04Make `Handler::{err,bug}` more like `Handler::{warn,note}`.Nicholas Nethercote-10/+3