jellyfin-web/dashboard-ui/bower_components/prism/tests/languages/sass/variable-line_feature.test
2016-02-03 18:00:01 -05:00

29 lines
517 B
Plaintext

$width: 5em
$foo: $bar + $baz
$bar: #{$baz}
----------------------------------------------------
[
["variable-line", [
["variable", "$width"],
["punctuation", ":"],
" 5em"
]],
["variable-line", [
["variable", "$foo"],
["punctuation", ":"],
["variable", "$bar"],
["operator", "+"],
["variable", "$baz"]
]],
["variable-line", [
["variable", "$bar"],
["punctuation", ":"],
["variable", "#{$baz}"]
]]
]
----------------------------------------------------
Checks for variable declarations.