mxmlextrema_as3parser/tree/
with_statement.rs

1use crate::ns::*;
2use serde::{Serialize, Deserialize};
3
4#[derive(Debug, Clone, Serialize, Deserialize)]
5pub struct WithStatement {
6    pub location: Location,
7    pub object: Rc<Expression>,
8    pub body: Rc<Directive>,
9}