wright/grammar/
parser.rs

1
2
3
4
5
6
7
8
9
#![allow(missing_docs)]
use pest::Parser;


/// Wright's parser, generated from a PEST grammar.
#[derive(Parser, Copy, Clone, Debug)]
#[grammar = "grammar/grammar.pest"]
pub struct WrightParser;