Skip to content

Commit bc7d805

Browse files
committed
Add test cases for multi-line wrapping of parameters for the constructor function
1 parent a18b208 commit bc7d805

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
func _init(
2+
init_mob: Mob3D,
3+
init_spawning_point: Node3D,
4+
init_projectile_scene: PackedScene
5+
) -> void:
6+
pass
7+
8+
9+
func _init(a, b: int, c: String) -> void:
10+
pass
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
func _init(init_mob: Mob3D,
2+
init_spawning_point: Node3D, init_projectile_scene: PackedScene
3+
) -> void:
4+
pass
5+
6+
7+
func _init(a, b: int, c: String) -> void:
8+
pass

0 commit comments

Comments
 (0)