luaur-ast 0.1.2

Lexer, parser, and AST for Luau (faithful Rust port).
Documentation
use crate::records::ast_expr::AstExpr;
use crate::records::ast_local::AstLocal;
use crate::records::ast_node::AstNode;
use crate::records::ast_stat::AstStat;
use crate::records::ast_stat_block::AstStatBlock;
use crate::records::ast_stat_for::AstStatFor;
use crate::records::location::Location;
use crate::rtti::AstNodeClass;

impl AstStatFor {
    pub fn new(
        location: Location,
        var: *mut AstLocal,
        from: *mut AstExpr,
        to: *mut AstExpr,
        step: *mut AstExpr,
        body: *mut AstStatBlock,
        has_do: bool,
        do_location: Location,
    ) -> Self {
        Self {
            base: AstStat {
                base: AstNode {
                    class_index: <Self as AstNodeClass>::CLASS_INDEX,
                    location,
                },
                has_semicolon: false,
            },
            var,
            from,
            to,
            step,
            body,
            has_do,
            do_location,
        }
    }
}

#[allow(non_snake_case)]
pub fn ast_stat_for_ast_stat_for(
    location: Location,
    var: *mut AstLocal,
    from: *mut AstExpr,
    to: *mut AstExpr,
    step: *mut AstExpr,
    body: *mut AstStatBlock,
    has_do: bool,
    do_location: Location,
) -> AstStatFor {
    AstStatFor::new(location, var, from, to, step, body, has_do, do_location)
}