We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 200baff commit 648cbe3Copy full SHA for 648cbe3
2 files changed
tests/expected/comments_indentation.gd
@@ -0,0 +1,10 @@
1
+func test() -> void:
2
+ for x in range(10):
3
+ if x != 5:
4
+ continue
5
+ # This comment should stay here
6
+ print(x)
7
+
8
9
+func test2():
10
+ pass # This comment should stay here too
tests/input/comments_indentation.gd
@@ -0,0 +1,9 @@
0 commit comments