Skip to content

Commit 25004a1

Browse files
committed
edit: change 'Length' to 'Len'
1 parent 6259991 commit 25004a1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/tools/rust-analyzer/crates/mbe/src/expander/matcher.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ fn match_loop_inner<'t>(
566566
error_items.push(item);
567567
}
568568
OpDelimited::Op(
569-
Op::Ignore { .. } | Op::Index { .. } | Op::Count { .. } | Op::Length { .. },
569+
Op::Ignore { .. } | Op::Index { .. } | Op::Count { .. } | Op::Len { .. },
570570
) => {
571571
stdx::never!("metavariable expression in lhs found");
572572
}
@@ -832,7 +832,7 @@ fn collect_vars(collector_fun: &mut impl FnMut(SmolStr), pattern: &MetaTemplate)
832832
Op::Subtree { tokens, .. } => collect_vars(collector_fun, tokens),
833833
Op::Repeat { tokens, .. } => collect_vars(collector_fun, tokens),
834834
Op::Literal(_) | Op::Ident(_) | Op::Punct(_) => {}
835-
Op::Ignore { .. } | Op::Index { .. } | Op::Count { .. } | Op::Length { .. } => {
835+
Op::Ignore { .. } | Op::Index { .. } | Op::Count { .. } | Op::Len { .. } => {
836836
stdx::never!("metavariable expression in lhs found");
837837
}
838838
}

src/tools/rust-analyzer/crates/mbe/src/expander/transcriber.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ fn expand_subtree(
242242
.into(),
243243
);
244244
}
245-
Op::Length { depth } => {
245+
Op::Len { depth } => {
246246
let length = ctx.nesting.get(ctx.nesting.len() - 1 - depth).map_or(0, |_nest| {
247247
// FIXME: to be implemented
248248
0

src/tools/rust-analyzer/crates/mbe/src/parser.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ pub(crate) enum Op {
7575
Index {
7676
depth: usize,
7777
},
78-
Length {
78+
Len {
7979
depth: usize,
8080
},
8181
Count {
@@ -345,7 +345,7 @@ fn parse_metavar_expr(new_meta_vars: bool, src: &mut TtIter<'_, Span>) -> Result
345345
Op::Ignore { name: ident.text.clone(), id: ident.span }
346346
}
347347
"index" => Op::Index { depth: parse_depth(&mut args)? },
348-
"length" => Op::Length { depth: parse_depth(&mut args)? },
348+
"len" => Op::Len { depth: parse_depth(&mut args)? },
349349
"count" => {
350350
if new_meta_vars {
351351
args.expect_dollar()?;

0 commit comments

Comments
 (0)