pub trait IsDirective {
// Required method
fn as_ref(&self) -> Option<&Stmt>;
// Provided methods
fn is_directive(&self) -> bool { ... }
fn directive_continue(&self) -> bool { ... }
fn is_use_strict(&self) -> bool { ... }
}
Required Methods§
Provided Methods§
fn is_directive(&self) -> bool
👎Deprecated: use directive_continue instead