cfs-synapse-parser 0.2.10

Parser for the Synapse NASA cFS-friendly IDL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod ast;

pub mod synapse {
    use pest_derive::Parser;

    #[derive(Parser)]
    #[grammar = "synapse.pest"]
    pub struct SynapseParser;
}

pub use synapse::SynapseParser;

#[cfg(test)]
mod grammar_tests;