as32: Revert uast to the state of idea 173, AS 3.2 C10 has uast from idea 173

This commit is contained in:
Vyacheslav Gerasimov
2018-04-12 21:49:06 +03:00
parent a6bd0f618e
commit 8efee7bd9c
80 changed files with 3820 additions and 0 deletions
@@ -0,0 +1,17 @@
public final class LocalDeclarationsKt {
public static final fun foo() : boolean {
public static final class Local {
public fun LocalDeclarationsKt$foo$Local() = UastEmptyExpression
}
var bar: <ErrorType> = fun () {
<init>()
}
var baz: kotlin.jvm.functions.Function0<? extends kotlin.Unit> = fun () {
<init>()
}
var someLocalFun: kotlin.jvm.functions.Function2<? super java.lang.Integer,? super java.lang.String,? extends java.lang.Integer> = fun (@org.jetbrains.annotations.NotNull var text: java.lang.String) {
42
}
return bar() == <init>()
}
}