diff options
| author | Christoph Sax <xasc@users.noreply.github.com> | 2023-05-18 09:40:13 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-18 16:40:13 +0900 |
| commit | 16cce8df58b83b328e8448087308e3a90da6fa17 (patch) | |
| tree | 4b688a5cc62bc33a3700445973e1852447bb52f3 /tests/indent/t32/subroutine_block.cmm | |
| parent | fixup: use correct require syntax (diff) | |
| download | nvim-treesitter-16cce8df58b83b328e8448087308e3a90da6fa17.tar nvim-treesitter-16cce8df58b83b328e8448087308e3a90da6fa17.tar.gz nvim-treesitter-16cce8df58b83b328e8448087308e3a90da6fa17.tar.bz2 nvim-treesitter-16cce8df58b83b328e8448087308e3a90da6fa17.tar.lz nvim-treesitter-16cce8df58b83b328e8448087308e3a90da6fa17.tar.xz nvim-treesitter-16cce8df58b83b328e8448087308e3a90da6fa17.tar.zst nvim-treesitter-16cce8df58b83b328e8448087308e3a90da6fa17.zip | |
feat(t32): add indent rules (#4782)
Diffstat (limited to 'tests/indent/t32/subroutine_block.cmm')
| -rw-r--r-- | tests/indent/t32/subroutine_block.cmm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/indent/t32/subroutine_block.cmm b/tests/indent/t32/subroutine_block.cmm new file mode 100644 index 000000000..24891c609 --- /dev/null +++ b/tests/indent/t32/subroutine_block.cmm @@ -0,0 +1,23 @@ +printA: +( + PRINT "A" + RETURN +) + +sUBROUtINE printB +( + ENTRY &in + + PRINT "&in" + RETURN +) + +SUBROUTINE printC +// comment +( + PARAMETERS &a &b + + PRINT "&a"+"&b" + ENDDO +) + |
