dust/tree-sitter-dust/corpus/comments.txt
2023-10-31 03:17:58 -04:00

51 lines
598 B
Plaintext

==================
Full Line Comments
==================
not_a_comment
# comment
---
(root
(statement
(expression
(identifier)))
(comment))
==================
Partial Line Comments
==================
not_a_comment # comment
---
(root
(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)))))