sleigh_rs/semantic/
user_function.rs

1use crate::Span;
2
3#[derive(Clone, Debug)]
4pub struct UserFunction(pub(crate) Span);
5
6impl UserFunction {
7    pub fn location(&self) -> &Span {
8        &self.0
9    }
10}