//! A library with common code for parsing Minecraft specification.
pubmodparse;pubmodtokenize;/// Ensure that the given condition is true, otherwise return the given value.
#[macro_export]macro_rules!ensure{($cond:expr, $ret:expr)=>{if!$cond{returnErr($ret);}};}