summaryrefslogtreecommitdiff
path: root/tests/examplefiles/scala/for-comprehension.scala.output
blob: d21e382c0769e3cea4968d4012a9efa4174f7e23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
'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