luau-parser 0.2.68

A blazingly fast Luau parser with robust error recovery.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! All `impl` blocks for the main statements in a [`Cst`](crate::types::Cst).

mod do_block;
mod end_of_file;
mod function;
mod generic_for;
mod if_statement;
mod r#impl;
mod local_assignment;
mod numerical_for;
mod repeat_block;
mod set_expressions;
mod statement;
mod type_definition;
mod while_loop;