Do additional resolve for inline properties for backend (KT-27460)

There's an additional resolve for inline declarations to make backend
happy with the passed binding context object. Unlike functions,
properties were not processed.

 #KT-27460 Fixed
This commit is contained in:
Nikolay Krasko
2018-10-29 18:58:56 +03:00
parent 9978ba4aaa
commit 6fcb1716eb
4 changed files with 36 additions and 8 deletions
@@ -0,0 +1,3 @@
package inlineProperty
val x = "".foo
@@ -0,0 +1,6 @@
package inlineProperty
inline val String.foo: Boolean
get() {
return true
}