feat: updated engine version to 4.4-rc1

This commit is contained in:
Sara 2025-02-23 14:38:14 +01:00
parent ee00efde1f
commit 21ba8e33af
5459 changed files with 1128836 additions and 198305 deletions

View file

@ -2,20 +2,24 @@ scene="res://completion/get_node/get_node.tscn"
[output]
include=[
; Node
{"display": "add_child"},
{"display": "add_child(…)"},
{"display": "owner"},
{"display": "child_entered_tree"},
; GDScript: class_a.notest.gd
{"display": "property_of_a"},
{"display": "func_of_a"},
{"display": "func_of_a()"},
{"display": "signal_of_a"},
; GDScript: self.gd
; GDScript: identifiers.gd
{"display": "test_signal_1"},
{"display": "test_signal_2"},
{"display": "test_var_1"},
{"display": "test_var_2"},
{"display": "test_func_1"},
{"display": "test_func_2"},
{"display": "test_func_1(…)"},
{"display": "test_func_2(…)"},
{"display": "test_parameter_1"},
{"display": "test_parameter_2"},
{"display": "local_test_var_1"},
{"display": "local_test_var_2"},
]

View file

@ -0,0 +1,18 @@
extends "res://completion/class_a.notest.gd"
signal test_signal_1(a)
signal test_signal_2(a: int)
var test_var_1
var test_var_2: int
func test_func_1(t):
pass
func test_func_2(t: int) -> void:
pass
func _init(test_parameter_1, test_parameter_2: String):
var local_test_var_1
var local_test_var_2: int
print(t)

View file

@ -0,0 +1,25 @@
scene="res://completion/get_node/get_node.tscn"
[output]
include=[
; Node
{"display": "add_child(…)"},
{"display": "owner"},
{"display": "child_entered_tree"},
; GDScript: class_a.notest.gd
{"display": "property_of_a"},
{"display": "func_of_a()"},
{"display": "signal_of_a"},
; GDScript: identifiers.gd
{"display": "test_signal_1"},
{"display": "test_signal_2"},
{"display": "test_var_1"},
{"display": "test_var_2"},
{"display": "test_func_1(…)"},
{"display": "test_func_2(…)"},
{"display": "test_parameter_1"},
{"display": "test_parameter_2"},
{"display": "local_test_var_1"},
{"display": "local_test_var_2"},
]

View file

@ -12,5 +12,7 @@ func test_func_1(t):
func test_func_2(t: int) -> void:
pass
func _init():
func _init(test_parameter_1, test_parameter_2: String):
var local_test_var_1
var local_test_var_2: int
t

View file

@ -0,0 +1,25 @@
scene="res://completion/get_node/get_node.tscn"
[output]
include=[
; Node
{"display": "add_child(…)"},
{"display": "owner"},
{"display": "child_entered_tree"},
; GDScript: class_a.notest.gd
{"display": "property_of_a"},
{"display": "func_of_a()"},
{"display": "signal_of_a"},
; GDScript: identifiers.gd
{"display": "test_signal_1"},
{"display": "test_signal_2"},
{"display": "test_var_1"},
{"display": "test_var_2"},
{"display": "test_func_1(…)"},
{"display": "test_func_2(…)"},
{"display": "test_parameter_1"},
{"display": "test_parameter_2"},
{"display": "local_test_var_1"},
{"display": "local_test_var_2"},
]

View file

@ -0,0 +1,22 @@
# godotengine/godot#92226
extends "res://completion/class_a.notest.gd"
signal test_signal_1(a)
signal test_signal_2(a: int)
var test_var_1
var test_var_2: int
func test_func_1(t):
pass
func test_func_2(t: int) -> void:
pass
func _init(test_parameter_1, test_parameter_2: String):
var local_test_var_1
var local_test_var_2: int
print(t
if true:
pass

View file

@ -0,0 +1,5 @@
[output]
include=[
; String
{"display": "begins_with(…)"},
]

View file

@ -0,0 +1,9 @@
class B:
func to_str(b: int):
return str(b)
var a: B
func _ready():
a.to_str(10).
pass

View file

@ -0,0 +1,26 @@
scene="res://completion/get_node/get_node.tscn"
[output]
exclude=[
; Node
{"display": "add_child(…)"},
{"display": "owner"},
{"display": "child_entered_tree"},
{"display": "add_child(…)"},
; GDScript: class_a.notest.gd
{"display": "property_of_a"},
{"display": "func_of_a()"},
{"display": "signal_of_a"},
; GDScript: no_completion_in_string.gd
{"display": "test_signal_1"},
{"display": "test_signal_2"},
{"display": "test_var_1"},
{"display": "test_var_2"},
{"display": "test_func_1(…)"},
{"display": "test_func_2(…)"},
{"display": "test_parameter_1"},
{"display": "test_parameter_2"},
{"display": "local_test_var_1"},
{"display": "local_test_var_2"},
]

View file

@ -0,0 +1,19 @@
# godotengine/godot#62945
extends "res://completion/class_a.notest.gd"
signal test_signal_1(a)
signal test_signal_2(a: int)
var test_var_1
var test_var_2: int
func test_func_1(t):
pass
func test_func_2(t: int) -> void:
pass
func _init(test_parameter_1, test_parameter_2: String):
var local_test_var_1
var local_test_var_2: int
var a = ""

View file

@ -2,13 +2,13 @@ scene="res://completion/get_node/get_node.tscn"
[output]
include=[
; Node
{"display": "add_child"},
{"display": "add_child(…)"},
{"display": "owner"},
{"display": "child_entered_tree"},
; GDScript: class_a.notest.gd
{"display": "property_of_a"},
{"display": "func_of_a"},
{"display": "func_of_a()"},
{"display": "signal_of_a"},
; GDScript: self.gd
@ -16,6 +16,6 @@ include=[
{"display": "test_signal_2"},
{"display": "test_var_1"},
{"display": "test_var_2"},
{"display": "test_func_1"},
{"display": "test_func_2"},
{"display": "test_func_1(…)"},
{"display": "test_func_2(…)"},
]

View file

@ -14,3 +14,4 @@ func test_func_2(t: int) -> void:
func _init():
self.
pass