luaur_ast/records/ast_stat_assign.rs
1#[repr(C)]
2#[derive(Debug, Clone)]
3pub struct AstStatAssign {
4 pub base: crate::records::ast_stat::AstStat,
5 pub vars: crate::records::ast_array::AstArray<*mut crate::records::ast_expr::AstExpr>,
6 pub values: crate::records::ast_array::AstArray<*mut crate::records::ast_expr::AstExpr>,
7}
8
9impl crate::rtti::AstNodeClass for AstStatAssign {
10 const CLASS_INDEX: i32 = crate::rtti::ast_rtti_index("AstStatAssign");
11}