about summary refs log tree commit diff
path: root/compiler/rustc_middle/messages.ftl
AgeCommit message (Collapse)AuthorLines
2023-10-30Add a custom panic message for resuming `gen` blocks after they panickedOli Scherer-0/+2
2023-10-20s/generator/coroutine/Oli Scherer-4/+4
2023-09-14don't point at const usage site for resolution-time errorsRalf Jung-0/+2
also share the code that emits the actual error
2023-07-27Don't attempt to compute layout of type referencing errorMichael Goulet-0/+3
2023-06-01Use translatable diagnostics in `rustc_const_eval`Deadbeef-0/+35
2023-05-25Ensure Fluent messages are in alphabetical orderclubby789-24/+24
2023-05-16Remove `LangItems::require`Nilstrieb-0/+2
It's just a short wrapper used by `tcx.require_lang_item`. Deleting it gives us a negative diff.
2023-05-02Avoid ICEing miri on layout query cyclesOli Scherer-0/+3
2023-04-03fix(middle): emit error rather than delay bug when reaching limitbohan-0/+4
2023-03-11Simplify message pathsest31-0/+36
This makes it easier to open the messages file while developing on features. The commit was the result of automatted changes: for p in compiler/rustc_*; do mv $p/locales/en-US.ftl $p/messages.ftl; rmdir $p/locales; done for p in compiler/rustc_*; do sed -i "s#\.\./locales/en-US.ftl#../messages.ftl#" $p/src/lib.rs; done