Trait swc_ecma_utils::StmtOrModuleItem
source · [−]pub trait StmtOrModuleItem: Send + Sync + Sized {
fn into_stmt(self) -> Result<Stmt, ModuleDecl>;
fn as_stmt(&self) -> Result<&Stmt, &ModuleDecl>;
fn as_stmt_mut(&mut self) -> Result<&mut Stmt, &mut ModuleDecl>;
fn from_stmt(stmt: Stmt) -> Self;
fn try_from_module_decl(decl: ModuleDecl) -> Result<Self, ModuleDecl>;
}
Required Methods
source
fn into_stmt(self) -> Result<Stmt, ModuleDecl>
source
fn as_stmt(&self) -> Result<&Stmt, &ModuleDecl>
source
fn as_stmt_mut(&mut self) -> Result<&mut Stmt, &mut ModuleDecl>
source