Skip to main content

luaur_ast/records/
ast_expr_varargs.rs

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