tree-sitter-cmake/corpus/no_argument.txt

55 lines
888 B
Plaintext
Raw Normal View History

2021-06-07 17:29:32 -04:00
=================================================
Command invocation without argument [no_argument]
=================================================
2021-04-10 12:01:43 -04:00
message()
---
(source_file
(command_invocation
(normal_command
(identifier)
)
)
)
2021-04-10 12:01:43 -04:00
2021-06-07 17:29:32 -04:00
=============================================================
Command invocation without argument with spaces [no_argument]
=============================================================
2021-04-10 12:01:43 -04:00
message( )
---
(source_file
(command_invocation
(normal_command
(identifier)
(seperation (space))
2021-04-10 12:01:43 -04:00
)
)
)
2021-04-10 12:01:43 -04:00
2021-06-07 17:29:32 -04:00
==============================================================
Command invocation without argument with newline [no_argument]
==============================================================
2021-04-10 12:01:43 -04:00
message(
)
---
(source_file
(command_invocation
(normal_command
(identifier)
(seperation
(line_ending (newline))
)
2021-04-10 12:01:43 -04:00
)
)
)
2021-04-10 12:01:43 -04:00