diff options
author | PureFox48 <64583745+PureFox48@users.noreply.github.com> | 2022-11-29 01:13:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-29 02:13:37 +0100 |
commit | a47833dc7b3ee2f531ac17371f354798e43b9f88 (patch) | |
tree | 16214011257991350c526d711d142d938b174f7c /tests/snippets | |
parent | 880a2177ddcbaf02beb1d986b9fb15ab4a7a95a8 (diff) | |
download | pygments-git-a47833dc7b3ee2f531ac17371f354798e43b9f88.tar.gz |
Add support for Wren language (#2271)
Co-authored-by: Jean Abou Samra <jean@abou-samra.fr>
Diffstat (limited to 'tests/snippets')
-rw-r--r-- | tests/snippets/wren/lonely-paren.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/snippets/wren/lonely-paren.txt b/tests/snippets/wren/lonely-paren.txt new file mode 100644 index 00000000..5236e601 --- /dev/null +++ b/tests/snippets/wren/lonely-paren.txt @@ -0,0 +1,10 @@ +---input--- +// This invalid input should terminate. +) + +---tokens--- +'// This invalid input should terminate.' Comment.Single +'\n' Text.Whitespace + +')' Punctuation +'\n' Text.Whitespace |