summary refs log tree commit diff
path: root/src/tools/rust-analyzer/crates/syntax/rust.ungram
AgeCommit message (Collapse)AuthorLines
2024-05-06Implement unsafe attribute parsingLukas Wirth-2/+3
2024-04-18Fixup some issues with minicoreLukas Wirth-0/+1
2024-04-18Handle panicking like rustc CTFE doesNilstrieb-0/+701
Instead of using `core::fmt::format` to format panic messages, which may in turn panic too and cause recursive panics and other messy things, redirect `panic_fmt` to `const_panic_fmt` like CTFE, which in turn goes to `panic_display` and does the things normally. See the tests for the full call stack.