blob: 4bb36553ffa3afaca0a5ffe2d454b8f59441b98d (
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
|
package utils
import matchers.content.*
//TODO: Try to unify those functions after update to 1.4
fun ContentMatcherBuilder<*>.signature(
name: String,
returnType: String? = null,
vararg params: Pair<String, String>
) =
platformHinted {
group { // TODO: remove it when double wrapping for signatures will be resolved
+"final fun"
link { +name }
+"("
params.forEachIndexed { id, (n, t) ->
+"$n:"
group { link { +t } }
if (id != params.lastIndex)
+", "
}
+")"
returnType?.let { +": $it" }
}
}
fun ContentMatcherBuilder<*>.signatureWithReceiver(
receiver: String,
name: String,
returnType: String? = null,
vararg params: Pair<String, String>
) =
platformHinted {
group { // TODO: remove it when double wrapping for signatures will be resolved
+"final fun"
group {
link { +receiver }
}
+"."
link { +name }
+"("
params.forEach { (n, t) ->
+"$n:"
group { link { +t } }
}
+")"
returnType?.let { +": $it" }
}
}
fun ContentMatcherBuilder<*>.pWrapped(text: String) =
group {// TODO: remove it when double wrapping for descriptions will be resolved
group { +text }
br()
}
|