[FE] Add getContextReceivers to CallableDescriptor interface

This commit is contained in:
Anastasiya Shadrina
2020-07-15 17:57:19 +07:00
committed by TeamCityServer
parent 7de8380ddf
commit a39fbd3822
61 changed files with 194 additions and 63 deletions
@@ -31,7 +31,7 @@ class ReplResultPropertyDescriptor(
/* isDelegated = */ false
) {
init {
setType(kotlinType, emptyList(), receiver, null)
setType(kotlinType, emptyList(), receiver, null, emptyList())
initialize(
null, null
)
@@ -30,7 +30,7 @@ class ScriptProvidedPropertyDescriptor(
/* isDelegated = */ false
) {
init {
setType(typeDescriptor.defaultType, emptyList(), receiver, null)
setType(typeDescriptor.defaultType, emptyList(), receiver, null, emptyList())
// TODO: consider delegation instead
initialize(null, null, null, null)
}