mxmlextrema_as3parser/tree/
destructuring.rs

1
2
3
4
5
6
7
8
9
use 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>>,
}