luaur-ast 0.1.0

Lexer, parser, and AST for Luau (faithful Rust port).
Documentation
use crate::enums::constant_number_parse_result::ConstantNumberParseResult;
use crate::records::ast_expr::AstExpr;
use crate::records::ast_expr_constant_integer::AstExprConstantInteger;
use crate::records::ast_node::AstNode;
use crate::records::location::Location;
use crate::rtti::AstNodeClass;

impl AstExprConstantInteger {
    pub fn new(location: Location, value: i64, parse_result: ConstantNumberParseResult) -> Self {
        Self {
            base: AstExpr {
                base: AstNode {
                    class_index: <Self as AstNodeClass>::CLASS_INDEX,
                    location,
                },
            },
            value,
            parse_result,
        }
    }
}

#[allow(non_snake_case)]
pub fn ast_expr_constant_integer_ast_expr_constant_integer(
    location: Location,
    value: i64,
    parse_result: ConstantNumberParseResult,
) -> AstExprConstantInteger {
    AstExprConstantInteger::new(location, value, parse_result)
}