luaur-ast 0.1.1

Lexer, parser, and AST for Luau (faithful Rust port).
Documentation
1
2
3
4
5
#[allow(non_snake_case)]
#[inline]
pub fn is_digit(ch: char) -> bool {
    (ch as u8).wrapping_sub(b'0') < 10
}