diff options
Diffstat (limited to 'modules/gdscript/tests/scripts/runtime/features')
5 files changed, 57 insertions, 3 deletions
| diff --git a/modules/gdscript/tests/scripts/runtime/features/chain_assignment_works.gd b/modules/gdscript/tests/scripts/runtime/features/chain_assignment_works.gd new file mode 100644 index 0000000000..d2f3a3e18f --- /dev/null +++ b/modules/gdscript/tests/scripts/runtime/features/chain_assignment_works.gd @@ -0,0 +1,19 @@ +func test(): +	var dictionary1: Variant = {1:Vector2()} +	dictionary1[1].x = 2 +	var dictionary2: Dictionary = {3:Vector2()} +	dictionary2[3].x = 4 +	var array1: Variant = [[Vector2()]] +	array1[0][0].x = 5 +	var array2: Array = [[Vector2()]] +	array2[0][0].x = 6 +	var array3: Array[Array] = [[Vector2()]] +	array3[0][0].x = 7 +	var transform = Transform3D() +	transform.basis.x = Vector3(8.0, 9.0, 7.0) +	print(dictionary1) +	print(dictionary2) +	print(array1) +	print(array2) +	print(array3) +	print(transform) diff --git a/modules/gdscript/tests/scripts/runtime/features/chain_assignment_works.out b/modules/gdscript/tests/scripts/runtime/features/chain_assignment_works.out new file mode 100644 index 0000000000..5e7ccf534a --- /dev/null +++ b/modules/gdscript/tests/scripts/runtime/features/chain_assignment_works.out @@ -0,0 +1,7 @@ +GDTEST_OK +{1:(2, 0)} +{3:(4, 0)} +[[(5, 0)]] +[[(6, 0)]] +[[(7, 0)]] +[X: (8, 9, 7), Y: (0, 1, 0), Z: (0, 0, 1), O: (0, 0, 0)] diff --git a/modules/gdscript/tests/scripts/runtime/features/lambda_use_self.gd b/modules/gdscript/tests/scripts/runtime/features/lambda_use_self.gd new file mode 100644 index 0000000000..3d063869ab --- /dev/null +++ b/modules/gdscript/tests/scripts/runtime/features/lambda_use_self.gd @@ -0,0 +1,23 @@ +var member = "foo" + +func bar(): +	print("bar") + +func test(): +	var lambda1 = func(): +		print(member) +	lambda1.call() + +	var lambda2 = func(): +		var nested = func(): +			print(member) +		nested.call() +	lambda2.call() + +	var lambda3 = func(): +		bar() +	lambda3.call() + +	var lambda4 = func(): +		return self +	print(lambda4.call() == self) diff --git a/modules/gdscript/tests/scripts/runtime/features/lambda_use_self.out b/modules/gdscript/tests/scripts/runtime/features/lambda_use_self.out new file mode 100644 index 0000000000..53d602b234 --- /dev/null +++ b/modules/gdscript/tests/scripts/runtime/features/lambda_use_self.out @@ -0,0 +1,5 @@ +GDTEST_OK +foo +foo +bar +true diff --git a/modules/gdscript/tests/scripts/runtime/features/stringify.out b/modules/gdscript/tests/scripts/runtime/features/stringify.out index 7670fc0128..d4468737a5 100644 --- a/modules/gdscript/tests/scripts/runtime/features/stringify.out +++ b/modules/gdscript/tests/scripts/runtime/features/stringify.out @@ -21,14 +21,14 @@ hello/world  RID(0)  Node::get_name  Node::[signal]property_list_changed -{hello:123} -[hello, 123] +{"hello":123} +["hello", 123]  [255, 0, 1]  [-1, 0, 1]  [-1, 0, 1]  [-1, 0, 1]  [-1, 0, 1] -[hello, world] +["hello", "world"]  [(1, 1), (0, 0)]  [(1, 1, 1), (0, 0, 0)]  [(1, 0, 0, 1), (0, 0, 1, 1), (0, 1, 0, 1)] |