FIR: add FirLazyExpression node

This commit is contained in:
Ilya Kirillov
2020-10-08 13:33:37 +03:00
parent 71b5b6df7c
commit 7c1170722f
4 changed files with 101 additions and 1 deletions
@@ -140,6 +140,19 @@ object ImplementationConfigurator : AbstractFirTreeImplementationConfigurator()
publicImplementation()
}
impl(expression, "FirLazyExpression") {
val error = """error("FirLazyExpression should be calculated before accessing")"""
default("typeRef") {
value = error
withGetter = true
}
default("annotations") {
value = error
withGetter = true
}
publicImplementation()
}
impl(functionCall) {
kind = OpenClass
}