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

@ -1,5 +1,5 @@
abstract class A:
abstract func test(x: int) -> void
@abstract class A:
@abstract func test(x: int) -> void
class B extends A:
func