aboutsummaryrefslogtreecommitdiff
path: root/azalea-brigadier/src/context/parsed_argument.rs
blob: ef5596948176eb778e2a4db51ed748d4047dc31b (plain)
1
2
3
4
5
6
7
8
9
use std::{any::Any, sync::Arc};

use super::string_range::StringRange;

#[derive(Clone)]
pub struct ParsedArgument {
    pub range: StringRange,
    pub result: Arc<dyn Any>,
}