Trait VisitMutModuleRecord
Source pub trait VisitMutModuleRecord {
// Provided methods
fn visit_module_record(&mut self, module_record: &mut ModuleRecord<'_>) { ... }
fn visit_requested_module(&mut self, requested_module: &mut RequestedModule) { ... }
fn visit_import_entry(&mut self, import_entry: &mut ImportEntry<'_>) { ... }
fn visit_import_import_name(
&mut self,
import_import_name: &mut ImportImportName<'_>,
) { ... }
fn visit_export_entry(&mut self, export_entry: &mut ExportEntry<'_>) { ... }
fn visit_export_import_name(
&mut self,
export_import_name: &mut ExportImportName<'_>,
) { ... }
fn visit_export_export_name(
&mut self,
export_export_name: &mut ExportExportName<'_>,
) { ... }
fn visit_export_local_name(
&mut self,
export_local_name: &mut ExportLocalName<'_>,
) { ... }
fn visit_dynamic_import(&mut self, dynamic_import: &mut DynamicImport) { ... }
fn visit_name_span(&mut self, name_span: &mut NameSpan<'_>) { ... }
fn visit_span(&mut self, span: &mut Span) { ... }
}