summaryrefslogtreecommitdiff
path: root/tests/examplefiles/dart/test.dart.output
blob: 748117a61af0cc059bec3add56a1a2fbf5f46d8a (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
'// Greeter example from' Comment.Single
'\n'          Text.Whitespace

'// <http://www.dartlang.org/docs/getting-started/interface.html>' Comment.Single
'\n'          Text.Whitespace

'class'       Keyword.Declaration
' '           Text.Whitespace
'Greeter'     Name.Class
' '           Text.Whitespace
'implements'  Keyword.Declaration
' '           Text.Whitespace
'Comparable'  Name
' '           Text.Whitespace
'{'           Punctuation
'\n'          Text.Whitespace

'  '          Text.Whitespace
'String'      Keyword.Type
' '           Text.Whitespace
'prefix'      Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
"'"           Literal.String.Single
'Hello,'      Literal.String.Single
"'"           Literal.String.Single
';'           Punctuation
'\n'          Text.Whitespace

'  '          Text.Whitespace
'Greeter'     Name
'('           Punctuation
')'           Punctuation
' '           Text.Whitespace
'{'           Punctuation
'}'           Punctuation
'\n'          Text.Whitespace

'  '          Text.Whitespace
'Greeter'     Name
'.'           Punctuation
'withPrefix'  Name
'('           Punctuation
'this'        Keyword
'.'           Punctuation
'prefix'      Name
')'           Punctuation
';'           Punctuation
'\n'          Text.Whitespace

'  '          Text.Whitespace
'greet'       Name
'('           Punctuation
'String'      Keyword.Type
' '           Text.Whitespace
'name'        Name
')'           Punctuation
' '           Text.Whitespace
'='           Operator
'>'           Operator
' '           Text.Whitespace
'print'       Name
'('           Punctuation
"'"           Literal.String.Single
'$'           Literal.String.Interpol
'prefix'      Name
' '           Literal.String.Single
'$'           Literal.String.Interpol
'name'        Name
"'"           Literal.String.Single
')'           Punctuation
';'           Punctuation
'\n'          Text.Whitespace

'\n'          Text.Whitespace

'  '          Text.Whitespace
'int'         Keyword.Type
' '           Text.Whitespace
'compareTo'   Name
'('           Punctuation
'Greeter'     Name
' '           Text.Whitespace
'other'       Name
')'           Punctuation
' '           Text.Whitespace
'='           Operator
'>'           Operator
' '           Text.Whitespace
'prefix'      Name
'.'           Punctuation
'compareTo'   Name
'('           Punctuation
'other'       Name
'.'           Punctuation
'prefix'      Name
')'           Punctuation
';'           Punctuation
'\n'          Text.Whitespace

'}'           Punctuation
'\n'          Text.Whitespace

'\n'          Text.Whitespace

'void'        Keyword.Type
' '           Text.Whitespace
'main'        Name
'('           Punctuation
')'           Punctuation
' '           Text.Whitespace
'{'           Punctuation
'\n'          Text.Whitespace

'  '          Text.Whitespace
'Greeter'     Name
' '           Text.Whitespace
'greeter'     Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'new'         Keyword
' '           Text.Whitespace
'Greeter'     Name
'('           Punctuation
')'           Punctuation
';'           Punctuation
'\n'          Text.Whitespace

'  '          Text.Whitespace
'Greeter'     Name
' '           Text.Whitespace
'greeter2'    Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'new'         Keyword
' '           Text.Whitespace
'Greeter'     Name
'.'           Punctuation
'withPrefix'  Name
'('           Punctuation
"'"           Literal.String.Single
'Hi,'         Literal.String.Single
"'"           Literal.String.Single
')'           Punctuation
';'           Punctuation
'\n'          Text.Whitespace

'\n'          Text.Whitespace

'  '          Text.Whitespace
'num'         Keyword.Type
' '           Text.Whitespace
'result'      Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'greeter2'    Name
'.'           Punctuation
'compareTo'   Name
'('           Punctuation
'greeter'     Name
')'           Punctuation
';'           Punctuation
'\n'          Text.Whitespace

'  '          Text.Whitespace
'if'          Keyword
' '           Text.Whitespace
'('           Punctuation
'result'      Name
' '           Text.Whitespace
'='           Operator
'='           Operator
' '           Text.Whitespace
'0'           Literal.Number
')'           Punctuation
' '           Text.Whitespace
'{'           Punctuation
'\n'          Text.Whitespace

'    '        Text.Whitespace
'greeter2'    Name
'.'           Punctuation
'greet'       Name
'('           Punctuation
"'"           Literal.String.Single
'you are the same.' Literal.String.Single
"'"           Literal.String.Single
')'           Punctuation
';'           Punctuation
'\n'          Text.Whitespace

'  '          Text.Whitespace
'}'           Punctuation
' '           Text.Whitespace
'else'        Keyword
' '           Text.Whitespace
'{'           Punctuation
'\n'          Text.Whitespace

'    '        Text.Whitespace
'greeter2'    Name
'.'           Punctuation
'greet'       Name
'('           Punctuation
"'"           Literal.String.Single
'you are different.' Literal.String.Single
"'"           Literal.String.Single
')'           Punctuation
';'           Punctuation
'\n'          Text.Whitespace

'  '          Text.Whitespace
'}'           Punctuation
'\n'          Text.Whitespace

'}'           Punctuation
'\n'          Text.Whitespace