1 2 3 4 5 6 7 8 9
use crate::ir::*; #[derive(Debug, Clone)] pub struct IrField { pub ty: IrType, pub name: IrIdent, pub is_final: bool, pub comments: Vec<IrComment>, }