pomelo 0.2.3

Implementation of the Lemon parser generator as a Rust procedural macro
Documentation
/*! This modules is here to document the code generated by the `pomelo!` macro, do not use it in
  your program!

  There are two variants of the public interface of a generated `Parser` class, depending on whether you use the `%extra_argument` directive or not.

  As such two separated sample modules are documented.
*/

#![allow(unused_variables)]

/** Generated module when `%extra_argument` is used. */
mod with_extra_argument;
/** Generated module when `%extra_argument` is *not* used. */
mod without_extra_argument;

#[doc(inline)]
pub use without_extra_argument::parser as parser_without_extra_argument;

#[doc(inline)]
pub use with_extra_argument::parser as parser_with_extra_argument;