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