1 2 3 4 5 6 7 8 9 10 11
use crate::records::ast_stat::AstStat; #[repr(C)] #[derive(Debug)] pub struct AstStatContinue { pub base: AstStat, } impl crate::rtti::AstNodeClass for AstStatContinue { const CLASS_INDEX: i32 = crate::rtti::ast_rtti_index("AstStatContinue"); }