tree-sitter-dust/corpus/comments.txt
2023-09-29 09:53:53 -04:00

44 lines
460 B
Plaintext

==================
Full Line Comments
==================
# comment
#comment
# also a comment!
---
(root
(item
(comment))
(item
(comment))
(item
(comment)))
==================
Partial Line Comments
==================
# comment # 1;
#comment# "one"
---
(source
(item
(comment))
(item
(statement
(closed_statement
(value
(integer)))))
(item
(comment))
(item
(statement
(open_statement
(value
(string))))))