Skip to content

Commit

Permalink
simplify visit
Browse files Browse the repository at this point in the history
  • Loading branch information
ouz-a committed Sep 28, 2023
1 parent 0cca109 commit eb77903
Showing 1 changed file with 2 additions and 28 deletions.
30 changes: 2 additions & 28 deletions compiler/stable_mir/src/visitor.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
use std::ops::ControlFlow;

use crate::{
ty::{BoundRegion, BoundRegionKind},
Opaque,
};
use crate::Opaque;

use super::ty::{
Allocation, Binder, Const, ConstDef, ExistentialPredicate, FnSig, GenericArgKind, GenericArgs,
Expand Down Expand Up @@ -112,34 +109,11 @@ impl Visitable for Region {
visitor.visit_reg(self)
}

fn super_visit<V: Visitor>(&self, visitor: &mut V) -> ControlFlow<V::Break> {
match self.kind.clone() {
crate::ty::RegionKind::ReEarlyBound(_) => {}
crate::ty::RegionKind::ReLateBound(_, bound_reg) => bound_reg.visit(visitor)?,
crate::ty::RegionKind::ReStatic => {}
crate::ty::RegionKind::RePlaceholder(bound_reg) => bound_reg.bound.visit(visitor)?,
crate::ty::RegionKind::ReErased => {}
}
fn super_visit<V: Visitor>(&self, _: &mut V) -> ControlFlow<V::Break> {
ControlFlow::Continue(())
}
}

impl Visitable for BoundRegion {
fn super_visit<V: Visitor>(&self, visitor: &mut V) -> ControlFlow<V::Break> {
self.kind.visit(visitor)
}
}

impl Visitable for BoundRegionKind {
fn super_visit<V: Visitor>(&self, _visitor: &mut V) -> ControlFlow<V::Break> {
match self {
BoundRegionKind::BrAnon => ControlFlow::Continue(()),
BoundRegionKind::BrNamed(_, _) => ControlFlow::Continue(()),
BoundRegionKind::BrEnv => ControlFlow::Continue(()),
}
}
}

impl Visitable for GenericArgKind {
fn super_visit<V: Visitor>(&self, visitor: &mut V) -> ControlFlow<V::Break> {
match self {
Expand Down

0 comments on commit eb77903

Please sign in to comment.