ninja-build-syntax 0.0.2

Parser for ninja's manifest file format, i.e. `ninja.build` files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod error;
mod parsers;
mod statements;

pub use {
    error::Error,
    parsers::{
        Binding, Build, Comment, Default, Identifier, Include, Pool, Rule, Statement, Value,
        ValuePiece,
    },
    statements::parse,
};

type IResult<'a, T> = nom::IResult<&'a [u8], T>;