Trait swc_visit::Repeated[][src]

pub trait Repeated {
    fn changed(&self) -> bool;
fn reset(&mut self); }

Trait for a pass which is designed to invoked multiple time to same input.

See Repeat.

Required methods

fn changed(&self) -> bool[src]

Should run again?

fn reset(&mut self)[src]

Reset.

Loading content...

Implementors

impl<A, B> Repeated for AndThen<A, B> where
    A: Repeated,
    B: Repeated
[src]

impl<V> Repeated for Repeat<V> where
    V: Repeated
[src]

Loading content...