as3_parser 1.0.25

ActionScript 3 parser
Documentation
1
2
3
4
5
6
7
8
9
use crate::ns::*;
use serde::{Serialize, Deserialize};

#[derive(Clone, Serialize, Deserialize)]
pub struct TypedDestructuring {
    pub location: Location,
    pub destructuring: Rc<Expression>,
    pub type_annotation: Option<Rc<Expression>>,
}