-
-
Notifications
You must be signed in to change notification settings - Fork 98
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
See godotengine/godot#106409 and godotengine/godot#107717
The @abstract
annotation now exists in Godot 4.5
@abstract class_name MyClass # this works fine
extends Node
@abstract func my_func()
@abstract func my_other_func() # Unexpected token Token('_NL', '\n')(gdlint)
It looks like this is also valid, with \n
after the annotation:
@abstract
class_name Saveable
extends Node
@abstract
func save()
# Unexpected token Token('_NL', '\n\n')(gdlint)
@abstract
func load()
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request