luaur-ast 0.1.0

Lexer, parser, and AST for Luau (faithful Rust port).
Documentation
use crate::records::ast_expr::AstExpr;
use crate::records::ast_expr_varargs::AstExprVarargs;
use crate::records::ast_node::AstNode;
use crate::records::location::Location;
use crate::rtti::AstNodeClass;

impl AstExprVarargs {
    pub fn new(location: Location) -> Self {
        Self {
            base: AstExpr {
                base: AstNode {
                    class_index: <Self as AstNodeClass>::CLASS_INDEX,
                    location,
                },
            },
        }
    }
}

#[allow(non_snake_case)]
pub fn ast_expr_varargs_ast_expr_varargs(location: Location) -> AstExprVarargs {
    AstExprVarargs::new(location)
}