tree-sitter-cmake/corpus/unquoted_argument.txt

36 lines
574 B
Plaintext
Raw Normal View History

2021-04-10 13:21:36 -04:00
====================================
Command invocation with one argument
====================================
message(STATUS)
---
(source_file
(command_invocation
(identifier)
(arguments
(argument (unquoted_argument))
)
)
)
=====================================
Command invocation with two arguments
=====================================
message(STATUS Hello)
---
(source_file
(command_invocation
(identifier)
(arguments
(argument (unquoted_argument))
(seperation (space))
(argument (unquoted_argument))
)
)
)