index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
compiler
/
rustc_lint
/
src
/
non_fmt_panic.rs
Age
Commit message (
Expand
)
Author
Lines
2023-12-15
Don't pass lint back out of lint decorator
Michael Goulet
-2
/
+1
2023-11-24
Replace `option.map(cond) == Some(true)` with `option.is_some_and(cond)`
David Tolnay
-10
/
+6
2023-05-24
Use `Option::is_some_and` and `Result::is_ok_and` in the compiler
Maybe Waffle
-1
/
+1
2023-02-22
errors: generate typed identifiers in each crate
David Wood
-9
/
+9
2023-02-13
Use is_str instead of string kind comparison
Michael Goulet
-1
/
+1
2023-01-09
refactor: cleanup
Rejyr
-2
/
+0
2023-01-09
migrate: `non_fmt_panic.rs`
Rejyr
-33
/
+16
2022-12-20
rustc: Remove needless lifetimes
Jeremy Stucki
-1
/
+1
2022-11-21
Stop passing the self-type as a separate argument.
Oli Scherer
-6
/
+10
2022-11-21
Use ty::List instead of InternalSubsts
Oli Scherer
-7
/
+2
2022-11-18
Rm diagnostic item, use lang item
Deadbeef
-1
/
+1
2022-10-23
Migrate all diagnostics
Nilstrieb
-35
/
+30
2022-10-07
Change InferCtxtBuilder from enter to build
Cameron Steffen
-15
/
+13
2022-10-01
Refactor rustc lint API
Maybe Waffle
-49
/
+55
2022-06-30
lint: port non-fmt-panic diagnostics
David Wood
-39
/
+34
2022-05-03
Make rustc_parse_format compile on stable
bjorn3
-1
/
+4
2022-04-29
errors: `span_suggestion` takes `impl ToString`
David Wood
-5
/
+5
2022-03-11
Improve `AdtDef` interning.
Nicholas Nethercote
-1
/
+1
2022-01-31
Take in account the unreachable! macro in the non_fmt_panic lint
Loïc BRANSTETT
-3
/
+22
2022-01-27
try apply `rustc_pass_by_value` to `Span`
lcnr
-1
/
+1
2021-12-15
Remove unnecessary sigils around `Symbol::as_str()` calls.
Nicholas Nethercote
-1
/
+1
2021-12-15
Remove `SymbolStr`.
Nicholas Nethercote
-6
/
+6
2021-12-09
Remove redundant [..]s
est31
-1
/
+1
2021-11-16
Use get_diagnostic_name more
Cameron Steffen
-6
/
+13
2021-10-08
clippy::complexity fixes
Matthias Krüger
-2
/
+1
2021-10-06
Use get_diagnostic_name
Cameron Steffen
-3
/
+4
2021-10-02
Make diangostic item names consistent
Cameron Steffen
-3
/
+3
2021-09-20
Adjust documentation for compatibility with 2021
Mark Rousskov
-1
/
+1
2021-08-17
Auto merge of #88083 - m-ou-se:non-fmt-panics-suggest-debug, r=estebank
bors
-13
/
+53
2021-08-16
Rollup merge of #87967 - m-ou-se:non-fmt-panic-detect-fake-spans, r=cjgillot
Mara Bos
-3
/
+11
2021-08-16
Show correct macro name in non_fmt_panics message.
Mara Bos
-1
/
+1
2021-08-16
Improve non_fmt_panics suggestion based on trait impls.
Mara Bos
-12
/
+52
2021-08-13
Use is_diagnostic_item instead of get_diagnostic_item.
Mara Bos
-3
/
+3
2021-08-13
non_fmt_panic: machine app. suggestion for assert with string msg.
Mara Bos
-2
/
+15
2021-08-12
Detect fake spans in non_fmt_panic lint.
Mara Bos
-3
/
+11
2021-08-12
Silence non_fmt_panic from external macros.
Mara Bos
-2
/
+13
2021-07-10
rustc_span: Revert addition of `proc_macro` field to `ExpnKind::Macro`
Vadim Petrochenkov
-5
/
+1
2021-07-06
Add s to non_fmt_panic
Ryan Levick
-6
/
+6
2021-06-27
Turn non_fmt_panic into a future_incompatible edition lint.
Mara Bos
-1
/
+8
2021-05-12
Implement span quoting for proc-macros
Aaron Hill
-5
/
+6
2021-05-09
Improve "panic message is not a string literal" warning
Paul Trojahn
-6
/
+11
2021-02-26
Rollup merge of #82456 - klensy:or-else, r=estebank
Guillaume Gomez
-1
/
+1
2021-02-23
replaced some unwrap_or with unwrap_or_else
klensy
-1
/
+1
2021-02-17
Add comment about how we find the right span in non_fmt_panic.
Mara Bos
-0
/
+3
2021-02-14
Formatting.
Mara Bos
-8
/
+2
2021-02-14
Suggest correct replacement for panic![123].
Mara Bos
-15
/
+33
2021-02-14
Improve suggestion for panic!(format!(..)).
Mara Bos
-1
/
+30
2021-02-14
Fix span in non_fmt_panic for panic!(some_macro!()).
Mara Bos
-4
/
+15
2021-02-03
Add lint for `panic!(123)` which is not accepted in Rust 2021.
Mara Bos
-0
/
+197