dust/tree-sitter-dust/corpus/comments.txt

51 lines
598 B
Plaintext
Raw Normal View History

==================
Full Line Comments
==================
not_a_comment
# comment
---
(root
2023-10-31 07:17:58 +00:00
(statement
(expression
(identifier)))
(comment))
==================
Partial Line Comments
==================
not_a_comment # comment
---
(root
2023-10-31 07:17:58 +00:00
(statement
(expression
(identifier)))
(comment))
==================
Multiline Comments
==================
# comment #
not_a_comment #
# comment # "not a comment"
---
(root
(comment)
(statement
(expression
(identifier)))
(comment)
(comment)
(statement
(expression
(value
(string)))))