Skip to main content

luaur_analysis/methods/
path_builder_index_value.rs

1use crate::enums::type_field::TypeField;
2use crate::records::path_builder::PathBuilder;
3use crate::type_aliases::component::Component;
4
5impl PathBuilder {
6    pub fn index_value(&mut self) -> &mut Self {
7        self.components
8            .push(Component::TypeField(TypeField::IndexResult));
9        self
10    }
11}