A portable parser combinator library that does not require a runtime
You can find documentation for honeycomb here.
None! Honeycomb doesn't even require the standard library!
All you need is a device that can run Rust, and you're good to go.
Here's an example JSON parser.
Essentially, we define functions that create larger Parsers from small atomic parsers. We create Parsers that parse: boolean, string, numberic, and null values, and then use those to build parsers that consume Arrays, and Object definitions.
```rust extern crate honeycomb; use honeycomb::{ atoms::{rec, seqnows}, language, transform::{tobtree, tonumber}, Parser, };
use std::collections::BTreeMap;
pub enum JsonValue {
Null,
Bool(bool),
Str(String),
Num(f64),
Array(Vec
fn boolean() -> Parser
fn string() -> Parser
fn number() -> Parser
fn null() -> Parser
fn array() -> Parser
fn object() -> Parser
fn json() -> Parser
fn main() { println!( "{:#?}", json().parse( r#" { "testing" : null, "recursion" : { "WOW": 1.2345 }, "array": [1, 2, {"test": "123"}, 4], "test": "testing" } "# ) ); } ```
This uses a built in Parser called token.
The token parser returns a vector of strings that represent identifiers, strings, numbers, and symbols.
Here, we take the token parser, and create a parser that accepts any number of tokens.
```rust extern crate honeycomb; use honeycomb::language::token;
fn main() { println!( "{:?}", (token().repeat(..)).parse( r#"
struct Point { x: i32, y: i32 }
fn testing() { println("hello world!"); }
fn main() {
} "# ) ); }
```