Skip to main content

luaur_ast/records/
ast_expr_group.rs

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