1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Merge pull request #1020 from Fusioon/master

Add missing keywords to autocomplete.
This commit is contained in:
Brian Fiete 2021-05-27 12:27:39 -04:00 committed by GitHub
commit ec47a8ad71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1561,6 +1561,7 @@ void BfAutoComplete::CheckIdentifier(BfAstNode* identifierNode, bool isInExpress
"out", "params", "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",
};
for (int i = 0; i < sizeof(tokens) / sizeof(char*); i++)