molecule_codegen/parser/
inner.rs

1#![allow(clippy::upper_case_acronyms)]
2
3use pest_derive::Parser as ParserDerive;
4
5#[derive(ParserDerive)]
6#[grammar = "grammar.pest"]
7pub(crate) struct Parser;