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
use crate::records::ast_table_indexer::AstTableIndexer;
use crate::records::position::Position;

#[derive(Debug, Clone)]
pub struct TableIndexerResult {
    pub node: *mut AstTableIndexer,
    pub indexer_open_position: Position,
    pub indexer_close_position: Position,
    pub colon_position: Position,
}