Readability

This commit is contained in:
kjeremy 2020-01-13 11:38:53 -05:00
parent a82c679c97
commit c5c5f4260b
2 changed files with 6 additions and 6 deletions

View file

@ -4,7 +4,7 @@ use ra_syntax::{
ast::{self, ArgListOwner},
match_ast, AstNode, SyntaxNode,
};
use std::cmp::Ordering;
use test_utils::tested_by;
use crate::{
@ -51,14 +51,14 @@ pub(crate) fn call_info(db: &RootDatabase, position: FilePosition) -> Option<Cal
// If we have a calling expression let's find which argument we are on
let num_params = call_info.parameters().len();
match num_params.cmp(&1) {
Ordering::Less => {}
Ordering::Equal => {
match num_params {
0 => (),
1 => {
if !has_self {
call_info.active_parameter = Some(0);
}
}
Ordering::Greater => {
_ => {
if let Some(arg_list) = calling_node.arg_list() {
// Number of arguments specified at the call site
let num_args_at_callsite = arg_list.args().count();

View file

@ -94,7 +94,7 @@ fn path_segment(p: &mut Parser, mode: Mode, first: bool) {
fn opt_path_type_args(p: &mut Parser, mode: Mode) {
match mode {
Mode::Use => {}
Mode::Use => return,
Mode::Type => {
// test path_fn_trait_args
// type F = Box<Fn(x: i32) -> ()>;