about summary refs log tree commit diff
path: root/compiler/rustc_expand/messages.ftl
AgeCommit message (Collapse)AuthorLines
2023-12-10Remove edition umbrella features.Eric Huss-3/+0
2023-12-03Detect attempts to expand a macro to a match arm againNadrieril-0/+2
Because a macro invocation can expand to a never pattern, we can't rule out a `arm!(),` arm at parse time. Instead we detect that case at expansion time, if the macro tries to output a pattern followed by `=>`.
2023-10-21Mention the syntax for `use` on `mod foo;` if `foo` doesn't existEsteban Küber-0/+1
Newcomers might get confused that `mod` is the only way of defining scopes, and that it can be used as if it were `use`. Fix #69492.
2023-05-25Ensure Fluent messages are in alphabetical orderclubby789-89/+89
2023-04-25Fix static string lintsclubby789-0/+4
2023-04-10Fix typos in compilerDaniPopes-1/+1
2023-03-11Simplify message pathsest31-0/+138
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