mxmlextrema_as3parser/tree/
directive_injection_node.rs

1use crate::ns::*;
2use serde::{Serialize, Deserialize};
3
4/// Node that allows modification to the directive sequence.
5#[derive(Debug, Clone, Serialize, Deserialize)]
6pub struct DirectiveInjectionNode {
7    pub location: Location,
8    pub directives: RefCell<Vec<Rc<Directive>>>,
9}