[FIR] Reorganize modules of raw fir builders

This commit is contained in:
Dmitriy Novozhilov
2020-03-25 12:20:24 +03:00
parent 0d6bb33f49
commit 6c9dd8bb22
161 changed files with 419 additions and 359 deletions
@@ -0,0 +1,14 @@
FILE: genericFunctions.kt
public? final? interface Any : R|kotlin/Any| {
}
public? final? inline fun <reified T : Any> Any.safeAs(): T? {
^safeAs (this# as? T)
}
public? abstract class Summator : R|kotlin/Any| {
public? constructor(): R|Summator| {
super<R|kotlin/Any|>()
}
public? abstract fun <T> plus(first: T, second: T): T
}