Trait swc_ecma_transforms_base::pass::Repeated[]

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

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

See [Repeat].

Required methods

pub fn changed(&self) -> bool

Should run again?

pub fn reset(&mut self)

Reset.

Loading content...

Implementations on Foreign Types

impl<V> Repeated for Repeat<V> where
    V: Repeated

impl<A, B> Repeated for AndThen<A, B> where
    A: Repeated,
    B: Repeated

impl<V> Repeated for Folder<V> where
    V: Repeated + VisitMut
[src]

Loading content...

Implementors

Loading content...