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 enum class AutocompleteContext
{ {
// No context available - e.g. inside of comment
Unknown, Unknown,
Expression, Expression,
Statement, Statement,
// Autocompleting an index - `foo.bar` / `foo:bar`
Property, Property,
// Autocompleting a type name
Type, Type,
// Autocompleting a keyword
Keyword, Keyword,
// Autocompleting a string
String, String,
}; };