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
/
mod.rs
Age
Commit message (
Expand
)
Author
Lines
2023-11-02
Minimize `pub` usage in `source_map.rs`.
Nicholas Nethercote
-1
/
+1
2023-10-29
Auto merge of #116447 - oli-obk:gen_fn, r=compiler-errors
bors
-0
/
+11
2023-10-26
Reserve `gen` keyword for `gen {}` blocks and `gen fn` in 2024 edition
Oli Scherer
-0
/
+11
2023-10-25
Avoid unbounded O(n^2) when parsing nested type args
Esteban Küber
-2
/
+4
2023-10-13
Format all the let chains in compiler
Michael Goulet
-8
/
+7
2023-10-03
Detect missing `=>` after match guard during parsing
Esteban Küber
-0
/
+1
2023-09-11
Move let expression checking to parsing
Matthew Jasper
-0
/
+1
2023-08-18
Rename `NtOrTt` as `ParseNtResult`.
Nicholas Nethercote
-1
/
+1
2023-08-17
Add some useful comments to `Parser::look_ahead`.
Nicholas Nethercote
-8
/
+23
2023-08-13
Remove reached_eof from ParseSess
bjorn3
-13
/
+0
2023-08-03
Remove `MacDelimiter`.
Nicholas Nethercote
-4
/
+2
2023-08-02
Avoid an unnecessary local variable.
Nicholas Nethercote
-2
/
+1
2023-08-02
Move `TokenCursor::break_last_token` into `Parser`.
Nicholas Nethercote
-31
/
+20
2023-08-02
Move `TokenCursor::num_next_calls` into `Parser` and rename it.
Nicholas Nethercote
-8
/
+5
2023-08-02
Inline and remove `parse_all_token_trees`.
Nicholas Nethercote
-10
/
+1
2023-08-02
`parse_all_token_trees` cannot fail.
Nicholas Nethercote
-2
/
+2
2023-08-01
Auto merge of #114273 - nnethercote:move-doc-comment-desugaring, r=petrochenkov
bors
-78
/
+13
2023-07-31
Remove `desugar_doc_comments` arg from `Parser::new()`.
Nicholas Nethercote
-6
/
+1
2023-07-31
Move doc comment desugaring out of `TokenCursor`.
Nicholas Nethercote
-73
/
+13
2023-07-31
Fix a typo in a comment.
Nicholas Nethercote
-3
/
+3
2023-07-31
Remove an unnecessary `return` keyword.
Nicholas Nethercote
-1
/
+1
2023-07-30
inline format!() args up to and including rustc_middle
Matthias Krüger
-3
/
+3
2023-07-26
Add a comment to `TokenCursor::desugar_doc_comments`.
Nicholas Nethercote
-0
/
+3
2023-07-26
Remove `desugar_doc_comments` arguments from `TokenCursor::{inlined_,}next`.
Nicholas Nethercote
-18
/
+23
2023-07-26
Tweak `Parser::look_ahead`.
Nicholas Nethercote
-1
/
+1
2023-07-26
Remove `Parser::desugar_doc_comments`.
Nicholas Nethercote
-3
/
+1
2023-07-19
Fix inline_const with interpolated block
Michael Goulet
-1
/
+2
2023-07-12
Re-format let-else per rustfmt update
Mark Rousskov
-1
/
+3
2023-05-13
fix(parse): return unpected when current token is EOF
bohan
-1
/
+3
2023-05-03
Restrict `From<S>` for `{D,Subd}iagnosticMessage`.
Nicholas Nethercote
-2
/
+2
2023-05-01
fix tests
yukang
-4
/
+3
2023-05-01
fix parser size
yukang
-1
/
+1
2023-05-01
Rip it out
Nilstrieb
-11
/
+12
2023-04-27
Migrate trivially translatable `rustc_parse` diagnostics
clubby789
-10
/
+5
2023-04-04
Use a simpler atomic operation than the `compare_exchange` hammer
Oli Scherer
-3
/
+1
2023-04-04
Replace a lock with an atomic
Oli Scherer
-2
/
+7
2023-03-20
feat: implement error recovery in `expected_ident_found`
Ezra Shaw
-4
/
+9
2023-03-19
refactor: refactor identifier parsing somewhat
Ezra Shaw
-14
/
+13
2023-03-11
Gate const closures even when they appear in macros
Michael Goulet
-3
/
+7
2023-03-04
Rollup merge of #108715 - chenyukang:yukang/cleanup-parser-delims, r=compiler...
Matthias Krüger
-14
/
+3
2023-03-03
Remove unclosed_delims from parser
yukang
-14
/
+3
2023-03-03
Match unmatched backticks in comments in compiler/
est31
-1
/
+1
2023-02-28
rename unmatched_braces to unmatched_delims
yukang
-5
/
+5
2023-02-23
parser: provide better errors on closures with braces missing
Yutaro Ohno
-1
/
+5
2023-02-21
Use `ThinVec` in various AST types.
Nicholas Nethercote
-8
/
+9
2023-02-16
`if $c:expr { Some($r:expr) } else { None }` =>> `$c.then(|| $r)`
Maybe Waffle
-15
/
+9
2023-02-03
Rollup merge of #107551 - fee1-dead-contrib:rm_const_fnmut_helper, r=oli-obk
Michael Goulet
-5
/
+16
2023-02-03
Rename `Cursor`/`CursorRef` as `TokenTreeCursor`/`RefTokenTreeCursor`.
Nicholas Nethercote
-5
/
+8
2023-02-03
Remove `TokenCursorFrame`.
Nicholas Nethercote
-40
/
+32
2023-02-03
Make clear that `TokenTree::Token` shouldn't contain a delimiter.
Nicholas Nethercote
-1
/
+7
[next]