thp/src/syntax/ast/functions.rs

16 lines
204 B
Rust
Raw Normal View History

2023-10-01 22:18:28 +00:00
#[derive(Debug)]
pub struct FunctionCall {
2023-10-01 22:37:19 +00:00
pub identifier: Box<String>
2023-10-01 22:18:28 +00:00
}
2023-10-01 22:37:19 +00:00
#[derive(Debug)]
pub struct ArgumentsList {
pub arguments: Vec<Box<Argument>>
}
#[derive(Debug)]
pub enum Argument {}