11 releases

0.2.0 May 15, 2024
0.1.9 Jan 17, 2021

#7 in #lex

Download history 4/week @ 2024-02-12 12/week @ 2024-02-26 7/week @ 2024-03-11 4/week @ 2024-03-18 17/week @ 2024-04-01 8/week @ 2024-04-22 174/week @ 2024-05-13 40/week @ 2024-05-20 5/week @ 2024-05-27

219 downloads per month
Used in analisar

MIT license

30KB
943 lines

Lex Lua

A Lua lexer written in Rust.

Example

use lex_lua::Lexer;

fn main() {
    let bytes = std::fs::read("./readme.lua").unwrap();
    let l = Lexer::new(bytes.as_slice());
    for (i, token) in l.enumerate() {
        println!("{}: {:?}", i, token);
    }
}
$ cargo run --example readme
0: Keyword(Function)
1: Name("say_hello")
2: Punct(OpenParen)
3: Punct(CloseParen)
4: Name("print")
5: Punct(OpenParen)
6: LiteralString("\'Hi!\'")
7: Punct(CloseParen)
8: Keyword(End)
9: Name("say_hello")
10: Punct(OpenParen)
11: Punct(CloseParen)

Dependencies

~685KB