Trait swc_ecma_utils::IsEmpty

source ·
pub trait IsEmpty {
    // Required method
    fn is_empty(&self) -> bool;
}

Required Methods§

source

fn is_empty(&self) -> bool

Implementations on Foreign Types§

source§

impl IsEmpty for BlockStmt

source§

fn is_empty(&self) -> bool

source§

impl IsEmpty for CatchClause

source§

fn is_empty(&self) -> bool

source§

impl IsEmpty for Stmt

source§

fn is_empty(&self) -> bool

source§

impl<T> IsEmpty for Vec<T>

source§

fn is_empty(&self) -> bool

source§

impl<T: IsEmpty> IsEmpty for Option<T>

source§

fn is_empty(&self) -> bool

source§

impl<T: IsEmpty> IsEmpty for Box<T>

source§

fn is_empty(&self) -> bool

Implementors§