22 lines
438 B
Plaintext
Raw Normal View History

2018-12-19 14:09:39 +08:00
"f\"oo"
'f\'oo'
"foo\
bar"
'foo\
bar'
"foo /* bar" /* and out */
----------------------------------------------------
[
["string", "\"f\\\"oo\""],
["string", "'f\\'oo'"],
["string", "\"foo\\\r\nbar\""],
["string", "'foo\\\r\nbar'"],
["string", "\"foo /* bar\""],
["comment", "/* and out */"]
]
----------------------------------------------------
Checks for single-quoted and double-quoted strings.