diff --git a/corpus/bracket_argument.txt b/corpus/bracket_argument.txt index a61925f..dbbb1c6 100644 --- a/corpus/bracket_argument.txt +++ b/corpus/bracket_argument.txt @@ -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)) + ) + ) +) + diff --git a/corpus/quoted_argument.txt b/corpus/quoted_argument.txt index d020603..753d54b 100644 --- a/corpus/quoted_argument.txt +++ b/corpus/quoted_argument.txt @@ -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)) + ) + ) +)