#[repr(C)]pub struct CallExpression<'gc> {
pub metadata: NodeMetadata<'gc>,
pub callee: &'gc Node<'gc>,
pub type_arguments: Option<&'gc Node<'gc>>,
pub arguments: NodeList<'gc>,
}Expand description
The CallExpression AST node.
Fields§
§metadata: NodeMetadata<'gc>Source range, debug location, paren count, and node id.
callee: &'gc Node<'gc>ESTree callee property.
type_arguments: Option<&'gc Node<'gc>>ESTree typeArguments property.
arguments: NodeList<'gc>ESTree arguments property.
Implementations§
Source§impl<'gc> CallExpression<'gc>
impl<'gc> CallExpression<'gc>
Trait Implementations§
Auto Trait Implementations§
impl<'gc> !Freeze for CallExpression<'gc>
impl<'gc> !RefUnwindSafe for CallExpression<'gc>
impl<'gc> !Send for CallExpression<'gc>
impl<'gc> !Sync for CallExpression<'gc>
impl<'gc> !UnwindSafe for CallExpression<'gc>
impl<'gc> Unpin for CallExpression<'gc>
impl<'gc> UnsafeUnpin for CallExpression<'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