1 2 3 4 5 6 7 8 9
use crate::ns::*; use serde::{Serialize, Deserialize}; #[derive(Debug, Clone, Serialize, Deserialize)] pub struct FunctionExpression { pub location: Location, pub name: Option<(String, Location)>, pub common: Rc<FunctionCommon>, }