tree-sitter-bp/test/corpus/comments.txt
Bruno BELANYI 6d3dd1c8cb Fix line comments syntax
Don't write parsers after midnight kids.

For the explanation: I mixed up the syntax bits between Blueprint and
textual protocol buffers...
2024-04-08 20:15:59 +01:00

35 lines
970 B
Plaintext

================================================================================
Empty comment
================================================================================
//
--------------------------------------------------------------------------------
(source_file
(line_comment))
================================================================================
Single comment
================================================================================
// This is a comment
--------------------------------------------------------------------------------
(source_file
(line_comment))
================================================================================
Multiple comments
================================================================================
// This is a comment
// This is a second comment
--------------------------------------------------------------------------------
(source_file
(line_comment)
(line_comment))