mirror of
				https://github.com/rust-lang/rust-analyzer.git
				synced 2025-11-03 13:13:18 +00:00 
			
		
		
		
	Unify naming of tuple fields
This commit is contained in:
		
							parent
							
								
									675e86becf
								
							
						
					
					
						commit
						b9c6aa9ec9
					
				@ -51,11 +51,11 @@ pub(crate) fn convert_to_guarded_return(acc: &mut Assists, ctx: &AssistContext)
 | 
			
		||||
    // Check if there is an IfLet that we can handle.
 | 
			
		||||
    let if_let_pat = match cond.pat() {
 | 
			
		||||
        None => None, // No IfLet, supported.
 | 
			
		||||
        Some(ast::Pat::TupleStructPat(pat)) if pat.args().count() == 1 => {
 | 
			
		||||
        Some(ast::Pat::TupleStructPat(pat)) if pat.fields().count() == 1 => {
 | 
			
		||||
            let path = pat.path()?;
 | 
			
		||||
            match path.qualifier() {
 | 
			
		||||
                None => {
 | 
			
		||||
                    let bound_ident = pat.args().next().unwrap();
 | 
			
		||||
                    let bound_ident = pat.fields().next().unwrap();
 | 
			
		||||
                    Some((path, bound_ident))
 | 
			
		||||
                }
 | 
			
		||||
                Some(_) => return None,
 | 
			
		||||
 | 
			
		||||
@ -496,7 +496,7 @@ impl ExprCollector<'_> {
 | 
			
		||||
                self.alloc_expr(Expr::BinaryOp { lhs, rhs, op }, syntax_ptr)
 | 
			
		||||
            }
 | 
			
		||||
            ast::Expr::TupleExpr(e) => {
 | 
			
		||||
                let exprs = e.exprs().map(|expr| self.collect_expr(expr)).collect();
 | 
			
		||||
                let exprs = e.fields().map(|expr| self.collect_expr(expr)).collect();
 | 
			
		||||
                self.alloc_expr(Expr::Tuple { exprs }, syntax_ptr)
 | 
			
		||||
            }
 | 
			
		||||
            ast::Expr::BoxExpr(e) => {
 | 
			
		||||
@ -762,7 +762,7 @@ impl ExprCollector<'_> {
 | 
			
		||||
            }
 | 
			
		||||
            ast::Pat::TupleStructPat(p) => {
 | 
			
		||||
                let path = p.path().and_then(|path| self.expander.parse_path(path));
 | 
			
		||||
                let (args, ellipsis) = self.collect_tuple_pat(p.args());
 | 
			
		||||
                let (args, ellipsis) = self.collect_tuple_pat(p.fields());
 | 
			
		||||
                Pat::TupleStruct { path, args, ellipsis }
 | 
			
		||||
            }
 | 
			
		||||
            ast::Pat::RefPat(p) => {
 | 
			
		||||
@ -780,7 +780,7 @@ impl ExprCollector<'_> {
 | 
			
		||||
            }
 | 
			
		||||
            ast::Pat::ParenPat(p) => return self.collect_pat_opt(p.pat()),
 | 
			
		||||
            ast::Pat::TuplePat(p) => {
 | 
			
		||||
                let (args, ellipsis) = self.collect_tuple_pat(p.args());
 | 
			
		||||
                let (args, ellipsis) = self.collect_tuple_pat(p.fields());
 | 
			
		||||
                Pat::Tuple { args, ellipsis }
 | 
			
		||||
            }
 | 
			
		||||
            ast::Pat::WildcardPat(_) => Pat::Wild,
 | 
			
		||||
 | 
			
		||||
@ -893,7 +893,7 @@ pub struct TupleExpr {
 | 
			
		||||
impl ast::AttrsOwner for TupleExpr {}
 | 
			
		||||
impl TupleExpr {
 | 
			
		||||
    pub fn l_paren_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T!['(']) }
 | 
			
		||||
    pub fn exprs(&self) -> AstChildren<Expr> { support::children(&self.syntax) }
 | 
			
		||||
    pub fn fields(&self) -> AstChildren<Expr> { support::children(&self.syntax) }
 | 
			
		||||
    pub fn r_paren_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T![')']) }
 | 
			
		||||
}
 | 
			
		||||
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
 | 
			
		||||
