mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 05:22:23 +00:00
30 lines
683 B
Plaintext
30 lines
683 B
Plaintext
---input---
|
|
namespace Foobar
|
|
links : String
|
|
links = "abc"
|
|
|
|
---tokens---
|
|
'namespace' Keyword.Reserved
|
|
' ' Text.Whitespace
|
|
'Foobar' Keyword.Type
|
|
'\n' Text.Whitespace
|
|
|
|
' ' Text.Whitespace
|
|
'links' Name.Function
|
|
' ' Text.Whitespace
|
|
':' Operator.Word
|
|
' ' Text.Whitespace
|
|
'String' Keyword.Type
|
|
'\n' Text.Whitespace
|
|
|
|
' ' Text.Whitespace
|
|
' ' Text.Whitespace
|
|
'links' Text
|
|
' ' Text.Whitespace
|
|
'=' Operator.Word
|
|
' ' Text.Whitespace
|
|
'"' Literal.String
|
|
'abc' Literal.String
|
|
'"' Literal.String
|
|
'\n' Text.Whitespace
|