tree-sitter-cmake/corpus/no_argument.txt
2021-06-08 00:02:13 +02:00

49 lines
803 B
Plaintext

=================================================
Command invocation without argument [no_argument]
=================================================
message()
---
(source_file
(normal_command
(identifier)
)
)
=============================================================
Command invocation without argument with spaces [no_argument]
=============================================================
message( )
---
(source_file
(normal_command
(identifier)
(seperation (space))
)
)
==============================================================
Command invocation without argument with newline [no_argument]
==============================================================
message(
)
---
(source_file
(normal_command
(identifier)
(seperation
(line_ending (newline))
)
)
)