Skip to main content

luaur_ast/records/
ast_expr_error.rs

1use crate::records::ast_array::AstArray;
2use crate::records::ast_expr::AstExpr;
3
4#[repr(C)]
5#[derive(Debug)]
6pub struct AstExprError {
7    pub base: AstExpr,
8    pub expressions: AstArray<*mut AstExpr>,
9    pub message_index: u32,
10}
11
12impl crate::rtti::AstNodeClass for AstExprError {
13    const CLASS_INDEX: i32 = crate::rtti::ast_rtti_index("AstExprError");
14}