[FIR] Implement FIR version of parcelize plugin

This commit includes only generation of declarations and
  ir backend part, checkers are added in separate commit
This commit is contained in:
Dmitriy Novozhilov
2021-10-19 16:46:42 +03:00
committed by teamcityserver
parent cb0705ec03
commit eac9a9fc79
18 changed files with 1098 additions and 178 deletions
@@ -1,4 +1,6 @@
// WITH_STDLIB
// fir doesn't support annotations with type arguments
// IGNORE_BACKEND_FIR: JVM_IR
@file:JvmName("TestKt")
package test
@@ -46,4 +48,4 @@ fun box() = parcelTest { parcel ->
assert(test.a == "Abc" && test.b == "Abc" && test.c == "Abc" && test.d == "Abc")
assert(test2.a == "3" && test2.b == "3" && test2.c == "Abc" && test2.d == "ABC")
}
}