OLD | NEW |
(Empty) | |
| 1 """""" |
| 2 """foo""" |
| 3 """foo |
| 4 bar""" |
| 5 |
| 6 '''''' |
| 7 '''foo''' |
| 8 '''foo |
| 9 bar''' |
| 10 |
| 11 "" |
| 12 "fo\"o" |
| 13 '' |
| 14 'fo\'o' |
| 15 |
| 16 /foo/ |
| 17 /fo\/o/ |
| 18 |
| 19 $/fo$/$o/$ |
| 20 $/foo |
| 21 bar/$ |
| 22 |
| 23 ---------------------------------------------------- |
| 24 |
| 25 [ |
| 26 ["string", "\"\"\"\"\"\""], |
| 27 ["string", "\"\"\"foo\"\"\""], |
| 28 ["string", "\"\"\"foo\r\nbar\"\"\""], |
| 29 ["string", "''''''"], |
| 30 ["string", "'''foo'''"], |
| 31 ["string", "'''foo\r\nbar'''"], |
| 32 |
| 33 ["string", "\"\""], |
| 34 ["string", "\"fo\\\"o\""], |
| 35 ["string", "''"], |
| 36 ["string", "'fo\\'o'"], |
| 37 |
| 38 ["string", "/foo/"], |
| 39 ["string", "/fo\\/o/"], |
| 40 |
| 41 ["string", "$/fo$/$o/$"], |
| 42 ["string", "$/foo\r\nbar/$"] |
| 43 ] |
| 44 |
| 45 ---------------------------------------------------- |
| 46 |
| 47 Checks for single quoted, triple single quoted, double quoted, |
| 48 triple double quoted, slashy and dollar slashy strings. |
OLD | NEW |