Removed redundant if

This commit is contained in:
bakk 2021-06-01 00:22:42 +02:00
parent 44488d285f
commit 6697a37faa

View File

@ -582,14 +582,12 @@ fn parse_identifier(context: &mut Context) -> Result<Expr, CalcError> {
&& (match_token(context, TokenKind::Literal) || match_token(context, TokenKind::Identifier)) && (match_token(context, TokenKind::Literal) || match_token(context, TokenKind::Identifier))
{ {
// If there is a function with this name, parse it as a function, with the next token as the argument. // If there is a function with this name, parse it as a function, with the next token as the argument.
if exists_as_fn { let parameter = if identifier.full_name == "" {
let parameter = if identifier.full_name == "" { parse_exponent(context)?
parse_exponent(context)? } else {
} else { parse_factor(context)?
parse_factor(context)? };
}; return Ok(Expr::FnCall(identifier, vec![parameter]));
return Ok(Expr::FnCall(identifier, vec![parameter]));
}
} }
let parse_as_var_instead = match_token(context, TokenKind::OpenParenthesis) let parse_as_var_instead = match_token(context, TokenKind::OpenParenthesis)