pub trait IsDirective {
    fn as_ref(&self) -> Option<&Stmt>;

    fn is_use_strict(&self) -> bool { ... }
}
Available on crate feature __utils only.

Required Methods

Provided Methods

Implementors