mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 11:58:20 -07:00
23 lines
414 B
Plaintext
23 lines
414 B
Plaintext
|
#!/usr/bin/env rdmd
|
||
|
|
||
|
/++/
|
||
|
/+ foo
|
||
|
bar +/
|
||
|
/+ foo
|
||
|
/+
|
||
|
bar +/
|
||
|
baz +/
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
[
|
||
|
["comment", "#!/usr/bin/env rdmd"],
|
||
|
["comment", "/++/"],
|
||
|
["comment", "/+ foo\r\nbar +/"],
|
||
|
["comment", "/+ foo\r\n\t/+\r\n\tbar +/\r\nbaz +/"]
|
||
|
]
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
Checks for shebang and nestable multi-line comments.
|
||
|
Other comments are tested in clike.
|