Skip to content

Commit 8de4899

Browse files
committed
feat(hir): Store the Span of the move keyword
1 parent f81d6f0 commit 8de4899

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

compiler/rustc_ast/src/ast.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -1548,7 +1548,10 @@ pub struct QSelf {
15481548
#[derive(Clone, Copy, PartialEq, Encodable, Decodable, Debug, HashStable_Generic)]
15491549
pub enum CaptureBy {
15501550
/// `move |x| y + x`.
1551-
Value,
1551+
Value {
1552+
/// The span of the `move` keyword.
1553+
move_kw: Span,
1554+
},
15521555
/// `move` keyword was not specified.
15531556
Ref,
15541557
}

compiler/rustc_parse/src/parser/expr.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -2303,13 +2303,16 @@ impl<'a> Parser<'a> {
23032303
/// Parses an optional `move` prefix to a closure-like construct.
23042304
fn parse_capture_clause(&mut self) -> PResult<'a, CaptureBy> {
23052305
if self.eat_keyword(kw::Move) {
2306+
let move_kw_span = self.prev_token.span;
23062307
// Check for `move async` and recover
23072308
if self.check_keyword(kw::Async) {
23082309
let move_async_span = self.token.span.with_lo(self.prev_token.span.data().lo);
23092310
Err(errors::AsyncMoveOrderIncorrect { span: move_async_span }
23102311
.into_diagnostic(&self.sess.span_diagnostic))
23112312
} else {
2312-
Ok(CaptureBy::Value)
2313+
Ok(CaptureBy::Value {
2314+
move_kw: move_kw_span,
2315+
})
23132316
}
23142317
} else {
23152318
Ok(CaptureBy::Ref)

0 commit comments

Comments
 (0)