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

50 lines
1.2 KiB
Plaintext

================================================================================
Full Line Comments
================================================================================
not_a_comment
# comment
--------------------------------------------------------------------------------
(root
(statement
(statement_kind
(expression
(identifier)))))
================================================================================
Partial Line Comments
================================================================================
not_a_comment # comment
--------------------------------------------------------------------------------
(root
(statement
(statement_kind
(expression
(identifier)))))
================================================================================
Multiline Comments
================================================================================
# comment #
not_a_comment #
# comment # "not a comment"
--------------------------------------------------------------------------------
(root
(statement
(statement_kind
(expression
(identifier))))
(statement
(statement_kind
(expression
(value
(string))))))