thp/src/syntax/ast/functions.rs

13 lines
203 B
Rust
Raw Normal View History

2023-10-01 22:18:28 +00:00
#[derive(Debug)]
pub struct FunctionCall {
2023-10-01 22:43:59 +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 {
2023-10-01 22:43:59 +00:00
pub arguments: Vec<Box<Argument>>,
2023-10-01 22:37:19 +00:00
}
#[derive(Debug)]
pub enum Argument {}