thp/src/syntax/ast/functions.rs
2023-10-01 17:43:59 -05:00

13 lines
203 B
Rust

#[derive(Debug)]
pub struct FunctionCall {
pub identifier: Box<String>,
}
#[derive(Debug)]
pub struct ArgumentsList {
pub arguments: Vec<Box<Argument>>,
}
#[derive(Debug)]
pub enum Argument {}