summary refs log tree commit diff
path: root/compiler/rustc_errors/src/lib.rs
AgeCommit message (Expand)AuthorLines
2023-08-04Auto merge of #114104 - oli-obk:syn2, r=compiler-errorsbors-12/+1
2023-08-03Add `internal_features` lintNilstrieb-0/+1
2023-07-31Replace the many arguments of `EmitterWriter::stderr` with builder methodsOli Scherer-12/+1
2023-07-30inline format!() args up to and including rustc_middleMatthias Krüger-5/+3
2023-07-29Auto merge of #113099 - bvanjoi:fix-112713-2, r=petrochenkovbors-0/+16
2023-07-28Rollup merge of #114128 - estebank:delayed-span-bug-dump, r=davidtwcoMatthias Krüger-2/+2
2023-07-29fix(resolve): update the ambiguity glob binding as warning recursivelybohan-0/+16
2023-07-27When flushing delayed span bugs, write to the ICE dump file even if it doesn'...Esteban Küber-2/+2
2023-07-27Auto merge of #113281 - dayo05:master, r=davidtwcobors-14/+28
2023-07-25Use a builder instead of boolean/option argumentsOli Scherer-24/+23
2023-07-25Remove a redundant fieldOli Scherer-3/+1
2023-07-25Inline a function that is only used onceOli Scherer-20/+4
2023-07-25Remove some arguments that are always the sameOli Scherer-8/+4
2023-07-24Optimize format usageYuri Astrakhan-1/+1
2023-07-20Don't translate compiler-internal bug messagesOli Scherer-7/+7
2023-07-19On nightly, dump ICE backtraces to diskEsteban Küber-3/+28
2023-07-07Implement diagnostic translation for expected lifetime parameter messageDayo-14/+28
2023-07-03Add a simple markdown parser for formatting `rustc --explain`Trevor Gross-0/+1
2023-06-14s/drain_filter/extract_if/ for Vec, Btree{Map,Set} and LinkedListThe 8472-2/+2
2023-06-06Respect `RUST_BACKTRACE` for delayed bugsNilstrieb-4/+14
2023-06-01Remove adt_const_params usage from compilerMichael Goulet-2/+1
2023-05-29Use `Cow` in `{D,Subd}iagnosticMessage`.Nicholas Nethercote-7/+7
2023-05-24Use `Option::is_some_and` and `Result::is_ok_and` in the compilerMaybe Waffle-2/+2
2023-05-22Check opaques for mismatch during writebackMichael Goulet-0/+1
2023-05-21Rollup merge of #111745 - Badel2:emitter-add-overflow, r=compiler-errorsMatthias Krüger-6/+5
2023-05-19Fix overflow in error emitterBadel2-6/+5
2023-05-17Give a more useful location for where a span_bug was delayedjyn-1/+1
2023-05-17Emits E0599 when meeting MyTrait::missing_methodmu001999-0/+1
2023-05-13Auto merge of #107586 - SparrowLii:parallel-query, r=cjgillotbors-3/+3
2023-05-06correct literals for dyn thread safeSparrowLii-3/+3
2023-05-06introduce `DynSend` and `DynSync` auto traitSparrowLii-3/+3
2023-05-05Mark `ErrorGuaranteed` constructor as deprecated so people don't use itMichael Goulet-14/+21
2023-05-03Restrict `From<S>` for `{D,Subd}iagnosticMessage`.Nicholas Nethercote-8/+8
2023-04-19Auto merge of #110407 - Nilstrieb:fluent-macro, r=davidtwcobors-1/+1
2023-04-18Add `rustc_fluent_macro` to decouple fluent from `rustc_macros`Nilstrieb-1/+1
2023-04-18Store hashes in special types so they aren't accidentally encoded as numbersBen Kimock-2/+2
2023-04-13Rollup merge of #110072 - joshtriplett:stabilize-is-terminal, r=Mark-SimulacrumMatthias Krüger-1/+0
2023-04-12Rollup merge of #110135 - compiler-errors:revert-108031, r=davidtwcoMatthias Krüger-2/+0
2023-04-10Migrate most of `rustc_builtin_macros` to diagnostic implsclubby789-1/+3
2023-04-10Stabilize IsTerminalJosh Triplett-1/+0
2023-04-10Revert "Don't recover lifetimes/labels containing emojis as character literals"Michael Goulet-2/+0
2023-03-21Avoid ICE of attempt to add with overflow in emitteryukang-1/+1
2023-03-11Simplify message pathsest31-1/+1
2023-03-04Properly colorize multi-part suggestions in the same lineEsteban Küber-1/+1
2023-02-26Rollup merge of #108482 - Ezrashaw:force-error-docs, r=GuillaumeGomezMatthias Krüger-3/+1
2023-02-26refactor: statically guarantee that current error codes are documentedEzra Shaw-3/+1
2023-02-25Add ErrorGuaranteed to HIR TyKind::ErrMichael Goulet-15/+1
2023-02-22errors: generate typed identifiers in each crateDavid Wood-2/+4
2023-02-18Rollup merge of #108031 - jieyouxu:issue-108019, r=estebankMatthias Krüger-0/+2
2023-02-16`if $c:expr { Some($r:expr) } else { None }` =>> `$c.then(|| $r)`Maybe Waffle-16/+13