luaur-ast 0.1.0

Lexer, parser, and AST for Luau (faithful Rust port).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::records::ast_expr::AstExpr;
use crate::records::ast_node::AstNode;
use crate::rtti::AstNodeClass;

#[repr(C)]
#[derive(Debug)]
pub struct AstExprIndexExpr {
    pub base: AstExpr,
    pub expr: *mut AstExpr,
    pub index: *mut AstExpr,
}

impl AstNodeClass for AstExprIndexExpr {
    const CLASS_INDEX: i32 = crate::rtti::ast_rtti_index("AstExprIndexExpr");
}