Skip to main content

luaur_ast/records/
cst_expr_constant_integer.rs

1#[repr(C)]
2#[derive(Debug, Clone)]
3pub struct CstExprConstantInteger {
4    pub base: crate::records::cst_node::CstNode,
5    pub value: crate::records::ast_array::AstArray<core::ffi::c_char>,
6}
7
8impl crate::rtti::CstNodeClass for CstExprConstantInteger {
9    const CLASS_INDEX: i32 = crate::rtti::ast_rtti_index("CstExprConstantInteger");
10}