@ -1210,7 +1210,7 @@ pub struct SlicePat {
 | 
			
		||||
}
 | 
			
		||||
impl SlicePat {
 | 
			
		||||
    pub fn l_brack_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T!['[']) }
 | 
			
		||||
    pub fn args(&self) -> AstChildren<Pat> { support::children(&self.syntax) }
 | 
			
		||||
    pub fn pats(&self) -> AstChildren<Pat> { support::children(&self.syntax) }
 | 
			
		||||
    pub fn r_brack_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T![']']) }
 | 
			
		||||
}
 | 
			
		||||
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
 | 
			
		||||
@ -1219,7 +1219,7 @@ pub struct TuplePat {
 | 
			
		||||
}
 | 
			
		||||
impl TuplePat {
 | 
			
		||||
    pub fn l_paren_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T!['(']) }
 | 
			
		||||
    pub fn args(&self) -> AstChildren<Pat> { support::children(&self.syntax) }
 | 
			
		||||
    pub fn fields(&self) -> AstChildren<Pat> { support::children(&self.syntax) }
 | 
			
		||||
    pub fn r_paren_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T![')']) }
 | 
			
		||||
}
 | 
			
		||||
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
 | 
			
		||||
@ -1229,7 +1229,7 @@ pub struct TupleStructPat {
 | 
			
		||||
impl TupleStructPat {
 | 
			
		||||
    pub fn path(&self) -> Option<Path> { support::child(&self.syntax) }
 | 
			
		||||
    pub fn l_paren_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T!['(']) }
 | 
			
		||||
    pub fn args(&self) -> AstChildren<Pat> { support::children(&self.syntax) }
 | 
			
		||||
    pub fn fields(&self) -> AstChildren<Pat> { support::children(&self.syntax) }
 | 
			
		||||
    pub fn r_paren_token(&self) -> Option<SyntaxToken> { support::token(&self.syntax, T![')']) }
 | 
			
		||||
}
 | 
			
		||||
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
 | 
			
		||||
 | 
			
		||||
@ -290,7 +290,7 @@ pub struct SlicePatComponents {
 | 
			
		||||
 | 
			
		||||
impl ast::SlicePat {
 | 
			
		||||
    pub fn components(&self) -> SlicePatComponents {
 | 
			
		||||
        let mut args = self.args().peekable();
 | 
			
		||||
        let mut args = self.pats().peekable();
 | 
			
		||||
        let prefix = args
 | 
			
		||||
            .peeking_take_while(|p| match p {
 | 
			
		||||
                ast::Pat::RestPat(_) => false,
 | 
			
		||||
 | 
			
		||||
@ -359,7 +359,7 @@ IndexExpr =
 | 
			
		||||
  Attr* base:Expr '[' index:Expr ']'
 | 
			
		||||
 | 
			
		||||
TupleExpr =
 | 
			
		||||
  Attr* '(' Attr* (Expr (',' Expr)* ','?)? ')'
 | 
			
		||||
  Attr* '(' Attr* fields:(Expr (',' Expr)* ','?)? ')'
 | 
			
		||||
 | 
			
		||||
RecordExpr =
 | 
			
		||||
  Path RecordExprFieldList
 | 
			
		||||
@ -560,16 +560,16 @@ RecordPatField =
 | 
			
		||||
  Attr* (NameRef ':')? Pat
 | 
			
		||||
 | 
			
		||||
TupleStructPat =
 | 
			
		||||
   Path '(' args:(Pat (',' Pat)* ','?)? ')'
 | 
			
		||||
   Path '(' fields:(Pat (',' Pat)* ','?)? ')'
 | 
			
		||||
 | 
			
		||||
TuplePat =
 | 
			
		||||
   '(' args:(Pat (',' Pat)* ','?)? ')'
 | 
			
		||||
   '(' fields:(Pat (',' Pat)* ','?)? ')'
 | 
			
		||||
 | 
			
		||||
ParenPat =
 | 
			
		||||
  '(' Pat ')'
 | 
			
		||||
 | 
			
		||||
SlicePat =
 | 
			
		||||
  '[' args:(Pat (',' Pat)* ','?)? ']'
 | 
			
		||||
  '[' (Pat (',' Pat)* ','?)? ']'
 | 
			
		||||
 | 
			
		||||
PathPat =
 | 
			
		||||
  Path
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user