summary refs log tree commit diff
path: root/compiler/rustc_parse/src/lexer
AgeCommit message (Expand)AuthorLines
2024-11-21Enforce that raw lifetime identifiers must be valid raw identifiersMichael Goulet-4/+10
2024-10-08Reserve guarded string literals (RFC 3593)Peter Jaszkowiak-1/+83
2024-09-22Reformat using the new identifier sorting from rustfmtMichael Goulet-5/+5
2024-09-17Store raw ident span for raw lifetimeMichael Goulet-0/+3
2024-09-09Remove needless returns detected by clippy in the compilerEduardo Sánchez Muñoz-1/+1
2024-09-06Add some more testsMichael Goulet-1/+1
2024-09-06Add initial support for raw lifetimesMichael Goulet-3/+36
2024-09-06Format lexerMichael Goulet-19/+22
2024-09-06Reserve prefix lifetimes tooMichael Goulet-0/+10
2024-08-14Use `impl PartialEq<TokenKind> for Token` more.Nicholas Nethercote-1/+1
2024-07-30Auto merge of #127955 - chenyukang:yukang-fix-mismatched-delimiter-issue-1278...bors-3/+18
2024-07-29Reformat `use` declarations.Nicholas Nethercote-19/+23
2024-07-25add limit for unclosed delimiters in lexer diagnosticyukang-3/+18
2024-06-18Use a dedicated type instead of a reference for the diagnostic contextOli Scherer-4/+4
2024-06-18Prefer `dcx` methods over fields or fields' methodsOli Scherer-8/+7
2024-06-05Remove `stream_to_parser`.Nicholas Nethercote-1/+2
2024-06-05Don't use the word "parse" for lexing operations.Nicholas Nethercote-27/+24
2024-06-05`UNICODE_ARRAY` and `ASCII_ARRAY` fixes.Nicholas Nethercote-37/+38
2024-05-23Remove `#[macro_use] extern crate tracing` from `rustc_parse`.Nicholas Nethercote-0/+2
2024-05-21Rename buffer_lint_with_diagnostic to buffer_lintXiretza-2/+2
2024-05-21Generate lint diagnostic message from BuiltinLintDiagXiretza-3/+1
2024-05-17Clarify that the diff_marker is talking about version control systemardi-1/+1
2024-05-07narrow down visibilities in `rustc_parse::lexer`Lin Yihai-6/+6
2024-04-18Rollup merge of #123752 - estebank:emoji-prefix, r=wesleywiserJubilee-1/+4
2024-04-18Simplify `static_assert_size`s.Nicholas Nethercote-1/+1
2024-04-12Rollup merge of #123223 - estebank:issue-123079, r=pnkfelixMatthias Krüger-13/+7
2024-04-10Properly handle emojis as literal prefix in macrosEsteban Küber-1/+4
2024-04-08parser: reduce visibility of unnecessary public `UnmatchedDelim`Yutaro Ohno-5/+2
2024-04-07Fix invalid silencing of parsing errorEsteban Küber-13/+7
2024-04-03Check `x86_64` size assertions on `aarch64`, tooZalathar-1/+1
2024-03-17fix rustdoc testEsteban Küber-1/+1
2024-03-17Silence redundant error on char literal that was meant to be a string in 2021...Esteban Küber-1/+10
2024-03-17review comment: `str` -> string in messagesEsteban Küber-1/+1
2024-03-17Use shorter span for existing `'` -> `"` structured suggestionEsteban Küber-5/+15
2024-03-17Handle str literals written with `'` lexed as lifetimeEsteban Küber-4/+42
2024-03-05Rename `BuiltinLintDiagnostics` as `BuiltinLintDiag`.Nicholas Nethercote-3/+3
2024-03-05Rename all `ParseSess` variables/fields/lifetimes as `psess`.Nicholas Nethercote-36/+36
2024-02-29Rollup merge of #121724 - nnethercote:LitKind-Err-for-floats, r=fmeaseMatthias Krüger-3/+7
2024-02-28Use `LitKind::Err` for floats with unsupported bases.Nicholas Nethercote-1/+3
2024-02-28Use `LitKind::Err` for floats with empty exponents.Nicholas Nethercote-2/+4
2024-02-28Rename `DiagnosticBuilder` as `Diag`.Nicholas Nethercote-8/+5
2024-02-25Rollup merge of #121060 - clubby789:bool-newtypes, r=cjgillotMatthias Krüger-5/+5
2024-02-20Add newtype for raw identsclubby789-5/+5
2024-02-19Prefer `DiagnosticBuilder` over `Diagnostic` in diagnostic modifiers.Nicholas Nethercote-3/+3
2024-02-15Add `ErrorGuaranteed` to `ast::LitKind::Err`, `token::LitKind::Err`.Nicholas Nethercote-10/+12
2024-02-15Make `emit_unescape_error` return `Option<ErrorGuaranteed>`.Nicholas Nethercote-40/+34
2024-02-15Remove `LitError::LexerError`.Nicholas Nethercote-15/+15
2024-01-29Stop using `String` for error codes.Nicholas Nethercote-8/+8
2024-01-25Use `unescape_unicode` for raw C string literals.Nicholas Nethercote-1/+1
2024-01-25Rename the unescaping functions.Nicholas Nethercote-12/+12