Skip to main content

luaur_analysis/methods/
ambiguous_function_call_arguments.rs

1use crate::records::ambiguous_function_call::AmbiguousFunctionCall;
2use crate::type_aliases::type_pack_id::TypePackId;
3
4impl AmbiguousFunctionCall {
5    pub fn arguments(&self) -> TypePackId {
6        self.arguments
7    }
8}