forked from scala/scala-tool-support
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Test.scala
346 lines (274 loc) · 6.59 KB
/
Test.scala
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
def collect[L,R](futures: Seq[MappableFuture[Either[L,R]]]) =
(futures.view map (_.apply())).foldLeft((List.empty[L], List.empty[R])) {
case ((ls, rs), Left(l)) => (l :: ls, rs);
case ((ls, rs), Right(r)) => (ls, r :: rs)
}
{
def ping() = {
execute(RestClient.asyncHttpClient.prepareGet(pingUrl)) map {
case None => (2, pingUrl, "Could not connect to service")
case Some(response) =>
if (response.getResponseBody() == "OK") {
(0, pingUrl, "OK")
} else {
(1, pingUrl, "Response was not 'OK', was " +
response.getResponseBody().take(60))
}
}
}
}
package foo
import bar
object Foo extends Bar with Zot
object Foo extends Bar( 1,
2)( 3,
4)
with Zot(3) { foo:Bar =>
def foo(x: String,
y: String) = /*
*/
x + y
def ping() =
execute(RestClient.asyncHttpClient.prepareGet(pingUrl)) map {
case None(foo) =>
if (foo) {
bar
} else {
fobar
}
}
foo(x,
y) ( asd => ( _ map { d =>
and some;
more
}))
val x = "foo"; val f =
"zot"
val z = x match {
case f: Seq[Int) =>
f map ( i =>
i + 1
)
}
def foozot =
x match {
case x: String =>
foo
zot
}
def f: String =
{
1
}
}
class Foo[E](path: String,
valueClass: Class) {
asd
}
def f(a: Foo => Bar,
b: Zot)
(c: Kala, d: Kisa): (Foo => (Bar, Zot)
Option[x] forSome {
type x <: Kissa
}) = {
magic!
}
def f(g: => (String, Int),
x: String) =
g(x)
{
private class SparkInput[T[T,C]] (path: String,
inputFormatClass: Class,
valueClass: Class[V]) /* */ (x: String,
y: String) /* */
(z: String)
extends Zot[E](x,y)(z) {
def x[Foo
with Bar
forSome {
val Z: X
}]: Bar
with Zot // KNOWN ISSUE: still broken
}
}
object Foo extends Bar;
with Zot // should not be aligned with 'extends' since there is ';' above
object Foo extends Bar
with Zot // should not be aligned with 'extends' since there is empty line above
private class Foo
extends Bar
with Zot
{
private class Foo
extends Bar { self /* */ : /* */ Zot /* */ [A, /* */ B[C, D]] /* */ =>
line1
line2
}
}
private class Foo {
self: Zot =>
line
case class Cell()
def f(): = {}
}
private class Foo {
case/* */
class Cell()
def f(): = {}
}
private class Foo(x: Int,
y: Int,
z: Int) // KNOWN ISSUE in font-lock mode
private[Foo] class Foo(x: Int, y: Int) extends Bar(x, y)
with Zot { self: /* */ Option[String,
And,
Some[x] forSome {
type x <% String
}] =>
line1;
case class Cell()
def f(): = {}
}
/* indenting */
{
def foo(x: Int,
y: Int)
(z: Int) // KNOWN ISSUE: curry is not aligned nicely
def x = 1
def y = true
def z = if (y)
x
else
0
var z = if (y)
if (z > 0)
3
else
z
else // KNOWN ISSUE, should be aligned with first if, but we will not parse such things
2
val z = if (y) {
2
} else {
if (false)
println("foo")
3
}
val foo = zot (y) {
bar
}
val x = new Foo( /* */ 1,
2,
3)
with Bar(2)(3,
4
5) {
asd
}
val foo = zot map (x: String => {
x.toString
})
val foo = zot map (x: String => { some;
more; }) // KNOWN ISSUE: above is not detected as lambda since => does not end the line
val foo = zot map (x: Option[String] =>
x.toString
)
foo map (a: String => println(a);
a.length) // KNOWN ISSUE: above is not detected as lambda since => does not end the line
def zz = for (i <- 1 to 10)
yield i
def yy = for {
i < 1 to 10
} yield i
def yy = for { i <- 1 to 10
j <- 2 to 3 }
yield i * j
def z = x match {
case l: String =>
foo
bar
/* foo bar*/
case a => {
bar
goo
}
}
val b = doSome(x,
y)
(foo, zot) {
case x =>
foo
bar
}
do {
something
} while (true)
while (true) {
something
}
while (true)
something // KNOWN ISSUE, should be indented, but we don't know if the while is end of do..while or start of plain while
def z = try {
foo
} catch {
case e =>
abd
oneline
twoline
}
def z = try {
foo
} catch {
case e =>
oneline
twoline
}
val zz = xx map {
case (i, j) =>
doSomething
i+j
case (j, i) =>
doSomethingElse
yes!
}
def z = foo
.bar
.zot
// Scamacs always does below and never the above (no configuration)
// Heikki, please confirm I haven't broken your dot alignment code. RPR
// I actually prefer the below behavior.
// Since the Heikki added a custom param to support scamacs behavior, which I no longer like,
// should we remove the param and go with below as fixed behavior.
// I'm ok with removing the param.
def z = foo {
g.dothis
.bar
.bar
.dothat
g
}
{
foo(x,
y) { z =>
println(z)
z + 1
}
}
}
/* font lock */
private/* */class/* */Foo/* */[+T]/* */(i: X,
j: Y) // KNOWN ISSUE: does not highlight when typed
{
def x = 1
def/* */x/* */=/* */1 // KNOWN ISSUE: x is with wrong face
def foo(x: String, //
y: Int/* */, // KNOWN ISSUE: Int should be highlighted
z: Boolean)
(x: Int) // KNOWN ISSUE(S): '(' is highted, curry is not highlighted when typed
def foo(@annotation // KNOWN ISSUE: annotations are in parameter name font face
x: String)
val x = new Foo(1,
2,
3)
with Bar // KNOWN ISSUE: bar is in wrong font-face (should be same as Foo)
}