An open API service indexing awesome lists of open source software.

https://github.com/rozbb/nom-lua53

A parser for Lua 5.3 written using the nom parser combinator library
https://github.com/rozbb/nom-lua53

Last synced: 12 months ago
JSON representation

A parser for Lua 5.3 written using the nom parser combinator library

Awesome Lists containing this project

README

          

# nom-lua53

A toy parser for Lua 5.3 written using nom

# Usage

```rust
extern crate nom_lua53;
use std::io::{self, Read};
use nom_lua53::{parse_all, ParseResult};

fn main() {
let mut input = Vec::new();
io::stdin().read_to_end(&mut input).expect("couldn't read from stdin");
match parse_all(&*input) {
ParseResult::Done(ss) => {
println!("Done. statements == {:#?}", ss);
}
ParseResult::Error(rest, ss) => {
println!("Error. statements == {:#?}", ss);
println!("rest == '{}'", String::from_utf8_lossy(rest));
}
}
}
```