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

21 lines
347 B
Plaintext
Raw Normal View History

2016-02-03 16:00:01 -07:00
a = true
b = false
----------------------------------------------------
[
["variable-declaration", [
["variable", "a"],
["operator", "="],
["boolean", "true"]
]],
["variable-declaration", [
["variable", "b"],
["operator", "="],
["boolean", "false"]
]]
]
----------------------------------------------------
Checks for booleans.