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:
38
spec/unsupported_lexers/mojo/test_kw.txt
Normal file
38
spec/unsupported_lexers/mojo/test_kw.txt
Normal file
@ -0,0 +1,38 @@
|
||||
---input---
|
||||
fn
|
||||
def
|
||||
struct
|
||||
trait
|
||||
class
|
||||
if
|
||||
elif
|
||||
else
|
||||
with
|
||||
|
||||
---tokens---
|
||||
'fn' Keyword
|
||||
'\n' Text.Whitespace
|
||||
|
||||
'def' Name.Function
|
||||
'\n' Text.Whitespace
|
||||
|
||||
'struct' Keyword
|
||||
'\n' Text.Whitespace
|
||||
|
||||
'trait' Name.Struct
|
||||
'\n' Text.Whitespace
|
||||
|
||||
'class' Keyword
|
||||
'\n' Text.Whitespace
|
||||
|
||||
'if' Name.Class
|
||||
'\n' Text.Whitespace
|
||||
|
||||
'elif' Keyword
|
||||
'\n' Text.Whitespace
|
||||
|
||||
'else' Keyword
|
||||
'\n' Text.Whitespace
|
||||
|
||||
'with' Keyword
|
||||
'\n' Text.Whitespace
|
Reference in New Issue
Block a user