mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-29 21:35:20 +00:00
Shrink mbe's Op
This commit is contained in:
parent
e052b3e9a6
commit
8df034d453
12 changed files with 55 additions and 29 deletions
|
@ -170,7 +170,7 @@ fn invocation_fixtures(
|
|||
Op::Literal(it) => token_trees.push(tt::Leaf::from(it.clone()).into()),
|
||||
Op::Ident(it) => token_trees.push(tt::Leaf::from(it.clone()).into()),
|
||||
Op::Punct(puncts) => {
|
||||
for punct in puncts {
|
||||
for punct in puncts.as_slice() {
|
||||
token_trees.push(tt::Leaf::from(*punct).into());
|
||||
}
|
||||
}
|
||||
|
@ -187,7 +187,7 @@ fn invocation_fixtures(
|
|||
}
|
||||
if i + 1 != cnt {
|
||||
if let Some(sep) = separator {
|
||||
match sep {
|
||||
match &**sep {
|
||||
Separator::Literal(it) => {
|
||||
token_trees.push(tt::Leaf::Literal(it.clone()).into())
|
||||
}
|
||||
|
|
|
@ -59,7 +59,7 @@
|
|||
//! eof: [a $( a )* a b ·]
|
||||
//! ```
|
||||
|
||||
use std::rc::Rc;
|
||||
use std::{rc::Rc, sync::Arc};
|
||||
|
||||
use smallvec::{smallvec, SmallVec};
|
||||
use span::{Edition, Span};
|
||||
|
@ -315,7 +315,7 @@ struct MatchState<'t> {
|
|||
up: Option<Box<MatchState<'t>>>,
|
||||
|
||||
/// The separator if we are in a repetition.
|
||||
sep: Option<Separator>,
|
||||
sep: Option<Arc<Separator>>,
|
||||
|
||||
/// The KleeneOp of this sequence if we are in a repetition.
|
||||
sep_kind: Option<RepeatKind>,
|
||||
|
|
|
@ -195,7 +195,7 @@ fn expand_subtree(
|
|||
.into(),
|
||||
),
|
||||
Op::Punct(puncts) => {
|
||||
for punct in puncts {
|
||||
for punct in puncts.as_slice() {
|
||||
arena.push(
|
||||
tt::Leaf::from({
|
||||
let mut it = *punct;
|
||||
|
@ -222,7 +222,7 @@ fn expand_subtree(
|
|||
}
|
||||
Op::Repeat { tokens: subtree, kind, separator } => {
|
||||
let ExpandResult { value: fragment, err: e } =
|
||||
expand_repeat(ctx, subtree, *kind, separator, arena, marker);
|
||||
expand_repeat(ctx, subtree, *kind, separator.as_deref(), arena, marker);
|
||||
err = err.or(e);
|
||||
push_fragment(ctx, arena, fragment)
|
||||
}
|
||||
|
@ -383,7 +383,7 @@ fn expand_repeat(
|
|||
ctx: &mut ExpandCtx<'_>,
|
||||
template: &MetaTemplate,
|
||||
kind: RepeatKind,
|
||||
separator: &Option<Separator>,
|
||||
separator: Option<&Separator>,
|
||||
arena: &mut Vec<tt::TokenTree<Span>>,
|
||||
marker: impl Fn(&mut Span) + Copy,
|
||||
) -> ExpandResult<Fragment> {
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
//! Parser recognizes special macro syntax, `$var` and `$(repeat)*`, in token
|
||||
//! trees.
|
||||
|
||||
use smallvec::{smallvec, SmallVec};
|
||||
use std::sync::Arc;
|
||||
|
||||
use arrayvec::ArrayVec;
|
||||
use span::{Edition, Span, SyntaxContextId};
|
||||
use syntax::SmolStr;
|
||||
|
||||
|
@ -86,14 +88,14 @@ pub(crate) enum Op {
|
|||
Repeat {
|
||||
tokens: MetaTemplate,
|
||||
kind: RepeatKind,
|
||||
separator: Option<Separator>,
|
||||
separator: Option<Arc<Separator>>,
|
||||
},
|
||||
Subtree {
|
||||
tokens: MetaTemplate,
|
||||
delimiter: tt::Delimiter<Span>,
|
||||
},
|
||||
Literal(tt::Literal<Span>),
|
||||
Punct(SmallVec<[tt::Punct<Span>; 3]>),
|
||||
Punct(Box<ArrayVec<tt::Punct<Span>, 3>>),
|
||||
Ident(tt::Ident<Span>),
|
||||
}
|
||||
|
||||
|
@ -126,7 +128,7 @@ pub(crate) enum MetaVarKind {
|
|||
pub(crate) enum Separator {
|
||||
Literal(tt::Literal<Span>),
|
||||
Ident(tt::Ident<Span>),
|
||||
Puncts(SmallVec<[tt::Punct<Span>; 3]>),
|
||||
Puncts(ArrayVec<tt::Punct<Span>, 3>),
|
||||
}
|
||||
|
||||
// Note that when we compare a Separator, we just care about its textual value.
|
||||
|
@ -165,7 +167,13 @@ fn next_op(
|
|||
src.next().expect("first token already peeked");
|
||||
// Note that the '$' itself is a valid token inside macro_rules.
|
||||
let second = match src.next() {
|
||||
None => return Ok(Op::Punct(smallvec![*p])),
|
||||
None => {
|
||||
return Ok(Op::Punct({
|
||||
let mut res = ArrayVec::new();
|
||||
res.push(*p);
|
||||
Box::new(res)
|
||||
}))
|
||||
}
|
||||
Some(it) => it,
|
||||
};
|
||||
match second {
|
||||
|
@ -173,7 +181,7 @@ fn next_op(
|
|||
tt::DelimiterKind::Parenthesis => {
|
||||
let (separator, kind) = parse_repeat(src)?;
|
||||
let tokens = MetaTemplate::parse(edition, subtree, mode, new_meta_vars)?;
|
||||
Op::Repeat { tokens, separator, kind }
|
||||
Op::Repeat { tokens, separator: separator.map(Arc::new), kind }
|
||||
}
|
||||
tt::DelimiterKind::Brace => match mode {
|
||||
Mode::Template => {
|
||||
|
@ -216,7 +224,11 @@ fn next_op(
|
|||
"`$$` is not allowed on the pattern side",
|
||||
))
|
||||
}
|
||||
Mode::Template => Op::Punct(smallvec![*punct]),
|
||||
Mode::Template => Op::Punct({
|
||||
let mut res = ArrayVec::new();
|
||||
res.push(*punct);
|
||||
Box::new(res)
|
||||
}),
|
||||
},
|
||||
tt::Leaf::Punct(_) | tt::Leaf::Literal(_) => {
|
||||
return Err(ParseError::expected("expected ident"))
|
||||
|
@ -238,7 +250,7 @@ fn next_op(
|
|||
tt::TokenTree::Leaf(tt::Leaf::Punct(_)) => {
|
||||
// There's at least one punct so this shouldn't fail.
|
||||
let puncts = src.expect_glued_punct().unwrap();
|
||||
Op::Punct(puncts)
|
||||
Op::Punct(Box::new(puncts))
|
||||
}
|
||||
|
||||
tt::TokenTree::Subtree(subtree) => {
|
||||
|
@ -290,7 +302,7 @@ fn is_boolean_literal(lit: &tt::Literal<Span>) -> bool {
|
|||
}
|
||||
|
||||
fn parse_repeat(src: &mut TtIter<'_, Span>) -> Result<(Option<Separator>, RepeatKind), ParseError> {
|
||||
let mut separator = Separator::Puncts(SmallVec::new());
|
||||
let mut separator = Separator::Puncts(ArrayVec::new());
|
||||
for tt in src {
|
||||
let tt = match tt {
|
||||
tt::TokenTree::Leaf(leaf) => leaf,
|
||||
|
@ -312,7 +324,7 @@ fn parse_repeat(src: &mut TtIter<'_, Span>) -> Result<(Option<Separator>, Repeat
|
|||
'+' => RepeatKind::OneOrMore,
|
||||
'?' => RepeatKind::ZeroOrOne,
|
||||
_ => match &mut separator {
|
||||
Separator::Puncts(puncts) if puncts.len() != 3 => {
|
||||
Separator::Puncts(puncts) if puncts.len() < 3 => {
|
||||
puncts.push(*punct);
|
||||
continue;
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
use core::fmt;
|
||||
|
||||
use smallvec::{smallvec, SmallVec};
|
||||
use arrayvec::ArrayVec;
|
||||
use syntax::SyntaxKind;
|
||||
|
||||
use crate::{to_parser_input::to_parser_input, ExpandError, ExpandResult};
|
||||
|
@ -93,13 +93,15 @@ impl<'a, S: Copy> TtIter<'a, S> {
|
|||
///
|
||||
/// This method currently may return a single quotation, which is part of lifetime ident and
|
||||
/// conceptually not a punct in the context of mbe. Callers should handle this.
|
||||
pub(crate) fn expect_glued_punct(&mut self) -> Result<SmallVec<[tt::Punct<S>; 3]>, ()> {
|
||||
pub(crate) fn expect_glued_punct(&mut self) -> Result<ArrayVec<tt::Punct<S>, 3>, ()> {
|
||||
let tt::TokenTree::Leaf(tt::Leaf::Punct(first)) = self.next().ok_or(())?.clone() else {
|
||||
return Err(());
|
||||
};
|
||||
|
||||
let mut res = ArrayVec::new();
|
||||
if first.spacing == tt::Spacing::Alone {
|
||||
return Ok(smallvec![first]);
|
||||
res.push(first);
|
||||
return Ok(res);
|
||||
}
|
||||
|
||||
let (second, third) = match (self.peek_n(0), self.peek_n(1)) {
|
||||
|
@ -108,14 +110,19 @@ impl<'a, S: Copy> TtIter<'a, S> {
|
|||
Some(tt::TokenTree::Leaf(tt::Leaf::Punct(p3))),
|
||||
) if p2.spacing == tt::Spacing::Joint => (p2, Some(p3)),
|
||||
(Some(tt::TokenTree::Leaf(tt::Leaf::Punct(p2))), _) => (p2, None),
|
||||
_ => return Ok(smallvec![first]),
|
||||
_ => {
|
||||
res.push(first);
|
||||
return Ok(res);
|
||||
}
|
||||
};
|
||||
|
||||
match (first.char, second.char, third.map(|it| it.char)) {
|
||||
('.', '.', Some('.' | '=')) | ('<', '<', Some('=')) | ('>', '>', Some('=')) => {
|
||||
let _ = self.next().unwrap();
|
||||
let _ = self.next().unwrap();
|
||||
Ok(smallvec![first, *second, *third.unwrap()])
|
||||
res.push(first);
|
||||
res.push(*second);
|
||||
res.push(*third.unwrap());
|
||||
}
|
||||
('-' | '!' | '*' | '/' | '&' | '%' | '^' | '+' | '<' | '=' | '>' | '|', '=', _)
|
||||
| ('-' | '=' | '>', '>', _)
|
||||
|
@ -126,10 +133,12 @@ impl<'a, S: Copy> TtIter<'a, S> {
|
|||
| ('<', '<', _)
|
||||
| ('|', '|', _) => {
|
||||
let _ = self.next().unwrap();
|
||||
Ok(smallvec![first, *second])
|
||||
res.push(first);
|
||||
res.push(*second);
|
||||
}
|
||||
_ => Ok(smallvec![first]),
|
||||
_ => res.push(first),
|
||||
}
|
||||
Ok(res)
|
||||
}
|
||||
pub(crate) fn peek_n(&self, n: usize) -> Option<&'a tt::TokenTree<S>> {
|
||||
self.inner.as_slice().get(n)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue