mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 20:08:20 -07:00
47 lines
794 B
Plaintext
47 lines
794 B
Plaintext
|
("")
|
||
|
("foo^"bar")
|
||
|
("foo
|
||
|
bar")
|
||
|
('')
|
||
|
('foo^'bar')
|
||
|
('foo
|
||
|
bar')
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
[
|
||
|
["expression", [
|
||
|
["punctuation", "("],
|
||
|
["string", "\"\""],
|
||
|
["punctuation", ")"]
|
||
|
]],
|
||
|
["expression", [
|
||
|
["punctuation", "("],
|
||
|
["string", "\"foo^\"bar\""],
|
||
|
["punctuation", ")"]
|
||
|
]],
|
||
|
["expression", [
|
||
|
["punctuation", "("],
|
||
|
["string", "\"foo\r\nbar\""],
|
||
|
["punctuation", ")"]
|
||
|
]],
|
||
|
["expression", [
|
||
|
["punctuation", "("],
|
||
|
["string", "''"],
|
||
|
["punctuation", ")"]
|
||
|
]],
|
||
|
["expression", [
|
||
|
["punctuation", "("],
|
||
|
["string", "'foo^'bar'"],
|
||
|
["punctuation", ")"]
|
||
|
]],
|
||
|
["expression", [
|
||
|
["punctuation", "("],
|
||
|
["string", "'foo\r\nbar'"],
|
||
|
["punctuation", ")"]
|
||
|
]]
|
||
|
]
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
Checks for strings inside expressions.
|