Skip to main content

luaur_ast/records/
ast_expr_constant_integer.rs

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