Add test for function invocations with and without newline
This commit is contained in:
parent
d5a0b0b992
commit
f6616f1e41
32
corpus/function_calls.txt
Normal file
32
corpus/function_calls.txt
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
===================================================
|
||||||
|
add_custom_target without new line [function_calls]
|
||||||
|
===================================================
|
||||||
|
|
||||||
|
add_custom_target(OUTPUT somefile)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
(source_file
|
||||||
|
(normal_command
|
||||||
|
(identifier)
|
||||||
|
(argument (unquoted_argument))
|
||||||
|
(argument (unquoted_argument))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
================================================
|
||||||
|
add_custom_target with new line [function_calls]
|
||||||
|
================================================
|
||||||
|
|
||||||
|
add_custom_target(
|
||||||
|
OUTPUT somefile)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
(source_file
|
||||||
|
(normal_command
|
||||||
|
(identifier)
|
||||||
|
(argument (unquoted_argument))
|
||||||
|
(argument (unquoted_argument))
|
||||||
|
)
|
||||||
|
)
|
Loading…
Reference in a new issue