difftastic/vendor/tree-sitter-rust/corpus/source_files.txt

70 lines
1.0 KiB
Plaintext

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

============================================
Block comments
============================================
/*
* Block comments
*/
/* Comment with asterisks **/
----
(source_file
(block_comment)
(block_comment))
============================================
Nested block comments
============================================
/* /* double nested */ */
// ---
/*/*/* triple nested */*/*/
// ---
/****
/****
nested with extra stars
****/
****/
// ---
----
(source_file
(block_comment)
(line_comment)
(block_comment)
(line_comment)
(block_comment)
(line_comment))
============================================
Line comments
============================================
// Comment
----
(source_file
(line_comment))
=====================================
Greek letters in identifiers
=====================================
const σ1 : Σ = 0;
const ψ_2 : Ψ = 1;
---
(source_file
(const_item (identifier) (type_identifier) (integer_literal))
(const_item (identifier) (type_identifier) (integer_literal)))