13 lines
203 B
Rust
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 {}
|