luaur_ast/records/
ast_stat_compound_assign.rs1use crate::records::ast_expr::AstExpr;
2use crate::records::ast_expr_binary::AstExprBinary_Op;
3use crate::records::ast_stat::AstStat;
4
5#[repr(C)]
6#[derive(Debug)]
7pub struct AstStatCompoundAssign {
8 pub base: AstStat,
9 pub op: AstExprBinary_Op,
10 pub var: *mut AstExpr,
11 pub value: *mut AstExpr,
12}
13
14impl crate::rtti::AstNodeClass for AstStatCompoundAssign {
15 const CLASS_INDEX: i32 = crate::rtti::ast_rtti_index("AstStatCompoundAssign");
16}