Skip to main content

luaur_analysis/enums/
autocomplete_context.rs

1#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2pub enum AutocompleteContext {
3    Unknown,
4    Expression,
5    Statement,
6    Property,
7    Type,
8    Keyword,
9    String,
10    HotComment,
11}