jellyfin-web/dashboard-ui/bower_components/prism/tests/languages/makefile/variable_feature.test

19 lines
372 B
Plaintext
Raw Normal View History

2016-02-03 16:00:01 -07:00
$@
$$<
$(@D)
$(foobar)
$(2)
----------------------------------------------------
[
["variable", "$@"],
["variable", "$$<"],
["variable", "$(@D)"],
["variable", "$"], ["punctuation", "("], "foobar", ["punctuation", ")"],
["variable", "$"], ["punctuation", "("], "2", ["punctuation", ")"]
]
----------------------------------------------------
Checks for variables.