OLD | NEW |
(Empty) | |
| 1 "" |
| 2 "fo%"o" |
| 3 "foo% |
| 4 %bar" |
| 5 |
| 6 "[fo"o |
| 7 bar]" |
| 8 "!-[fo"o[] |
| 9 bar]!-" |
| 10 "{fo"o |
| 11 bar}" |
| 12 "*?{fo"o{} |
| 13 bar}*?" |
| 14 |
| 15 ---------------------------------------------------- |
| 16 |
| 17 [ |
| 18 ["string", "\"\""], |
| 19 ["string", "\"fo%\"o\""], |
| 20 ["string", "\"foo%\r\n%bar\""], |
| 21 |
| 22 ["string", "\"[fo\"o\r\nbar]\""], |
| 23 ["string", "\"!-[fo\"o[]\r\nbar]!-\""], |
| 24 ["string", "\"{fo\"o\r\nbar}\""], |
| 25 ["string", "\"*?{fo\"o{}\r\nbar}*?\""] |
| 26 ] |
| 27 |
| 28 ---------------------------------------------------- |
| 29 |
| 30 Checks for strings, multi-line strings, and aligned and non aligned verbatim str
ings. |
OLD | NEW |