summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/parser/features/nested_if.gd
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2021-04-19 20:50:52 +0200
committerHugo Locurcio <hugo.locurcio@hugo.pro>2021-09-14 18:42:08 +0200
commitc0083c0f90238f0eec01604dd9c952c8c5dc3c22 (patch)
treee7efc33ba4a25d8195f8089bf08be19311722da6 /modules/gdscript/tests/scripts/parser/features/nested_if.gd
parenta9b600bac0a9a8fdd3b217c6d3cb6639ae80c1f8 (diff)
downloadredot-engine-c0083c0f90238f0eec01604dd9c952c8c5dc3c22.tar.gz
Add dozens of new integration tests to the GDScript test suite
This also ignores `.out` files in the file format static checks.
Diffstat (limited to 'modules/gdscript/tests/scripts/parser/features/nested_if.gd')
-rw-r--r--modules/gdscript/tests/scripts/parser/features/nested_if.gd57
1 files changed, 57 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/parser/features/nested_if.gd b/modules/gdscript/tests/scripts/parser/features/nested_if.gd
new file mode 100644
index 0000000000..7282d08497
--- /dev/null
+++ b/modules/gdscript/tests/scripts/parser/features/nested_if.gd
@@ -0,0 +1,57 @@
+func test():
+ # 20 levels of nesting (and then some).
+ if true:
+ print("1")
+ if true:
+ print("2")
+ if true:
+ print("3")
+ if true:
+ print("4")
+ if true:
+ print("5")
+ if true:
+ print("6")
+ if true:
+ print("7")
+ if true:
+ print("8")
+ if true:
+ print("9")
+ if true:
+ print("10")
+ if true:
+ print("11")
+ if true:
+ print("12")
+ if true:
+ print("13")
+ if true:
+ print("14")
+ if true:
+ print("15")
+ if true:
+ print("16")
+ if true:
+ print("17")
+ if true:
+ print("18")
+ if true:
+ print("19")
+ if true:
+ print("20")
+ if false:
+ print("End")
+ if true:
+ if true:
+ if true:
+ if true:
+ if true:
+ if true:
+ if true:
+ if true:
+ if true:
+ if true:
+ if true:
+ if true:
+ print("This won't be printed")