Remove comments

This commit is contained in:
JohnnyMorganz 2022-07-24 21:06:41 +01:00
parent eb187981ad
commit 93d1da14cb

View file

@ -21,17 +21,12 @@ using ModulePtr = std::shared_ptr<Module>;
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,
};