This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coffee.pygments/tests/snippets/idris/test_reserved_word.txt
2021-12-03 15:40:45 +01:00

29 lines
683 B
Text

---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