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/examplefiles/scala/for-comprehension.scala.output
2022-01-06 18:34:29 +01:00

53 lines
1.4 KiB
Text
Generated

'for' Keyword
' ' Text.Whitespace
'(' Punctuation
' ' Text.Whitespace
'i' Name
' ' Text.Whitespace
'<-' Operator
' ' Text.Whitespace
'1' Literal.Number.Integer
' ' Text.Whitespace
'to' Name
' ' Text.Whitespace
'10' Literal.Number.Integer
' ' Text.Whitespace
')' Punctuation
'\n' Text.Whitespace
'for' Keyword
' ' Text.Whitespace
'(' Punctuation
'user' Name
' ' Text.Whitespace
'<-' Operator
' ' Text.Whitespace
'userBase' Name
' ' Text.Whitespace
'if' Keyword
' ' Text.Whitespace
'user' Name
'.' Punctuation
'age' Name
' ' Text.Whitespace
'>=' Operator
' ' Text.Whitespace
'20' Literal.Number.Integer
' ' Text.Whitespace
'&&' Operator
' ' Text.Whitespace
'user' Name
'.' Punctuation
'age' Name
' ' Text.Whitespace
'<' Operator
' ' Text.Whitespace
'30' Literal.Number.Integer
')' Punctuation
' ' Text.Whitespace
'yield' Keyword
' ' Text.Whitespace
'user' Name
'.' Punctuation
'name' Name
'\n' Text.Whitespace