tok_grammar/ast/
program.rs

1use super::*;
2
3#[derive(Debug, PartialEq)]
4pub struct Program<'a> {
5    pub commands: CompleteCommands<'a>,
6}