Add more tests

This commit is contained in:
Uy Ha 2021-04-11 17:45:20 +02:00
parent 539e1dc77e
commit 444e347c9d
2 changed files with 36 additions and 0 deletions

View file

@ -86,3 +86,22 @@ message(
)
)
)
================================
Bracket argument with line break
================================
message([[An argument
with line break
]])
---
(source_file
(command_invocation
(identifier)
(arguments
(argument (bracket_argument))
)
)
)

View file

@ -47,3 +47,20 @@ message("First argument" "Second argument")
)
)
)
=================================
A quoted argument with line break
=================================
message("An argument
with line break")
---
(source_file
(command_invocation
(identifier)
(arguments
(argument (quoted_argument))
)
)
)