[parser] Attempt to fix style check.

This commit is contained in:
Alessandro Coglio 2022-05-14 00:03:55 -07:00
parent 21616fe167
commit 4989c50409

View File

@ -220,7 +220,6 @@ impl ParserContext<'_> {
/// Returns a [`VariableName`] AST node if the next tokens represent a variable name with
/// valid keywords.
pub fn parse_variable_name(&mut self, decl_ty: Declare, _span: Span) -> Result<VariableName> {
let name = self.expect_ident()?;
Ok(VariableName {
span: name.span,