mxmlextrema_as3parser/tree/
break_statement.rs

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

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BreakStatement {
    pub location: Location,
    pub label: Option<(String, Location)>,
}