mxmlextrema_as3parser/tree/
regexp_literal.rs1use crate::ns::*;
2use serde::{Serialize, Deserialize};
3
4#[derive(Debug, Clone, Serialize, Deserialize)]
5pub struct RegExpLiteral {
6 pub location: Location,
7 pub body: String,
8 pub flags: String,
9}