bund_language_parser 0.14.0

BUND programming language parser
Documentation
extern crate pest;
use easy_error::{bail, Error};
use pest::Parser;
use pest_derive::*;
use rust_dynamic::value::Value;

pub mod compile;
pub mod parse;
pub mod vm;

#[derive(Parser)]
#[grammar = "bund.pest"]
pub struct BundParser;

pub fn bund_parse(source: &str) -> Result<Vec<Value>, Error> {
    let mut res: Vec<Value> = Vec::new();
    let pairs = BundParser::parse(Rule::program, source);
    match pairs {
        Ok(ast_pairs) => {
            for pair in ast_pairs {
                match parse::parse_pair(pair, &mut res) {
                    Ok(value) => {
                        res.push(value);
                    }
                    Err(err) => {
                        bail!("Error parsing token: {}", err);
                    }
                }
            }
        }
        Err(err) => {
            bail!("{}", err);
        }
    }
    Ok(res)
}

pub fn version() -> String {
    env!("CARGO_PKG_VERSION").to_string().clone()
}