JS: fix inlining of callable references

This commit is contained in:
Alexey Andreev
2017-01-16 19:23:38 +03:00
parent 7a0f75f164
commit dcb8b7b92c
8 changed files with 23 additions and 13 deletions
@@ -32,6 +32,8 @@ var JsName.descriptor: DeclarationDescriptor? by MetadataProperty(default = null
// TODO: move this to module 'js.inliner' and change dependency on 'frontend' to dependency on 'descriptors'
var JsInvocation.inlineStrategy: InlineStrategy? by MetadataProperty(default = null)
var JsInvocation.isCallableReference by MetadataProperty(default = false)
var JsInvocation.descriptor: CallableDescriptor? by MetadataProperty(default = null)
var JsInvocation.psiElement: PsiElement? by MetadataProperty(default = null)