Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
raskad committed Jan 28, 2023
1 parent 8fc2b9e commit 35269ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions boa_ast/src/expression/operator/update/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ impl ToInternedString for UpdateTarget {
#[inline]
fn to_interned_string(&self, interner: &Interner) -> String {
match self {
UpdateTarget::Identifier(identifier) => identifier.to_interned_string(interner),
UpdateTarget::PropertyAccess(access) => access.to_interned_string(interner),
Self::Identifier(identifier) => identifier.to_interned_string(interner),
Self::PropertyAccess(access) => access.to_interned_string(interner),
}
}
}

0 comments on commit 35269ff

Please sign in to comment.