mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-06-20 07:03:05 -03:00
Reorganize tests into a real spec suite
This commit is contained in:
30
spec/unsupported_lexers/janet/tbl_lit-recursive.txt
Normal file
30
spec/unsupported_lexers/janet/tbl_lit-recursive.txt
Normal file
@ -0,0 +1,30 @@
|
||||
---input---
|
||||
@{:ant @{:legs 6} :bee @{:legs 6} :cheetah @{:legs 4}}
|
||||
|
||||
---tokens---
|
||||
'@{' Punctuation
|
||||
':ant' Name.Constant
|
||||
' ' Text.Whitespace
|
||||
'@{' Punctuation
|
||||
':legs' Name.Constant
|
||||
' ' Text.Whitespace
|
||||
'6' Literal.Number.Float
|
||||
'}' Punctuation
|
||||
' ' Text.Whitespace
|
||||
':bee' Name.Constant
|
||||
' ' Text.Whitespace
|
||||
'@{' Punctuation
|
||||
':legs' Name.Constant
|
||||
' ' Text.Whitespace
|
||||
'6' Literal.Number.Float
|
||||
'}' Punctuation
|
||||
' ' Text.Whitespace
|
||||
':cheetah' Name.Constant
|
||||
' ' Text.Whitespace
|
||||
'@{' Punctuation
|
||||
':legs' Name.Constant
|
||||
' ' Text.Whitespace
|
||||
'4' Literal.Number.Float
|
||||
'}' Punctuation
|
||||
'}' Punctuation
|
||||
'\n' Text.Whitespace
|
Reference in New Issue
Block a user