effective-java-3rd-chinese/docs/_style/prism-master/tests/languages/css/comment_feature.test

16 lines
309 B
Plaintext
Raw Normal View History

2019-03-14 13:10:17 +08:00
/**/
/* foo */
/* foo
bar */
----------------------------------------------------
[
["comment", "/**/"],
["comment", "/* foo */"],
["comment", "/* foo\r\nbar */"]
]
----------------------------------------------------
Checks for empty comment, single-line comment and multi-line comment.