misty-parser 0.0.3

Parser code required by the Misty Compiler
Documentation
1
2
3
4
5
6
7
8
use pest_derive::Parser;

/// Pest parser for Misty.
///
/// Fully generated by the [Parser] derive macro.
#[derive(Parser)]
#[grammar = "misty.pest"]
pub struct MistyPestParser;