mxmlextrema_as3parser/tree/
destructuring.rsuse crate::ns::*;
use serde::{Serialize, Deserialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TypedDestructuring {
pub location: Location,
pub destructuring: Rc<Expression>,
pub type_annotation: Option<Rc<Expression>>,
}