luaur_ast/records/ast_expr_global.rs
1use crate::records::ast_expr::AstExpr;
2use crate::records::ast_name::AstName;
3use crate::rtti::AstNodeClass;
4
5#[repr(C)]
6#[derive(Debug)]
7pub struct AstExprGlobal {
8 pub base: AstExpr,
9 pub name: AstName,
10}
11
12impl AstNodeClass for AstExprGlobal {
13 const CLASS_INDEX: i32 = crate::rtti::ast_rtti_index("AstExprGlobal");
14}