luaur_ast/records/ast_stat_expr.rs
1use crate::records::ast_expr::AstExpr;
2use crate::records::ast_stat::AstStat;
3
4#[repr(C)]
5#[derive(Debug)]
6pub struct AstStatExpr {
7 pub base: AstStat,
8 pub expr: *mut AstExpr,
9}
10
11impl crate::rtti::AstNodeClass for AstStatExpr {
12 const CLASS_INDEX: i32 = crate::rtti::ast_rtti_index("AstStatExpr");
13}