Merge pull request #107717 from aaronfranke/abstract-annotation

GDScript: Replace `abstract` keyword with `@abstract` annotation
This commit is contained in:
Rémi Verschelde 2025-06-27 17:12:56 +02:00 committed by GitHub
commit ebc36a7225
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
31 changed files with 179 additions and 197 deletions

View file

@ -1532,7 +1532,7 @@ static void _find_identifiers(const GDScriptParser::CompletionContext &p_context
static const char *_keywords_with_space[] = {
"and", "not", "or", "in", "as", "class", "class_name", "extends", "is", "func", "signal", "await",
"const", "enum", "abstract", "static", "var", "if", "elif", "else", "for", "match", "when", "while",
"const", "enum", "static", "var", "if", "elif", "else", "for", "match", "when", "while",
nullptr
};