jellyfin-web/dashboard-ui/bower_components/prism/tests/languages/makefile/variable_feature.test
2016-02-02 21:12:02 -05:00

19 lines
372 B
Plaintext

$@
$$<
$(@D)
$(foobar)
$(2)
----------------------------------------------------
[
["variable", "$@"],
["variable", "$$<"],
["variable", "$(@D)"],
["variable", "$"], ["punctuation", "("], "foobar", ["punctuation", ")"],
["variable", "$"], ["punctuation", "("], "2", ["punctuation", ")"]
]
----------------------------------------------------
Checks for variables.