tree-sitter-cmake/corpus/no_argument.txt
2021-06-07 23:29:32 +02:00

55 lines
888 B
Plaintext

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