mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Add GDScript .editorconfig rules
- Uniformize `.gd` unit test files indentation to tabs (where needed)
This commit is contained in:
@@ -1,34 +1,34 @@
|
||||
func foo(x):
|
||||
match x:
|
||||
1 + 1:
|
||||
print("1+1")
|
||||
[1,2,[1,{1:2,2:var z,..}]]:
|
||||
print("[1,2,[1,{1:2,2:var z,..}]]")
|
||||
print(z)
|
||||
1 if true else 2:
|
||||
print("1 if true else 2")
|
||||
1 < 2:
|
||||
print("1 < 2")
|
||||
1 or 2 and 1:
|
||||
print("1 or 2 and 1")
|
||||
6 | 1:
|
||||
print("1 | 1")
|
||||
1 >> 1:
|
||||
print("1 >> 1")
|
||||
1, 2 or 3, 4:
|
||||
print("1, 2 or 3, 4")
|
||||
_:
|
||||
print("wildcard")
|
||||
match x:
|
||||
1 + 1:
|
||||
print("1+1")
|
||||
[1,2,[1,{1:2,2:var z,..}]]:
|
||||
print("[1,2,[1,{1:2,2:var z,..}]]")
|
||||
print(z)
|
||||
1 if true else 2:
|
||||
print("1 if true else 2")
|
||||
1 < 2:
|
||||
print("1 < 2")
|
||||
1 or 2 and 1:
|
||||
print("1 or 2 and 1")
|
||||
6 | 1:
|
||||
print("1 | 1")
|
||||
1 >> 1:
|
||||
print("1 >> 1")
|
||||
1, 2 or 3, 4:
|
||||
print("1, 2 or 3, 4")
|
||||
_:
|
||||
print("wildcard")
|
||||
|
||||
func test():
|
||||
foo(6 | 1)
|
||||
foo(1 >> 1)
|
||||
foo(2)
|
||||
foo(1)
|
||||
foo(1+1)
|
||||
foo(1 < 2)
|
||||
foo([2, 1])
|
||||
foo(4)
|
||||
foo([1, 2, [1, {1 : 2, 2:3}]])
|
||||
foo([1, 2, [1, {1 : 2, 2:[1,3,5, "123"], 4:2}]])
|
||||
foo([1, 2, [1, {1 : 2}]])
|
||||
foo(6 | 1)
|
||||
foo(1 >> 1)
|
||||
foo(2)
|
||||
foo(1)
|
||||
foo(1+1)
|
||||
foo(1 < 2)
|
||||
foo([2, 1])
|
||||
foo(4)
|
||||
foo([1, 2, [1, {1 : 2, 2:3}]])
|
||||
foo([1, 2, [1, {1 : 2, 2:[1,3,5, "123"], 4:2}]])
|
||||
foo([1, 2, [1, {1 : 2}]])
|
||||
|
||||
@@ -1,27 +1,27 @@
|
||||
func foo(x):
|
||||
match x:
|
||||
1:
|
||||
print("1")
|
||||
2:
|
||||
print("2")
|
||||
[1, 2]:
|
||||
print("[1, 2]")
|
||||
3 or 4:
|
||||
print("3 or 4")
|
||||
4:
|
||||
print("4")
|
||||
{1 : 2, 2 : 3}:
|
||||
print("{1 : 2, 2 : 3}")
|
||||
_:
|
||||
print("wildcard")
|
||||
match x:
|
||||
1:
|
||||
print("1")
|
||||
2:
|
||||
print("2")
|
||||
[1, 2]:
|
||||
print("[1, 2]")
|
||||
3 or 4:
|
||||
print("3 or 4")
|
||||
4:
|
||||
print("4")
|
||||
{1 : 2, 2 : 3}:
|
||||
print("{1 : 2, 2 : 3}")
|
||||
_:
|
||||
print("wildcard")
|
||||
|
||||
func test():
|
||||
foo(0)
|
||||
foo(1)
|
||||
foo(2)
|
||||
foo([1, 2])
|
||||
foo(3)
|
||||
foo(4)
|
||||
foo([4,4])
|
||||
foo({1 : 2, 2 : 3})
|
||||
foo({1 : 2, 4 : 3})
|
||||
foo(0)
|
||||
foo(1)
|
||||
foo(2)
|
||||
foo([1, 2])
|
||||
foo(3)
|
||||
foo(4)
|
||||
foo([4,4])
|
||||
foo({1 : 2, 2 : 3})
|
||||
foo({1 : 2, 4 : 3})
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
func test():
|
||||
var my_lambda = func(x):
|
||||
print(x)
|
||||
my_lambda.call("hello")
|
||||
var my_lambda = func(x):
|
||||
print(x)
|
||||
my_lambda.call("hello")
|
||||
|
||||
@@ -1,43 +1,43 @@
|
||||
func foo(x):
|
||||
match x:
|
||||
{"key1": "value1", "key2": "value2"}:
|
||||
print('{"key1": "value1", "key2": "value2"}')
|
||||
{"key1": "value1", "key2"}:
|
||||
print('{"key1": "value1", "key2"}')
|
||||
{"key1", "key2": "value2"}:
|
||||
print('{"key1", "key2": "value2"}')
|
||||
{"key1", "key2"}:
|
||||
print('{"key1", "key2"}')
|
||||
{"key1": "value1"}:
|
||||
print('{"key1": "value1"}')
|
||||
{"key1"}:
|
||||
print('{"key1"}')
|
||||
_:
|
||||
print("wildcard")
|
||||
match x:
|
||||
{"key1": "value1", "key2": "value2"}:
|
||||
print('{"key1": "value1", "key2": "value2"}')
|
||||
{"key1": "value1", "key2"}:
|
||||
print('{"key1": "value1", "key2"}')
|
||||
{"key1", "key2": "value2"}:
|
||||
print('{"key1", "key2": "value2"}')
|
||||
{"key1", "key2"}:
|
||||
print('{"key1", "key2"}')
|
||||
{"key1": "value1"}:
|
||||
print('{"key1": "value1"}')
|
||||
{"key1"}:
|
||||
print('{"key1"}')
|
||||
_:
|
||||
print("wildcard")
|
||||
|
||||
func bar(x):
|
||||
match x:
|
||||
{0}:
|
||||
print("0")
|
||||
{1}:
|
||||
print("1")
|
||||
{2}:
|
||||
print("2")
|
||||
_:
|
||||
print("wildcard")
|
||||
match x:
|
||||
{0}:
|
||||
print("0")
|
||||
{1}:
|
||||
print("1")
|
||||
{2}:
|
||||
print("2")
|
||||
_:
|
||||
print("wildcard")
|
||||
|
||||
func test():
|
||||
foo({"key1": "value1", "key2": "value2"})
|
||||
foo({"key1": "value1", "key2": ""})
|
||||
foo({"key1": "", "key2": "value2"})
|
||||
foo({"key1": "", "key2": ""})
|
||||
foo({"key1": "value1"})
|
||||
foo({"key1": ""})
|
||||
foo({"key1": "value1", "key2": "value2", "key3": "value3"})
|
||||
foo({"key1": "value1", "key3": ""})
|
||||
foo({"key2": "value2"})
|
||||
foo({"key3": ""})
|
||||
bar({0: "0"})
|
||||
bar({1: "1"})
|
||||
bar({2: "2"})
|
||||
bar({3: "3"})
|
||||
foo({"key1": "value1", "key2": "value2"})
|
||||
foo({"key1": "value1", "key2": ""})
|
||||
foo({"key1": "", "key2": "value2"})
|
||||
foo({"key1": "", "key2": ""})
|
||||
foo({"key1": "value1"})
|
||||
foo({"key1": ""})
|
||||
foo({"key1": "value1", "key2": "value2", "key3": "value3"})
|
||||
foo({"key1": "value1", "key3": ""})
|
||||
foo({"key2": "value2"})
|
||||
foo({"key3": ""})
|
||||
bar({0: "0"})
|
||||
bar({1: "1"})
|
||||
bar({2: "2"})
|
||||
bar({3: "3"})
|
||||
|
||||
@@ -1,26 +1,26 @@
|
||||
func foo(x):
|
||||
match x:
|
||||
1, [2]:
|
||||
print('1, [2]')
|
||||
_:
|
||||
print('wildcard')
|
||||
match x:
|
||||
1, [2]:
|
||||
print('1, [2]')
|
||||
_:
|
||||
print('wildcard')
|
||||
|
||||
func bar(x):
|
||||
match x:
|
||||
[1], [2], [3]:
|
||||
print('[1], [2], [3]')
|
||||
[4]:
|
||||
print('[4]')
|
||||
_:
|
||||
print('wildcard')
|
||||
match x:
|
||||
[1], [2], [3]:
|
||||
print('[1], [2], [3]')
|
||||
[4]:
|
||||
print('[4]')
|
||||
_:
|
||||
print('wildcard')
|
||||
|
||||
func test():
|
||||
foo(1)
|
||||
foo([2])
|
||||
foo(2)
|
||||
bar([1])
|
||||
bar([2])
|
||||
bar([3])
|
||||
bar([4])
|
||||
bar([5])
|
||||
foo(1)
|
||||
foo([2])
|
||||
foo(2)
|
||||
bar([1])
|
||||
bar([2])
|
||||
bar([3])
|
||||
bar([4])
|
||||
bar([5])
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
func test():
|
||||
match [1, 2, 3]:
|
||||
[var a, var b, var c]:
|
||||
print(a == 1)
|
||||
print(b == 2)
|
||||
print(c == 3)
|
||||
match [1, 2, 3]:
|
||||
[var a, var b, var c]:
|
||||
print(a == 1)
|
||||
print(b == 2)
|
||||
print(c == 3)
|
||||
|
||||
Reference in New Issue
Block a user