jsonc_parser::cst

Macro json

source
macro_rules! json {
    (null) => { ... };
    (true) => { ... };
    (false) => { ... };
    ($num:literal) => { ... };
    ($str:literal) => { ... };
    ([ $($elems:tt),* $(,)? ]) => { ... };
    ({ $($key:tt : $value:tt),* $(,)? }) => { ... };
}