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

54 lines
660 B
Plaintext
Raw Normal View History

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