mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
8 lines
172 B
Rust
Executable file
8 lines
172 B
Rust
Executable file
use super::string_range::StringRange;
|
|
use std::{any::Any, rc::Rc};
|
|
|
|
#[derive(Clone)]
|
|
pub struct ParsedArgument {
|
|
pub range: StringRange,
|
|
pub result: Rc<dyn Any>,
|
|
}
|