org.jetbrains.kotlin.js.translate.reference
Class AbstractCallExpressionTranslator

java.lang.Object
  extended by org.jetbrains.kotlin.js.translate.general.AbstractTranslator
      extended by org.jetbrains.kotlin.js.translate.reference.AbstractCallExpressionTranslator
Direct Known Subclasses:
CallExpressionTranslator

public abstract class AbstractCallExpressionTranslator
extends AbstractTranslator


Field Summary
protected  JetCallExpression expression
           
protected  JsExpression receiver
           
protected  ResolvedCall<? extends FunctionDescriptor> resolvedCall
           
 
Constructor Summary
protected AbstractCallExpressionTranslator(JetCallExpression expression, JsExpression receiver, TranslationContext context)
           
 
Method Summary
 
Methods inherited from class org.jetbrains.kotlin.js.translate.general.AbstractTranslator
bindingContext, context, namer, program
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

expression

@NotNull
protected final JetCallExpression expression

resolvedCall

@NotNull
protected final ResolvedCall<? extends FunctionDescriptor> resolvedCall

receiver

@Nullable
protected final JsExpression receiver
Constructor Detail

AbstractCallExpressionTranslator

protected AbstractCallExpressionTranslator(@NotNull
                                           JetCallExpression expression,
                                           @Nullable
                                           JsExpression receiver,
                                           @NotNull
                                           TranslationContext context)