diff --git a/Analysis/include/Luau/Autocomplete.h b/Analysis/include/Luau/Autocomplete.h index fdc00ade..f40f8b49 100644 --- a/Analysis/include/Luau/Autocomplete.h +++ b/Analysis/include/Luau/Autocomplete.h @@ -21,17 +21,12 @@ using ModulePtr = std::shared_ptr; enum class AutocompleteContext { - // No context available - e.g. inside of comment Unknown, Expression, Statement, - // Autocompleting an index - `foo.bar` / `foo:bar` Property, - // Autocompleting a type name Type, - // Autocompleting a keyword Keyword, - // Autocompleting a string String, };