OLD | NEW |
(Empty) | |
| 1 --- |
| 2 foo: "" |
| 3 bar: "fo\"obar" |
| 4 foo: '' |
| 5 bar: 'fo\'obar' |
| 6 |
| 7 ---------------------------------------------------- |
| 8 |
| 9 [ |
| 10 ["punctuation", "---"], |
| 11 ["key", "foo"], ["punctuation", ":"], |
| 12 ["string", "\"\""], |
| 13 ["key", "bar"], ["punctuation", ":"], |
| 14 ["string", "\"fo\\\"obar\""], |
| 15 ["key", "foo"], ["punctuation", ":"], |
| 16 ["string", "''"], |
| 17 ["key", "bar"], ["punctuation", ":"], |
| 18 ["string", "'fo\\'obar'"] |
| 19 ] |
| 20 |
| 21 ---------------------------------------------------- |
| 22 |
| 23 Checks for strings. |
OLD | NEW |