macro_rules! child {
($node:ident) => { ... };
($node:ident, $i:literal) => { ... };
($node:ident, $i:literal, $msg:expr) => { ... };
}Expand description
Get the i-th child of a node, or return a syntax error with a message if it doesn’t exist.