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
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
2021-07-02
Recover from a misplaced inner doc comment
Aaron Hill
-1
/
+8
2021-06-10
Add support for using qualified paths with structs in expression and pattern
Ryan Levick
-1
/
+0
2021-04-11
Implement token-based handling of attributes during expansion
Aaron Hill
-2
/
+20
2021-02-13
Address review comments
Aaron Hill
-1
/
+1
2021-02-13
Require passing an `AttrWrapper` to `collect_tokens_trailing_token`
Aaron Hill
-5
/
+7
2021-02-07
expand/resolve: Turn `#[derive]` into a regular macro attribute
Vadim Petrochenkov
-4
/
+2
2021-01-13
Set tokens on AST node in `collect_tokens`
Aaron Hill
-12
/
+4
2020-11-26
rustc_parse: restore pub vis on parse_attribute
Caleb Cartwright
-2
/
+4
2020-11-19
resolve/expand: Misc cleanup
Vadim Petrochenkov
-7
/
+6
2020-11-09
Do not collect tokens for doc comments
Vadim Petrochenkov
-99
/
+74
2020-10-22
Only call `collect_tokens` when we have an attribute to parse
Aaron Hill
-26
/
+32
[next]