Skip to content

Commit a3ec3b9

Browse files
committed
Auto merge of #17392 - randomicon00:17242, r=Veykril
Change 'Length' to 'Len' This is a fix for #17242
2 parents 4cf0490 + ca7e04f commit a3ec3b9

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ fn invocation_fixtures(
215215

216216
token_trees.push(subtree.into());
217217
}
218-
Op::Ignore { .. } | Op::Index { .. } | Op::Count { .. } | Op::Length { .. } => {}
218+
Op::Ignore { .. } | Op::Index { .. } | Op::Count { .. } | Op::Len { .. } => {}
219219
};
220220

221221
// Simple linear congruential generator for deterministic result

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)