mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-06-27 14:47:50 -03:00
Reorganize tests into a real spec suite
This commit is contained in:
30
spec/unsupported_lexers/janet/struct_lit-recursive.txt
Normal file
30
spec/unsupported_lexers/janet/struct_lit-recursive.txt
Normal file
@ -0,0 +1,30 @@
|
||||
---input---
|
||||
{:alice {:likes :bob} :bob {:likes :carol} :carol {:likes :alice}}
|
||||
|
||||
---tokens---
|
||||
'{' Punctuation
|
||||
':alice' Name.Constant
|
||||
' ' Text.Whitespace
|
||||
'{' Punctuation
|
||||
':likes' Name.Constant
|
||||
' ' Text.Whitespace
|
||||
':bob' Name.Constant
|
||||
'}' Punctuation
|
||||
' ' Text.Whitespace
|
||||
':bob' Name.Constant
|
||||
' ' Text.Whitespace
|
||||
'{' Punctuation
|
||||
':likes' Name.Constant
|
||||
' ' Text.Whitespace
|
||||
':carol' Name.Constant
|
||||
'}' Punctuation
|
||||
' ' Text.Whitespace
|
||||
':carol' Name.Constant
|
||||
' ' Text.Whitespace
|
||||
'{' Punctuation
|
||||
':likes' Name.Constant
|
||||
' ' Text.Whitespace
|
||||
':alice' Name.Constant
|
||||
'}' Punctuation
|
||||
'}' Punctuation
|
||||
'\n' Text.Whitespace
|
Reference in New Issue
Block a user