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_parse
/
src
/
parser
/
attr.rs
Age
Commit message (
Expand
)
Author
Lines
2024-03-05
Rename all `ParseSess` variables/fields/lifetimes as `psess`.
Nicholas Nethercote
-3
/
+3
2024-02-28
Rename `DiagnosticBuilder` as `Diag`.
Nicholas Nethercote
-2
/
+2
2024-02-19
Prefer `DiagnosticBuilder` over `Diagnostic` in diagnostic modifiers.
Nicholas Nethercote
-2
/
+2
2024-01-29
Stop using `String` for error codes.
Nicholas Nethercote
-2
/
+2
2024-01-12
Suggest quoting unquoted idents in attrs
sjwang05
-4
/
+24
2024-01-10
Rename consuming chaining methods on `DiagnosticBuilder`.
Nicholas Nethercote
-4
/
+7
2024-01-08
Remove all eight `DiagnosticBuilder::*_with_code` methods.
Nicholas Nethercote
-5
/
+4
2024-01-08
Use chaining in `DiagnosticBuilder` construction.
Nicholas Nethercote
-14
/
+13
2024-01-03
Rename some `Diagnostic` setters.
Nicholas Nethercote
-1
/
+1
2023-12-24
Remove `ParseSess` methods that duplicate `DiagCtxt` methods.
Nicholas Nethercote
-1
/
+1
2023-12-24
Remove `Parser` methods that duplicate `DiagCtxt` methods.
Nicholas Nethercote
-3
/
+3
2023-12-18
Use `.into_diagnostic()` less.
Nicholas Nethercote
-3
/
+4
2023-12-18
Rename `Parser::span_diagnostic` as `Parser::dcx`.
Nicholas Nethercote
-2
/
+2
2023-12-10
remove redundant imports
surechen
-1
/
+0
2023-12-02
Use `Session::diagnostic` in more places.
Nicholas Nethercote
-2
/
+2
2023-11-16
More detail when expecting expression but encountering bad macro argument
Esteban Küber
-2
/
+2
2023-08-02
Move `TokenCursor::num_next_calls` into `Parser` and rename it.
Nicholas Nethercote
-3
/
+3
2023-06-27
Simplify some conditions
Maybe Waffle
-10
/
+7
2023-04-16
fix clippy::toplevel_ref_arg and ::manual_map
Matthias Krüger
-3
/
+3
2023-02-22
errors: generate typed identifiers in each crate
David Wood
-9
/
+10
2023-02-21
Use `ThinVec` in various AST types.
Nicholas Nethercote
-2
/
+5
2022-12-10
compiler: remove unnecessary imports and qualified paths
KaDiWa
-1
/
+0
2022-11-28
Rename `NestedMetaItem::[Ll]iteral` as `NestedMetaItem::[Ll]it`.
Nicholas Nethercote
-1
/
+1
2022-11-28
Rename `ast::Lit` as `ast::MetaItemLit`.
Nicholas Nethercote
-4
/
+5
2022-11-22
`rustc_parse`: remove `ref` patterns
Maybe Waffle
-6
/
+6
2022-11-21
Match crate and slug names
mejrs
-6
/
+6
2022-11-16
Use `token::Lit` in `ast::ExprKind::Lit`.
Nicholas Nethercote
-2
/
+2
2022-10-23
Migrate all diagnostics
Nilstrieb
-14
/
+14
2022-09-27
Implement IntoDiagnosticArg for rustc_ast::token::Token(Kind)
Xiretza
-3
/
+1
2022-09-27
Rework "inner attribute not permitted" errors
Xiretza
-56
/
+51
2022-09-27
Remove error condition in parse_attribute
Xiretza
-25
/
+12
2022-09-27
Migrate more rustc_parse diagnostics to diagnostic structs
Xiretza
-10
/
+7
2022-09-14
make `mk_attr_id` part of `ParseSess`
SparrowLii
-2
/
+15
2022-09-09
Rename `{Create,Lazy}TokenStream` as `{To,Lazy}AttrTokenStream`.
Nicholas Nethercote
-1
/
+1
2022-09-09
Rename `AttrAnnotatedToken{Stream,Tree}`.
Nicholas Nethercote
-1
/
+1
2022-09-01
Always import all tracing macros for the entire crate instead of piecemeal by...
Oli Scherer
-2
/
+0
2022-08-22
Use `AttrVec` in more places.
Nicholas Nethercote
-4
/
+4
2022-06-13
remove unnecessary `to_string` and `String::new`
Takayuki Maeda
-4
/
+3
2022-05-20
Remove `crate` visibility usage in compiler
Jacob Pratt
-4
/
+4
2022-05-02
fix most compiler/ doctests
Elliot Roberts
-3
/
+4
2022-04-28
rustc_ast: Harmonize delimiter naming with `proc_macro::Delimiter`
Vadim Petrochenkov
-4
/
+4
2022-04-06
Stop flagging certain inner attrs as outer ones
León Orell Valerian Liehr
-11
/
+15
2022-03-30
Spellchecking some comments
Yuri Astrakhan
-1
/
+1
2022-03-17
Rollup merge of #94731 - TaKO8Ki:const-generic-expr-recovery, r=davidtwco,oli...
Dylan DPC
-1
/
+1
2022-03-15
use `format_args_capture` in some parts of rustc_parse
Takayuki Maeda
-2
/
+2
2022-03-10
replace `self.clone()` with `self.create_snapshot_for_diagnostic()`
Takayuki Maeda
-1
/
+1
2022-02-23
rustc_errors: take `self` by value in `DiagnosticBuilder::cancel`.
Eduard-Mihai Burtescu
-4
/
+4
2022-02-23
Replace `&mut DiagnosticBuilder`, in signatures, with `&mut Diagnostic`.
Eduard-Mihai Burtescu
-2
/
+2
2021-12-04
Do not add `;` to expected tokens list when it's wrong
Michael Howell
-2
/
+2
2021-09-02
Provide more context on incorrect inner attribute
Esteban Kuber
-21
/
+119
[next]