1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Added const/readonly to more autocomplete cases

This commit is contained in:
Brian Fiete 2022-06-06 13:03:54 -07:00
parent 948f0f8874
commit a083bda31b

View file

@ -1718,10 +1718,10 @@ void BfAutoComplete::CheckIdentifier(BfAstNode* identifierNode, bool isInExpress
{
const char* tokens [] =
{
"alignof", "as", "asm", "base", "break", "case", "catch", "checked", "continue", "default", "defer",
"alignof", "as", "asm", "base", "break", "case", "catch", "checked", "continue", "const", "default", "defer",
"delegate", "delete", "do", "else", "false", "finally",
"fixed", "for", "function", "if", "implicit", "in", "internal", "is", "isconst", "new", "mixin", "null",
"offsetof", "out", "params", "ref", "rettype", "return",
"offsetof", "out", "params", "readonly", "ref", "rettype", "return",
"sealed", "sizeof", "scope", "static", "strideof", "struct", "switch", /*"this",*/ "try", "true", "typeof", "unchecked",
"using", "var", "virtual", "volatile", "where", "while",
"alloctype", "comptype", "decltype", "nullable",