#[repr(C)]pub struct DeclareExportAllDeclaration<'gc> {
pub metadata: NodeMetadata<'gc>,
pub source: &'gc Node<'gc>,
}Expand description
The DeclareExportAllDeclaration AST node.
Fields§
§metadata: NodeMetadata<'gc>Source range, debug location, paren count, and node id.
source: &'gc Node<'gc>ESTree source property.
Implementations§
Source§impl<'gc> DeclareExportAllDeclaration<'gc>
impl<'gc> DeclareExportAllDeclaration<'gc>
Sourcepub fn new(metadata: NodeMetadata<'gc>, source: &'gc Node<'gc>) -> Self
pub fn new(metadata: NodeMetadata<'gc>, source: &'gc Node<'gc>) -> Self
Build DeclareExportAllDeclaration from its metadata and ESTree.def
fields.
Trait Implementations§
Auto Trait Implementations§
impl<'gc> !Freeze for DeclareExportAllDeclaration<'gc>
impl<'gc> !RefUnwindSafe for DeclareExportAllDeclaration<'gc>
impl<'gc> !Send for DeclareExportAllDeclaration<'gc>
impl<'gc> !Sync for DeclareExportAllDeclaration<'gc>
impl<'gc> !UnwindSafe for DeclareExportAllDeclaration<'gc>
impl<'gc> Unpin for DeclareExportAllDeclaration<'gc>
impl<'gc> UnsafeUnpin for DeclareExportAllDeclaration<'gc>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more