mxmlextrema_as3parser/tree/
string_literal.rs

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

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct StringLiteral {
    pub location: Location,
    pub value: String,
}