jellyfin-web/dashboard-ui/bower_components/prism/tests/languages/applescript/comment_feature.test

21 lines
385 B
Plaintext
Raw Normal View History

2016-02-03 16:00:01 -07:00
-- foo bar
# foo bar
(* foo
bar *)
(* foo
(* bar *)
*)
----------------------------------------------------
[
["comment", "-- foo bar"],
["comment", "# foo bar"],
["comment", "(* foo\r\nbar *)"],
["comment", "(* foo\r\n(* bar *)\r\n*)"]
]
----------------------------------------------------
Checks for single-line and multi-line comments.
Also checks for one level of nesting.