jellyfin-web/dashboard-ui/bower_components/prism/tests/languages/parser/boolean_feature.test

21 lines
354 B
Plaintext
Raw Normal View History

2016-02-02 19:12:02 -07:00
(true)
(false)
----------------------------------------------------
[
["expression", [
["punctuation", "("],
["boolean", "true"],
["punctuation", ")"]
]],
["expression", [
["punctuation", "("],
["boolean", "false"],
["punctuation", ")"]
]]
]
----------------------------------------------------
Checks for booleans inside expressions.