tree-sitter-bp/test/corpus/comments.txt

35 lines
970 B
Plaintext
Raw Normal View History

2024-04-07 23:20:57 +02:00
================================================================================
Empty comment
================================================================================
//
2024-04-07 23:20:57 +02:00
--------------------------------------------------------------------------------
(source_file
(line_comment))
2024-04-07 23:20:57 +02:00
================================================================================
Single comment
================================================================================
// This is a comment
2024-04-07 23:20:57 +02:00
--------------------------------------------------------------------------------
(source_file
(line_comment))
2024-04-07 23:20:57 +02:00
================================================================================
Multiple comments
================================================================================
// This is a comment
// This is a second comment
2024-04-07 23:20:57 +02:00
--------------------------------------------------------------------------------
(source_file
(line_comment)
(line_comment))