feat: modules moved and engine moved to submodule
This commit is contained in:
parent
dfb5e645cd
commit
c33d2130cc
5136 changed files with 225275 additions and 64485 deletions
|
|
@ -1,3 +1,5 @@
|
|||
extends Node
|
||||
|
||||
@onready var anim := $AnimationPlayer
|
||||
|
||||
func test():
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
extends Node
|
||||
|
||||
@onready var anim: AnimationPlayer = $AnimationPlayer
|
||||
|
||||
func test():
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
extends Node
|
||||
|
||||
@onready var anim = $AnimationPlayer
|
||||
|
||||
func test():
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
[output]
|
||||
include=[
|
||||
; GDScript: class_a.notest.gd
|
||||
{"display": "func_of_a()"},
|
||||
]
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
extends "res://completion/class_a.notest.gd"
|
||||
|
||||
func test():
|
||||
super.➡
|
||||
|
||||
if true:
|
||||
pass
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[output]
|
||||
include=[
|
||||
; GDScript: class_a.notest.gd
|
||||
{"display": "func_of_a()"},
|
||||
]
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
extends "res://completion/class_a.notest.gd"
|
||||
|
||||
func test():
|
||||
super.f➡
|
||||
|
||||
if true:
|
||||
pass
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
extends Node
|
||||
|
||||
func a():
|
||||
%AnimationPlayer.➡
|
||||
$UniqueAnimationPlayer.➡
|
||||
pass
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
extends Node
|
||||
|
||||
func a():
|
||||
$UniqueAnimationPlayer.➡
|
||||
%AnimationPlayer.➡
|
||||
pass
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
extends Node
|
||||
|
||||
var test := $A
|
||||
@onready var test := $A
|
||||
|
||||
func a():
|
||||
test.➡
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
extends Node
|
||||
|
||||
var test := $AnimationPlayer
|
||||
@onready var test := $AnimationPlayer
|
||||
|
||||
func a():
|
||||
test.➡
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
extends Node
|
||||
|
||||
var test = $A
|
||||
@onready var test = $A
|
||||
|
||||
func a():
|
||||
test.➡
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
extends Node
|
||||
|
||||
var test = $AnimationPlayer
|
||||
@onready var test = $AnimationPlayer
|
||||
|
||||
func a():
|
||||
test.➡
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
extends Node
|
||||
|
||||
var test: AnimationPlayer = $AnimationPlayer
|
||||
@onready var test: AnimationPlayer = $AnimationPlayer
|
||||
|
||||
func a():
|
||||
test.➡
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
extends Node
|
||||
|
||||
var test: Node = $A
|
||||
@onready var test: Node = $A
|
||||
|
||||
func a():
|
||||
test.➡
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
extends Node
|
||||
|
||||
var test: Node = $AnimationPlayer
|
||||
@onready var test: Node = $AnimationPlayer
|
||||
|
||||
func a():
|
||||
test.➡
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
extends Node
|
||||
|
||||
var test: Area2D = $A
|
||||
@onready var test: Area2D = $A
|
||||
|
||||
func a():
|
||||
test.➡
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
extends Node
|
||||
|
||||
var test: Area2D = $AnimationPlayer
|
||||
@onready var test: Area2D = $AnimationPlayer
|
||||
|
||||
func a():
|
||||
test.➡
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
[output]
|
||||
include=[
|
||||
{"display": "hello_world", "insert_text": "hello_world"},
|
||||
]
|
||||
exclude=[
|
||||
{"insert_text": "hello_world()"},
|
||||
{"insert_text": "hello_world("},
|
||||
]
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
signal test
|
||||
|
||||
func _init() -> void:
|
||||
test.connect(h➡)
|
||||
pass
|
||||
|
||||
func hello_world():
|
||||
pass
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
[output]
|
||||
include=[
|
||||
{"display": "hello_world", "insert_text": "hello_world"},
|
||||
]
|
||||
exclude=[
|
||||
{"insert_text": "hello_world()"},
|
||||
{"insert_text": "hello_world("},
|
||||
]
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
var arr: Array
|
||||
|
||||
func _init() -> void:
|
||||
arr.sort_custom(h➡
|
||||
pass
|
||||
|
||||
func hello_world():
|
||||
pass
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
[output]
|
||||
include=[
|
||||
{"display": "hello_world", "insert_text": "hello_world"},
|
||||
]
|
||||
exclude=[
|
||||
{"insert_text": "hello_world()"},
|
||||
{"insert_text": "hello_world("},
|
||||
]
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
func test(a: Callable, b):
|
||||
pass
|
||||
|
||||
func _init() -> void:
|
||||
test(h➡)
|
||||
pass
|
||||
|
||||
func hello_world():
|
||||
pass
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
[output]
|
||||
include=[
|
||||
{"display": "hello_world", "insert_text": "hello_world"},
|
||||
]
|
||||
exclude=[
|
||||
{"insert_text": "hello_world()"},
|
||||
{"insert_text": "hello_world("},
|
||||
]
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
func test(a, b: Callable):
|
||||
pass
|
||||
|
||||
func _init() -> void:
|
||||
test(hello_world(), h➡)
|
||||
pass
|
||||
|
||||
func hello_world():
|
||||
pass
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
[output]
|
||||
include=[
|
||||
{"display": "hello_world()", "insert_text": "hello_world()"},
|
||||
]
|
||||
exclude=[
|
||||
{"insert_text": "hello_world"},
|
||||
{"insert_text": "hello_world("},
|
||||
]
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
func test(a, b: Callable):
|
||||
pass
|
||||
|
||||
func _init() -> void:
|
||||
test(h➡)
|
||||
pass
|
||||
|
||||
func hello_world():
|
||||
pass
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
[output]
|
||||
include=[
|
||||
{"display": "hello_world", "insert_text": "hello_world"},
|
||||
]
|
||||
exclude=[
|
||||
{"display": "hello_world", "insert_text": "hello_world()"},
|
||||
{"display": "hello_world", "insert_text": "hello_world("},
|
||||
]
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
extends Node
|
||||
|
||||
func _init() -> void:
|
||||
create_tween().tween_callback(h➡)
|
||||
pass
|
||||
|
||||
func hello_world():
|
||||
pass
|
||||
Loading…
Add table
Add a link
Reference in a new issue