Skip to main content

luaur_ast/records/
ast_stat_repeat.rs

1use crate::records::ast_expr::AstExpr;
2use crate::records::ast_stat::AstStat;
3use crate::records::ast_stat_block::AstStatBlock;
4
5#[repr(C)]
6#[derive(Debug)]
7pub struct AstStatRepeat {
8    pub base: AstStat,
9    pub condition: *mut AstExpr,
10    pub body: *mut AstStatBlock,
11    pub DEPRECATED_hasUntil: bool,
12}
13
14impl crate::rtti::AstNodeClass for AstStatRepeat {
15    const CLASS_INDEX: i32 = crate::rtti::ast_rtti_index("AstStatRepeat");
16}