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

26 lines
391 B
Plaintext
Raw Normal View History

2019-03-14 13:10:17 +08:00
/**/
/* foo
bar */
--
-- foo
//
// foo
#
# foo
----------------------------------------------------
[
["comment", "/**/"],
["comment", "/* foo\r\nbar */"],
["comment", "--"],
["comment", "-- foo"],
["comment", "//"],
["comment", "// foo"],
["comment", "#"],
["comment", "# foo"]
]
----------------------------------------------------
Checks for comments.