mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 04:42:10 +00:00
chore(ast): remove unused code enter_object_expression
This commit is contained in:
parent
becc5d0a3b
commit
2fc16840de
2 changed files with 0 additions and 4 deletions
|
|
@ -674,8 +674,6 @@ pub trait Visit<'a>: Sized {
|
|||
self.leave_node(kind);
|
||||
}
|
||||
|
||||
fn enter_object_expression(&mut self, _expr: &'a ObjectExpression<'a>) {}
|
||||
|
||||
fn visit_object_property(&mut self, prop: &'a ObjectProperty<'a>) {
|
||||
match prop {
|
||||
ObjectProperty::Property(prop) => self.visit_property(prop),
|
||||
|
|
|
|||
|
|
@ -511,8 +511,6 @@ pub trait VisitMut<'a, 'b>: Sized {
|
|||
}
|
||||
}
|
||||
|
||||
fn enter_object_expression(&mut self, _expr: &'b mut ObjectExpression<'a>) {}
|
||||
|
||||
fn visit_object_property(&mut self, prop: &'b mut ObjectProperty<'a>) {
|
||||
match prop {
|
||||
ObjectProperty::Property(prop) => self.visit_property(prop),
|
||||
|
|
|
|||
Loading…
Reference in a new issue