org.jetbrains.kotlin.psi
Class KtLambdaExpression

java.lang.Object
  extended by KtExpressionImpl
      extended by org.jetbrains.kotlin.psi.KtLambdaExpression

public class KtLambdaExpression
extends KtExpressionImpl


Constructor Summary
KtLambdaExpression(com.intellij.lang.ASTNode node)
           
 
Method Summary
<R,D> R
accept(KtVisitor<R,D> visitor, D data)
           
 KtElement asElement()
           
 KtBlockExpression getBodyExpression()
           
 KtFunctionLiteral getFunctionLiteral()
           
 com.intellij.lang.ASTNode getLeftCurlyBrace()
           
 com.intellij.lang.ASTNode getRightCurlyBrace()
           
 java.util.List<KtParameter> getValueParameters()
           
 boolean hasDeclaredReturnType()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

KtLambdaExpression

public KtLambdaExpression(@NotNull
                          com.intellij.lang.ASTNode node)
Method Detail

accept

public <R,D> R accept(@NotNull
                      KtVisitor<R,D> visitor,
                      D data)

getFunctionLiteral

@NotNull
public KtFunctionLiteral getFunctionLiteral()

getValueParameters

@NotNull
public java.util.List<KtParameter> getValueParameters()

getBodyExpression

@Nullable
public KtBlockExpression getBodyExpression()

hasDeclaredReturnType

public boolean hasDeclaredReturnType()

asElement

@NotNull
public KtElement asElement()

getLeftCurlyBrace

@NotNull
public com.intellij.lang.ASTNode getLeftCurlyBrace()

getRightCurlyBrace

@Nullable
public com.intellij.lang.ASTNode getRightCurlyBrace()