summaryrefslogtreecommitdiffstats
path: root/src/parser.rs
blob: 83c05a1b8d496ee9e1d553ce584b9fb9522eadbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//! The definition of the "kairos" syntax, for parsing user input into TimeType objects
//!
//! The syntax itself is described in the grammar.rustpeg file.
//! Here goes a documentation on the syntax
//!
//! # Syntax
//!
//!
//!
//!
//!
//!
//!
//!
//!

mod grammar {
    include!(concat!(env!("OUT_DIR"), "/grammar.rs"));
}